Bump compat for OrdinaryDiffEq v7 / SciMLBase v3 ecosystem#334
Merged
ChrisRackauckas merged 1 commit intoApr 27, 2026
Merged
Conversation
Widen compat bounds in docs/Project.toml: - OrdinaryDiffEq: "6" → "6, 7" - OrdinaryDiffEqRosenbrock: "1" → "1, 2" Apply breaking-change migrations from OrdinaryDiffEq v7 NEWS: - docs/src/showcase/optimization_under_uncertainty.md: migrate prob_func(prob, i, repeat) → prob_func(prob, ctx) (ensemble API) - docs/src/showcase/massively_parallel_gpu.md: same prob_func migration - docs/src/showcase/ode_types.md: migrate sol[11] → sol.u[11] (RAT v4 element-first indexing change) References: SciML/OrdinaryDiffEq.jl#3562, #3565 Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com>
Author
CI NotesThe `Build and Deploy Aggregate Documentation` job failed with: This failure is unrelated to the compat changes in this PR. The error occurs in the `Pkg.develop` step on the self-hosted runner `demeter4-3`, which appears to have a stale Julia registry cache that doesn't contain `AdvancedHMC`. The previous run (at 00:34 UTC today) succeeded on runner `demeter4-1` with the same `AdvancedHMC = "0.8"` compat entry already in the `docs/Project.toml` prior to this PR. The `AdvancedHMC` package IS present in the General registry (UUID 0bf59076) — this is a runner-infrastructure cache issue. Triggering a re-run should use a healthy runner. |
2 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Widens compat bounds and applies breaking-change migrations for the OrdinaryDiffEq v7 / SciMLBase v3 ecosystem release (SciML/OrdinaryDiffEq.jl#3562, cascade revert SciML/OrdinaryDiffEq.jl#3565).
See also: OrdinaryDiffEq NEWS.md
Compat bumps (
docs/Project.toml)OrdinaryDiffEq"6""6, 7"OrdinaryDiffEqRosenbrock"1""1, 2"Note:
OrdinaryDiffEqCorewas NOT bumped to v5 (that was reverted in #3565; v4 is current).DifferentialEquationscompat remains at"7"(no new major there).Source migrations applied
These are the only usages of breaking APIs found in the docs source:
docs/src/showcase/optimization_under_uncertainty.md: Migrate ensembleprob_func(prob, i, repeat)→prob_func(prob, ctx)(new EnsembleProblem API in OrdinaryDiffEq v7 / SciMLBase v3).docs/src/showcase/massively_parallel_gpu.md: Sameprob_funcsignature migration.docs/src/showcase/ode_types.md: Migratesol[11]→sol.u[11](RAT v4 element-first integer indexing change:sol[i]is now element-first, usesol.u[i]to access the state at the i-th saved timestep).No
destats/has_destats,DEAlgorithm,chunk_size/standardtag/diff_type/autodiff=Bool, oru_modified!usages were found in the docs source.Test plan
Pkg.instantiate()resolves with OrdinaryDiffEq v7 and OrdinaryDiffEqRosenbrock v2 in the docs environmentprob_funcandsol[i]are syntactically valid with the new API🤖 Generated with Claude Code