Skip to content

Bump the all-julia-packages group across 3 directories with 42 updates#85

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/julia/all-julia-packages-89119d9e06
Open

Bump the all-julia-packages group across 3 directories with 42 updates#85
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/julia/all-julia-packages-89119d9e06

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 23, 2026

Updates the requirements on PreallocationTools, ChunkSplitters, DelaunayTriangulation, SciMLBase, PProf, Accessors, Documenter, Cubature, NonlinearSolve, DisplayAs, DiffEqDevTools, Sundials, BenchmarkTools, Krylov, FastGaussQuadrature, Sparspak, LinearSolve, NaturalNeighbours, Literate, StableRNGs, Roots, ReferenceTests, SimpleGraphs, SteadyStateDiffEq, CairoMakie, StatsBase, LiveServer, OrdinaryDiffEq, Cthulhu, ElasticArrays, DataInterpolations, JET, DifferentialEquations, SpecialFunctions, Bessels, FiniteVolumeMethod, ExplicitImports, StructEquality, DelimitedFiles, Aqua, PolygonOps and SparseDiffTools to permit the latest version.
Updates PreallocationTools to 1.2.0

Release notes

Sourced from PreallocationTools's releases.

v1.2.0

PreallocationTools v1.2.0

Diff since v1.1.2

Merged pull requests:

Commits
  • 1f176c7 Update Project.toml
  • 33abce7 Merge pull request #161 from ChrisRackauckas-Claude/add-warn-on-resize-option
  • 4af11b9 Add warn_on_resize option to DiffCache
  • e1b8c96 Merge pull request #160 from ChrisRackauckas-Claude/replace-buildkite-with-gha
  • 403ea39 Fix GPU test compat: allow PreallocationTools v1.x
  • ed914ff Fix GPU runner targeting: use gpu-t4 to avoid broken demeter4 drivers
  • e7a789b Replace Buildkite CI with GitHub Actions self-hosted runners
  • 8aa8a91 Merge pull request #159 from ChrisRackauckas-Claude/fix/deprecation-warnings
  • 4ebc2db Fix deprecation warnings and method overwrite warnings
  • 735765f Update Project.toml
  • Additional commits viewable in compare view

Updates ChunkSplitters to 3.2.0

Release notes

Sourced from ChunkSplitters's releases.

v3.2.0

What's Changed

Full Changelog: JuliaFolds2/ChunkSplitters.jl@v3.1.2...v3.2.0

Changelog

Sourced from ChunkSplitters's changelog.

Version 3.2.0

  • FEATURE Implement size option for split=RoundRobin().
  • INFO Improve documentation of multithreading by adding index_chunks examples.
  • INFO Drop support for Julia 1.6 (Requires 1.10.0 now).

Version 3.1.2

  • ENHANCEMENT Return a single chunk if minsize > length(collection).
  • BUGFIX Indexing chunk iterators returns out-of-bounds error if the iterator is empty now (previously returned an empty range).

Version 3.1.1

  • BUGFIX Throw an error if minsize > length(collection). Before returned an empty collection of chunks.

Version 3.1.0

  • INFO Recover support for Julia 1.6+. All tests pass from 1.9+, and an allocation test fails in 1.6.

Version 3.0.0

  • BREAKING The new lower compat bound for Julia is 1.10. This implies that support for the old LTS 1.6 has been dropped.
  • BREAKING The old main API function chunks has been renamed to index_chunks.
  • BREAKING A new function chunks has been introduced that returns an iterator that provides chunks of elements rather than chunks of indices of a given input collection. To avoid copies, it is based on view.
  • BREAKING For performance reasons, the split keyword option now requires a Split instead of a Symbol. Concretely, :batch should be replaced by Consecutive() and :scatter should be replaced by RoundRobin().
  • BREAKING The keyword argument minchunksize has been renamed to minsize.
  • BREAKING getchunk isn't public API anymore (and has, internally, been renamed to getchunkindices). If you really need a replacement, consider using index_chunks(...)[i] instead.
  • BREAKING The old legacy API that relied on positional rather than keyword arguments has been dropped.
Commits

Updates DelaunayTriangulation to 1.6.6

Release notes

Sourced from DelaunayTriangulation's releases.

v1.6.6

DelaunayTriangulation v1.6.6

Diff since v1.6.5

Merged pull requests:

Closed issues:

  • Triangulation of regular point grids produces odd patterns (#232)
  • [BUG]: Failing to calculate polygons for a voronoi plot (#234)
Changelog

Sourced from DelaunayTriangulation's changelog.

Changelog

1.6.5

  • Clarified the counter-clockwise requirement for the clip_polygon argument in voronoi. See #230.
  • Reduced spam during package tests. @info statements are now only shown on a failed test, and are now shown in the Context output of the failed test. See #231.
  • Removed docstrings on some methods that extended Base functions for internal use only. You can still find documentation on them by going to the method location and viewing the commented-out docstring. See #231.

1.6.4

  • An error is no longer thrown for inputs with duplicate points. Instead, a warning is thrown and any duplicates are merged into the skip_points keyword argument. With this, DuplicatePointsError has been removed. To silence the new warning, use DelaunayTriangulation.toggle_warn_on_dupes!().

1.6.1

  • Fix issue with clipping Voronoi tessellation dual to a single right-angled triangle. See #207

1.6.0

  • Define reverse for AbstractParametricCurves, making it easier to reverse the orientation of a curve. See #195.
  • Fixed an issue with LineSegment not returning the exact endpoints at t=1, which can be problematic when joining boundary nodes. This has been fixed. See #195.
  • Introduced is_linear to fix issues with boundary enrichment of domains with LineSegments. In particular, LineSegments are no longer enriched. See #195.
  • orientation_markers now uses uniquetol instead of unique for the final set of markers (it already did it for the intermediate markers). See #195.
  • For large Tuples, functions like eval_fnc_at_het_tuple_two_elements are problematic and allocate more than their non-type-stable counterparts. To get around this, for Tuples of length N > 32, the non-type-stable version is used. See #195.
  • Fixed issue with use_barriers when a ghost edge is selected at random during point location. See #196.
  • Introduced the (currently internal) function get_positive_curve_indices for finding curves with positive orientation in a Triangulation. See #196.
  • is_exterior_curve, is_interior_curve, num_exterior_curves, and is_disjoint are now defined based on get_positive_curve_indices rather than get_exterior_curve_indices. See #196.
  • PrecompileTools.jl is now used. See #200.
  • Introduced the (currently internal) function get_positive_curve_indices for finding curves with positive orientation in a Triangulation. #196.
  • PointLocationHistory was not marked as public. This has been fixed. See #198.
  • Fixed an issue with missing docstrings and duplicate docstrings in the documentation. See #198.
  • copy and deepcopy are now correctly implemented for PolygonTrees and PolygonHierarchys. See #199
  • Implemented copy and deepcopy for Triangulation and VoronoiTessellation. See #201.
  • Fixed a bug with Triangulations polygon_hierarchy not being correctly aliased with the polygon_hierarchy from the BoundaryEnricher, and similarly for the boundary_edge_map. See #201.
  • Implemented == for VoronoiTessellation. See #201.

1.5.0

  • Introduced the ability to reconstruct unconstrained triangulations from an existing set of points and triangles using Triangulation(points, triangles). See #192

1.4.0

  • Updated to AdaptivePredicates.jl v1.2, now allowing caches to be passed to the predicates involving incircle and orient3. These are only useful when using the AdaptiveKernel() kernel. Outside of triangulating, these caches are not passed by default, but can be provided. The functions get_incircle_cache and get_orient3_cache can be used for this purpose on a triangulation (without a triangulation, refer to AdaptivePredicate.jl's incircleadapt_cache and orient3adapt_cache). See #185.

1.3.1

  • Fix an issue with a weighted triangulation where the lifted points' convex hull was entirely coplanar. See #184

1.3.0

This release finally introduces weighted triangulations and power diagrams, and also allows for users to provide a generic convex polygon to for clipping a Voronoi tessellation instead of only the convex hull.

  • Weighted triangulations have now been implemented, as have power diagrams. The weights are also no longer restricted to Float64 type. See #180.

... (truncated)

Commits

Updates SciMLBase to 3.3.1

Release notes

Sourced from SciMLBase's releases.

v3.3.1

SciMLBase v3.3.1

Diff since v3.3.0

Merged pull requests:

Commits
  • dd56e50 Merge pull request #1321 from ChrisRackauckas-Claude/fix-rode-calculate-solut...
  • 01f0dbb Fix BoundsError in RODE calculate_solution_errors! under RecursiveArrayTools v4
  • a683691 Merge pull request #1320 from SciML/dependabot/github_actions/julia-actions/s...
  • db1b8a3 Bump julia-actions/setup-julia from 2 to 3
  • a91f0e1 Update Project.toml
  • 556fd80 Merge pull request #1317 from ChrisRackauckas-Claude/mooncake-observable-foll...
  • 2aace14 Mooncake observable AD: NonlinearSolution, vector, DAE, init param-grad
  • dddf175 Merge pull request #1314 from ChrisRackauckas-Claude/mooncake-symbolic-indexi...
  • d8e49f5 Propagate parameter gradient through observable indexing rrule
  • 2a90d97 Enable Mooncake test for ODE observable autodiff
  • Additional commits viewable in compare view

Updates PProf to 3.2.0

Release notes

Sourced from PProf's releases.

v3.2.0

PProf v3.2.0

Diff since v3.1.3

Merged pull requests:

Closed issues:

  • profile.pb.gz: malformed profile: found location with reserved id=0 (#93)
Commits

Updates Accessors to 0.1.44

Release notes

Sourced from Accessors's releases.

v0.1.44

Accessors v0.1.44

Diff since v0.1.43

Commits
  • 9ff5a93 bump
  • 5734038 set(sort) preserves altype
  • db112cb setindex with Colon preserves eltype
  • 4603471 avoid splatting whenever possible
  • 45c7a9a optimize getall/setall
  • 4e3d9e5 Add delete with Elements optic (#206)
  • 2bbc797 add PropertyLensRuntime, fix #145
  • 4d56a02 use ComposedFunction instead of ComposedOptic everywhere
  • 6313692 Add delete method for IndexLens on strings (fixes #199)
  • 18e9ddb remove obsolete filter from CI and fix tests on Julia 1.12 (#202)
  • Additional commits viewable in compare view

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 Cubature to 1.5.1

Release notes

Sourced from Cubature's releases.

v1.5.1

Cubature v1.5.1

Diff since v1.5.0

Closed issues:

  • Error: Error building Cubature (#50)
Commits

Updates NonlinearSolve to 4.18.0

Release notes

Sourced from NonlinearSolve's releases.

v4.18.0

NonlinearSolve v4.18.0

Diff since v4.17.1

Merged pull requests:

Closed issues:

  • Bug: NLsolveJL + SIAMFANLEquationsJL allocate a dense Jacobian for Anderson Acceleration (#862)
Commits
  • 1e29383 Update Project.toml
  • 560065e Avoid dense N×N Jacobian allocation for Anderson (#862)
  • 45df1fe Bump julia-actions/setup-julia from 2 to 3
  • 3085852 Fix GPU/runic failures after rebase
  • ee27a90 Use ArrayInterface.promote_eltype instead of similar for VdT
  • 6c5e3b6 Skip FWW wrapping for Dual-eltype u0
  • aa6aee3 Drop Float64 gates — wrap any IIP array state and unwrap for dual inner solve
  • 6b5a2f3 Restore Vector{Float64} gate in maybe_wrap_nonlinear_f
  • 65ab959 Drop Vector{Float64} specialization in NonlinearSolveBase tag stamping
  • 47ac273 Bump version from 1.12.1 to 1.13.0
  • Additional commits viewable in compare view

Updates DisplayAs to 0.1.6

Release notes

Sourced from DisplayAs's releases.

v0.1.6

DisplayAs v0.1.6

Diff since v0.1.5

Merged pull requests:

Commits

Updates DiffEqDevTools to 3.0.0

Changelog

Sourced from DiffEqDevTools's changelog.

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.
  • Generality beyond ForwardDiff. chunk_size, diff_type, standardtag, etc. encoded ForwardDiff-specific or FiniteDiff-specific knobs on every solver. They are replaced by the ADTypes interface (AutoForwardDiff, AutoFiniteDiff, AutoEnzyme, AutoZygote, …) so every solver automatically generalizes to any AD backend.
  • Controller is now an object, not a pile of solve kwargs. gamma, beta1, beta2, qmin, qmax, qsteady_min, qsteady_max, qoldinit were moved onto concrete PIController / PIDController / IController / PredictiveController structs, and EEst moved to the controller cache. This is prep work for pluggable controllers and removes a large amount of dead state from the integrator struct.
  • Cleanup of old re-exports / deprecations. Functions like has_destats (now has_stats), sol.destats (now sol.stats), DEAlgorithm/DEProblem/DESolution abstract types, tuples()/intervals(), QuadratureProblem, fastpow, concrete_solve, etc. were on a deprecation path for one or more minor releases. v7 removes them.

Recommended upgrade path

The cleanest path is not to jump straight from an old environment onto v7. Most renamed APIs (e.g. DEAlgorithmAbstractDEAlgorithm, u_modified!derivative_discontinuity!, has_destatshas_stats, sol.destatssol.stats, the construct* tableau functions, alias_u0/alias_du0, beta1/beta2, PID kwargs) already exist under their new names in SciMLBase v2 / OrdinaryDiffEq v6 with deprecation warnings. The recommended sequence is:

  1. Stay on SciMLBase v2 / OrdinaryDiffEq v6. Update your code to the new names (has_stats, sol.stats, AbstractDEAlgorithm, derivative_discontinuity!, ODEAliasSpecifier, ODEVerbosity, ADTypes-based autodiff, explicit controller = … objects, new tableau names) while the deprecation shims still exist.
  2. Verify your tests pass on v6 with no deprecation warnings.
  3. Then bump to v7. At this point your code should compile and run against v7 without further changes aside from the genuinely new breakage (RAT v4 array semantics, ensemble prob_func/output_func signature, struct type parameter removals, kwargs that truly no longer exist, default changes like CheckInit and williamson_condition=false).

Doing it in two steps keeps the diff small per step and lets the deprecation warnings on v6 point you at the exact call sites that will break on v7.

Fallback for RAT v4 indexing

If you cannot update sol[i] / length(sol) / eachindex(sol) call sites yet (see the RAT v4 table below), you can opt back into v3 semantics on a per-solution basis by converting the container type to the ragged variant:

using RecursiveArrayToolsRaggedArrays
sol_old = RaggedVectorOfArray(sol)   # indexes like v3: sol_old[i] is the i-th timestep

RecursiveArrayToolsRaggedArrays.jl preserves the previous AbstractVectorOfArray indexing behavior (timestep-first, not element-first). This is the escape hatch for code that assumes sol[i] returns the i-th timestep. It is, however, recommended that you update to the sol.u[i] / sol[:, i] style — the ragged wrapper is a compatibility layer, not the canonical API going forward.


RecursiveArrayTools v4

ODESolution is now an AbstractArray

AbstractVectorOfArray (the parent type of ODESolution, RODESolution, DAESolution, etc.) now subtypes AbstractArray. This changes the semantics of several common operations:

Operation v3 (old) v4 (new) Migration
sol[i] Returns i-th timestep (Vector) Returns i-th scalar element (column-major) Use sol.u[i] or sol[:, i]
length(sol) Number of timesteps prod(size(sol)) (total elements) Use length(sol.t) or length(sol.u)
eachindex(sol) 1:nsteps CartesianIndices(size(sol)) Use eachindex(sol.u)
iterate(sol) Iterates over timesteps Iterates over scalar elements Use for u in sol.u
first(sol) / last(sol) First/last timestep First/last scalar element Use first(sol.u) / last(sol.u)

... (truncated)

Commits
  • 8c2148f tests through data arrays pass
  • a810720 fix interpolations
  • 8da638b move integrators back
  • f050aee fix ssprk
  • 09335aa fix symplectic and rkn to new syntax
  • 5dc79c4 update test problems to new syntax
  • 9c37d3c bug catching in the ESDIRK me...

    Description has been truncated

Updates the requirements on [PreallocationTools](https://github.com/SciML/PreallocationTools.jl), [ChunkSplitters](https://github.com/JuliaFolds2/ChunkSplitters.jl), [DelaunayTriangulation](https://github.com/JuliaGeometry/DelaunayTriangulation.jl), [SciMLBase](https://github.com/SciML/SciMLBase.jl), [PProf](https://github.com/JuliaPerf/PProf.jl), [Accessors](https://github.com/JuliaObjects/Accessors.jl), [Documenter](https://github.com/JuliaDocs/Documenter.jl), [Cubature](https://github.com/JuliaMath/Cubature.jl), [NonlinearSolve](https://github.com/SciML/NonlinearSolve.jl), [DisplayAs](https://github.com/tkf/DisplayAs.jl), [DiffEqDevTools](https://github.com/SciML/OrdinaryDiffEq.jl), [Sundials](https://github.com/SciML/Sundials.jl), [BenchmarkTools](https://github.com/JuliaCI/BenchmarkTools.jl), [Krylov](https://github.com/JuliaSmoothOptimizers/Krylov.jl), [FastGaussQuadrature](https://github.com/JuliaApproximation/FastGaussQuadrature.jl), [Sparspak](https://github.com/PetrKryslUCSD/Sparspak.jl), [LinearSolve](https://github.com/SciML/LinearSolve.jl), [NaturalNeighbours](https://github.com/DanielVandH/NaturalNeighbours.jl), [Literate](https://github.com/fredrikekre/Literate.jl), [StableRNGs](https://github.com/JuliaRandom/StableRNGs.jl), [Roots](https://github.com/JuliaMath/Roots.jl), [ReferenceTests](https://github.com/JuliaTesting/ReferenceTests.jl), [SimpleGraphs](https://github.com/scheinerman/SimpleGraphs.jl), [SteadyStateDiffEq](https://github.com/SciML/SteadyStateDiffEq.jl), [CairoMakie](https://github.com/MakieOrg/Makie.jl), [StatsBase](https://github.com/JuliaStats/StatsBase.jl), [LiveServer](https://github.com/JuliaDocs/LiveServer.jl), [OrdinaryDiffEq](https://github.com/SciML/OrdinaryDiffEq.jl), [Cthulhu](https://github.com/JuliaDebug/Cthulhu.jl), [ElasticArrays](https://github.com/JuliaArrays/ElasticArrays.jl), [DataInterpolations](https://github.com/SciML/DataInterpolations.jl), [JET](https://github.com/aviatesk/JET.jl), [DifferentialEquations](https://github.com/SciML/DifferentialEquations.jl), [SpecialFunctions](https://github.com/JuliaMath/SpecialFunctions.jl), [Bessels](https://github.com/JuliaMath/Bessels.jl), [FiniteVolumeMethod](https://github.com/SciML/FiniteVolumeMethod.jl), [ExplicitImports](https://github.com/JuliaTesting/ExplicitImports.jl), [StructEquality](https://github.com/jolin-io/StructEquality.jl), [DelimitedFiles](https://github.com/JuliaData/DelimitedFiles.jl), [Aqua](https://github.com/JuliaTesting/Aqua.jl), [PolygonOps](https://github.com/JuliaGeometry/PolygonOps.jl) and [SparseDiffTools](https://github.com/JuliaDiff/SparseDiffTools.jl) to permit the latest version.

Updates `PreallocationTools` to 1.2.0
- [Release notes](https://github.com/SciML/PreallocationTools.jl/releases)
- [Commits](SciML/PreallocationTools.jl@v0.4.0...v1.2.0)

Updates `ChunkSplitters` to 3.2.0
- [Release notes](https://github.com/JuliaFolds2/ChunkSplitters.jl/releases)
- [Changelog](https://github.com/JuliaFolds2/ChunkSplitters.jl/blob/main/CHANGELOG.md)
- [Commits](https://github.com/JuliaFolds2/ChunkSplitters.jl/commits/v3.2.0)

Updates `DelaunayTriangulation` to 1.6.6
- [Release notes](https://github.com/JuliaGeometry/DelaunayTriangulation.jl/releases)
- [Changelog](https://github.com/JuliaGeometry/DelaunayTriangulation.jl/blob/main/NEWS.md)
- [Commits](JuliaGeometry/DelaunayTriangulation.jl@v0.1.1...v1.6.6)

Updates `SciMLBase` to 3.3.1
- [Release notes](https://github.com/SciML/SciMLBase.jl/releases)
- [Commits](SciML/SciMLBase.jl@v1.0.0...v3.3.1)

Updates `PProf` to 3.2.0
- [Release notes](https://github.com/JuliaPerf/PProf.jl/releases)
- [Commits](JuliaPerf/PProf.jl@v0.1.0...v3.2.0)

Updates `Accessors` to 0.1.44
- [Release notes](https://github.com/JuliaObjects/Accessors.jl/releases)
- [Commits](JuliaObjects/Accessors.jl@v0.1.0...v0.1.44)

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 `Cubature` to 1.5.1
- [Release notes](https://github.com/JuliaMath/Cubature.jl/releases)
- [Commits](JuliaMath/Cubature.jl@v1.0.2...v1.5.1)

Updates `NonlinearSolve` to 4.18.0
- [Release notes](https://github.com/SciML/NonlinearSolve.jl/releases)
- [Commits](SciML/NonlinearSolve.jl@SimpleNonlinearSolve-v0.1.0...v4.18.0)

Updates `DisplayAs` to 0.1.6
- [Release notes](https://github.com/tkf/DisplayAs.jl/releases)
- [Commits](tkf/DisplayAs.jl@v0.1.0...v0.1.6)

Updates `DiffEqDevTools` to 3.0.0
- [Release notes](https://github.com/SciML/OrdinaryDiffEq.jl/releases)
- [Changelog](https://github.com/SciML/OrdinaryDiffEq.jl/blob/master/NEWS.md)
- [Commits](SciML/OrdinaryDiffEq.jl@v0.0.1...v3.0.0)

Updates `Sundials` to 5.3.0
- [Release notes](https://github.com/SciML/Sundials.jl/releases)
- [Changelog](https://github.com/SciML/Sundials.jl/blob/master/NEWS.md)
- [Commits](SciML/Sundials.jl@v0.1.1...v5.3.0)

Updates `BenchmarkTools` to 1.8.0
- [Release notes](https://github.com/JuliaCI/BenchmarkTools.jl/releases)
- [Commits](JuliaCI/BenchmarkTools.jl@v0.0.1...v1.8.0)

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 `FastGaussQuadrature` to 1.1.0
- [Release notes](https://github.com/JuliaApproximation/FastGaussQuadrature.jl/releases)
- [Commits](JuliaApproximation/FastGaussQuadrature.jl@v0.0.1...v1.1.0)

Updates `Sparspak` to 0.3.14
- [Release notes](https://github.com/PetrKryslUCSD/Sparspak.jl/releases)
- [Commits](PetrKryslUCSD/Sparspak.jl@v0.1.0...v0.3.14)

Updates `LinearSolve` to 3.75.0
- [Release notes](https://github.com/SciML/LinearSolve.jl/releases)
- [Commits](SciML/LinearSolve.jl@v0.1.0...v3.75.0)

Updates `NaturalNeighbours` to 1.3.6
- [Release notes](https://github.com/DanielVandH/NaturalNeighbours.jl/releases)
- [Commits](DanielVandH/NaturalNeighbours.jl@v1.0.0...v1.3.6)

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 `StableRNGs` to 1.0.4
- [Release notes](https://github.com/JuliaRandom/StableRNGs.jl/releases)
- [Commits](JuliaRandom/StableRNGs.jl@v0.1.0...v1.0.4)

Updates `Roots` to 3.0.0
- [Release notes](https://github.com/JuliaMath/Roots.jl/releases)
- [Changelog](https://github.com/JuliaMath/Roots.jl/blob/master/NEWS.md)
- [Commits](JuliaMath/Roots.jl@v0.1.1...v3.0.0)

Updates `ReferenceTests` to 0.10.6
- [Release notes](https://github.com/JuliaTesting/ReferenceTests.jl/releases)
- [Commits](https://github.com/JuliaTesting/ReferenceTests.jl/commits)

Updates `SimpleGraphs` to 0.8.9
- [Release notes](https://github.com/scheinerman/SimpleGraphs.jl/releases)
- [Commits](https://github.com/scheinerman/SimpleGraphs.jl/commits)

Updates `SteadyStateDiffEq` to 2.10.0
- [Release notes](https://github.com/SciML/SteadyStateDiffEq.jl/releases)
- [Commits](SciML/SteadyStateDiffEq.jl@v0.0.1...v2.10.0)

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 `StatsBase` to 0.34.10
- [Release notes](https://github.com/JuliaStats/StatsBase.jl/releases)
- [Commits](JuliaStats/StatsBase.jl@0.2.3...v0.34.10)

Updates `LiveServer` to 1.5.0
- [Release notes](https://github.com/JuliaDocs/LiveServer.jl/releases)
- [Commits](JuliaDocs/LiveServer.jl@v0.1.0...v1.5.0)

Updates `OrdinaryDiffEq` to 6.111.0
- [Release notes](https://github.com/SciML/OrdinaryDiffEq.jl/releases)
- [Changelog](https://github.com/SciML/OrdinaryDiffEq.jl/blob/master/NEWS.md)
- [Commits](SciML/OrdinaryDiffEq.jl@v0.0.1...v6.111.0)

Updates `Cthulhu` to 3.0.2
- [Release notes](https://github.com/JuliaDebug/Cthulhu.jl/releases)
- [Changelog](https://github.com/JuliaDebug/Cthulhu.jl/blob/master/CHANGELOG.md)
- [Commits](JuliaDebug/Cthulhu.jl@v0.1.0...v3.0.2)

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

Updates `DataInterpolations` to 8.10.0
- [Release notes](https://github.com/SciML/DataInterpolations.jl/releases)
- [Changelog](https://github.com/SciML/DataInterpolations.jl/blob/master/NEWS.md)
- [Commits](SciML/DataInterpolations.jl@v0.0.1...v8.10.0)

Updates `JET` to 0.11.3
- [Release notes](https://github.com/aviatesk/JET.jl/releases)
- [Changelog](https://github.com/aviatesk/JET.jl/blob/master/CHANGELOG.md)
- [Commits](aviatesk/JET.jl@v0.0.1...v0.11.3)

Updates `DifferentialEquations` to 7.17.0
- [Release notes](https://github.com/SciML/DifferentialEquations.jl/releases)
- [Changelog](https://github.com/SciML/DifferentialEquations.jl/blob/master/NEWS.md)
- [Commits](SciML/DifferentialEquations.jl@v0.0.1...v7.17.0)

Updates `SpecialFunctions` to 2.7.2
- [Release notes](https://github.com/JuliaMath/SpecialFunctions.jl/releases)
- [Commits](JuliaMath/SpecialFunctions.jl@v0.0.1...v2.7.2)

Updates `Bessels` to 0.2.8
- [Release notes](https://github.com/JuliaMath/Bessels.jl/releases)
- [Changelog](https://github.com/JuliaMath/Bessels.jl/blob/master/NEWS.md)
- [Commits](JuliaMath/Bessels.jl@v0.1.0...v0.2.8)

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

Updates `DelaunayTriangulation` to 1.6.6
- [Release notes](https://github.com/JuliaGeometry/DelaunayTriangulation.jl/releases)
- [Changelog](https://github.com/JuliaGeometry/DelaunayTriangulation.jl/blob/main/NEWS.md)
- [Commits](JuliaGeometry/DelaunayTriangulation.jl@v0.1.1...v1.6.6)

Updates `Accessors` to 0.1.44
- [Release notes](https://github.com/JuliaObjects/Accessors.jl/releases)
- [Commits](JuliaObjects/Accessors.jl@v0.1.0...v0.1.44)

Updates `Cubature` to 1.5.1
- [Release notes](https://github.com/JuliaMath/Cubature.jl/releases)
- [Commits](JuliaMath/Cubature.jl@v1.0.2...v1.5.1)

Updates `NonlinearSolve` to 4.18.0
- [Release notes](https://github.com/SciML/NonlinearSolve.jl/releases)
- [Commits](SciML/NonlinearSolve.jl@SimpleNonlinearSolve-v0.1.0...v4.18.0)

Updates `DisplayAs` to 0.1.6
- [Release notes](https://github.com/tkf/DisplayAs.jl/releases)
- [Commits](tkf/DisplayAs.jl@v0.1.0...v0.1.6)

Updates `BenchmarkTools` to 1.8.0
- [Release notes](https://github.com/JuliaCI/BenchmarkTools.jl/releases)
- [Commits](JuliaCI/BenchmarkTools.jl@v0.0.1...v1.8.0)

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 `FastGaussQuadrature` to 1.1.0
- [Release notes](https://github.com/JuliaApproximation/FastGaussQuadrature.jl/releases)
- [Commits](JuliaApproximation/FastGaussQuadrature.jl@v0.0.1...v1.1.0)

Updates `LinearSolve` to 3.75.0
- [Release notes](https://github.com/SciML/LinearSolve.jl/releases)
- [Commits](SciML/LinearSolve.jl@v0.1.0...v3.75.0)

Updates `NaturalNeighbours` to 1.3.6
- [Release notes](https://github.com/DanielVandH/NaturalNeighbours.jl/releases)
- [Commits](DanielVandH/NaturalNeighbours.jl@v1.0.0...v1.3.6)

Updates `StableRNGs` to 1.0.4
- [Release notes](https://github.com/JuliaRandom/StableRNGs.jl/releases)
- [Commits](JuliaRandom/StableRNGs.jl@v0.1.0...v1.0.4)

Updates `Roots` to 3.0.0
- [Release notes](https://github.com/JuliaMath/Roots.jl/releases)
- [Changelog](https://github.com/JuliaMath/Roots.jl/blob/master/NEWS.md)
- [Commits](JuliaMath/Roots.jl@v0.1.1...v3.0.0)

Updates `ReferenceTests` to 0.10.6
- [Release notes](https://github.com/JuliaTesting/ReferenceTests.jl/releases)
- [Commits](https://github.com/JuliaTesting/ReferenceTests.jl/commits)

Updates `SimpleGraphs` to 0.8.9
- [Release notes](https://github.com/scheinerman/SimpleGraphs.jl/releases)
- [Commits](https://github.com/scheinerman/SimpleGraphs.jl/commits)

Updates `SteadyStateDiffEq` to 2.10.0
- [Release notes](https://github.com/SciML/SteadyStateDiffEq.jl/releases)
- [Commits](SciML/SteadyStateDiffEq.jl@v0.0.1...v2.10.0)

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 `StatsBase` to 0.34.10
- [Release notes](https://github.com/JuliaStats/StatsBase.jl/releases)
- [Commits](JuliaStats/StatsBase.jl@0.2.3...v0.34.10)

Updates `OrdinaryDiffEq` to 6.111.0
- [Release notes](https://github.com/SciML/OrdinaryDiffEq.jl/releases)
- [Changelog](https://github.com/SciML/OrdinaryDiffEq.jl/blob/master/NEWS.md)
- [Commits](SciML/OrdinaryDiffEq.jl@v0.0.1...v6.111.0)

Updates `Cthulhu` to 3.0.2
- [Release notes](https://github.com/JuliaDebug/Cthulhu.jl/releases)
- [Changelog](https://github.com/JuliaDebug/Cthulhu.jl/blob/master/CHANGELOG.md)
- [Commits](JuliaDebug/Cthulhu.jl@v0.1.0...v3.0.2)

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

Updates `DataInterpolations` to 8.10.0
- [Release notes](https://github.com/SciML/DataInterpolations.jl/releases)
- [Changelog](https://github.com/SciML/DataInterpolations.jl/blob/master/NEWS.md)
- [Commits](SciML/DataInterpolations.jl@v0.0.1...v8.10.0)

Updates `JET` to 0.11.3
- [Release notes](https://github.com/aviatesk/JET.jl/releases)
- [Changelog](https://github.com/aviatesk/JET.jl/blob/master/CHANGELOG.md)
- [Commits](aviatesk/JET.jl@v0.0.1...v0.11.3)

Updates `SpecialFunctions` to 2.7.2
- [Release notes](https://github.com/JuliaMath/SpecialFunctions.jl/releases)
- [Commits](JuliaMath/SpecialFunctions.jl@v0.0.1...v2.7.2)

Updates `Bessels` to 0.2.8
- [Release notes](https://github.com/JuliaMath/Bessels.jl/releases)
- [Changelog](https://github.com/JuliaMath/Bessels.jl/blob/master/NEWS.md)
- [Commits](JuliaMath/Bessels.jl@v0.1.0...v0.2.8)

Updates `ExplicitImports` to 1.15.0
- [Release notes](https://github.com/JuliaTesting/ExplicitImports.jl/releases)
- [Commits](JuliaTesting/ExplicitImports.jl@v1.0.0...v1.15.0)

Updates `StructEquality` to 2.1.0
- [Release notes](https://github.com/jolin-io/StructEquality.jl/releases)
- [Changelog](https://github.com/jolin-io/StructEquality.jl/blob/main/CHANGELOG.md)
- [Commits](jolin-io/StructEquality.jl@v1.0.0...v2.1.0)

Updates `DelimitedFiles` to 1.9.1
- [Release notes](https://github.com/JuliaData/DelimitedFiles.jl/releases)
- [Commits](JuliaData/DelimitedFiles.jl@v1.9.0...v1.9.1)

Updates `Aqua` to 0.8.14
- [Release notes](https://github.com/JuliaTesting/Aqua.jl/releases)
- [Changelog](https://github.com/JuliaTesting/Aqua.jl/blob/master/CHANGELOG.md)
- [Commits](JuliaTesting/Aqua.jl@v0.7.0...v0.8.14)

Updates `PolygonOps` to 0.1.2
- [Release notes](https://github.com/JuliaGeometry/PolygonOps.jl/releases)
- [Commits](https://github.com/JuliaGeometry/PolygonOps.jl/commits)

Updates `SparseDiffTools` to 2.26.0
- [Release notes](https://github.com/JuliaDiff/SparseDiffTools.jl/releases)
- [Commits](JuliaDiff/SparseDiffTools.jl@v0.1.0...v2.26.0)

---
updated-dependencies:
- dependency-name: PreallocationTools
  dependency-version: 1.2.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: ChunkSplitters
  dependency-version: 3.2.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: DelaunayTriangulation
  dependency-version: 1.6.6
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: SciMLBase
  dependency-version: 3.3.1
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: PProf
  dependency-version: 3.2.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Accessors
  dependency-version: 0.1.44
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Documenter
  dependency-version: 1.17.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Cubature
  dependency-version: 1.5.1
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: NonlinearSolve
  dependency-version: 4.18.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: DisplayAs
  dependency-version: 0.1.6
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: DiffEqDevTools
  dependency-version: 3.0.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Sundials
  dependency-version: 5.3.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: BenchmarkTools
  dependency-version: 1.8.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Krylov
  dependency-version: 0.10.6
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: FastGaussQuadrature
  dependency-version: 1.1.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Sparspak
  dependency-version: 0.3.14
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: LinearSolve
  dependency-version: 3.75.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: NaturalNeighbours
  dependency-version: 1.3.6
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Literate
  dependency-version: 2.21.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: StableRNGs
  dependency-version: 1.0.4
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Roots
  dependency-version: 3.0.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: ReferenceTests
  dependency-version: 0.10.6
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: SimpleGraphs
  dependency-version: 0.8.9
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: SteadyStateDiffEq
  dependency-version: 2.10.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: CairoMakie
  dependency-version: 0.15.9
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: StatsBase
  dependency-version: 0.34.10
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: LiveServer
  dependency-version: 1.5.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: OrdinaryDiffEq
  dependency-version: 6.111.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Cthulhu
  dependency-version: 3.0.2
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: ElasticArrays
  dependency-version: 1.2.12
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: DataInterpolations
  dependency-version: 8.10.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: JET
  dependency-version: 0.11.3
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: DifferentialEquations
  dependency-version: 7.17.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: SpecialFunctions
  dependency-version: 2.7.2
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Bessels
  dependency-version: 0.2.8
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: FiniteVolumeMethod
  dependency-version: 1.2.1
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: DelaunayTriangulation
  dependency-version: 1.6.6
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Accessors
  dependency-version: 0.1.44
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Cubature
  dependency-version: 1.5.1
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: NonlinearSolve
  dependency-version: 4.18.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: DisplayAs
  dependency-version: 0.1.6
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: BenchmarkTools
  dependency-version: 1.8.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Krylov
  dependency-version: 0.10.6
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: FastGaussQuadrature
  dependency-version: 1.1.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: LinearSolve
  dependency-version: 3.75.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: NaturalNeighbours
  dependency-version: 1.3.6
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: StableRNGs
  dependency-version: 1.0.4
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Roots
  dependency-version: 3.0.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: ReferenceTests
  dependency-version: 0.10.6
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: SimpleGraphs
  dependency-version: 0.8.9
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: SteadyStateDiffEq
  dependency-version: 2.10.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: CairoMakie
  dependency-version: 0.15.9
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: StatsBase
  dependency-version: 0.34.10
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: OrdinaryDiffEq
  dependency-version: 6.111.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Cthulhu
  dependency-version: 3.0.2
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: ElasticArrays
  dependency-version: 1.2.12
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: DataInterpolations
  dependency-version: 8.10.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: JET
  dependency-version: 0.11.3
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: SpecialFunctions
  dependency-version: 2.7.2
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Bessels
  dependency-version: 0.2.8
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: ExplicitImports
  dependency-version: 1.15.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: StructEquality
  dependency-version: 2.1.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: DelimitedFiles
  dependency-version: 1.9.1
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Aqua
  dependency-version: 0.8.14
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: PolygonOps
  dependency-version: 0.1.2
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: SparseDiffTools
  dependency-version: 2.26.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
...

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 Apr 23, 2026
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