Skip to content

Bump the all-julia-dependencies group across 3 directories with 18 updates - #197

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/julia/docs/all-julia-dependencies-b1213e2f18
Closed

Bump the all-julia-dependencies group across 3 directories with 18 updates#197
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/julia/docs/all-julia-dependencies-b1213e2f18

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 8, 2026

Copy link
Copy Markdown
Contributor

Updates the requirements on Krylov, KrylovPreconditioners, Documenter, OrdinaryDiffEqSSPRK, OffsetArrays, DifferentiationInterface, Literate, OrdinaryDiffEqSDIRK, CairoMakie, DocumenterCitations, PlutoStaticHTML, SummationByPartsOperators, Ariadne, Theseus, KernelAbstractions, OrdinaryDiffEqLowStorageRK, Enzyme and Observables to permit the latest version.
Updates Krylov to 0.10.8

Release notes

Sourced from Krylov's releases.

v0.10.8

Krylov v0.10.8

Diff since v0.10.7

Merged pull requests:

Commits
  • 261f584 Release 0.10.8
  • f00022d Improve the C and Fortran interfaces
  • ae722bb Verify bundle self-containment on macOS and Windows too (#1096)
  • 56cc23d Trim SparseArrays from the published libkrylov bundle
  • ef6498b Trigger libkrylov release on tag push instead of release event
  • 142d043 Release 0.10.7
  • ea25008 Update make.jl
  • e231738 Add C and Fortran interfaces with JuliaC.jl (#1091)
  • 8cfa32b [CI] Fix buildkite builds
  • 7cfc96b [documentation] Update the docstring of MinAres
  • Additional commits viewable in compare view

Updates KrylovPreconditioners to 0.3.8

Release notes

Sourced from KrylovPreconditioners's releases.

v0.3.8

KrylovPreconditioners v0.3.8

Diff since v0.3.7

Merged pull requests:

Commits

Updates Documenter to 1.17.0

Release notes

Sourced from Documenter's releases.

v1.17.0

Added

  • The version selector now also preserves the anchor (hash) when switching between documentation versions. Additionally, the outdated/dev version warning banner now also tries to keep you on the same page (and position) when linking to the latest stable release. (#2880)
  • Added Remotes.Forgejo for specifying a Remote hosted on a Forgejo instance (such as codeberg.org). (#2857)
  • Doctests now default to the parser_for_module of the module that the docstring appears in, allowing modules that set their syntax version via Base.Experimental.@set_syntax_version to have their doctests parsed with the correct syntax automatically. Also added support for DocTestSyntax metadata and per-block syntax= attributes to explicitly specify a syntax version. (#2874)
  • Added a show_log keyword for Documenter.LaTeX to print LaTeX compiler logs to stdout when PDF compilation fails, and support for forcing this via DOCUMENTER_LATEX_SHOW_LOGS in CI environments. (#1697)
  • Added support for new features of the Markdown stdlib introduced in Julia 1.14, namely strike through, HTML blocks and inline HTML (this requires Julia 1.14+ and MarkdownAST 0.1.3).

Changed

  • reduced time complexity from O(n^2) to O(n) to improve the initial load time for search (#2875)
  • Git no longer displays a message about the default branch name when calling deploydocs(). (#2854)
  • Don't escape characters (such as ~) in URLs when writing LaTeX. (#2210)
  • Tweak the layout of the table of contents in LaTeX / PDF output so that for a document with 8 or more parts, the part number (VIII) does not overlap with the part title. (#2871)

Fixed

  • Fixed rendering of operator docstring bindings such as Base.:(:) and Base.:(==) in doc headers and indices. (#2844)

The changes are documented in the CHANGELOG.md file.

Diff since v1.16.1

Changelog

Sourced from Documenter's changelog.

Version [v1.17.0] - 2026-02-20

Added

  • The version selector now also preserves the anchor (hash) when switching between documentation versions. Additionally, the outdated/dev version warning banner now also tries to keep you on the same page (and position) when linking to the latest stable release. (#2880)
  • Added Remotes.Forgejo for specifying a Remote hosted on a Forgejo instance (such as codeberg.org). (#2857)
  • Doctests now default to the parser_for_module of the module that the docstring appears in, allowing modules that set their syntax version via Base.Experimental.@set_syntax_version to have their doctests parsed with the correct syntax automatically. Also added support for DocTestSyntax metadata and per-block syntax= attributes to explicitly specify a syntax version. (#2874)
  • Added a show_log keyword for Documenter.LaTeX to print LaTeX compiler logs to stdout when PDF compilation fails, and support for forcing this via DOCUMENTER_LATEX_SHOW_LOGS in CI environments. (#1697)
  • Added support for new features of the Markdown stdlib introduced in Julia 1.14, namely strike through, HTML blocks and inline HTML (this requires Julia 1.14+ and MarkdownAST 0.1.3).

Changed

  • reduced time complexity from O(n^2) to O(n) to improve the initial load time for search (#2875)
  • Git no longer displays a message about the default branch name when calling deploydocs(). (#2854)
  • Don't escape characters (such as ~) in URLs when writing LaTeX. (#2210)
  • Tweak the layout of the table of contents in LaTeX / PDF output so that for a document with 8 or more parts, the part number (VIII) does not overlap with the part title. (#2871)

Fixed

  • During cross-referencing find_object correctly locates the Documenter.Object associated with UnionAll method signatures. (#2836, #2889)
  • Fixed rendering of operator docstring bindings such as Base.:(:) and Base.:(==) in doc headers and indices. (#2844)

Version [v1.16.1] - 2025-11-21

Fixed

  • The -g is now passed to curl when checking links, to disable globbing, which could cause undesirable behavior when checking links containing characters like for example [, {, & or ?. (#2839, #2842)
  • Fixed insufficient paragraph spacing in HTML output for @docs blocks. ([#2845, #2847])
  • Don't expand details admonition by default. ([#2846, #2847])
  • Removed superfluous vertical space at end of @docs blocks. (#2849)

Version [v1.16.0] - 2025-11-14

Added

  • Added option treat_markdown_warnings_as_error which throws an error when encountering a markdown/interpolation warning (#2792, #2751)
  • Footnotes can now be previewed by hovering over the link. (#2080)
  • The version selector now attempts to stay on the same page when switching between documentation versions. If the page doesn't exist in the target version, it falls back to the version homepage. (#2801)
  • Allow named @eval blocks: such a block shares its execution context with all other @eval, @example, @repl and @setup blocks on the same page which use the same name. (#2074, #2812)

Changed

  • Page category is removed from the search index and now everything is in section category. (#2762, #2413)
  • Changed the docstring block accordions from a custom implementation to HTML details+summary tag. (#2772, #2773)
  • Improved the search tokenizer and custom trimmer to improve search results. (#1457, #2114, #2744)
  • Improved several warning/error messages to (more accurately) report the location (filename, line range) in which the warning/error originated. (#2426, #2752, #2793, #2803, #2809)
  • Warn/error if jldoctest starts with an empty line; or lacks empty line between two REPL prompts. (#2031, #2083, #2679, #2808)
  • The forcepush=true option to deploydocs now uses --force-with-lease instead of --force. (#2817)
  • Improved the generation of anchors for admonitions in HTML output to be more stable and e.g. not change due to changes of the internal representation across different Julia versions. (#2710)

... (truncated)

Commits

Updates OrdinaryDiffEqSSPRK to 2.1.1

Release notes

Sourced from OrdinaryDiffEqSSPRK's releases.

OrdinaryDiffEqSymplecticRK-v2.1.1

OrdinaryDiffEqSymplecticRK OrdinaryDiffEqSymplecticRK-v2.1.1

Diff since OrdinaryDiffEqSymplecticRK-v2.1.0

Merged pull requests:

... (truncated)

Changelog

Sourced from OrdinaryDiffEqSSPRK's changelog.

OrdinaryDiffEq.jl v7 / DifferentialEquations.jl v8 Breaking Changes

This release bumps to SciMLBase v3, RecursiveArrayTools v4, and includes breaking changes across DiffEqBase, OrdinaryDiffEqCore, and all solver sublibraries. It also coincides with the DifferentialEquations.jl v8 umbrella release, which is itself a breaking change to the user-facing meta-package.

DifferentialEquations.jl v8: scope reduction

DifferentialEquations.jl v8 no longer re-exports the full SciML solver suite. Previously, using DifferentialEquations pulled in OrdinaryDiffEq, StochasticDiffEq, DelayDiffEq, BoundaryValueDiffEq, Sundials, JumpProcesses, SteadyStateDiffEq, LinearSolve, NonlinearSolve, Optimization, etc. — a large default surface that drove up using time and made it unclear which package any given solver actually came from.

In v8, using DifferentialEquations only loads OrdinaryDiffEq. All other solver families have been removed from the umbrella. If your code relied on DifferentialEquations for SDEs, DDEs, BVPs, jumps, steady states, or any non-ODE solver, you will need to add the topic-specific package to your project explicitly.

Migration

Find the topic you need a solver for and add the corresponding sublib(s) directly. The DiffEqDocs tutorials and solver pages now specify, per algorithm, which package it ships from. Common cases:

Topic Old (DiffEq v7 umbrella) New (DiffEq v8)
ODEs using DifferentialEquations using OrdinaryDiffEq (or using OrdinaryDiffEqTsit5, OrdinaryDiffEqRosenbrock, … for individual solver families)
Stochastic ODEs using DifferentialEquations using StochasticDiffEq
Delay ODEs using DifferentialEquations using DelayDiffEq
Boundary value problems using DifferentialEquations using BoundaryValueDiffEq (or one of BoundaryValueDiffEqMIRK, BoundaryValueDiffEqFIRK, BoundaryValueDiffEqShooting, …)
Jump processes using DifferentialEquations using JumpProcesses
Steady state using DifferentialEquations using SteadyStateDiffEq
DAEs (mass matrix or implicit) using DifferentialEquations using OrdinaryDiffEq (mass matrix), using Sundials (IDA), or topic sublib
Sundials wrappers (CVODE, IDA, ARKODE) using DifferentialEquations using Sundials
Linear / nonlinear / optimization using DifferentialEquations using LinearSolve / using NonlinearSolve / using Optimization

For ODE work specifically, prefer importing only the sublib you need (e.g. using OrdinaryDiffEqTsit5: Tsit5) rather than the umbrella using OrdinaryDiffEq — the v7 ecosystem split lets you trim using time substantially. The DiffEqDocs tutorials and solver index annotate every algorithm with its host sublib.

Why

Removing the meta-package's broad re-exports lets each topic's package version cycle independently, eliminates the long using DifferentialEquations precompile chain for users who only need ODEs, and makes the dependency graph for any given script honest about what's actually being loaded.

This change is independent of the OrdinaryDiffEq v7 changes below — OrdinaryDiffEq v7 ships with DifferentialEquations v8, but you can also use OrdinaryDiffEq v7 directly without the umbrella package at all.

OrdinaryDiffEq.jl v7 Breaking Changes

This release bumps to SciMLBase v3, RecursiveArrayTools v4, and includes breaking changes across DiffEqBase, OrdinaryDiffEqCore, and all solver sublibraries.

Themes of the v7 release

Most of the breaking changes fall into a small set of recurring themes. Keep these in mind while reading the migration table — they explain why an individual change exists and often suggest the right migration direction:

  • Time to first solve (TTFS) reduction. Direct deps on Static.jl, StaticArrayInterface.jl, Polyester.jl, and StaticArrays.jl were dropped; using OrdinaryDiffEq now loads only the default solver set; ODEFunction switched to AutoSpecialize. All of this means less code loaded and more precompilation caching on first solve.

  • Type stability everywhere. All Bool solver/solve keyword arguments (autodiff, verbose, alias, lazy, …) were replaced by typed objects. Passing a Bool no longer changes dispatch in ways the compiler cannot specialize on, and the reverse is no longer allowed to silently fall back through slow generic paths. For example:

    # v6 — a Bool
    Rosenbrock23(autodiff = true)
    solve(prob, alg; verbose = false, alias = true)

... (truncated)

Commits
  • abdabd1 Allow LinearSolve v4 (#3815)
  • 9ba59f5 OrdinaryDiffEqExplicitRK: retain stages + fused interpolant for dense output ...
  • 72706ab Restore top-level GPU test lane; drop vestigial AlgConvergence_II group (#3813)
  • 0acd9d9 Multirate: add solve-decoupled implicit MRI-GARK-IRK21a (order 2) (#961) (#3811)
  • c1c20eb Fix extrapolation error-estimate denominator to use step endpoints (#3226) (#...
  • 9b1750d Allow CUDA.jl v6 in GPU test environments (#3810)
  • f310076 Downgrade CI: raise TruncatedStacktraces floor to 1.1, add RecursiveArrayTool...
  • 030f9eb ode_cache_tests: cover KenCarp4 and ImplicitEuler with NonlinearSolveAlg (#3804)
  • f616828 QNDFCache: add u/uprev fields so resize! propagates to integrator.u/uprev (#3...
  • 56ed545 Multirate: add explicit MRI-GARK family (ERK33a order 3, ERK45a order 4) (#3747)
  • Additional commits viewable in compare view

Updates OffsetArrays to 1.17.0

Release notes

Sourced from OffsetArrays's releases.

v1.17.0

OffsetArrays v1.17.0

Diff since v1.16.0

Merged pull requests:

Closed issues:

  • no_offset_view does not work properly on views with : (#375)
Commits

Updates DifferentiationInterface to 0.7.18

Release notes

Sourced from DifferentiationInterface's releases.

DifferentiationInterface-v0.7.18

DifferentiationInterface DifferentiationInterface-v0.7.18

Diff since DifferentiationInterface-v0.7.17

Merged pull requests:

Closed issues:

  • FiniteDiff with :central includes junk (#983)
  • Tracking removal from Turing-verse (#992)
Commits
  • f477fa3 fix: proper eltype in wrong-mode pushforward/pullback (#1003)
  • cb6801e feat: add support for HyperHessian backend (#940)
  • d38d905 fix: make DI compatible with latest Mooncake friendly tangents (#1001)
  • 1b5d91c chore: clean up backend testing CI (#1002)
  • 5a3ea38 test: activate Enzyme tests on Julia 1.12 (#966)
  • ee29327 chore(deps): bump julia-actions/setup-julia from 2 to 3 (#994)
  • 508572e chore: upper-bound Mooncake version (coherence with General) (#995)
  • a5ecbe0 test: shorten Mooncake test suite (#985)
  • 9780927 doc: add docstrings to the result anlysis methods for sparse matrix preparati...
  • 1a1ff88 chore(deps): bump codecov/codecov-action from 5 to 6 (#982)
  • Additional commits viewable in compare view

Updates Literate to 2.21.0

Release notes

Sourced from Literate's releases.

v2.21.0

See CHANGELOG.md for notable changes.

See CHANGELOG.md for notable changes.

Diff since v2.20.1

Changelog

Sourced from Literate's changelog.

[v2.21.0] - 2025-11-19

Changed

  • Allow IOCapture version 1. (#280)

[v2.20.1] - 2024-10-17

Fixed

  • Errors from code evaluation (with continue_on_error = true) are now properly displayed with showerror. (#261)

[v2.20.0] - 2024-10-16

Added

  • A new keyword argument configuration continue_on_error::Bool = false has been added which controls the behavior of code execution errors. By default (continue_on_error = false) execution errors are re-thrown by Literate (as before). If continue_on_error = true is set the error is used as the block result and execution continues with following blocks. (#201, #257)
  • Literate now replaces Documenter-style admonitions when generating notebook output (#259). Concretely,
    # !!! note
    #     A note.
    

    !!! warn "Warning title text"

    A warning.

    is replaced with

    # > **Note**
    # >
    # > A note.
    

    > Warning title text

    >

    > A warning.

[v2.19.1] - 2024-09-13

Fixed

  • Set :SOURCE_PATH in the task local storage to the output file when executing code so that recursive include works as expected. (#251, #252)

[v2.19.0] - 2024-07-11

Changed

  • Literate.markdown, Literate.notebook, and Literate.script are marked as public in Julia version that support the public keyword. (#248)

[v2.18.0] - 2024-04-17

Added

... (truncated)

Commits

Updates OrdinaryDiffEqSDIRK to 2.7.1

Release notes

Sourced from OrdinaryDiffEqSDIRK's releases.

OrdinaryDiffEqSDIRK-v2.7.1

OrdinaryDiffEqSDIRK OrdinaryDiffEqSDIRK-v2.7.1

Diff since OrdinaryDiffEqSDIRK-v2.7.0

Merged pull requests:

…dates

Updates the requirements on [Krylov](https://github.com/JuliaSmoothOptimizers/Krylov.jl), [KrylovPreconditioners](https://github.com/JuliaSmoothOptimizers/KrylovPreconditioners.jl), [Documenter](https://github.com/JuliaDocs/Documenter.jl), [OrdinaryDiffEqSSPRK](https://github.com/SciML/OrdinaryDiffEq.jl), [OffsetArrays](https://github.com/JuliaArrays/OffsetArrays.jl), [DifferentiationInterface](https://github.com/JuliaDiff/DifferentiationInterface.jl), [Literate](https://github.com/fredrikekre/Literate.jl), [OrdinaryDiffEqSDIRK](https://github.com/SciML/OrdinaryDiffEq.jl), [CairoMakie](https://github.com/MakieOrg/Makie.jl), [DocumenterCitations](https://github.com/JuliaDocs/DocumenterCitations.jl), [PlutoStaticHTML](https://github.com/JuliaPluto/PlutoStaticHTML.jl), [SummationByPartsOperators](https://github.com/ranocha/SummationByPartsOperators.jl), [Ariadne](https://github.com/NumericalMathematics/Ariadne.jl), [Theseus](https://github.com/NumericalMathematics/Ariadne.jl), [KernelAbstractions](https://github.com/JuliaGPU/KernelAbstractions.jl), [OrdinaryDiffEqLowStorageRK](https://github.com/SciML/OrdinaryDiffEq.jl), [Enzyme](https://github.com/EnzymeAD/Enzyme.jl) and [Observables](https://github.com/JuliaGizmos/Observables.jl) to permit the latest version.

Updates `Krylov` to 0.10.8
- [Release notes](https://github.com/JuliaSmoothOptimizers/Krylov.jl/releases)
- [Commits](JuliaSmoothOptimizers/Krylov.jl@v0.1...v0.10.8)

Updates `KrylovPreconditioners` to 0.3.8
- [Release notes](https://github.com/JuliaSmoothOptimizers/KrylovPreconditioners.jl/releases)
- [Commits](JuliaSmoothOptimizers/KrylovPreconditioners.jl@v0.1.0...v0.3.8)

Updates `Documenter` to 1.17.0
- [Release notes](https://github.com/JuliaDocs/Documenter.jl/releases)
- [Changelog](https://github.com/JuliaDocs/Documenter.jl/blob/master/CHANGELOG.md)
- [Commits](JuliaDocs/Documenter.jl@v0.1.0...v1.17.0)

Updates `OrdinaryDiffEqSSPRK` to 2.1.1
- [Release notes](https://github.com/SciML/OrdinaryDiffEq.jl/releases)
- [Changelog](https://github.com/SciML/OrdinaryDiffEq.jl/blob/master/NEWS.md)
- [Commits](SciML/OrdinaryDiffEq.jl@OrdinaryDiffEqSSPRK-v1.1.0...OrdinaryDiffEqSSPRK-v2.1.1)

Updates `OffsetArrays` to 1.17.0
- [Release notes](https://github.com/JuliaArrays/OffsetArrays.jl/releases)
- [Commits](JuliaArrays/OffsetArrays.jl@v0.1.0...v1.17.0)

Updates `DifferentiationInterface` to 0.7.18
- [Release notes](https://github.com/JuliaDiff/DifferentiationInterface.jl/releases)
- [Commits](JuliaDiff/DifferentiationInterface.jl@DifferentiationInterface-v0.1.0...DifferentiationInterface-v0.7.18)

Updates `Literate` to 2.21.0
- [Release notes](https://github.com/fredrikekre/Literate.jl/releases)
- [Changelog](https://github.com/fredrikekre/Literate.jl/blob/master/CHANGELOG.md)
- [Commits](fredrikekre/Literate.jl@v0.1.0...v2.21.0)

Updates `OrdinaryDiffEqSDIRK` to 2.7.1
- [Release notes](https://github.com/SciML/OrdinaryDiffEq.jl/releases)
- [Changelog](https://github.com/SciML/OrdinaryDiffEq.jl/blob/master/NEWS.md)
- [Commits](SciML/OrdinaryDiffEq.jl@OrdinaryDiffEqSDIRK-v1.1.0...OrdinaryDiffEqSDIRK-v2.7.1)

Updates `CairoMakie` to 0.15.13
- [Release notes](https://github.com/MakieOrg/Makie.jl/releases)
- [Changelog](https://github.com/MakieOrg/Makie.jl/blob/master/CHANGELOG.md)
- [Commits](https://github.com/MakieOrg/Makie.jl/commits)

Updates `DocumenterCitations` to 1.4.1
- [Release notes](https://github.com/JuliaDocs/DocumenterCitations.jl/releases)
- [Changelog](https://github.com/JuliaDocs/DocumenterCitations.jl/blob/master/NEWS.md)
- [Commits](JuliaDocs/DocumenterCitations.jl@v0.1.0...v1.4.1)

Updates `PlutoStaticHTML` to 8.0.0
- [Release notes](https://github.com/JuliaPluto/PlutoStaticHTML.jl/releases)
- [Commits](JuliaPluto/PlutoStaticHTML.jl@v0.1.0...v8.0.0)

Updates `SummationByPartsOperators` to 0.5.96
- [Release notes](https://github.com/ranocha/SummationByPartsOperators.jl/releases)
- [Changelog](https://github.com/ranocha/SummationByPartsOperators.jl/blob/main/NEWS.md)
- [Commits](ranocha/SummationByPartsOperators.jl@v0.0.1...v0.5.96)

Updates `Ariadne` to 0.1.2
- [Release notes](https://github.com/NumericalMathematics/Ariadne.jl/releases)
- [Commits](v0.1.0...v0.1.2)

Updates `Theseus` to 0.1.6
- [Release notes](https://github.com/NumericalMathematics/Ariadne.jl/releases)
- [Commits](Theseus-v0.1.0...Theseus-v0.1.6)

Updates `KernelAbstractions` to 0.9.42
- [Release notes](https://github.com/JuliaGPU/KernelAbstractions.jl/releases)
- [Commits](JuliaGPU/KernelAbstractions.jl@v0.1.0...v0.9.42)

Updates `OrdinaryDiffEqLowStorageRK` to 3.1.1
- [Release notes](https://github.com/SciML/OrdinaryDiffEq.jl/releases)
- [Changelog](https://github.com/SciML/OrdinaryDiffEq.jl/blob/master/NEWS.md)
- [Commits](SciML/OrdinaryDiffEq.jl@OrdinaryDiffEqLowStorageRK-v1.0.0...OrdinaryDiffEqLowStorageRK-v3.1.1)

Updates `Enzyme` to 0.13.176
- [Release notes](https://github.com/EnzymeAD/Enzyme.jl/releases)
- [Commits](EnzymeAD/Enzyme.jl@v0.1.0...v0.13.176)

Updates `Krylov` to 0.10.8
- [Release notes](https://github.com/JuliaSmoothOptimizers/Krylov.jl/releases)
- [Commits](JuliaSmoothOptimizers/Krylov.jl@v0.1...v0.10.8)

Updates `KrylovPreconditioners` to 0.3.8
- [Release notes](https://github.com/JuliaSmoothOptimizers/KrylovPreconditioners.jl/releases)
- [Commits](JuliaSmoothOptimizers/KrylovPreconditioners.jl@v0.1.0...v0.3.8)

Updates `OrdinaryDiffEqSSPRK` to 2.1.1
- [Release notes](https://github.com/SciML/OrdinaryDiffEq.jl/releases)
- [Changelog](https://github.com/SciML/OrdinaryDiffEq.jl/blob/master/NEWS.md)
- [Commits](SciML/OrdinaryDiffEq.jl@OrdinaryDiffEqSSPRK-v1.1.0...OrdinaryDiffEqSSPRK-v2.1.1)

Updates `OffsetArrays` to 1.17.0
- [Release notes](https://github.com/JuliaArrays/OffsetArrays.jl/releases)
- [Commits](JuliaArrays/OffsetArrays.jl@v0.1.0...v1.17.0)

Updates `DifferentiationInterface` to 0.7.18
- [Release notes](https://github.com/JuliaDiff/DifferentiationInterface.jl/releases)
- [Commits](JuliaDiff/DifferentiationInterface.jl@DifferentiationInterface-v0.1.0...DifferentiationInterface-v0.7.18)

Updates `OrdinaryDiffEqSDIRK` to 2.7.1
- [Release notes](https://github.com/SciML/OrdinaryDiffEq.jl/releases)
- [Changelog](https://github.com/SciML/OrdinaryDiffEq.jl/blob/master/NEWS.md)
- [Commits](SciML/OrdinaryDiffEq.jl@OrdinaryDiffEqSDIRK-v1.1.0...OrdinaryDiffEqSDIRK-v2.7.1)

Updates `CairoMakie` to 0.15.13
- [Release notes](https://github.com/MakieOrg/Makie.jl/releases)
- [Changelog](https://github.com/MakieOrg/Makie.jl/blob/master/CHANGELOG.md)
- [Commits](https://github.com/MakieOrg/Makie.jl/commits)

Updates `SummationByPartsOperators` to 0.5.96
- [Release notes](https://github.com/ranocha/SummationByPartsOperators.jl/releases)
- [Changelog](https://github.com/ranocha/SummationByPartsOperators.jl/blob/main/NEWS.md)
- [Commits](ranocha/SummationByPartsOperators.jl@v0.0.1...v0.5.96)

Updates `Ariadne` to 0.1.2
- [Release notes](https://github.com/NumericalMathematics/Ariadne.jl/releases)
- [Commits](v0.1.0...v0.1.2)

Updates `Theseus` to 0.1.6
- [Release notes](https://github.com/NumericalMathematics/Ariadne.jl/releases)
- [Commits](Theseus-v0.1.0...Theseus-v0.1.6)

Updates `KernelAbstractions` to 0.9.42
- [Release notes](https://github.com/JuliaGPU/KernelAbstractions.jl/releases)
- [Commits](JuliaGPU/KernelAbstractions.jl@v0.1.0...v0.9.42)

Updates `OrdinaryDiffEqLowStorageRK` to 3.1.1
- [Release notes](https://github.com/SciML/OrdinaryDiffEq.jl/releases)
- [Changelog](https://github.com/SciML/OrdinaryDiffEq.jl/blob/master/NEWS.md)
- [Commits](SciML/OrdinaryDiffEq.jl@OrdinaryDiffEqLowStorageRK-v1.0.0...OrdinaryDiffEqLowStorageRK-v3.1.1)

Updates `Observables` to 0.5.5
- [Release notes](https://github.com/JuliaGizmos/Observables.jl/releases)
- [Commits](JuliaGizmos/Observables.jl@v0.0.1...v0.5.5)

Updates `Enzyme` to 0.13.176
- [Release notes](https://github.com/EnzymeAD/Enzyme.jl/releases)
- [Commits](EnzymeAD/Enzyme.jl@v0.1.0...v0.13.176)

Updates `Ariadne` to 0.1.2
- [Release notes](https://github.com/NumericalMathematics/Ariadne.jl/releases)
- [Commits](v0.1.0...v0.1.2)

---
updated-dependencies:
- dependency-name: Krylov
  dependency-version: 0.10.8
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: KrylovPreconditioners
  dependency-version: 0.3.8
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: Documenter
  dependency-version: 1.17.0
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: OrdinaryDiffEqSSPRK
  dependency-version: 2.1.1
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: OffsetArrays
  dependency-version: 1.17.0
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: DifferentiationInterface
  dependency-version: 0.7.18
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: Literate
  dependency-version: 2.21.0
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: OrdinaryDiffEqSDIRK
  dependency-version: 2.7.1
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: CairoMakie
  dependency-version: 0.15.13
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: DocumenterCitations
  dependency-version: 1.4.1
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: PlutoStaticHTML
  dependency-version: 8.0.0
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: SummationByPartsOperators
  dependency-version: 0.5.96
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: Ariadne
  dependency-version: 0.1.2
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: Theseus
  dependency-version: 0.1.6
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: KernelAbstractions
  dependency-version: 0.9.42
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: OrdinaryDiffEqLowStorageRK
  dependency-version: 3.1.1
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: Enzyme
  dependency-version: 0.13.176
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: Krylov
  dependency-version: 0.10.8
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: KrylovPreconditioners
  dependency-version: 0.3.8
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: OrdinaryDiffEqSSPRK
  dependency-version: 2.1.1
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: OffsetArrays
  dependency-version: 1.17.0
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: DifferentiationInterface
  dependency-version: 0.7.18
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: OrdinaryDiffEqSDIRK
  dependency-version: 2.7.1
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: CairoMakie
  dependency-version: 0.15.13
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: SummationByPartsOperators
  dependency-version: 0.5.96
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: Ariadne
  dependency-version: 0.1.2
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: Theseus
  dependency-version: 0.1.6
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: KernelAbstractions
  dependency-version: 0.9.42
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: OrdinaryDiffEqLowStorageRK
  dependency-version: 3.1.1
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: Observables
  dependency-version: 0.5.5
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: Enzyme
  dependency-version: 0.13.176
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: Ariadne
  dependency-version: 0.1.2
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file julia Pull requests that update julia code labels Jul 8, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jul 9, 2026

Copy link
Copy Markdown
Contributor Author

Superseded by #198.

@dependabot dependabot Bot closed this Jul 9, 2026
@dependabot
dependabot Bot deleted the dependabot/julia/docs/all-julia-dependencies-b1213e2f18 branch July 9, 2026 12:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file julia Pull requests that update julia code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants