Skip to content

Bump the all-julia-packages group across 1 directory with 11 updates#340

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/julia/test/all-julia-packages-86e41eda42
Open

Bump the all-julia-packages group across 1 directory with 11 updates#340
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/julia/test/all-julia-packages-86e41eda42

Conversation

@dependabot
Copy link
Contributor

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

Updates the requirements on ArrayInterface, Functors, Tracker, StaticArrays, ForwardDiff, BenchmarkTools, ComponentArrays, LabelledArrays, OffsetArrays, InvertedIndices and Unitful to permit the latest version.
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 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

Updates ForwardDiff to 1.3.2

Release notes

Sourced from ForwardDiff's releases.

v1.3.2

ForwardDiff v1.3.2

Diff since v1.3.1

Merged pull requests:

Commits
  • 7262054 Remove explicit != methods for Dual (#793)
  • 71258ec Update documentation formatting and infrastructure (#792)
  • e1eb522 Define < and isless for Partials (#791)
  • e8eb009 Bump actions/checkout from 5 to 6 (#786)
  • a7991dd Add derivative rule for LinearAlgebra.givensAlgorithm (#783)
  • c2ec27f Bump version from 1.2.1 to 1.2.2 (#782)
  • e7c619d Fix NaN-safe mode (#777)
  • 2247c4a CI tests with NaN-safe mode (#776)
  • 5d2edc1 Avoid non-lazy string interpolation and replace @assert with `ArgumentError...
  • 463e830 Fix gradient and Jacobian for functions with Dual output (#770)
  • 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:

Commits

Updates ComponentArrays to 0.15.32

Release notes

Sourced from ComponentArrays's releases.

v0.15.32

ComponentArrays v0.15.32

Diff since v0.15.31

Merged pull requests:

Closed issues:

  • Sundials CVODE_BDF does not support ComponentArrays (#332)
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
  • 37f685e Update Project.toml
  • 338e31e Merge pull request #333 from ChrisRackauckas-Claude/split-test-groups
  • 5ef5b73 Default GROUP to "All" which runs Core tests for now
  • 3b1d9a2 Remove all compat bounds from test/Project.toml
  • ffd1b7c Further relax performance thresholds for CI stability
  • 85a7e69 Fix downgrade compat conflict and relax CI performance thresholds
  • 16e9401 Split tests into separate groups with independent environments
  • 086e5b0 Merge pull request #329 from SciML/dependabot/julia/docs/all-julia-packages-8...
  • 9a74857 Bump the all-julia-packages group across 2 directories with 18 updates
  • c2021d9 Merge pull request #330 from SciML/dependabot/github_actions/actions/checkout-6
  • Additional commits viewable in compare view

Updates LabelledArrays to 1.18.0

Release notes

Sourced from LabelledArrays's releases.

v1.18.0

LabelledArrays v1.18.0

Diff since v1.17.0

Merged pull requests:

Commits
  • 832e9ea Update Project.toml
  • 86a4bf6 Merge pull request #184 from ChrisRackauckas-Claude/precompile-improvements-2...
  • c572982 Add PrecompileTools workload to reduce TTFX
  • 2c65024 Merge pull request #183 from SciML/dependabot/github_actions/actions/checkout-6
  • 70a0dbf Bump actions/checkout from 4 to 6
  • a40c538 Merge pull request #182 from ChrisRackauckas-Claude/runic-formatting
  • 4a29fe0 Switch from JuliaFormatter to Runic.jl for code formatting
  • b54f122 Merge pull request #173 from SciML/dependabot/github_actions/actions/checkout-6
  • 7b16ecb Merge pull request #181 from SciML/dependabot/julia/all-julia-packages-f61f91...
  • 8d961ff Update PreallocationTools requirement 1.0
  • 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

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Updates the requirements on [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 `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.2
- [Release notes](https://github.com/JuliaDiff/ForwardDiff.jl/releases)
- [Commits](JuliaDiff/ForwardDiff.jl@v0.0.2...v1.3.2)

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 `ComponentArrays` to 0.15.32
- [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.32)

Updates `LabelledArrays` to 1.18.0
- [Release notes](https://github.com/SciML/LabelledArrays.jl/releases)
- [Commits](SciML/LabelledArrays.jl@v0.0.1...v1.18.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: 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.2
  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: ComponentArrays
  dependency-version: 0.15.32
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: LabelledArrays
  dependency-version: 1.18.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 added dependencies Pull requests that update a dependency file julia Pull requests that update julia code labels Mar 11, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file julia Pull requests that update julia code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants