Skip to content

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

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/julia/docs/all-julia-dependencies-f8d2b1b876
Closed

Bump the all-julia-dependencies group across 3 directories with 18 updates#99
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/julia/docs/all-julia-dependencies-f8d2b1b876

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 13, 2026

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

Release notes

Sourced from Krylov's releases.

v0.10.6

Krylov v0.10.6

Diff since v0.10.5

Merged pull requests:

Closed issues:

  • USYMLQR (#164)
  • Add a constant for the memory parameter in our metaprogramming script (#988)
  • Another lnlq NaN case (#1054)
  • Add a cross-reference for KrylovConstructor in the Krylov workspaces (#1059)
Commits
  • 0098d0d Release 0.10.6
  • 2efacb4 Refactor allocate_if function to use type parameters
  • a985192 Force inference of a type argument
  • fd72e6e [documentation] Fix the docstring of USYMLQR
  • 25a0e3f Update a badge in README.md
  • c76422d [USYMLQR] Remove support for preconditioners
  • fba8b4e [USYMLQR] Remove the option transfer_to_usymcg
  • 1e4cca0 Fix the support of complex numbers in USYMLQR
  • c2216f2 Add a function elapsed_allocation_time (#1064)
  • dd9c89d Add an implementation of USYMLQR
  • Additional commits viewable in compare view

Updates KrylovPreconditioners to 0.3.7

Release notes

Sourced from KrylovPreconditioners's releases.

v0.3.7

KrylovPreconditioners v0.3.7

Diff since v0.3.6

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

  • 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)

Fixed

... (truncated)

Commits

Updates OrdinaryDiffEqSSPRK to 1.11.0

Commits

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.16

Release notes

Sourced from DifferentiationInterface's releases.

DifferentiationInterface-v0.7.16

DifferentiationInterface DifferentiationInterface-v0.7.16

Diff since DifferentiationInterface-v0.7.15

Merged pull requests:

Closed issues:

  • Mooncake Backend doesn't handle functions with StaticArrays output (#642)
Commits
  • d96e9a0 chore(deps): bump the all-julia-packages group across 1 directory with 3 updates
  • bf17102 fix: upgrade Mooncake compat to v0.5 (#961)
  • a266e80 fix!: turn Chairmarks and JET into weakdeps (#958)
  • 8d33550 chore: bump DI to v0.7.15 (#956)
  • 5996df5 fix: overloaded_input_type for one-element vector input (#954)
  • d6b05e4 test: bypass failing Enzyme test until upstream fix (#955)
  • cd515b3 chore: bump DI + changelog (#952)
  • 07e4a54 Fix inner preparation behavior for Mooncake (#948)
  • 45fad0e fix: function shadows for higher-order Enzyme (#943)
  • 325f2b8 chore: bump DI to v0.7.13 (#946)
  • 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 1.12.0

Commits

Updates CairoMakie to 0.15.9

Commits

Updates DocumenterCitations to 1.4.1

Release notes

Sourced from DocumenterCitations's releases.

v1.4.1

DocumenterCitations v1.4.1

Diff since v1.4.0

Merged pull requests:

Changelog

Sourced from DocumenterCitations's changelog.

[Version 1.4.1][1.4.1] - 2025-08-26

Fixed

  • The LaTeX special symbol \S in a .bib file is now correctly translated to the section sign §. [#102[]]

[Version 1.4.0][1.4.0] - 2025-06-14

Added

  • The CitationBibliography plugin object now has an internal field anchor_keys that is a bijective mapping of citation keys to HTML anchor names. The anchor names are normalized versions of the citation keys that are restricted to ASCII alphanumerics, dashes (-) and underscores (_). This provides compatibility with HTML4 and additionally avoids issues with CSS selectors. It also works around restrictions of the Documenter.DOM framework that is used internally to render HTML content. [#95[]]

Fixed

  • Citation keys the contain special characters (like colons) no longer produce broken links. This is achieved by normalizing HTML anchor names to contain only alphanumeric ASCII characters, dashes, and underscores [#86[], #95[]]

[Version 1.3.7][1.3.7] - 2025-03-29

Fixed

  • Show error file paths consistently with Documenter. With Documenter < 1.10, paths in error messages are relative to the docs folder. With Documenter >= 1.10, they are relative to the current working directory [#89[]]

[Version 1.3.6][1.3.6] - 2025-03-01

Fixed

  • The format_authoryear_bibliography_reference function with article_link_doi_in_title = true would link the DOI both from the journal reference and from the title. Now, the DOI is linked from the journal when article_link_doi_in_title = false and from the title when article_link_doi_in_title = true. [#87[]]

[Version 1.3.5][1.3.5] - 2024-11-14

Fixed

  • Compatibility with BibInternals v0.3.7 [#80[], #83[]]
  • Allow LaTeX escape codes to appear at the beginning of a first name. That is, names are now un-escaped before generating name initials. [#78[], #83[]]

Internal Changes

  • The internal format_labeled_bibliography_reference function now forwards keyword arguments to the internal format_names functions. This makes it easier to customize styles, e.g., to limit the number of author before "et al." is used. [#79[]]

[Version 1.3.4][1.3.4] - 2024-09-19

Internal Changes

  • Added an article_link_doi_in_title option to the internal format_published_in and format_labeled_bibliography_reference functions. This allows custom styles to change how links appear in bibliography entries for articles. By setting the option to true, the title of the article,instead of the "published in" information, will be used as the link text for a DOI . This makes the bibliography for articles more consistent with other types or entries, but is recommended only if no entries have both a DOI and a URL. [#73[], #74[]]

... (truncated)

Commits

Updates PlutoStaticHTML to 7.0.10

Release notes

Sourced from PlutoStaticHTML's releases.

v7.0.10

PlutoStaticHTML v7.0.10

Diff since v7.0.9

Updated Pluto to version 0.20.23 (the Pluto version is pinned because this package depends on Pluto internals).

Merged pull requests:

Commits

Updates SummationByPartsOperators to 0.5.90

Release notes

Sourced from SummationByPartsOperators's releases.

v0.5.90

SummationByPartsOperators v0.5.90

Diff since v0.5.89

Merged pull requests:

Closed issues:

  • Add boundary optimized upwind SBP operators of Mattsson, Niemelä, and Winters (2026) (#396)
Changelog

Sourced from SummationByPartsOperators's changelog.

Changelog

SummationByPartsOperators.jl follows the interpretation of semantic versioning (semver) used in the Julia ecosystem. Notable changes will be documented in this file for human readability.

Changes in the v0.5 lifecycle

Deprecated

  • The (keyword) argument parallel::Union{Val{:serial}, Val{:threads}} is deprecated in favor of mode with possible values FastMode() (default), SafeMode(), and ThreadedMode()
  • The non-exported struct SumOfDerivativeOperators is deprecated in favor of LinearlyCombinedDerivativeOperators.

Breaking changes from v0.4.x to v0.5

  • Switch from British English to American English consistently, e.g., semidiscretisesemidiscretize
  • add_transpose_derivative_left! and add_transpose_derivative_right! were replaced by the more general functions mul_transpose_derivative_left! and mul_transpose_derivative_right!, which use the same interface as mul!
  • The number of nodes passed to periodic_central_derivative_operator, and periodic_derivative_operator changed from the number of visualization nodes to the number of compute nodes (= number of visualization nodes minus one), in accordance with fourier_derivative_operator
Commits

Updates Trixi to 0.15.8

Release notes

Sourced from Trixi's releases.

v0.15.8

Trixi v0.15.8

Diff since v0.15.7

Merged pull requests:

Closed issues:

  • Add regression tests to the visualization routines (#2335)
Changelog

Sourced from Trixi's changelog.

Changelog

Trixi.jl follows the interpretation of semantic versioning (semver) used in the Julia ecosystem. Notable changes will be documented in this file for human readability.

Changes in the v0.15 lifecycle

Added

  • It is now possible to use ViscousFormulationLocalDG() as the solver_parabolic for non-conforming P4estMeshes. This is useful for (locally) diffusion-dominated problems. This enables in particular adaptive mesh refinement for that solver-mesh combination (#2712).
  • Added functionality to ScalarPlotData2D allowing visualization a field provided by a user-defined scalar function (#2796).
  • Added NonIdealCompressibleEuler2D (#2768).
  • Generalization of VolumeIntegralShockCapturingHG and VolumeIntegralShockCapturingRRG to support different volume integrals on the non-stabilized and stabilized elements/cells. The generalized volume integral is called VolumeIntegralShockCapturingHGType and takes the three keyword arguments volume_integral_default, volume_integral_blend_high_order, and volume_integral_blend_low_order besides the usual indicator argument. In particular, volume_integral_default may be e.g. VolumeIntegralWeakForm or VolumeIntegralAdaptive, i.e., the non-stabilized elements/cells are no longer restricted to VolumeIntegralFluxDifferencing only (#2802).
  • Added IndicatorEntropyCorrection. When combined with VolumeIntegralAdaptive, this blends together a stabilized and non-stabilized volume integral based on the violation of a volume entropy condition. IndicatorEntropyCorrectionShockCapturingCombined additionally guides the blending by taking the maximum of the entropy correction indicator and a shock capturing indicator (#2764).
  • The second-order subcell volume integral is no longer limited to reconstruction in primitive variables. Instead, it is possible to reconstruct in custom variables, if functions cons2recon and recon2cons are provided to VolumeIntegralPureLGLFiniteVolumeO2 and VolumeIntegralShockCapturingRRG(#2817).
  • Add Legendre-Gauss basis for DGSEM and implement solver (VolumeIntegralWeakForm and SurfaceIntegralWeakForm only) support for conforming 1D & 2D TreeMeshes (#1965).
  • Extended 3D support for subcell limiting was added (#2763, #2846, #2844, #2848). In the new version, local (minimum and maximum) limiting for conservative variables (using the keyword local_twosided_variables_cons in SubcellLimiterIDP()) with P4estMesh is supported. The support was extended to nonperiodic P4estMesh{3}es. Moreover, initial support for TreeMesh{3} including positivity limiting and local limiting on periodic meshes was added.

Changes when updating to v0.15 from v0.14.x

Changed

  • Boundary conditions are now passed as a NamedTuple consistently across all mesh types, i.e., boundary conditions, which were previously passed as a Dict for the P4estMesh, T8codeMesh, and UnstructuredMesh2D mesh types have to be converted to NamedTuples. Also passing boundary conditions as a Tuple is no longer supported. This change also makes boundary_condition_default obsolete, which is why it was removed (#2761).
  • The TreeMesh, StructuredMesh as well as the hypercube constructors of P4estMesh and T8codeMesh are now non-periodic by default, i.e., you need to explicitly set the periodicity keyword argument to true to obtain periodic meshes. This change was made to be consistent with other mesh types and to avoid confusion (#2770).
  • There are no default boundary conditions anymore in SemidiscretizationHyperbolic and SemidiscretizationHyperbolicParabolic. Users now have to explicitly provide boundary conditions via the boundary_conditions keyword argument, which were periodic by default before (#2770).
  • Renamed energy_internal for NonIdealCompressibleEulerEquations1D to energy_internal_specific (#2762). This makes energy_internal for NonIdealCompressibleEulerEquations1D consistent with the rest of Trixi.jl, where energy_internal refers to the specific internal energy scaled by density.
  • Changed cons2prim(u, ::NonIdealCompressibleEulerEquations1D) so that it returns rho, v1, p. Previously, cons2prim returned V, v1, T; this functionality is now pro...

    Description has been truncated

…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/rikhuijzer/PlutoStaticHTML.jl), [SummationByPartsOperators](https://github.com/ranocha/SummationByPartsOperators.jl), [Trixi](https://github.com/trixi-framework/Trixi.jl), [Ariadne](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.6
- [Release notes](https://github.com/JuliaSmoothOptimizers/Krylov.jl/releases)
- [Commits](JuliaSmoothOptimizers/Krylov.jl@v0.1...v0.10.6)

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

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 1.11.0
- [Release notes](https://github.com/SciML/OrdinaryDiffEq.jl/releases)
- [Commits](https://github.com/SciML/OrdinaryDiffEq.jl/commits)

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.16
- [Release notes](https://github.com/JuliaDiff/DifferentiationInterface.jl/releases)
- [Commits](JuliaDiff/DifferentiationInterface.jl@DifferentiationInterface-v0.1.0...DifferentiationInterface-v0.7.16)

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 1.12.0
- [Release notes](https://github.com/SciML/OrdinaryDiffEq.jl/releases)
- [Commits](https://github.com/SciML/OrdinaryDiffEq.jl/commits)

Updates `CairoMakie` to 0.15.9
- [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 7.0.10
- [Release notes](https://github.com/rikhuijzer/PlutoStaticHTML.jl/releases)
- [Commits](rikhuijzer/PlutoStaticHTML.jl@v0.1.0...v7.0.10)

Updates `SummationByPartsOperators` to 0.5.90
- [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.90)

Updates `Trixi` to 0.15.8
- [Release notes](https://github.com/trixi-framework/Trixi.jl/releases)
- [Changelog](https://github.com/trixi-framework/Trixi.jl/blob/main/NEWS.md)
- [Commits](trixi-framework/Trixi.jl@v0.13.1...v0.15.8)

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

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

Updates `OrdinaryDiffEqLowStorageRK` to 1.12.0
- [Release notes](https://github.com/SciML/OrdinaryDiffEq.jl/releases)
- [Commits](https://github.com/SciML/OrdinaryDiffEq.jl/commits)

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

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

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

Updates `OrdinaryDiffEqSSPRK` to 1.11.0
- [Release notes](https://github.com/SciML/OrdinaryDiffEq.jl/releases)
- [Commits](https://github.com/SciML/OrdinaryDiffEq.jl/commits)

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.16
- [Release notes](https://github.com/JuliaDiff/DifferentiationInterface.jl/releases)
- [Commits](JuliaDiff/DifferentiationInterface.jl@DifferentiationInterface-v0.1.0...DifferentiationInterface-v0.7.16)

Updates `OrdinaryDiffEqSDIRK` to 1.12.0
- [Release notes](https://github.com/SciML/OrdinaryDiffEq.jl/releases)
- [Commits](https://github.com/SciML/OrdinaryDiffEq.jl/commits)

Updates `CairoMakie` to 0.15.9
- [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.90
- [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.90)

Updates `Trixi` to 0.15.8
- [Release notes](https://github.com/trixi-framework/Trixi.jl/releases)
- [Changelog](https://github.com/trixi-framework/Trixi.jl/blob/main/NEWS.md)
- [Commits](trixi-framework/Trixi.jl@v0.13.1...v0.15.8)

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

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

Updates `OrdinaryDiffEqLowStorageRK` to 1.12.0
- [Release notes](https://github.com/SciML/OrdinaryDiffEq.jl/releases)
- [Commits](https://github.com/SciML/OrdinaryDiffEq.jl/commits)

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.131
- [Release notes](https://github.com/EnzymeAD/Enzyme.jl/releases)
- [Commits](EnzymeAD/Enzyme.jl@v0.1.0...v0.13.131)

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

---
updated-dependencies:
- dependency-name: Krylov
  dependency-version: 0.10.6
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: KrylovPreconditioners
  dependency-version: 0.3.7
  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: 1.11.0
  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.16
  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: 1.12.0
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: CairoMakie
  dependency-version: 0.15.9
  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: 7.0.10
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: SummationByPartsOperators
  dependency-version: 0.5.90
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: Trixi
  dependency-version: 0.15.8
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: Ariadne
  dependency-version: 0.1.0
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: KernelAbstractions
  dependency-version: 0.9.40
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: OrdinaryDiffEqLowStorageRK
  dependency-version: 1.12.0
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: Enzyme
  dependency-version: 0.13.131
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: Krylov
  dependency-version: 0.10.6
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: KrylovPreconditioners
  dependency-version: 0.3.7
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: OrdinaryDiffEqSSPRK
  dependency-version: 1.11.0
  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.16
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: OrdinaryDiffEqSDIRK
  dependency-version: 1.12.0
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: CairoMakie
  dependency-version: 0.15.9
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: SummationByPartsOperators
  dependency-version: 0.5.90
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: Trixi
  dependency-version: 0.15.8
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: Ariadne
  dependency-version: 0.1.0
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: KernelAbstractions
  dependency-version: 0.9.40
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: OrdinaryDiffEqLowStorageRK
  dependency-version: 1.12.0
  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.131
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: Ariadne
  dependency-version: 0.1.0
  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 Mar 13, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Mar 19, 2026

Superseded by #100.

@dependabot dependabot bot closed this Mar 19, 2026
@dependabot dependabot bot deleted the dependabot/julia/docs/all-julia-dependencies-f8d2b1b876 branch March 19, 2026 12:53
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