Skip to content

Update ComponentArrays requirement to 0.15.30 in /docs#198

Merged
gdalle merged 1 commit intomainfrom
dependabot/julia/docs/ComponentArrays-0.15.30
Jan 20, 2026
Merged

Update ComponentArrays requirement to 0.15.30 in /docs#198
gdalle merged 1 commit intomainfrom
dependabot/julia/docs/ComponentArrays-0.15.30

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Jan 9, 2026

Updates the requirements on ComponentArrays to permit the latest version.

Release notes

Sourced from ComponentArrays's releases.

v0.15.30

ComponentArrays v0.15.30

Diff since v0.15.29

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
  • e6714d8 Merge pull request #314 from SciML/ap/1.12_support
  • 398ff10 fix: loading on 1.12
  • 28c6749 Merge pull request #311 from ChrisRackauckas/fix-formatting
  • 2d741c5 Apply JuliaFormatter to fix code formatting
  • a9ceb38 Merge pull request #310 from SciML/ci-update-julia-versions
  • 2bdbefa Update CI to test on Julia 1, lts, and pre versions
  • 3d996d6 Merge pull request #308 from ChrisRackauckas/remove-old-version-checks
  • 158ba9e Remove outdated Julia version checks
  • 04599dd Update downgrade.yml
  • 6670ef5 Update Project.toml
  • Additional commits viewable in compare view

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file julia Pull requests that update julia code labels Jan 9, 2026
@gdalle
Copy link
Copy Markdown
Member

gdalle commented Jan 20, 2026

@dependabot rebase

@dependabot dependabot Bot force-pushed the dependabot/julia/docs/ComponentArrays-0.15.30 branch from f4f34a1 to 6bea682 Compare January 20, 2026 09:53
@gdalle
Copy link
Copy Markdown
Member

gdalle commented Jan 20, 2026

@dependabot rebase

Updates the requirements on [ComponentArrays](https://github.com/SciML/ComponentArrays.jl) to permit the latest version.
- [Release notes](https://github.com/SciML/ComponentArrays.jl/releases)
- [Changelog](https://github.com/SciML/ComponentArrays.jl/blob/main/NEWS.md)
- [Commits](SciML/ComponentArrays.jl@v0.1.0...v0.15.30)

---
updated-dependencies:
- dependency-name: ComponentArrays
  dependency-version: 0.15.30
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/julia/docs/ComponentArrays-0.15.30 branch from 6bea682 to 72554f8 Compare January 20, 2026 10:06
@gdalle gdalle merged commit d0faa2f into main Jan 20, 2026
2 of 4 checks passed
@dependabot dependabot Bot deleted the dependabot/julia/docs/ComponentArrays-0.15.30 branch January 20, 2026 10:11
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.

1 participant