Skip to content

Bump the all-julia-packages group across 1 directory with 26 updates#4421

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/julia/dot-buildkite/all-julia-packages-3026726b74
Closed

Bump the all-julia-packages group across 1 directory with 26 updates#4421
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/julia/dot-buildkite/all-julia-packages-3026726b74

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 8, 2026

Updates the requirements on ClimaCore, Statistics, ClimaUtilities, ClimaDiagnostics, ClimaComms, Interpolations, NullBroadcasts, ClimaTimeSteppers, YAML, ClimaParams, JLD2, NCDatasets, ArgParse, CUDA, IntervalSets, MPI, BenchmarkTools, Krylov, OrderedCollections, ClimaAnalysis, HDF5, JSON, StatsBase, ClimaAtmos, SnoopCompile and Poppler_jll to permit the latest version.
Updates ClimaCore to 0.14.50

Release notes

Sourced from ClimaCore's releases.

v0.14.50

ClimaCore v0.14.50

Diff since v0.14.49

📢 API Changes:

🚀 Features

📑 Documentation

🐛 Fixes

Changelog

Sourced from ClimaCore's changelog.

v0.14.50

  • Add support for bilinear interpolation for diagnostics to the Remapper. 2455

v0.14.49

  • Add PressureInterpolator 2422
  • Add Buildkite pipeline to check flagship AMIP performance 2438
  • Fix conservation of split divergence 2432

v0.14.48

  • Add VerticalMassBorrowingLimiter 2383

v0.14.47

  • Use space-filling curve for CubedSphereGrid and ExtrudedCubedSphereGrid 2429

v0.14.46

  • Restrict GPUCompiler to < v1.7.6 to avoid GPU errors 2430

v0.14.45

  • Add split divergence operator 2409

v0.14.44

  • Revert to_device dispatch change from #2375 2403

v0.14.43

  • Add support for horizontal operators on column spaces 2375

v0.14.42

  • Add opt-in CUDA kernel renaming based on stacktrace for broadcasts over ClimaCore Fields 2376

    To enable, set the following environment variable before starting Julia:

    export CLIMA_NAME_CUDA_KERNELS_FROM_STACK_TRACE=true

    With default kernel names, profiling downstream packages results in names like

... (truncated)

Commits
  • e10ed3c Merge pull request #2460 from CliMA/tr/release
  • d9cbfa2 Release 0.14.50
  • b846df0 Merge pull request #2455 from CliMA/as/bilinear-horizontal-interp
  • 31e34ad Try simpler bilinear remapping (for use in netcdf diagnostics)
  • d8e32ba Merge pull request #2458 from CliMA/he/ci-use-dependabot-to-update
  • eb277f9 ci: use dependabot to update julia packages
  • 3c150fa Release v0.14.49
  • 0080d89 Move extrapolate kwarg to pressure intp constructor
  • 22b9028 Add pressure interpolation
  • cec7bb5 Add geometry data for PPoint
  • Additional commits viewable in compare view

Updates Statistics to 1.11.1

Release notes

Sourced from Statistics's releases.

v1.11.1

Statistics v1.11.1

Diff since v1.11.0

Merged pull requests:

Closed issues:

  • The quantile function can return incorrect results for integer arrays (Int8, Int16, Int32) (#119)
Commits

Updates ClimaUtilities to 0.1.28

Release notes

Sourced from ClimaUtilities's releases.

v0.1.28

ClimaUtilities v0.1.28

Diff since v0.1.27

Changelog

Sourced from ClimaUtilities's changelog.

ClimaUtilities.jl Release Notes

main

Bug fixes

  • Fixed a bug where reading dates from a NetCDF file would fail when using CFTime v0.2.7.

v0.1.27

Add heuristic to treat points as centers of cells. PR#190

When using the TimeVaryingInput, SpaceVaryingInput, or InterpolationsRegridder, a heuristic is added to determine if the points of the data should be treated as centers of cells for the longitude dimension. Previously, the first and last points along the longitude dimension would be considered the same, which is not always the case. For example, if the longitudes span from 0.5 to 395.5 degrees, then the first and last points should not be colocated. In this case, the points are now treated correctly as the centers of cells.

Support for Z-only spaces in InterpolationsRegridder. PR#189

InterpolationsRegridder now supports regridding onto Z-only spaces (single column simulations) using ClimaCore.Geometry.ZPoint coordinates. This enables interpolation of 1D vertical data onto column spaces. The regridder also now accepts an optional dim_names keyword argument to explicitly specify dimension names (e.g., ("lon", "lat", "z")), which is particularly useful for Z-only spaces where vertical dimensions need to be identified by name.

Improved WallTimeInfo support. PR#193

WallTimeInfo now works correctly when the progress reporting callback is not called during initialization, and properly supports non-periodic reporting schedules. The timing calculations now correctly account for steps that occurred before the first call to report_progress, ensuring accurate wall time estimates regardless of when reporting begins.

v0.1.26

Remove LatLongZ regridding warning. PR#184

v0.1.25

Allow regridding 2D data onto 2D spaces with LatLongZ coordinates. PR#176

... (truncated)

Commits
  • 2233934 Release v0.1.28
  • 79b8a4f Fix read_available_dates bug with CFTime v0.2.7
  • 0cbffcb update ClimaCoupler env for downstream test
  • 34cb6fd Test with 1.12 instead of 1.11 in ci
  • 2659e8b chore: changes the CLA action trigger to pull_request_target (#202)
  • 11fddac feat: add CLA workflow caller
  • 2046caf Release v0.1.27 (#198)
  • 7f22644 Switch builkdite pipeline to ccentral (#197)
  • 6c9d561 add valid time (#196)
  • a595856 Make WallTimeInfo work when not called during init
  • Additional commits viewable in compare view

Updates ClimaDiagnostics to 0.3.4

Release notes

Sourced from ClimaDiagnostics's releases.

v0.3.4

ClimaDiagnostics v0.3.4

Diff since v0.3.3

Merged pull requests:

Changelog

Sourced from ClimaDiagnostics's changelog.

NEWS

main

v0.3.3

Features

Support bilinear horizontal remapping

Adds support for a horizontal_method kwarg in the NetCDFWriter, to permit bilinear remapping using ClimaCore's AbstractRemappingMethod.

v0.3.1

Features

Support 1D column diagnostics

Added support for outputting the 1-dimensional FiniteDifferenceSpace diagnostics when writer is initialized from 3D space.

Add global attributes to NetCDF files

With this release, you can now add global attributes that are the same across all NetCDF files for a given NetCDFWriter. For example, you may be interested in specifying the source and experiment which are the same across all NetCDF files produced for a single simulation. You can do this via the global_attribs keyword argument for the NetCDFWriter. The global attributes must be a subtype of an AbstractDict{String, String}. If the order of the attributes matter, you may want to use an OrderedDict from OrderedCollections.

writer = NetCDFWriter(
    space,
    output_dir;
    global_attribs = Dict("source" => "CliMA Coupler Simulation", "experiment" => "AMIP"),
)

Output diagnostics in pressure coordinates

You can now output diagnostics in pressure coordinates. To do this, create an instance of a RealPressureLevelsMethod with the pressure field and the current simulation time. Then, pass the RealPressureLevelsMethod to the

... (truncated)

Commits

Updates ClimaComms to 0.6.10

Changelog

Sourced from ClimaComms's changelog.

v0.6.10

  • fixed logging interoperability with GPUCompiler.jl PR 119

v0.6.9

  • Added a device-agnostic API for querying available memory PR 117.

v0.6.8

  • Extended @threaded to work with multiple iterators and lazy iterators (e.g., enumerate, zip, and Iterators.partition), and modified the threaded function to make it equivalent to @threaded PR 115.

v0.6.7

  • Extended @threaded to work on GPU devices, with block sizes automatically determined by the CUDA occupancy API, and added the ability to control thread coarsening across all devices PR 111.

v0.6.6

  • Replaced MPIFileLogger with FileLogger and added an OnlyRootLogger logger that silences non-root processes PR 104.

v0.6.5

  • Support for adapt was added, so that users can convert between CPU and GPU devices, and contexts containing cpu and gpu devices PR 103.

  • New MPI logging tools were added, MPIFileLogger and MPILogger PR 100.

v0.6.4

  • Add device-flexible @assert was added PR 86.

v0.6.3

  • Bugfix: cuda_sync was missing in the extension and, as a result, ClimaComms.@cuda_sync was not actually synchronizing. We've also removed the abstract fallback, so that we instead method-error if we pass a cuda device when the cuda extension does not exist.

v0.6.2

  • We added a device-agnostic allowscalar(f, ::AbstractDevice, args...; kwargs...) to further assist in making CUDA an extension.

v0.6.1

  • Macros have been refactored to hopefully fix some code loading issues.

v0.6.0

... (truncated)

Commits

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 NullBroadcasts to 0.1.0

Release notes

Sourced from NullBroadcasts's releases.

v0.1.0

NullBroadcasts v0.1.0

Merged pull requests:

Commits

Updates ClimaTimeSteppers to 0.8.11

Release notes

Sourced from ClimaTimeSteppers's releases.

v0.8.11

ClimaTimeSteppers v0.8.11

Diff since v0.8.10

📢 API Changes:

🚀 Features

📑 Documentation

🐛 Fixes

Changelog

Sourced from ClimaTimeSteppers's changelog.

ClimaTimeSteppers.jl Release Notes

Main

v0.8.9

  • Major refactor of CTS, including removal of SciML and DiffEq dependency (maintained in extension for backward compatibility)
  • Refactor and extension of test suite
  • Correction of bugs in multirate and Krylov solvers

v0.8.7

  • Added a simple line search algorithm to Newtons method.

v0.8.5

  • Removed SciMLBasetyperestriction on step_u!.

v0.8.2

  • If saveat is a number, then it does not automatically expand to tspan[1]:saveat:tspan[2]. To fix this, update saveat, which is a keyword in the integrator, to be an array. For example, if saveat is a scalar, replace it with [tspan[1]:saveat:tspan[2]..., tspan[2]] to achieve the same behavior as before.
  • IMEXAlgorithms and SSPKnoth are compatible with ITime. See ClimaUtilities for more information about ITime.

v0.7.18

  • Added a fused T_exp_T_lim!, so that we can fuse DSS calls that previously lived in T_exp! and T_lim!.

v0.7.17

  • Started NEWS
  • increments are now fused in the imex ARK method. This should yield better GPU performance, and may result in machine-precision changes.

... (truncated)

Commits
  • c2a3fb8 Bump to 0.8.11
  • 2e7607c Fix callback issue in SciMLBase.solve
  • 516c5a9 Merge pull request #403 from CliMA/ts/bumb-julia-actions
  • 9230b9e Bump julia-actions/setup-julia from 1 to
  • 6924434 Bump actions/checkout from 4 to 6
  • efe0b97 Bumps julia-actions/cache from 2 to 3.
  • 926dca3 Merge pull request #401 from CliMA/ts/CTS-bug-fixes
  • a207f97 Time type correction; bump patch release
  • 428955b Merge pull request #397 from CliMA/ts/cts-refactor
  • 4ffa218 Fix SortedQueue constructor dispatch: single inner constructor avoids sort-sk...
  • Additional commits viewable in compare view

Updates YAML to 0.4.16

Release notes

Sourced from YAML's releases.

v0.4.16

YAML v0.4.16

Diff since v0.4.15

Merged pull requests:

Commits
  • f43e802 Merge pull request #249 from GunnarFarneback/write_nested_empty_array
  • 5fd869d Quote more keys that need quoting.
  • 8d691f2 Fix writing of nested empty arrays.
  • 67e60e6 Merge pull request #248 from GunnarFarneback/write_empty_key
  • 7650a00 Support writing of empty string keys.
  • cc9ac3b Merge pull request #246 from GunnarFarneback/fix_merge_tag
  • cc59433 Further CI revisions.
  • 6ae2c85 Update versions of some CI actions.
  • dc4b152 Allow duplicate keys when merge tags are used.
  • ffe5319 Merge pull request #141 from sstroemer/master
  • Additional commits viewable in compare view

Updates ClimaParams to 1.0.15

Release notes

Sourced from ClimaParams's releases.

v1.0.15

ClimaParams v1.0.15

Diff since v1.0.14

Merged pull requests:

Changelog

Sourced from ClimaParams's changelog.

ClimaParams.jl Release Notes

v1.0.11

  • Add gravity-wave parameters (#238)

v1.0.9

  • Add ML cloud fraction closure parameter template (#270)

v1.0.8

  • Add gustiness parameters (#269)

v1.0.7

  • Add global mean molar fraction values for atmospheric gases (#267)

v1.0.6

  • Add constant horizontal diffusion coefficient (#266)

v1.0.5

  • Add Charnock coefficient (#264)

v1.0.4

  • Add parameter for setting a fixed CO2 value (#262)
  • Add method for check_override_parameter_usage to check if a subset of parameters in override file was used (#261)

v1.0.1

  • Add parameters for cloud top height diagnostic (#251)

v1.0.0

  • Breaking: Removed the AbstractTOMLDict type (#247)
  • Added direct indexing `td["gravitational_acceleration"] (#239)

v0.12.1

  • Log parameter when getindex is called (#243)
  • Change epoch_time to a DateTime (#248)

v0.12.0

... (truncated)

Commits
  • 229c556 Merge pull request #289 from CliMA/sa/add_q_min
  • 0f63b80 add specific humidity minimum used as a lower bound for comparing or regulari...
  • 36a8862 Bump actions/cache from 4 to 5
  • 0414817 Adding CF steepness parameter (#288)
  • 4eb24dd Merge pull request #283 from CliMA/he/ci-use-dependabot-to-update
  • 1e2cb53 ci: use dependabot to update julia packages
  • 7ebcfa6 Add clamping parameters; bump patch release (#282)
  • 378727a Add default T-q corelation coefficient (#281)
  • 07e36ce Merge pull request #238 from CliMA/rc/gw
  • f1c276c Added gravity-wave parameters
  • Additional commits viewable in compare view

Updates JLD2 to 0.6.4

Release notes

Sourced from JLD2's releases.

v0.6.4

JLD2 v0.6.4

Diff since v0.6.3

Merged pull requests:

Closed issues:

  • reading data with jldopen did not work (#692)
  • Release 0.6.4 is stuck in registry (#694)
  • Support streaming into JLD2 files / growing files on disk (#696)
  • Showing un-initialised datasets throws an error (#697)
  • ERROR: SystemError: msync: Invalid argument when jldsave() on aarch64 (#702)
Changelog

Sourced from JLD2's changelog.

0.6.4

  • Support for directly reading from and writing to Vector{UInt8}
  • Fix for working with opened IOStream objects
  • Proper boundscheck for internal read_bytestring
  • Fixes for working in IOStream mode

0.6.3

  • Fix edge case in datatype loading (#692)
  • Add keyword argument constructors to Filters
  • Allow negative compression levels for the ZstdFilter

0.6.2

  • Fix an edge case for Vector{Union{}}

0.6.1

  • Improved backwards compat for lz4 compression
  • Docs improvements
  • updated compat bounds for filter pkgs

0.6.0

  • Breaking: Rework compression API. Expose filter approach of hdf5 broadly similar to HDF5.jl. See docs for description. The basic compress=true api still works but backend libraries were replaced.
  • Added new filter pkgs JLD2Lz4 and JLD2Bzip2 to enable lz4 and bzip2 filters without making them dependencies by default.

0.5.17

  • update hash implementation for internal types to eliminate downstream invalidations

0.5.16

  • Improve readmmap to work on more types and misaligned data
  • Make default iotype selection dynamic. Makes precompile files relocatable to win7. (#632)

0.5.15

  • Add full control over type mapping by providing a typemap function

0.5.14

  • Add support for Memory and MemoryRef

0.5.13

  • Make UnPack.jl compat into an extension
  • bumps lower compat for julia to v1.9

0.5.12

  • Fix precompile workload for loading on latest julia

0.5.11

  • Make Upgrade work for types that sit inside Union{..}

0.5.10

... (truncated)

Commits

Updates NCDatasets to 0.14.14

Release notes

Sourced from NCDatasets's releases.

v0.14.14

NCDatasets v0.14.14

Diff since v0.14.13

Commits

Updates ArgParse to 1.2.0

Release notes

Sourced from ArgParse's releases.

v1.2.0

ArgParse v1.2.0

Diff since v1.1.5

Merged pull requests:

Closed issues:

  • ArgParse modifies global random state? (#121)
  • Allow default values convertible to arg_type (#123)
  • print_help() (#127)
  • Parametrize lc_len_limit (#129)
  • ArgParse 1.1.5 prints desc while precompiling (#130)
Commits

Updates CUDA to 5.11.0

Release notes

Sourced from CUDA's releases.

v5.11.0

CUDA v5.11.0

Diff since v5.10.1

Support for CUDA 13.2

Merged pull requests:

Commits

Updates IntervalSets to 0.7.13

Release notes

Sourced from IntervalSets's releases.

v0.7.13

IntervalSets v0.7.13

Diff since v0.7.12

Merged pull requests:

Closed issues:

  • "Warning: Circular dependency detected." with IntervalSets 0.7.12 in Julia 1.10.10 (#206)
  • <...

    Description has been truncated

@dependabot dependabot bot added dependencies Pull requests that update a dependency file julia Pull requests that update julia code labels Apr 8, 2026
Updates the requirements on [ClimaCore](https://github.com/CliMA/ClimaCore.jl), [Statistics](https://github.com/JuliaStats/Statistics.jl), [ClimaUtilities](https://github.com/CliMA/ClimaUtilities.jl), [ClimaDiagnostics](https://github.com/CliMA/ClimaDiagnostics.jl), [ClimaComms](https://github.com/CliMA/ClimaComms.jl), [Interpolations](https://github.com/JuliaMath/Interpolations.jl), [NullBroadcasts](https://github.com/CliMA/NullBroadcasts.jl), [ClimaTimeSteppers](https://github.com/CliMA/ClimaTimeSteppers.jl), [YAML](https://github.com/JuliaData/YAML.jl), [ClimaParams](https://github.com/CliMA/ClimaParams.jl), [JLD2](https://github.com/JuliaIO/JLD2.jl), [NCDatasets](https://github.com/JuliaGeo/NCDatasets.jl), [ArgParse](https://github.com/carlobaldassi/ArgParse.jl), [CUDA](https://github.com/JuliaGPU/CUDA.jl), [IntervalSets](https://github.com/JuliaMath/IntervalSets.jl), [MPI](https://github.com/JuliaParallel/MPI.jl), [BenchmarkTools](https://github.com/JuliaCI/BenchmarkTools.jl), [Krylov](https://github.com/JuliaSmoothOptimizers/Krylov.jl), [OrderedCollections](https://github.com/JuliaCollections/OrderedCollections.jl), [ClimaAnalysis](https://github.com/CliMA/ClimaAnalysis.jl), [HDF5](https://github.com/JuliaIO/HDF5.jl), [JSON](https://github.com/JuliaIO/JSON.jl), [StatsBase](https://github.com/JuliaStats/StatsBase.jl), [ClimaAtmos](https://github.com/CliMA/ClimaAtmos.jl), [SnoopCompile](https://github.com/JuliaDebug/SnoopCompile.jl) and [Poppler_jll](https://github.com/JuliaBinaryWrappers/Poppler_jll.jl) to permit the latest version.

Updates `ClimaCore` to 0.14.50
- [Release notes](https://github.com/CliMA/ClimaCore.jl/releases)
- [Changelog](https://github.com/CliMA/ClimaCore.jl/blob/main/NEWS.md)
- [Commits](CliMA/ClimaCore.jl@ClimaCoreTempestRemap-v0.3.8...v0.14.50)

Updates `Statistics` to 1.11.1
- [Release notes](https://github.com/JuliaStats/Statistics.jl/releases)
- [Commits](JuliaStats/Statistics.jl@v1.4.0...v1.11.1)

Updates `ClimaUtilities` to 0.1.28
- [Release notes](https://github.com/CliMA/ClimaUtilities.jl/releases)
- [Changelog](https://github.com/CliMA/ClimaUtilities.jl/blob/main/NEWS.md)
- [Commits](CliMA/ClimaUtilities.jl@v0.1.0...v0.1.28)

Updates `ClimaDiagnostics` to 0.3.4
- [Release notes](https://github.com/CliMA/ClimaDiagnostics.jl/releases)
- [Changelog](https://github.com/CliMA/ClimaDiagnostics.jl/blob/main/NEWS.md)
- [Commits](CliMA/ClimaDiagnostics.jl@v0.0.1...v0.3.4)

Updates `ClimaComms` to 0.6.10
- [Release notes](https://github.com/CliMA/ClimaComms.jl/releases)
- [Changelog](https://github.com/CliMA/ClimaComms.jl/blob/main/NEWS.md)
- [Commits](https://github.com/CliMA/ClimaComms.jl/commits)

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.0.1-beta...v0.16.2)

Updates `NullBroadcasts` to 0.1.0
- [Release notes](https://github.com/CliMA/NullBroadcasts.jl/releases)
- [Commits](CliMA/NullBroadcasts.jl@v0.1.0...v0.1.0)

Updates `ClimaTimeSteppers` to 0.8.11
- [Release notes](https://github.com/CliMA/ClimaTimeSteppers.jl/releases)
- [Changelog](https://github.com/CliMA/ClimaTimeSteppers.jl/blob/main/NEWS.md)
- [Commits](CliMA/ClimaTimeSteppers.jl@v0.1.0...v0.8.11)

Updates `YAML` to 0.4.16
- [Release notes](https://github.com/JuliaData/YAML.jl/releases)
- [Commits](JuliaData/YAML.jl@v0.1.0...v0.4.16)

Updates `ClimaParams` to 1.0.15
- [Release notes](https://github.com/CliMA/ClimaParams.jl/releases)
- [Changelog](https://github.com/CliMA/ClimaParams.jl/blob/main/NEWS.md)
- [Commits](CliMA/ClimaParams.jl@v0.1.0...v1.0.15)

Updates `JLD2` to 0.6.4
- [Release notes](https://github.com/JuliaIO/JLD2.jl/releases)
- [Changelog](https://github.com/JuliaIO/JLD2.jl/blob/master/CHANGELOG.md)
- [Commits](JuliaIO/JLD2.jl@v0.0.1...v0.6.4)

Updates `NCDatasets` to 0.14.14
- [Release notes](https://github.com/JuliaGeo/NCDatasets.jl/releases)
- [Commits](JuliaGeo/NCDatasets.jl@v0.0.1...v0.14.14)

Updates `ArgParse` to 1.2.0
- [Release notes](https://github.com/carlobaldassi/ArgParse.jl/releases)
- [Commits](carlobaldassi/ArgParse.jl@v0.2.7...v1.2.0)

Updates `CUDA` to 5.11.0
- [Release notes](https://github.com/JuliaGPU/CUDA.jl/releases)
- [Commits](JuliaGPU/CUDA.jl@v0.1.0...v5.11.0)

Updates `IntervalSets` to 0.7.13
- [Release notes](https://github.com/JuliaMath/IntervalSets.jl/releases)
- [Commits](JuliaMath/IntervalSets.jl@v0.0.1...v0.7.13)

Updates `MPI` to 0.20.24
- [Release notes](https://github.com/JuliaParallel/MPI.jl/releases)
- [Commits](JuliaParallel/MPI.jl@v0.0.0...v0.20.24)

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 `Krylov` to 0.10.6
- [Release notes](https://github.com/JuliaSmoothOptimizers/Krylov.jl/releases)
- [Commits](JuliaSmoothOptimizers/Krylov.jl@v0.1...v0.10.6)

Updates `OrderedCollections` to 1.8.1
- [Release notes](https://github.com/JuliaCollections/OrderedCollections.jl/releases)
- [Commits](JuliaCollections/OrderedCollections.jl@v0.1.0...v1.8.1)

Updates `ClimaAnalysis` to 0.5.21
- [Release notes](https://github.com/CliMA/ClimaAnalysis.jl/releases)
- [Changelog](https://github.com/CliMA/ClimaAnalysis.jl/blob/main/NEWS.md)
- [Commits](CliMA/ClimaAnalysis.jl@v0.1.0...v0.5.21)

Updates `HDF5` to 0.17.2
- [Release notes](https://github.com/JuliaIO/HDF5.jl/releases)
- [Changelog](https://github.com/JuliaIO/HDF5.jl/blob/master/HISTORY.md)
- [Commits](JuliaIO/HDF5.jl@v0.2.10...v0.17.2)

Updates `JSON` to 1.5.0
- [Release notes](https://github.com/JuliaIO/JSON.jl/releases)
- [Commits](JuliaIO/JSON.jl@v0.2.4...v1.5.0)

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

Updates `SnoopCompile` to 3.2.5
- [Release notes](https://github.com/JuliaDebug/SnoopCompile.jl/releases)
- [Changelog](https://github.com/JuliaDebug/SnoopCompile.jl/blob/master/NEWS.md)
- [Commits](JuliaDebug/SnoopCompile.jl@v0.0.1...v3.2.5)

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: ClimaCore
  dependency-version: 0.14.50
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Statistics
  dependency-version: 1.11.1
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: ClimaUtilities
  dependency-version: 0.1.28
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: ClimaDiagnostics
  dependency-version: 0.3.4
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: ClimaComms
  dependency-version: 0.6.10
  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: NullBroadcasts
  dependency-version: 0.1.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: ClimaTimeSteppers
  dependency-version: 0.8.11
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: YAML
  dependency-version: 0.4.16
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: ClimaParams
  dependency-version: 1.0.15
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: JLD2
  dependency-version: 0.6.4
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: NCDatasets
  dependency-version: 0.14.14
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: ArgParse
  dependency-version: 1.2.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: CUDA
  dependency-version: 5.11.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: IntervalSets
  dependency-version: 0.7.13
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: MPI
  dependency-version: 0.20.24
  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: Krylov
  dependency-version: 0.10.6
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: OrderedCollections
  dependency-version: 1.8.1
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: ClimaAnalysis
  dependency-version: 0.5.21
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: HDF5
  dependency-version: 0.17.2
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: JSON
  dependency-version: 1.5.0
  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: ClimaAtmos
  dependency-version: 0.38.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: SnoopCompile
  dependency-version: 3.2.5
  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/dot-buildkite/all-julia-packages-3026726b74 branch from 82d3b4d to ba5759c Compare April 15, 2026 01:49
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Apr 15, 2026

Superseded by #4428.

@dependabot dependabot bot closed this Apr 15, 2026
@dependabot dependabot bot deleted the dependabot/julia/dot-buildkite/all-julia-packages-3026726b74 branch April 15, 2026 01:53
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