From 84b02782bddd1aab245c7457506726cbcdd8ab74 Mon Sep 17 00:00:00 2001 From: ChrisRackauckas Date: Mon, 4 Aug 2025 08:49:11 -0400 Subject: [PATCH 1/2] [ci skip] Ignore crate-ci/typos patch and minor updates in dependabot This prevents dependabot from creating PRs for every minor and patch version update of the typos tool, reducing noise in the repository. --- .github/dependabot.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 700707c..ec3b005 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,3 +5,6 @@ updates: directory: "/" # Location of package manifests schedule: interval: "weekly" + ignore: + - dependency-name: "crate-ci/typos" + update-types: ["version-update:semver-patch", "version-update:semver-minor"] From 6b4efed3f3f72e9076687da21b30ed4d47a98d61 Mon Sep 17 00:00:00 2001 From: Claude Code Date: Fri, 2 Jan 2026 01:45:35 -0500 Subject: [PATCH 2/2] Fix minimum version bounds for Measurements and ReverseDiff MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The previous minimum version bounds were incompatible with the current dependency ecosystem, specifically due to conflicting SpecialFunctions requirements when Mooncake 0.4 is present. Changes: - Measurements: 2.0 -> 2.5 (minimum version compatible with Mooncake 0.4) - ReverseDiff: 1.0 -> 1.14 (minimum version compatible with Mooncake 0.4) Testing revealed that: - Measurements 2.0 requires SpecialFunctions 0.7-0.10.3 - ReverseDiff 1.0 requires SpecialFunctions 0.8-0.9 - Mooncake 0.4 requires SpecialFunctions >= 2.0 This created an unsolvable dependency conflict. The new minimum versions (Measurements 2.5 and ReverseDiff 1.14) are compatible with SpecialFunctions >= 2.0 and work correctly with all other dependencies. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- Project.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Project.toml b/Project.toml index 903bac5..4278279 100644 --- a/Project.toml +++ b/Project.toml @@ -26,10 +26,10 @@ FastPowerTrackerExt = "Tracker" [compat] Enzyme = "0.13" ForwardDiff = "0.10, 1" -Measurements = "2" +Measurements = "2.5" MonteCarloMeasurements = "1" Mooncake = "0.4" -ReverseDiff = "1" +ReverseDiff = "1.14" Tracker = "0.2" julia = "1.10" @@ -39,8 +39,8 @@ EnzymeTestUtils = "12d8515a-0907-448a-8884-5fe00fdf1c5a" ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210" Mooncake = "da2b9cff-9c12-43a0-ae48-6db2b0edb7d6" ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267" -Tracker = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c" Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" +Tracker = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c" [targets] test = ["Test", "Enzyme", "EnzymeTestUtils", "ForwardDiff", "Mooncake", "ReverseDiff", "Tracker"]