Skip to content

Bump the all-julia-packages group across 2 directories with 4 updates#4577

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/julia/all-julia-packages-36fca24c60
Open

Bump the all-julia-packages group across 2 directories with 4 updates#4577
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/julia/all-julia-packages-36fca24c60

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 12, 2026

Copy link
Copy Markdown
Contributor

Updates the requirements on CloudMicrophysics, Interpolations, OrderedCollections and Poppler_jll to permit the latest version.
Updates CloudMicrophysics to 0.37.0

Release notes

Sourced from CloudMicrophysics's releases.

v0.37.0

CloudMicrophysics v0.37.0

Diff since v0.36.0

Breaking changes

  • P3 rework around an explicit P3State: 2M+P3 ice tendencies (melting, liquid–ice collisions, self-collection), Frostenberg (2023) ice nucleation, and a fused BulkMicrophysicsTendencies entry point for the 2M+P3 scheme.
  • Faster, type-stable 2M+P3 collision path (zero-allocation, JET-clean on Julia ≥ 1.12); quadrature rules are now built once at parameter construction and reused in hot loops.
  • Removes dt-limiting from P3 melting/nucleation tendencies.

Closed issues:

  • Add collisions/coalescence parameterizations (#386)
Commits
  • ea430c0 Merge pull request #681 from CliMA/he/update-p3-melting
  • d8cd9e6 test: gate 2M+P3 collision inference assertions to Julia >= 1.12
  • 5ae20c3 feat(P3): faster, type-stable 2M+P3 collision path; bump to 0.37
  • 99553a2 feat(P3): 2M+P3 ice tendencies, BMT entry point, and Frostenberg nucleation
  • 22b5dce refactor(P3): restructure ice properties around an explicit P3State
  • 14a8153 test: tidy the GPU ClimaCore kernel test
  • 0a928b9 remove dt limiting from p3 melt, nuc
  • See full diff in compare view

Updates Interpolations to 0.16.2

Release notes

Sourced from Interpolations's releases.

v0.16.2

Interpolations v0.16.2

Diff since v0.16.1

Merged pull requests:

Closed issues:

  • Multidimensional arrays of N>2 (#629)
Changelog

Sourced from Interpolations's changelog.

For a comprehensive list of changes, see Releases.

v0.16.1

Fixes:

  • Fix hessian with ForwardDiff.jl for scaled interpolants (#628)

v0.16

Breaking changes:

  • getindex for AbstractInterpolations only accepts integers (#579), deprecated since (#226)
  • gradient and hessian are once again no longer exported (#623)
  • Fix free boundary condition on Cubic (#616)
  • Compatible with Julia versions 1.9 and later

v0.15

Breaking changes:

  • Compatible with Julia versions 1.6 and later

v0.14.0

Breaking changes:

Implement inplace GriddedInterpolation (#496, for #495)

  • interpolate now copies the coefficients for GriddedInterpolation.
  • interpolate! now does not copy the coefficients for GriddedInterpolation.
  • The third argument of GriddedInterpolation describes the array type of the coefficients rather than the element type of Array.

v0.9.0

Breaking changes:

  • gradient and hessian are no longer exported; use Interpolations.gradient and Interpolations.hessian.
  • interpolate objects now check bounds, and throw an error if you try to evaluate them at locations beyond the edge of their interpolation domain; use extrapolate if you need out-of-bounds evaluation
  • For quadratic and cubic interpolation, interpolate! now returns an object whose axes are narrowed by the amount of padding needed on the array edges. This preserves correspondence between input indices and output indices. See https://julialang.org/blog/2017/04/offset-arrays for more information.
  • The parametrization of some types has changed; this does not affect users of the "exported" interface, but does break packages that performed manual construction of explicit types.

Changes with deprecation warnings:

  • itp[i...] should be replaced with itp(i...).
  • OnGrid and OnCell should now be placed inside the boundary condition (e.g., Flat(OnGrid())), and should only be used for quadratic and cubic interpolation.
  • the extrapolation boundary condition Linear was changed to Line, to be consistent

... (truncated)

Commits
  • 4d35396 Remove Requires and branches for unsupported VERSIONs (#632)
  • 078a1b1 make hessians of scaled interpolants work (#628)
  • ba5b9ec Merge pull request #626 from mkitti/mkitti-update-news-0-16-0
  • e376ff9 Update news
  • 3d0236e Merge pull request #625 from mkitti/mkitti-ci-pre
  • ed3ccf8 Merge pull request #624 from mkitti/mkitti-update-documenter-jl-gha
  • 4544295 Update CI to test lts, 1, pre, and nightly
  • ac264b6 Update Github Actiosn for Documenter.jl
  • 06b779c Unexport gradient, hessian (#623)
  • cba98e8 Merge pull request #621 from mkitti/mkitti-citations-cff-1-2-0
  • Additional commits viewable in compare view

Updates Interpolations to 0.16.2

Release notes

Sourced from Interpolations's releases.

v0.16.2

Interpolations v0.16.2

Diff since v0.16.1

Merged pull requests:

Closed issues:

  • Multidimensional arrays of N>2 (#629)
Changelog

Sourced from Interpolations's changelog.

For a comprehensive list of changes, see Releases.

v0.16.1

Fixes:

  • Fix hessian with ForwardDiff.jl for scaled interpolants (#628)

v0.16

Breaking changes:

  • getindex for AbstractInterpolations only accepts integers (#579), deprecated since (#226)
  • gradient and hessian are once again no longer exported (#623)
  • Fix free boundary condition on Cubic (#616)
  • Compatible with Julia versions 1.9 and later

v0.15

Breaking changes:

  • Compatible with Julia versions 1.6 and later

v0.14.0

Breaking changes:

Implement inplace GriddedInterpolation (#496, for #495)

  • interpolate now copies the coefficients for GriddedInterpolation.
  • interpolate! now does not copy the coefficients for GriddedInterpolation.
  • The third argument of GriddedInterpolation describes the array type of the coefficients rather than the element type of Array.

v0.9.0

Breaking changes:

  • gradient and hessian are no longer exported; use Interpolations.gradient and Interpolations.hessian.
  • interpolate objects now check bounds, and throw an error if you try to evaluate them at locations beyond the edge of their interpolation domain; use extrapolate if you need out-of-bounds evaluation
  • For quadratic and cubic interpolation, interpolate! now returns an object whose axes are narrowed by the amount of padding needed on the array edges. This preserves correspondence between input indices and output indices. See https://julialang.org/blog/2017/04/offset-arrays for more information.
  • The parametrization of some types has changed; this does not affect users of the "exported" interface, but does break packages that performed manual construction of explicit types.

Changes with deprecation warnings:

  • itp[i...] should be replaced with itp(i...).
  • OnGrid and OnCell should now be placed inside the boundary condition (e.g., Flat(OnGrid())), and should only be used for quadratic and cubic interpolation.
  • the extrapolation boundary condition Linear was changed to Line, to be consistent

... (truncated)

Commits
  • 4d35396 Remove Requires and branches for unsupported VERSIONs (#632)
  • 078a1b1 make hessians of scaled interpolants work (#628)
  • ba5b9ec Merge pull request #626 from mkitti/mkitti-update-news-0-16-0
  • e376ff9 Update news
  • 3d0236e Merge pull request #625 from mkitti/mkitti-ci-pre
  • ed3ccf8 Merge pull request #624 from mkitti/mkitti-update-documenter-jl-gha
  • 4544295 Update CI to test lts, 1, pre, and nightly
  • ac264b6 Update Github Actiosn for Documenter.jl
  • 06b779c Unexport gradient, hessian (#623)
  • cba98e8 Merge pull request #621 from mkitti/mkitti-citations-cff-1-2-0
  • Additional commits viewable in compare view

Updates OrderedCollections to 2.0.0

Release notes

Sourced from OrderedCollections's releases.

v2.0.0

OrderedCollections v2.0.0

Diff since v1.8.2

v2 is only removal of long standing depreactions. If you are using v1.7 or newer already and you can run your code with --depwarn=error then there is nothing to change.

Breaking:

Removed deprecated functionality:

Merged pull requests:

Closed issues:

  • Type piracy? (#25)
Commits
  • d5d76c7 Merge pull request #164 from JuliaCollections/ox/v2
  • 68ab740 Remove depreacations for v2.0 release
  • 7bb0847 Bump version from 1.8.1 to 1.8.2
  • 6af78d8 OrderedDict: improve performance for non-concrete values and keys (#166)
  • 1eaa980 Bump actions/checkout from 5 to 6 (#157)
  • 7be2211 Bump actions/checkout from 4 to 5 (#156)
  • a25bffa Add Integer type annotation to sizehint! overloads (#155)
  • a64f186 issorted(ld; byvalue=true) for LittleDicts (#151)
  • 5ec1764 LittleDict constructor from AbstractDict (#150)
  • 7b3daef CI: workaround TagBot issues
  • Additional commits viewable in compare view

Updates Poppler_jll to 25.10.0+0

Commits

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file julia Pull requests that update julia code labels Jun 12, 2026
@github-actions

github-actions Bot commented Jun 12, 2026

Copy link
Copy Markdown
Contributor

📖 Docs preview for this PR: https://clima.github.io/ClimaAtmos.jl/previews/PR4577/

Updates the requirements on [CloudMicrophysics](https://github.com/CliMA/CloudMicrophysics.jl), [Interpolations](https://github.com/JuliaMath/Interpolations.jl), [OrderedCollections](https://github.com/JuliaCollections/OrderedCollections.jl) and [Poppler_jll](https://github.com/JuliaBinaryWrappers/Poppler_jll.jl) to permit the latest version.

Updates `CloudMicrophysics` to 0.37.0
- [Release notes](https://github.com/CliMA/CloudMicrophysics.jl/releases)
- [Commits](CliMA/CloudMicrophysics.jl@v0.36.0...v0.37.0)

Updates `Interpolations` to 0.16.2
- [Release notes](https://github.com/JuliaMath/Interpolations.jl/releases)
- [Changelog](https://github.com/JuliaMath/Interpolations.jl/blob/master/NEWS.md)
- [Commits](JuliaMath/Interpolations.jl@v0.15.1...v0.16.2)

Updates `Interpolations` to 0.16.2
- [Release notes](https://github.com/JuliaMath/Interpolations.jl/releases)
- [Changelog](https://github.com/JuliaMath/Interpolations.jl/blob/master/NEWS.md)
- [Commits](JuliaMath/Interpolations.jl@v0.15.1...v0.16.2)

Updates `OrderedCollections` to 2.0.0
- [Release notes](https://github.com/JuliaCollections/OrderedCollections.jl/releases)
- [Commits](JuliaCollections/OrderedCollections.jl@v1.6.0...v2.0.0)

Updates `Poppler_jll` to 25.10.0+0
- [Release notes](https://github.com/JuliaBinaryWrappers/Poppler_jll.jl/releases)
- [Commits](https://github.com/JuliaBinaryWrappers/Poppler_jll.jl/commits)

---
updated-dependencies:
- dependency-name: CloudMicrophysics
  dependency-version: 0.37.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Interpolations
  dependency-version: 0.16.2
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Interpolations
  dependency-version: 0.16.2
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: OrderedCollections
  dependency-version: 2.0.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Poppler_jll
  dependency-version: 25.10.0+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-36fca24c60 branch from 6710e6e to f1fe267 Compare June 13, 2026 00:32
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