Skip to content

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

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

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

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 9, 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.0

Release notes

Sourced from SciMLBase's releases.

v3.3.0

SciMLBase v3.3.0

Diff since v3.2.0

Merged pull requests:

Closed issues:

  • Remaining Mooncake SymbolicIndexingInterface AD gaps (#1316)
Commits
  • 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
  • 480674f Add Mooncake rrules for symbolic indexing of solutions
  • 22ed166 Bump version from 3.1.0 to 3.2.0
  • 8569c5c Merge pull request #1214 from ChrisRackauckas-Claude/mooncake-tmap-responsibl...
  • 154b9dd Merge pull request #1315 from ChrisRackauckas-Claude/cc/unbreak-master-ci-aft...
  • 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.17.1

Release notes

Sourced from NonlinearSolve's releases.

v4.17.1

NonlinearSolve v4.17.1

Diff since v4.17.0

Merged pull requests:

Closed issues:

  • NonlinearSolveFirstOrder.jl v2.1.0 is incompatible with NonlinearSolveBase.jl v2.11.2 (#893)
Commits
  • f2b526a Bump patch versions for SciMLBase v3 compat release
  • 0f6a7a4 Bump SciMLBase compat to include v3 and RecursiveArrayTools to include v4
  • 7dc28f3 Update Project.toml
  • ff2f38e Guard JacobianCache callable for empty u, add empty u0 tests
  • 6a304a4 Handle empty u in construct_jacobian_cache
  • b0902e3 Bump NonlinearSolveBase compat lower bound to 2.20
  • 8843054 bump minor versions for release
  • 958ce24 Accept any parameter type in AutoSpecialize wrapping
  • 3865118 bump minor versions for release
  • f47d870 bump SciMLBase lower bound to 2.154 for FWW v1 compat
  • 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 2.53.0

Commits

Updates Sundials to 5.1.0

Release notes

Sourced from Sundials's releases.

v5.1.0

Sundials v5.1.0

Diff since v5.0.0

Changelog

Sourced from Sundials's changelog.

Sundials.jl NEWS

v5.0.0

Breaking Changes

Upgrade to Sundials v7

This release updates the underlying Sundials C library from v5 to v7, which introduces significant API changes. This is a breaking change for users directly using the low-level Sundials API.

Key Changes:

  1. SUNContext requirement: All Sundials objects now require a SUNContext object for creation. This context manages the Sundials environment and must be created before any solver objects.

  2. Memory management: The new context-based approach improves thread safety and resource management.

Migration Guide for Low-Level API Users:

If you're using the low-level Sundials API directly (not through the DiffEq interface):

# Old code (v4.x) - No context needed
mem_ptr = CVodeCreate(CV_BDF)
mem = Handle(mem_ptr)
# New code (v5.0) - Context required
ctx_ptr = Ref{SUNContext}(C_NULL)
SUNContext_Create(C_NULL, Base.unsafe_convert(Ptr{SUNContext}, ctx_ptr))
ctx = ctx_ptr[]
mem_ptr = CVodeCreate(CV_BDF, ctx)  # Context passed as argument
mem = Handle(mem_ptr)
# ... use solver ...
SUNContext_Free(ctx)  # Clean up context when done

Automatic handling in high-level interface:

If you're using the standard DiffEq interface (solve(prob, CVODE_BDF())), no changes are needed. The context is automatically managed internally:

# This continues to work without changes
sol = solve(prob, CVODE_BDF())

Functions affected by context requirement:

  • All solver creation functions (CVodeCreate, ARKStepCreate, IDACreate, KINCreate)
  • All vector creation functions (N_VNew_Serial, etc.)
  • All matrix creation functions (SUNDenseMatrix, SUNBandMatrix, etc.)

... (truncated)

Commits
  • 1cff2a4 Update Project.toml
  • d77ca0f Merge pull request #506 from ChrisRackauckas-Claude/add-news-md-breaking-changes
  • e3034c5 Update NEWS.md
  • 737d4e0 Add documentation for Sundials v7 breaking changes
  • 6bfeb2a Update NEWS.md
  • 599cbc0 Update NEWS.md
  • 867df5f Update NEWS.md
  • bf3e552 Add NEWS.md documenting v5.0.0 breaking changes
  • 6473340 Merge pull request #505 from ChrisRackauckas-Claude/default-initialization-ch...
  • b700c76 Handle the defaults changes
  • Additional commits viewable in compare view

Updates BenchmarkTools to 1.8.0

Release notes

Sourced from BenchmarkTools's releases.

v1.8.0

BenchmarkTools v1.8.0

Diff since v1.7.0

Merged pull requests:

Commits
  • 4258940 v1.8.0
  • c562362 Only GC when needed. Reduce allocs from mechanics. Add PrecompileTools worklo...
  • 78bed8d Bump JuliaRegistries/TagBot from 1.24.7 to 1.25.4 (#418)
  • 87103dc v1.7.0 (#415)
  • 0eb5fed remove buildkite CI - it was just a template! (#417)
  • 77c8009 CI: Pin GitHub Actions. add Dependabot Julia support. Add versions. Add platf...
  • 55d758c Bump codecov/codecov-action from 5 to 6 (#414)
  • f52454d docs: say AbstractDict instead of Associative (#411)
  • 88d02ff use Base.blackbox to disallow LLVM from simplifying the bench loop (#413)
  • 0f4cf5b Merge pull request #410 from JuliaCI/dependabot/github_actions/actions/cache-5
  • Additional commits viewable in compare view

Updates Krylov to 0.10.6

Release notes

Sourced from Krylov's releases.

v0.10.6

...

Description has been truncated

@dependabot dependabot bot added dependencies Pull requests that update a dependency file julia Pull requests that update julia code labels Apr 9, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Apr 13, 2026

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

Updates the requirements on [PreallocationTools](https://github.com/SciML/PreallocationTools.jl), [ChunkSplitters](https://github.com/JuliaFolds2/ChunkSplitters.jl), [SciMLBase](https://github.com/SciML/SciMLBase.jl), [DelaunayTriangulation](https://github.com/JuliaGeometry/DelaunayTriangulation.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 `SciMLBase` to 3.0.0
- [Release notes](https://github.com/SciML/SciMLBase.jl/releases)
- [Commits](SciML/SciMLBase.jl@v2.0.0...v3.0.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.0.0
- [Release notes](https://github.com/SciML/SciMLBase.jl/releases)
- [Commits](SciML/SciMLBase.jl@v2.0.0...v3.0.0)

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.17.0
- [Release notes](https://github.com/SciML/NonlinearSolve.jl/releases)
- [Commits](SciML/NonlinearSolve.jl@SimpleNonlinearSolve-v0.1.0...v4.17.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 2.51.0
- [Release notes](https://github.com/SciML/OrdinaryDiffEq.jl/releases)
- [Commits](https://github.com/SciML/OrdinaryDiffEq.jl/commits)

Updates `Sundials` to 5.1.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.1.0)

Updates `BenchmarkTools` to 1.7.0
- [Release notes](https://github.com/JuliaCI/BenchmarkTools.jl/releases)
- [Commits](JuliaCI/BenchmarkTools.jl@v0.0.1...v1.7.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.72.0
- [Release notes](https://github.com/SciML/LinearSolve.jl/releases)
- [Commits](SciML/LinearSolve.jl@v0.1.0...v3.72.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 2.2.14
- [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...v2.2.14)

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.9.0
- [Release notes](https://github.com/SciML/SteadyStateDiffEq.jl/releases)
- [Commits](SciML/SteadyStateDiffEq.jl@v0.0.1...v2.9.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)
- [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.9.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.9.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.0
- [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.17.0
- [Release notes](https://github.com/SciML/NonlinearSolve.jl/releases)
- [Commits](SciML/NonlinearSolve.jl@SimpleNonlinearSolve-v0.1.0...v4.17.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.7.0
- [Release notes](https://github.com/JuliaCI/BenchmarkTools.jl/releases)
- [Commits](JuliaCI/BenchmarkTools.jl@v0.0.1...v1.7.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.72.0
- [Release notes](https://github.com/SciML/LinearSolve.jl/releases)
- [Commits](SciML/LinearSolve.jl@v0.1.0...v3.72.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 2.2.14
- [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...v2.2.14)

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.9.0
- [Release notes](https://github.com/SciML/SteadyStateDiffEq.jl/releases)
- [Commits](SciML/SteadyStateDiffEq.jl@v0.0.1...v2.9.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)
- [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.9.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.9.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: SciMLBase
  dependency-version: 3.0.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.0.0
  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.17.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: 2.51.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Sundials
  dependency-version: 5.1.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: BenchmarkTools
  dependency-version: 1.7.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.72.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: 2.2.14
  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.9.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.9.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.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: 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.17.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.7.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.72.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: 2.2.14
  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.9.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.9.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 force-pushed the dependabot/julia/all-julia-packages-29dd34ffc7 branch from f5437ed to 077c776 Compare April 17, 2026 04: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