Skip to content

Bump the all-julia-packages group across 2 directories with 13 updates#349

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

Bump the all-julia-packages group across 2 directories with 13 updates#349
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/julia/all-julia-packages-f9c174692e

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Updates the requirements on RecursiveArrayTools, SciMLBase, ArrayInterface, Functors, Tracker, ForwardDiff, BenchmarkTools, ComponentArrays, LabelledArrays, OffsetArrays, InvertedIndices, Unitful and StaticArrays to permit the latest version.
Updates RecursiveArrayTools to 4.0.1

Release notes

Sourced from RecursiveArrayTools's releases.

v4.0.1

RecursiveArrayTools v4.0.1

Diff since v3.51.0

Merged pull requests:

Commits
  • 8030a81 Merge pull request #558 from SciML/ChrisRackauckas-patch-3
  • a7ae44b Update Project.toml
  • c480117 Merge pull request #557 from ChrisRackauckas-Claude/fix-fb-serial
  • d1ca597 Update FastBroadcast extension to use Serial dispatch
  • 5ae3f87 Merge pull request #554 from ChrisRackauckas-Claude/add-licenses
  • b77f17f Add MIT LICENSE.md to sublibraries for registration
  • fc9c29a Merge pull request #547 from ChrisRackauckas-Claude/abstractarray-breaking-up...
  • f0dfd27 Merge branch 'master' into abstractarray-breaking-update
  • 484d3af Run Runic formatting
  • 4e28332 Fix GPU ArrayPartition any/all: load AnyAll subpackage in GPU tests
  • Additional commits viewable in compare view

Updates SciMLBase to 3.1.0

Release notes

Sourced from SciMLBase's releases.

v3.1.0

SciMLBase v3.1.0

Diff since v3.0.0

Merged pull requests:

Commits
  • 160c6b1 Update Project.toml
  • 8b63a4a Merge pull request #1311 from SciML/as/api-changes
  • 09770ff refactor: pass context struct to late_binding_update_u0_p
  • e72fe01 refactor: pass context struct to remake_initialization_data
  • 014e294 Document v3.0 breaking changes and migration guide
  • 83ba080 Update Project.toml
  • 6aadd3b Merge pull request #1310 from ChrisRackauckas-Claude/remove-redundant-zygote-...
  • a3d3838 Remove redundant Zygote integer-indexing adjoints for ODESolution
  • 70ff4b8 Merge pull request #1304 from SciML/v3
  • 9790e8e Merge pull request #1252 from isaacsas/ensemble_rng_redesign
  • Additional commits viewable in compare view

Updates ArrayInterface to 7.23.0

Release notes

Sourced from ArrayInterface's releases.

v7.23.0

ArrayInterface v7.23.0

Diff since v7.22.0

Merged pull requests:

Commits
  • 52e1fd4 Merge pull request #480 from JuliaArrays/ChrisRackauckas-patch-2
  • be09eb8 Update Project.toml
  • dd3fea5 Merge pull request #479 from vchuravy/add-amdgpu-extension
  • 197e7dd Add AMDGPU.jl extension
  • b1ac878 Merge pull request #478 from ChrisRackauckas-Claude/fix-deprecation-warnings
  • 4938f58 Remove stale version checks and fix soft scope warning
  • 4b9414a Merge pull request #476 from hexaeder/master
  • d3fd6c4 fix default pivot in docstring
  • 81c0ac4 Merge pull request #475 from JuliaArrays/dependabot/github_actions/actions/ch...
  • e6a2d72 Bump actions/checkout from 5 to 6
  • Additional commits viewable in compare view

Updates Functors to 0.5.2

Release notes

Sourced from Functors's releases.

v0.5.2

Functors v0.5.2

Diff since v0.5.1

Merged pull requests:

Commits

Updates Tracker to 0.2.38

Release notes

Sourced from Tracker's releases.

v0.2.38

Tracker v0.2.38

Diff since v0.2.37

Merged pull requests:

Commits

Updates ForwardDiff to 1.3.3

Release notes

Sourced from ForwardDiff's releases.

v1.3.3

ForwardDiff v1.3.3

Diff since v1.3.2

Merged pull requests:

Commits

Updates BenchmarkTools to 1.7.0

Release notes

Sourced from BenchmarkTools's releases.

v1.7.0

BenchmarkTools v1.7.0

Diff since v1.6.3

Merged pull requests:

Closed issues:

  • Update to JSON.jl v1 (#405)
Commits
  • 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
  • 48a1850 Bump actions/cache from 4 to 5
  • d4bb6a3 Bump actions/checkout from 5 to 6 (#409)
  • ab12497 Use ubuntu-22.04 for Julia 1.7 (#408)
  • Additional commits viewable in compare view

Updates ComponentArrays to 0.15.33

Release notes

Sourced from ComponentArrays's releases.

v0.15.33

ComponentArrays v0.15.33

Diff since v0.15.32

Merged pull requests:

Changelog

Sourced from ComponentArrays's changelog.

ComponentArrays.jl NEWS

Notes on new features (minor releases). For more details on bugfixes and non-feature-adding changes (patch releases), check out the releases page.

v0.15.0

  • Unpack array components as StaticArrays!
julia> x = ComponentArray(a=5, b=[4, 1], c = [1 2; 3 4], d=(e=2, f=[6, 30.0]));
julia> @​static_unpack a, b, c, d = x;
julia> a
5.0
julia> b
2-element SVector{2, Float64} with indices SOneTo(2):
4.0
1.0
julia> c
2×2 SMatrix{2, 2, Float64, 4} with indices SOneTo(2)×SOneTo(2):
1.0  2.0
3.0  4.0
julia> d
ComponentVector{Float64,SubArray...}(e = 2.0, f = [6.0, 30.0])

v0.12.0

  • Multiple symbol indexing!
    • Use either an Array or Tuple of Symbols to extract multiple named components into a new ComponentArray
    • It's fast!
julia> ca = ComponentArray(a=5, b=[4, 1], c=(a=2, b=[6, 30.0]))
ComponentVector{Float64}(a = 5.0, b = [4.0, 1.0], c = (a = 2.0, b = [6.0, 30.0]))
julia> ca[(:c, :a)]
ComponentVector{Float64}(c = (a = 2.0, b = [6.0, 30.0]), a = 5.0)
julia> ca[[:c, :a]] == ca[(:c, :a)]
true
julia> @​view ca[(:c, :a)]
ComponentVector{Float64,SubArray...}(c = (a = 2.0, b = [6.0, 30.0]), a = 5.0)

v0.11.0

  • Calling axes on a ComponentArray returns a new CombinedAxis type!
    • Doing things The Right Way™!
    • No more complicated and error-prone custom broadcasting machinery!
    • No more weird special cases!

v0.10.0

... (truncated)

Commits

Updates LabelledArrays to 1.19.0

Release notes

Sourced from LabelledArrays's releases.

v1.19.0

LabelledArrays v1.19.0

Diff since v1.18.0

Merged pull requests:

Closed issues:

  • Downgrade CI fails due to OrdinaryDiffEq/StaticArrays version conflict (#188)
Commits
  • 0ea6e4e Merge pull request #192 from ChrisRackauckas-Claude/update-rat-v4-compat
  • eefd391 Bump version and update RecursiveArrayTools compat for v4
  • d9c0b4b Merge pull request #190 from SciML/dependabot/github_actions/julia-actions/ca...
  • c804473 Bump julia-actions/cache from 2 to 3
  • f081911 Merge pull request #189 from ChrisRackauckas-Claude/fix-ci-downgrade-green
  • e7d08a0 Disable Downgrade CI due to unsatisfiable dependency resolution
  • 142495f Merge pull request #187 from ChrisRackauckas-Claude/fix-deprecation-warnings
  • 2c0d671 Fix broken API calls from renamed/unqualified functions
  • 832e9ea Update Project.toml
  • 86a4bf6 Merge pull request #184 from ChrisRackauckas-Claude/precompile-improvements-2...
  • Additional commits viewable in compare view

Updates OffsetArrays to 1.17.0

Release notes

Sourced from OffsetArrays's releases.

v1.17.0

OffsetArrays v1.17.0

Diff since v1.16.0

Merged pull requests:

Closed issues:

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

Updates InvertedIndices to 1.3.1

Commits

Updates Unitful to 1.28.0

Release notes

Sourced from Unitful's releases.

v1.28.0

Unitful v1.28.0

Diff since v1.27.0

  • Feature: Dimensionless quantities now support iseven and isodd (#829).
  • Bugfix: Quantities that have equal values and equal units now have the same hash (#833). For now, quantities that are equal (isequal) but have different units still have different hashes, see #379.

Merged pull requests:

Closed issues:

  • Should hashing of Quantity{BigFloat} behave differently to those of BigFloat's? (#378)
  • Latexify as soft dependency (#665)
  • stack overflow when calling iseven and isodd with unitful quantity (#822)
  • "Binding undeclared during precompilation" error (#831)
Changelog

Sourced from Unitful's changelog.

v1.28.0 (2026-01-29)

  • Feature: Dimensionless quantities now support iseven and isodd (#829).
  • Bugfix: Quantities that have equal values and equal units now have the same hash (#833). For now, quantities that are equal (isequal) but have different units still have different hashes, see #379.

v1.27.0 (2025-12-08)

  • Feature: NaNMath.pow and NaNMath.sqrt from NaNMath.jl are supported via a package extension (#824).

v1.26.0 (2025-12-05)

  • Feature: The aliases degC and degF for °C and °F are added (#826).
  • Bugfix: Correct LaTeX printing of affine units (#825).
  • Maintenance: Fix a world-age warning on Julia 1.12 (#819).

v1.25.1 (2025-10-18)

  • Maintenance: Fix a parsing error on Julia 1.13 (#817).

v1.25.0 (2025-09-16)

  • Feature: Quantities and units can now be converted to a LaTeX representation using Latexify.jl. This is provided via a package extension and replaces the UnitfulLatexify.jl package (#795).
  • This package now requires Julia ≥ 1.6.

v1.24.0 (2025-07-31)

  • Feature: The alias deg for ° is added (#764).

v1.23.1 (2025-06-10)

  • Bugfix: Fix a world-age issue with the new mechanism to preserve the floating-point precision on unit conversion (#790).

v1.23.0 (2025-06-08)

  • Feature: On Julia ≥ 1.9, dimensionless quantities can now be converted to ForwardDiff.Dual. This is important for compatibility with the SciML ecosystem and is provided via a package extension (#765).
  • Feature: On Julia ≥ 1.9, @printf and @sprintf can now be used with Unitful quantities. The specified format is applied to the numeric part of the quantity and the unit is appended to that. This is provided via a package extension (#772).
  • Bugfix: Certain unit conversions involving units that are defined using non-integer exponents no longer error (#783).
  • Enhancement: uconvert now preserves the floating-point precision of quantities in a non-breaking way (#782).

v1.22.1 (2025-05-13)

  • Bugfix: The behaviour to preserve the floating-point precision of quantities (#754, added in v1.22.0) is reverted because it is not compatible with IntervalArithmetic.jl (see #758). The feature will be added in a non-breaking way in a future release.

v1.22.0 (2025-01-02)

  • Feature: Base.big can now be used with quantities (#755).
  • Bugfix: Using Base.convert to convert to a unitless quantity no longer errors (#724).
  • Bugfix: Using Base.convert to convert to a mixed logarithmic quantity no longer returns wrong results. In cases that returned a result even though it was unknown whether the quantity was a power or root-power quantity, an error is thrown instead (#724).
  • Enhancement: uconvert now preserves the floating-point precision of quantities (#754).
  • Enhancement: When printing arrays, quantities are now aligned at the decimal point just like unitless numbers (#752).

... (truncated)

Commits

Updates StaticArrays to 1.9.18

Release notes

Sourced from StaticArrays's releases.

v1.9.18

StaticArrays v1.9.18

Diff since v1.9.17

Merged pull requests:

Commits

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

dependabot Bot commented on behalf of github Apr 11, 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 dependabot Bot force-pushed the dependabot/julia/all-julia-packages-f9c174692e branch from 9973c93 to edf8709 Compare April 11, 2026 13:29
@dependabot @github
Copy link
Copy Markdown
Contributor Author

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

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 14, 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 [RecursiveArrayTools](https://github.com/SciML/RecursiveArrayTools.jl), [SciMLBase](https://github.com/SciML/SciMLBase.jl), [ArrayInterface](https://github.com/JuliaArrays/ArrayInterface.jl), [Functors](https://github.com/FluxML/Functors.jl), [Tracker](https://github.com/FluxML/Tracker.jl), [StaticArrays](https://github.com/JuliaArrays/StaticArrays.jl), [ForwardDiff](https://github.com/JuliaDiff/ForwardDiff.jl), [BenchmarkTools](https://github.com/JuliaCI/BenchmarkTools.jl), [ComponentArrays](https://github.com/SciML/ComponentArrays.jl), [LabelledArrays](https://github.com/SciML/LabelledArrays.jl), [OffsetArrays](https://github.com/JuliaArrays/OffsetArrays.jl), [InvertedIndices](https://github.com/JuliaData/InvertedIndices.jl) and [Unitful](https://github.com/JuliaPhysics/Unitful.jl) to permit the latest version.

Updates `RecursiveArrayTools` to 4.0.1
- [Release notes](https://github.com/SciML/RecursiveArrayTools.jl/releases)
- [Commits](SciML/RecursiveArrayTools.jl@v3.8.0...v4.0.1)

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

Updates `ArrayInterface` to 7.23.0
- [Release notes](https://github.com/JuliaArrays/ArrayInterface.jl/releases)
- [Commits](JuliaArrays/ArrayInterface.jl@v0.0.1...v7.23.0)

Updates `Functors` to 0.5.2
- [Release notes](https://github.com/FluxML/Functors.jl/releases)
- [Commits](FluxML/Functors.jl@v0.1.0...v0.5.2)

Updates `Tracker` to 0.2.38
- [Release notes](https://github.com/FluxML/Tracker.jl/releases)
- [Commits](FluxML/Tracker.jl@v0.1.0...v0.2.38)

Updates `StaticArrays` to 1.9.18
- [Release notes](https://github.com/JuliaArrays/StaticArrays.jl/releases)
- [Commits](JuliaArrays/StaticArrays.jl@v0.0.1...v1.9.18)

Updates `ForwardDiff` to 1.3.3
- [Release notes](https://github.com/JuliaDiff/ForwardDiff.jl/releases)
- [Commits](JuliaDiff/ForwardDiff.jl@v0.0.2...v1.3.3)

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 `ComponentArrays` to 0.15.33
- [Release notes](https://github.com/SciML/ComponentArrays.jl/releases)
- [Changelog](https://github.com/SciML/ComponentArrays.jl/blob/main/NEWS.md)
- [Commits](v0.1.0...v0.15.33)

Updates `LabelledArrays` to 1.19.0
- [Release notes](https://github.com/SciML/LabelledArrays.jl/releases)
- [Commits](SciML/LabelledArrays.jl@v0.0.1...v1.19.0)

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

Updates `InvertedIndices` to 1.3.1
- [Release notes](https://github.com/JuliaData/InvertedIndices.jl/releases)
- [Commits](https://github.com/JuliaData/InvertedIndices.jl/commits)

Updates `Unitful` to 1.28.0
- [Release notes](https://github.com/JuliaPhysics/Unitful.jl/releases)
- [Changelog](https://github.com/JuliaPhysics/Unitful.jl/blob/master/NEWS.md)
- [Commits](JuliaPhysics/Unitful.jl@v0.0.1...v1.28.0)

---
updated-dependencies:
- dependency-name: RecursiveArrayTools
  dependency-version: 4.0.1
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: SciMLBase
  dependency-version: 3.1.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: ArrayInterface
  dependency-version: 7.23.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Functors
  dependency-version: 0.5.2
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Tracker
  dependency-version: 0.2.38
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: StaticArrays
  dependency-version: 1.9.18
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: ForwardDiff
  dependency-version: 1.3.3
  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: ComponentArrays
  dependency-version: 0.15.33
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: LabelledArrays
  dependency-version: 1.19.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: OffsetArrays
  dependency-version: 1.17.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: InvertedIndices
  dependency-version: 1.3.1
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Unitful
  dependency-version: 1.28.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-f9c174692e branch from edf8709 to a05888d Compare April 15, 2026 11:50
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 15, 2026

Superseded by #357.

@dependabot dependabot Bot closed this Apr 15, 2026
@dependabot dependabot Bot deleted the dependabot/julia/all-julia-packages-f9c174692e branch April 15, 2026 11:50
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