Skip to content

Bump the all-julia-packages group with 7 updates#58

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

Bump the all-julia-packages group with 7 updates#58
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/julia/all-julia-packages-d79e309e22

Conversation

@dependabot
Copy link
Contributor

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

Updates the requirements on RvSpectMLBase, Interpolations, Optim, SPICE, PyCall, PyPlot and EchelleInstruments to permit the latest version.
Updates RvSpectMLBase to 0.2.4

Release notes

Sourced from RvSpectMLBase's releases.

v.0.2.4

What's Changed

New Contributors

Full Changelog: RvSpectML/RvSpectMLBase.jl@v0.2.3...v0.2.4

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 Optim to 2.0.1

Release notes

Sourced from Optim's releases.

v2.0.1

Optim v2.0.1

Diff since v2.0.0

Merged pull requests:

  • Re-instate old behavior for Fminbox in terms of convergence calculati… (#1232) (@​pkofod)

Closed issues:

  • Default options in Optim.jl v2.0 don't seem appropriate (#1228)
  • value_gradient! returns the wrong thing for ManifoldObjective in v1.9.4 (#1229)
Changelog

Sourced from Optim's changelog.

Optim master release notes

  • Fix Preconditioning example for v1.0 syntax
  • Improve handling of alternative number types in univariate optimization
  • Add conditional likelihood example to docs
  • Improve Fminbox trace printing.

Optim v0.17.2 release notes

  • Fix some typos
  • Fix doc building

Optim v0.17.0 release notes

  • Drop support for Julia versions less 1.0. Optim v.17.1 is also out.

Optim v0.11.0 release notes

  • Optional scaling for inverse Hessian in L-BFGS
  • Support for initial step length guesses via LineSearches

Optim v0.10.0 release notes

  • Support for optimization on Riemannian manifolds
  • Support for optimization of functions of complex variables
  • New experimental KrylovTrustRegion method useful when cheap Hessian-vector products are available.
  • Improved support for BigFloats
  • Add doc strings to methods
  • Drop support for Julia versions less than v0.6.0-pre

Optim v0.9.0 release notes

  • Fminbox: If an initial guess is on the boundary of the box, the guess is moved inside the box and a warning is produced, as opposed to crashing with an error.
  • Significant changes to the Non-, Once-, and TwiceDifferentiable setup; these now hold temporaries relevant to the evaluation of objectives, gradients, and Hessians. They also hold f-, g-, and h_calls counters.
  • Refactor tests
  • Drop v0.4 support
  • Add limits to f-, g-, and h_calls
  • Improve trace for univariate optimization
  • Changed order of storage arrays and evaluation point arrays in gradient and Hessian calls
  • Skip v0.8.0 to allow fixes on Julia v0.5.0

Optim v0.7.6 release notes

  • Fix deprecations for *Function constructors
  • Fix depwarns on Julia master (v0.6)
  • Update references to new JuliaNLSolvers home for Optim+family

Optim v0.7.5 release notes

  • Various bug fixes
  • Deprecate DifferentiableFunction, TwiceDifferentiable in favor of OnceDifferentiable, TwiceDifferentiable
  • widen some type annotations (e.g. allow for multidimensional arrays as inputs again)
  • introduce allow_f_increases keyword in Optim.Options to allow objective to increase between iterations
  • New option in Optim.Options: allow_f_increases. Defaults to false, but if set to true, the solver will not stop even if a step leads to an increase in the objective.
  • Newton and BFGS: set initial step length to one. See 328.

Optim v0.7.3 release notes

... (truncated)

Commits
  • 4bcd6a6 Update Project.toml
  • 9b664c2 Re-instate old behavior for Fminbox in terms of convergence calculation and c...
  • d0f5e0e Update Project.toml
  • 286aeed Compute JVP in line searches (#1210)
  • d3ccb73 CompatHelper: bump compat for JET in [extras] to 0.11, (keep existing compat)...
  • 9483bd8 Document optimization state and callback functionality. Change initia… (#1226)
  • 7934f7b Pass optimization state to callbacks (#1224)
  • 540c97b Depend on Statistics instead of StatsBase (#1221)
  • bc25e2c Fix bounds errors in default x_abschange and x_relchange (#1222)
  • 3e3d33e As default use a minimum trust region radius of 0 (#1219)
  • Additional commits viewable in compare view

Updates SPICE to 0.2.5

Release notes

Sourced from SPICE's releases.

v0.2.5

SPICE v0.2.5

Diff since v0.2.4

Merged pull requests:

Closed issues:

  • Combine with EphemerisSources.jl? (#32)
  • SPICE/SPKにおける状態ベクトル補間・SSB基準の数式と仕様をドキュメント化したい (#35)
Commits
  • f4e4831 Bump version 0.2.5
  • ddf9589 Convert @ref links to @extref links in docstrings
  • a76b9b5 Bump actions/checkout from 4 to 5 (#34)
  • dc6a72d Merge pull request #33 from JuliaAstro/icweaver-canonize
  • 5a64b46 updated links
  • 643a612 Bump version 0.2.4 in Project.toml
  • 8b128a2 Fix bug in dsphdr
  • 1dda34b Update recommended code for deprecated functions
  • b3e426f Use simpler markdown for URL links
  • 15c208a Add ref links in docstrings
  • Additional commits viewable in compare view

Updates PyCall to 1.96.4

Release notes

Sourced from PyCall's releases.

v1.96.4

PyCall v1.96.4

Diff since v1.96.3

Merged pull requests:

Commits

Updates PyPlot to 2.11.6

Release notes

Sourced from PyPlot's releases.

v2.11.6

PyPlot v2.11.6

Diff since v2.11.5

Merged pull requests:

  • put reading the __version__ from the pyplot package in try catch since it can fail (#594) (@​KristofferC)
  • Please release a new version containing the Colors.jl compat bump (#598) (@​Octogonapus)

Closed issues:

  • PyCall and PyPlot are crashing in Julia 1.10 (#580)
Commits
  • 3c658d8 Patch bump (#598)
  • 343cec5 bump for colors 0.13
  • 2525681 put reading the __version__ from the pyplot package in try catch since it c...
  • 00119f8 Update Project.toml: 2.11.5
  • efbead9 Update deprecated methods (#590)
  • cb34a10 Update Project.toml: bump to 2.11.4
  • c229e30 check for matplotlibs.colormaps before matplotlibs.colormaps.register (#592)
  • 28826e0 bump version to 2.11.3
  • 407a75f Merge pull request #587 from JuliaPy/dependabot/github_actions/codecov/codeco...
  • bd8c81a Merge pull request #588 from JuliaPy/dependabot/github_actions/julia-actions/...
  • Additional commits viewable in compare view

Updates EchelleInstruments to 0.2.11

Release notes

Sourced from EchelleInstruments's releases.

v0.2.11

EchelleInstruments v0.2.11

Diff since v0.2.10

  • Updates for NEID DRP v1.3
  • Compat updates
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 [RvSpectMLBase](https://github.com/RvSpectML/RvSpectMLBase.jl), [Interpolations](https://github.com/JuliaMath/Interpolations.jl), [Optim](https://github.com/JuliaNLSolvers/Optim.jl), [SPICE](https://github.com/JuliaAstro/SPICE.jl), [PyCall](https://github.com/JuliaPy/PyCall.jl), [PyPlot](https://github.com/JuliaPy/PyPlot.jl) and [EchelleInstruments](https://github.com/RvSpectML/EchelleInstruments.jl) to permit the latest version.

Updates `RvSpectMLBase` to 0.2.4
- [Release notes](https://github.com/RvSpectML/RvSpectMLBase.jl/releases)
- [Commits](RvSpectML/RvSpectMLBase.jl@v0.0.1...v0.2.4)

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 `Optim` to 2.0.1
- [Release notes](https://github.com/JuliaNLSolvers/Optim.jl/releases)
- [Changelog](https://github.com/JuliaNLSolvers/Optim.jl/blob/master/NEWS.md)
- [Commits](JuliaNLSolvers/Optim.jl@v0.2.0...v2.0.1)

Updates `SPICE` to 0.2.5
- [Release notes](https://github.com/JuliaAstro/SPICE.jl/releases)
- [Commits](JuliaAstro/SPICE.jl@v0.1.0...v0.2.5)

Updates `PyCall` to 1.96.4
- [Release notes](https://github.com/JuliaPy/PyCall.jl/releases)
- [Commits](JuliaPy/PyCall.jl@v0.0.1...v1.96.4)

Updates `PyPlot` to 2.11.6
- [Release notes](https://github.com/JuliaPy/PyPlot.jl/releases)
- [Commits](JuliaPy/PyPlot.jl@1.0.0...v2.11.6)

Updates `EchelleInstruments` to 0.2.11
- [Release notes](https://github.com/RvSpectML/EchelleInstruments.jl/releases)
- [Commits](RvSpectML/EchelleInstruments.jl@v0.0.1...v0.2.11)

---
updated-dependencies:
- dependency-name: RvSpectMLBase
  dependency-version: 0.2.4
  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: Optim
  dependency-version: 2.0.1
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: SPICE
  dependency-version: 0.2.5
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: PyCall
  dependency-version: 1.96.4
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: PyPlot
  dependency-version: 2.11.6
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: EchelleInstruments
  dependency-version: 0.2.11
  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 1, 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