Skip to content

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

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/julia/all-julia-packages-8f6af18237
Closed

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

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Feb 20, 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.1.2

Release notes

Sourced from PreallocationTools's releases.

v1.1.2

PreallocationTools v1.1.2

Diff since v1.1.1

Merged pull requests:

Commits
  • 735765f Update Project.toml
  • 2d4dbe5 Merge pull request #158 from ChrisRackauckas-Claude/fix/downgrade-allocation-...
  • b276e48 Mark first(u_vec) allocation tests as broken on Julia 1.10
  • 9939ff2 Fix runic formatting: add explicit return to macro
  • 6f6a72b Mark more allocation tests as broken on Julia 1.10
  • 897efe2 Fix CI failures: allocation tests on Julia 1.10 and documentation
  • 8d47807 Update Project.toml
  • edcd0b6 Merge pull request #157 from ChrisRackauckas-Claude/fix/lazybuffercache-wrapp...
  • ee573c0 Update src/PreallocationTools.jl
  • 9288560 Update src/PreallocationTools.jl
  • 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 2.139.0

Release notes

Sourced from SciMLBase's releases.

v2.139.0

SciMLBase v2.139.0

Diff since v2.138.1

Merged pull requests:

Commits
  • d907596 Bump version from 2.138.1 to 2.139.0
  • c01f19c Merge pull request #1236 from ChrisRackauckas-Claude/add-strip-solution-nonli...
  • 68f8b6b feat: add strip_solution for NonlinearSolution
  • fd29232 Merge pull request #1228 from JamesWrigley/constructor
  • 5befc3b Implement a positional argument constructor for NonlinearSolution
  • 6d8e6e1 Merge pull request #1231 from ChrisRackauckas-Claude/fix-ci-tests
  • 287dd9f Restore SCCNonlinearProblem test now that upstream fix landed
  • 9b866dc Retrigger CI (Runic failed due to runner infrastructure issue)
  • eff0b23 Fix Incompatability -> Incompatibility typo in error types
  • aa07d17 Merge pull request #1235 from tpapp/patch-1
  • 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.43

Release notes

Sourced from Accessors's releases.

v0.1.43

Accessors v0.1.43

Diff since v0.1.42

Merged pull requests:

Closed issues:

  • API to query if something is a lens/optic (#50)
  • String properties not supported (#145)
  • from Setfield to Accessors (#151)
  • obj position in argument order (#154)
  • Is Elements supposed to be working with delete? (#176)
  • Type stability and constant propagation with @​set on NamedTuple (#198)
  • @delete "abc"[2:3] doesn't work (#199)
  • Other Recursive (#200)
  • Setting values of triangular matrices also sets data above/below the diagonal (#203)
  • Chained assignments (#204)
  • @modify should throw an error when optic is missing arguments (#211)
Commits
  • 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)
  • bd91513 Update Project.toml
  • 133fd94 Merge pull request #196 from mlechu/fix-end-parsing
  • 226892e Make lower_index nicer
  • Additional commits viewable in compare view

Updates Documenter to 1.16.1

Release notes

Sourced from Documenter's releases.

v1.16.1

The changes are documented in the CHANGELOG.md file.

Diff since v1.16.0

Changelog

Sourced from Documenter's changelog.

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

Fixed

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

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

Added

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

Changed

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

Fixed

  • Modules for @example environments are now generated by eval'ing an expression, rather than invoking the Module constructor, which is not recommended. (#2683)

  • Fix handling of expandfirst entries containing slashes as path separators on Windows. (#1725, #2804)

  • Changed the header crossref step to eagerly fail when encountering a non-unique header slug. (#2668, #2787)

    This is potentially breaking and may cause some documentation builds to fail. Those previously passed but generated incorrect cross-references. You can fix this by ensuring that you have distinct headers across your markdown pages, or by using the @id syntax to give the headers unique slugs.

  • Changed CSS for the navigation "breadcrumbs" at the top of each page to avoid an issue where code blocks in there were missing spacing around them. (#1614, #2813)

  • Commit status for pull request previews publishing in GitHub Actions for out-of-repo deployment now works correctly. (#2814, #2816)

  • Fix assertions resp. errors being raised in @example, @eval, @repl blocks that are empty or contain code with syntax errors. (#2206, #2731, #2827)

Version [v1.15.0] - 2025-10-22

Changed

  • Created a warning for when the search index size is too big (500Kib). (#2423, #2753)
  • In the HTML output, the search modal can now be navigated using up and down keys. (#2761)

Other

... (truncated)

Commits
  • 55b500f Set version to 1.16.1 (#2848)
  • 56c72d8 Guide users to use workspaces when setting up Documenter (#2830)
  • a8b1479 Removed superfluous vertical space at end of @docs blocks (#2849)
  • a397e12 Fix spacing in @docs blocks; don't expand details admonition by default (...
  • 050ce55 Pass -g option to curl in linkchecker (#2842)
  • 26d0051 Build Julia HTML manual in regression tests (#2724)
  • a9af48e Set version to 1.16.0 (#2841)
  • a0665d5 Update changelog (#2840)
  • 1aecd99 Restore cd inside @eval, and add a test for it (#2837)
  • 4b6ff9d Add syntax highlight tags to docs/src/man/other-formats.md (#2838)
  • Additional commits viewable in compare view

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

Release notes

Sourced from NonlinearSolve's releases.

v4.16.0

NonlinearSolve v4.16.0

Diff since v4.15.1

Merged pull requests:

Closed issues:

  • Consider supporting bounds for NonlinearProblem resolution (#183)
  • Constrained Parameters on Nonlinear Least Squares fitting (#575)
  • Precompilation errors, likely due to #813 (#820)
Commits
  • 79cb767 Update Project.toml
  • 53e31a4 Update Project.toml
  • 911b9d9 CompatHelper: bump compat for NonlinearSolveFirstOrder to 2, (keep existing c...
  • 806d2cf CompatHelper: bump compat for NonlinearSolveFirstOrder to 2 for package docs,...
  • 6e373b5 Bump version from 1.12.0 to 2.0.0
  • e41ff6b Apply suggestion from @​ChrisRackauckas
  • 358b006 Add tutorial on bound constraints for nonlinear problems
  • b5f79df fixup! Add support for transforming bounded parameters into unbounded ones
  • f94b51b fixup! Add support for transforming bounded parameters into unbounded ones
  • 0d6d676 fixup! Add support for transforming bounded parameters into unbounded ones
  • 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.49.0

Release notes

Sourced from DiffEqDevTools's releases.

v2.49.0

DiffEqDevTools v2.49.0

Diff since v2.48.0

Merged pull requests:

Commits
  • 2d99e07 Update Project.toml
  • deca843 Merge pull request #163 from SciML/ChrisRackauckas-patch-3
  • 0068782 Increase number of trajectories from 100k to 1M for analyticalless convergence
  • 2536029 Merge pull request #162 from ChrisRackauckas-Claude/migrate-to-dependabot
  • 64bc80e Remove CompatHelper.yml (replaced by Dependabot)
  • bdea549 Update dependabot.yml to add Julia ecosystem support
  • 80f7874 Merge pull request #161 from SciML/dependabot/github_actions/actions/checkout-6
  • 480d8e4 Bump actions/checkout from 4 to 6
  • 6074f3b [ci skip] Ignore crate-ci/typos patch and minor updates in dependabot
  • 7ff6d31 Merge pull request #158 from ChrisRackauckas/fix-formatting
  • Additional commits viewable in compare view

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

Release notes

Sourced from BenchmarkTools's releases.

v1.6.3

BenchmarkTools v1.6.3

Diff since v1.6.2

Merged pull requests:

  • Use JSON@1.2 (

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file julia Pull requests that update julia code labels Feb 20, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Feb 23, 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.

2 similar comments
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Feb 27, 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.

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Mar 3, 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), [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/DiffEqDevTools.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.1.2
- [Release notes](https://github.com/SciML/PreallocationTools.jl/releases)
- [Commits](SciML/PreallocationTools.jl@v0.4.0...v1.1.2)

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 2.139.0
- [Release notes](https://github.com/SciML/SciMLBase.jl/releases)
- [Commits](SciML/SciMLBase.jl@v1.0.0...v2.139.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.43
- [Release notes](https://github.com/JuliaObjects/Accessors.jl/releases)
- [Commits](JuliaObjects/Accessors.jl@v0.1.0...v0.1.43)

Updates `Documenter` to 1.16.1
- [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.16.1)

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.16.0
- [Release notes](https://github.com/SciML/NonlinearSolve.jl/releases)
- [Commits](SciML/NonlinearSolve.jl@SimpleNonlinearSolve-v0.1.0...v4.16.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.49.0
- [Release notes](https://github.com/SciML/DiffEqDevTools.jl/releases)
- [Commits](SciML/DiffEqDevTools.jl@v0.0.1...v2.49.0)

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.6.3
- [Release notes](https://github.com/JuliaCI/BenchmarkTools.jl/releases)
- [Commits](JuliaCI/BenchmarkTools.jl@v0.0.1...v1.6.3)

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

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.59.1
- [Release notes](https://github.com/SciML/LinearSolve.jl/releases)
- [Commits](SciML/LinearSolve.jl@v0.1.0...v3.59.1)

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.11
- [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.11)

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.8
- [Release notes](https://github.com/scheinerman/SimpleGraphs.jl/releases)
- [Commits](scheinerman/SimpleGraphs.jl@v0.1.0...v0.8.8)

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.8
- [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.108.0
- [Release notes](https://github.com/SciML/OrdinaryDiffEq.jl/releases)
- [Commits](SciML/OrdinaryDiffEq.jl@v0.0.1...v6.108.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.1
- [Release notes](https://github.com/JuliaMath/SpecialFunctions.jl/releases)
- [Commits](https://github.com/JuliaMath/SpecialFunctions.jl/commits)

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.43
- [Release notes](https://github.com/JuliaObjects/Accessors.jl/releases)
- [Commits](JuliaObjects/Accessors.jl@v0.1.0...v0.1.43)

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.16.0
- [Release notes](https://github.com/SciML/NonlinearSolve.jl/releases)
- [Commits](SciML/NonlinearSolve.jl@SimpleNonlinearSolve-v0.1.0...v4.16.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.6.3
- [Release notes](https://github.com/JuliaCI/BenchmarkTools.jl/releases)
- [Commits](JuliaCI/BenchmarkTools.jl@v0.0.1...v1.6.3)

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

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.59.1
- [Release notes](https://github.com/SciML/LinearSolve.jl/releases)
- [Commits](SciML/LinearSolve.jl@v0.1.0...v3.59.1)

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.11
- [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.11)

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.8
- [Release notes](https://github.com/scheinerman/SimpleGraphs.jl/releases)
- [Commits](scheinerman/SimpleGraphs.jl@v0.1.0...v0.8.8)

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.8
- [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.108.0
- [Release notes](https://github.com/SciML/OrdinaryDiffEq.jl/releases)
- [Commits](SciML/OrdinaryDiffEq.jl@v0.0.1...v6.108.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.1
- [Release notes](https://github.com/JuliaMath/SpecialFunctions.jl/releases)
- [Commits](https://github.com/JuliaMath/SpecialFunctions.jl/commits)

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.1.2
  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: 2.139.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.43
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Documenter
  dependency-version: 1.16.1
  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.16.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.49.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.6.3
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Krylov
  dependency-version: 0.10.5
  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.59.1
  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.11
  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.8
  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.8
  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.108.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.1
  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.43
  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.16.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.6.3
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Krylov
  dependency-version: 0.10.5
  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.59.1
  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.11
  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.8
  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.8
  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.108.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.1
  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-8f6af18237 branch from 6217fbb to 6752597 Compare March 11, 2026 04:50
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Mar 18, 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.

1 similar comment
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Mar 23, 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.

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 9, 2026

Superseded by #77.

@dependabot dependabot Bot closed this Apr 9, 2026
@dependabot dependabot Bot deleted the dependabot/julia/all-julia-packages-8f6af18237 branch April 9, 2026 04:51
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