Skip to content

chore(deps): bump the all-julia-packages group across 2 directories with 18 updates#95

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/julia/docs/all-julia-packages-76351639fb
Closed

chore(deps): bump the all-julia-packages group across 2 directories with 18 updates#95
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/julia/docs/all-julia-packages-76351639fb

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 20, 2026

Updates the requirements on DifferentiationInterface, DelimitedFiles, CairoMakie, RadialBasisFunctions, LiveServer, Enzyme, StaticArrays, Cairo, Mooncake, HaltonSequences, Statistics, ForwardDiff, StaticArraysCore, EnzymeCore, FiniteDifferences, SafeTestsets, Adapt and KernelAbstractions to permit the latest version.
Updates DifferentiationInterface to 0.7.16

Release notes

Sourced from DifferentiationInterface's releases.

DifferentiationInterface-v0.7.16

DifferentiationInterface DifferentiationInterface-v0.7.16

Diff since DifferentiationInterface-v0.7.15

Merged pull requests:

Closed issues:

  • Mooncake Backend doesn't handle functions with StaticArrays output (#642)
Commits
  • d96e9a0 chore(deps): bump the all-julia-packages group across 1 directory with 3 updates
  • bf17102 fix: upgrade Mooncake compat to v0.5 (#961)
  • a266e80 fix!: turn Chairmarks and JET into weakdeps (#958)
  • 8d33550 chore: bump DI to v0.7.15 (#956)
  • 5996df5 fix: overloaded_input_type for one-element vector input (#954)
  • d6b05e4 test: bypass failing Enzyme test until upstream fix (#955)
  • cd515b3 chore: bump DI + changelog (#952)
  • 07e4a54 Fix inner preparation behavior for Mooncake (#948)
  • 45fad0e fix: function shadows for higher-order Enzyme (#943)
  • 325f2b8 chore: bump DI to v0.7.13 (#946)
  • Additional commits viewable in compare view

Updates DelimitedFiles to 1.9.1

Commits

Updates CairoMakie to 0.15.8

Commits

Updates RadialBasisFunctions to 0.2.6

Release notes

Sourced from RadialBasisFunctions's releases.

v0.2.6

RadialBasisFunctions v0.2.6

Diff since v0.2.5

✨ New Features

Hermite Interpolation with Boundary Conditions

Added comprehensive support for Hermite interpolation, enabling derivative boundary conditions alongside function values for PDE solving:

  • Dirichlet Boundary Conditions: Specify function values at boundaries
  • Neumann Boundary Conditions: Specify derivative values at boundaries
  • Robin Boundary Conditions: Specify linear combinations of function and derivative values
  • Mixed Boundary Conditions: Combine different boundary condition types in the same problem
  • Works seamlessly with all RBF operators (Gradient, Laplacian, Partial, Directional, Custom)

GPU/CPU Parallelization with KernelAbstractions.jl

Migrated to KernelAbstractions.jl for improved parallel execution:

  • Unified GPU and CPU computation backends
  • Improved performance for weight computation
  • Better memory management with stencil weight preallocation

🐛 Bug Fixes

  • Fixed bug in Hermite weight computation (solve_hermite.jl)
  • Fixed polyharmonic spline derivative calculation bug
  • Fixed interpolation weights to correctly include last data point in linear system solve
  • Corrected polyharmonic spline keyword constructors

Merged pull requests:

Closed issues:

  • Add theory/literature links about Hermite to the docs (#55)
  • Add single and multi-thread to CI (#57)
Commits

Updates LiveServer to 1.5.0

Release notes

Sourced from LiveServer's releases.

v1.5.0

LiveServer v1.5.0

Diff since v1.4.0

Merged pull requests:

Closed issues:

  • Website with docs not working (#186)
  • Preventing refresh after making edit to files? (#196)
Commits

Updates Enzyme to 0.13.129

Release notes

Sourced from Enzyme's releases.

v0.13.129

Enzyme v0.13.129

Diff since v0.13.128

Merged pull requests:

Commits

Updates StaticArrays to 1.9.17

Release notes

Sourced from StaticArrays's releases.

v1.9.17

StaticArrays v1.9.17

Diff since v1.9.16

Merged pull requests:

Closed issues:

  • sqrt inconsistancy with base sqrt(::Matrix) for some real matrices having complexe square root (#1331)
Commits

Updates Cairo to 1.1.1

Release notes

Sourced from Cairo's releases.

v1.1.1

Cairo v1.1.1

Diff since v1.1.0

Merged pull requests:

Commits
  • 228a872 Merge pull request #369 from t-bltg/colors-0.13
  • d4eca6b bump version - update .gitignore for jl files
  • c3973d9 support Colors 0.13
  • c41befb modernize CI
  • f0d9425 Merge pull request #365 from JuliaGraphics/vs/project
  • 3763f74 Update version to 1.1 in Project.toml
  • d187a5d Merge pull request #351 from fatteneder/add-copy-page
  • 3d3a566 Merge branch 'master' into add-copy-page
  • 09f9ca5 Merge pull request #364 from jwahlstrand/readonly
  • 3aa1396 Merge branch 'master' into add-copy-page
  • Additional commits viewable in compare view

Updates Mooncake to 0.5.6

Release notes

Sourced from Mooncake's releases.

v0.5.6

Mooncake v0.5.6

Diff since v0.5.5

Merged pull requests:

Changelog

Sourced from Mooncake's changelog.

0.5.0

Breaking Changes

  • The tangent type of a Complex{P<:IEEEFloat} is now Complex{P} instead of Tangent{@NamedTuple{re::P, im::P}}.
  • The prepare_pullback_cache, prepare_gradient_cache and prepare_derivative_cache interface functions now accept a Mooncake.Config directly.

0.4.147

Public Interface

  • Mooncake offers forward mode AD.
  • Two new functions added to the public interface: prepare_derivative_cache and value_and_derivative!!.
  • One new type added to the public interface: Dual.

Internals

  • get_interpreter was previously a zero-arg function. Is now a unary function, called with a "mode" argument: get_interpreter(ForwardMode), get_interpreter(ReverseMode).
  • @zero_derivative should now be preferred to @zero_adjoint. @zero_adjoint will be removed in 0.5.
  • @from_chainrules should now be preferred to @from_rrule. @from_rrule will be removed in 0.5.
Commits
  • 9ab55b6 Tuple handling for Mooncake.increment_and_get_rdata! (#997)
  • e706216 Fix ReturnNode dualization when a capture is introduced (#995)
  • d9fac77 refactor noinline and widening (#994)
  • 88fcea2 reword nondifferentiable_tangent_guard docstring
  • a8c7d8b Fix #955: prevent const-folding primitive calls (#991)
  • d295e13 NaN handling for builtins, low level math primitives. (#976)
  • cdedcbb Work on #685 (#981)
  • 4d91806 Refine project goal description in README.md
  • 0146ccd Remove obsolete conversion function for complex tangents. (#989)
  • 7ec22cb reduce REPL clutter by adding semicolons
  • Additional commits viewable in compare view

Updates DifferentiationInterface to 0.7.16

Release notes

Sourced from DifferentiationInterface's releases.

DifferentiationInterface-v0.7.16

DifferentiationInterface DifferentiationInterface-v0.7.16

Diff since DifferentiationInterface-v0.7.15

Merged pull requests:

Closed issues:

  • Mooncake Backend doesn't handle functions with StaticArrays output (#642)
Commits
  • d96e9a0 chore(deps): bump the all-julia-packages group across 1 directory with 3 updates
  • bf17102 fix: upgrade Mooncake compat to v0.5 (#961)
  • a266e80 fix!: turn Chairmarks and JET into weakdeps (#958)
  • 8d33550 chore: bump DI to v0.7.15 (#956)
  • 5996df5 fix: overloaded_input_type for one-element vector input (#954)
  • d6b05e4 test: bypass failing Enzyme test until upstream fix (#955)
  • cd515b3 chore: bump DI + changelog (#952)
  • 07e4a54 Fix inner preparation behavior for Mooncake (#948)
  • 45fad0e fix: function shadows for higher-order Enzyme (#943)
  • 325f2b8 chore: bump DI to v0.7.13 (#946)
  • Additional commits viewable in compare view

Updates RadialBasisFunctions to 0.2.6

Release notes

Sourced from RadialBasisFunctions's releases.

v0.2.6

RadialBasisFunctions v0.2.6

Diff since v0.2.5

✨ New Features

Hermite Interpolation with Boundary Conditions

Added comprehensive support for Hermite interpolation, enabling derivative boundary conditions alongside function values for PDE solving:

  • Dirichlet Boundary Conditions: Specify function values at boundaries
  • Neumann Boundary Conditions: Specify derivative values at boundaries
  • Robin Boundary Conditions: Specify linear combinations of function and derivative values
  • Mixed Boundary Conditions: Combine different boundary condition types in the same problem
  • Works seamlessly with all RBF operators (Gradient, Laplacian, Partial, Directional, Custom)

GPU/CPU Parallelization with KernelAbstractions.jl

Migrated to KernelAbstractions.jl for improved parallel execution:

  • Unified GPU and CPU computation backends
  • Improved performance for weight computation
  • Better memory management with stencil weight preallocation

🐛 Bug Fixes

  • Fixed bug in Hermite weight computation (solve_hermite.jl)
  • Fixed polyharmonic spline derivative calculation bug
  • Fixed interpolation weights to correctly include last data point in linear system solve
  • Corrected polyharmonic spline keyword constructors

Merged pull requests:

Closed issues:

  • Add theory/literature links about Hermite to the docs (#55)
  • Add single and multi-thread to CI (#57)
Commits

Updates Enzyme to 0.13.129

Release notes

Sourced from Enzyme's releases.

v0.13.129

Enzyme v0.13.129

Diff since v0.13.128

Merged pull requests:

Commits

Updates StaticArrays to 1.9.17

Release notes

Sourced from StaticArrays's releases.

v1.9.17

StaticArrays v1.9.17

Diff since v1.9.16

Merged pull requests:

Closed issues:

  • sqrt inconsistancy with base sqrt(::Matrix) for some real matrices having complexe square root (#1331)
Commits

Updates Mooncake to 0.5.6

Release notes

Sourced from Mooncake's releases.

v0.5.6

Mooncake v0.5.6

Diff since v0.5.5

Merged pull requests:

Changelog

Sourced from Mooncake's changelog.

0.5.0

Breaking Changes

  • The tangent type of a Complex{P<:IEEEFloat} is now Complex{P} instead of Tangent{@NamedTuple{re::P, im::P}}.
  • The prepare_pullback_cache, prepare_gradient_cache and prepare_derivative_cache interface functions now accept a Mooncake.Config directly.

0.4.147

Public Interface

  • Mooncake offers forward mode AD.
  • Two new functions added to the public interface: prepare_derivative_cache and value_and_derivative!!.
  • One new type added to the public interface: Dual.

Internals

  • get_interpreter was previously a zero-arg function. Is now a unary function, called with a "mode" argument: get_interpreter(ForwardMode), get_interpreter(ReverseMode).
  • @zero_derivative should now be preferred to @zero_adjoint. @zero_adjoint will be removed in 0.5.
  • @from_chainrules should now be preferred to @from_rrule. @from_rrule will be removed in 0.5.
Commits
  • 9ab55b6 Tuple handling for Mooncake.increment_and_get_rdata! (#997)
  • e706216 Fix ReturnNode dualization when a capture is introduced (#995)
  • d9fac77 refactor noinline and widening (#994)
  • 88fcea2 reword nondifferentiable_tangent_guard docstring
  • a8c7d8b Fix #955: prevent const-folding primitive calls (#991)
  • d295e13 NaN handling for builtins, low level math primitives. (#976)
  • cdedcbb Work on #685 (#981)
  • 4d91806 Refine project goal description in README.md
  • 0146ccd Remove obsolete conversion function for complex tangents. (#989)
  • 7ec22cb reduce REPL clutter by adding semicolons
  • Additional commits viewable in compare view

Updates HaltonSequences to 0.2.0

Release notes

Sourced from HaltonSequences's releases.

v0.2.0

HaltonSequences v0.2.0

Diff since v0.1.1

Closed issues:

  • Primes as a Dependency (#3)
  • 404 Error (#4)

Merged pull requests:

Commits

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 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)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file julia Pull requests that update julia code labels Feb 20, 2026
@github-actions
Copy link
Contributor

github-actions bot commented Feb 20, 2026

Benchmark Results

main 0f5beb8... main / 0f5beb8...
Directional 2.39 ± 0.13 ms 2.49 ± 0.14 ms 0.956 ± 0.076
Directional (per point) 2.46 ± 0.12 ms 2.53 ± 0.14 ms 0.971 ± 0.072
Gradient 8.02 ± 0.33 ms 9.07 ± 0.29 ms 0.883 ± 0.046
MonomialBasis/dim=1/deg=0 0.0456 ± 0.012 μs 0.0446 ± 0.011 μs 1.02 ± 0.37
MonomialBasis/dim=1/deg=1 0.0746 ± 0.018 μs 0.085 ± 0.014 μs 0.878 ± 0.26
MonomialBasis/dim=1/deg=2 0.0839 ± 0.019 μs 0.0659 ± 0.018 μs 1.27 ± 0.45
MonomialBasis/dim=2/deg=0 0.0345 ± 0.0094 μs 25.1 ± 1.8 ns 1.37 ± 0.39
MonomialBasis/dim=2/deg=1 0.0335 ± 0.012 μs 0.0383 ± 0.011 μs 0.876 ± 0.41
MonomialBasis/dim=2/deg=2 0.0389 ± 0.012 μs 0.0459 ± 0.012 μs 0.849 ± 0.34
MonomialBasis/dim=3/deg=0 0.0349 ± 0.012 μs 0.039 ± 0.012 μs 0.896 ± 0.4
MonomialBasis/dim=3/deg=1 0.0447 ± 0.012 μs 0.0455 ± 0.012 μs 0.982 ± 0.36
MonomialBasis/dim=3/deg=2 0.0422 ± 0.012 μs 0.0477 ± 0.011 μs 0.884 ± 0.32
Partial 2.49 ± 0.11 ms 2.69 ± 0.13 ms 0.923 ± 0.061
RBF/Gaussian, exp(-(ε*r)²)
├─Shape factor: ε = 1
└─Polynomial augmentation: degree 0/0/∂ 9.84 ± 0.12 ns 9.68 ± 0.1 ns 1.02 ± 0.016
RBF/Gaussian, exp(-(ε*r)²)
├─Shape factor: ε = 1
└─Polynomial augmentation: degree 0/0/∂² 10.1 ± 0.13 ns 10.1 ± 0.04 ns 0.998 ± 0.013
RBF/Gaussian, exp(-(ε*r)²)
├─Shape factor: ε = 1
└─Polynomial augmentation: degree 0/0/∇ 17 ± 0.051 ns 17 ± 0.06 ns 1 ± 0.0046
RBF/Gaussian, exp(-(ε*r)²)
├─Shape factor: ε = 1
└─Polynomial augmentation: degree 0/0/∇² 18.5 ± 0.15 ns 18.6 ± 0.041 ns 0.996 ± 0.0084
RBF/Gaussian, exp(-(ε*r)²)
├─Shape factor: ε = 1
└─Polynomial augmentation: degree 1/1/∂ 9.91 ± 0.07 ns 9.72 ± 0.18 ns 1.02 ± 0.02
RBF/Gaussian, exp(-(ε*r)²)
├─Shape factor: ε = 1
└─Polynomial augmentation: degree 1/1/∂² 10.2 ± 0.14 ns 10.1 ± 0.039 ns 1 ± 0.014
RBF/Gaussian, exp(-(ε*r)²)
├─Shape factor: ε = 1
└─Polynomial augmentation: degree 1/1/∇ 17.1 ± 0.06 ns 17 ± 0.06 ns 1.01 ± 0.005
RBF/Gaussian, exp(-(ε*r)²)
├─Shape factor: ε = 1
└─Polynomial augmentation: degree 1/1/∇² 18.4 ± 0.08 ns 18.6 ± 0.04 ns 0.993 ± 0.0048
RBF/Gaussian, exp(-(ε*r)²)
├─Shape factor: ε = 1
└─Polynomial augmentation: degree 2/2/∂ 9.81 ± 0.09 ns 9.72 ± 0.22 ns 1.01 ± 0.025
RBF/Gaussian, exp(-(ε*r)²)
├─Shape factor: ε = 1
└─Polynomial augmentation: degree 2/2/∂² 10.1 ± 0.19 ns 10.1 ± 0.04 ns 0.998 ± 0.019
RBF/Gaussian, exp(-(ε*r)²)
├─Shape factor: ε = 1
└─Polynomial augmentation: degree 2/2/∇ 17 ± 0.051 ns 17 ± 0.061 ns 1 ± 0.0047
RBF/Gaussian, exp(-(ε*r)²)
├─Shape factor: ε = 1
└─Polynomial augmentation: degree 2/2/∇² 18.5 ± 0.13 ns 18.6 ± 0.051 ns 0.995 ± 0.0075
RBF/Inverse Multiquadrics, 1/sqrt((r*ε)²+1)
├─Shape factor: ε = 1
└─Polynomial augmentation: degree 0/0/∂ 6.32 ± 0.061 ns 6.32 ± 0.01 ns 1 ± 0.0098
RBF/Inverse Multiquadrics, 1/sqrt((r*ε)²+1)
├─Shape factor: ε = 1
└─Polynomial augmentation: degree 0/0/∂² 14 ± 0.21 ns 14.2 ± 0.02 ns 0.987 ± 0.015
RBF/Inverse Multiquadrics, 1/sqrt((r*ε)²+1)
├─Shape factor: ε = 1
└─Polynomial augmentation: degree 0/0/∇ 8.56 ± 0.08 ns 8.56 ± 0.11 ns 1 ± 0.016
RBF/Inverse Multiquadrics, 1/sqrt((r*ε)²+1)
├─Shape factor: ε = 1
└─Polynomial augmentation: degree 0/0/∇² 15.7 ± 0.071 ns 15.7 ± 0.071 ns 0.999 ± 0.0064
RBF/Inverse Multiquadrics, 1/sqrt((r*ε)²+1)
├─Shape factor: ε = 1
└─Polynomial augmentation: degree 1/1/∂ 6.32 ± 0.011 ns 6.32 ± 0.01 ns 1 ± 0.0024
RBF/Inverse Multiquadrics, 1/sqrt((r*ε)²+1)
├─Shape factor: ε = 1
└─Polynomial augmentation: degree 1/1/∂² 15 ± 0.081 ns 14.2 ± 0.08 ns 1.06 ± 0.0083
RBF/Inverse Multiquadrics, 1/sqrt((r*ε)²+1)
├─Shape factor: ε = 1
└─Polynomial augmentation: degree 1/1/∇ 8.58 ± 0.14 ns 8.55 ± 0.09 ns 1 ± 0.02
RBF/Inverse Multiquadrics, 1/sqrt((r*ε)²+1)
├─Shape factor: ε = 1
└─Polynomial augmentation: degree 1/1/∇² 15.7 ± 0.13 ns 15.7 ± 0.07 ns 0.999 ± 0.0094
RBF/Inverse Multiquadrics, 1/sqrt((r*ε)²+1)
├─Shape factor: ε = 1
└─Polynomial augmentation: degree 2/2/∂ 6.69 ± 0.11 ns 6.32 ± 0.019 ns 1.06 ± 0.018
RBF/Inverse Multiquadrics, 1/sqrt((r*ε)²+1)
├─Shape factor: ε = 1
└─Polynomial augmentation: degree 2/2/∂² 14.1 ± 0.21 ns 14.2 ± 0.089 ns 0.99 ± 0.016
RBF/Inverse Multiquadrics, 1/sqrt((r*ε)²+1)
├─Shape factor: ε = 1
└─Polynomial augmentation: degree 2/2/∇ 8.56 ± 0.08 ns 8.55 ± 0.099 ns 1 ± 0.015
RBF/Inverse Multiquadrics, 1/sqrt((r*ε)²+1)
├─Shape factor: ε = 1
└─Polynomial augmentation: degree 2/2/∇² 15.7 ± 0.07 ns 15.7 ± 0.07 ns 0.999 ± 0.0063
RBF/Polyharmonic spline (r³)
└─Polynomial augmentation: degree 0/0/∂ 3.4 ± 0.039 ns 3.41 ± 0.03 ns 0.997 ± 0.014
RBF/Polyharmonic spline (r³)
└─Polynomial augmentation: degree 0/0/∂² 4.7 ± 0.01 ns 4.7 ± 0.01 ns 1 ± 0.003
RBF/Polyharmonic spline (r³)
└─Polynomial augmentation: degree 0/0/∇ 5.65 ± 0.021 ns 5.65 ± 0.02 ns 1 ± 0.0051
RBF/Polyharmonic spline (r³)
└─Polynomial augmentation: degree 0/0/∇² 3.42 ± 0.001 ns 3.42 ± 0.01 ns 1 ± 0.0029
RBF/Polyharmonic spline (r³)
└─Polynomial augmentation: degree 1/1/∂ 3.41 ± 0.039 ns 3.4 ± 0.039 ns 1 ± 0.016
RBF/Polyharmonic spline (r³)
└─Polynomial augmentation: degree 1/1/∂² 4.7 ± 0.01 ns 4.7 ± 0.01 ns 1 ± 0.003
RBF/Polyharmonic spline (r³)
└─Polynomial augmentation: degree 1/1/∇ 5.65 ± 0.02 ns 5.65 ± 0.021 ns 1 ± 0.0051
RBF/Polyharmonic spline (r³)
└─Polynomial augmentation: degree 1/1/∇² 3.42 ± 0.001 ns 3.42 ± 0.01 ns 1 ± 0.0029
RBF/Polyharmonic spline (r³)
└─Polynomial augmentation: degree 2/2/∂ 3.4 ± 0.04 ns 3.4 ± 0.039 ns 1 ± 0.016
RBF/Polyharmonic spline (r³)
└─Polynomial augmentation: degree 2/2/∂² 4.7 ± 0.009 ns 4.7 ± 0.011 ns 1 ± 0.003
RBF/Polyharmonic spline (r³)
└─Polynomial augmentation: degree 2/2/∇ 5.65 ± 0.021 ns 5.65 ± 0.02 ns 1 ± 0.0051
RBF/Polyharmonic spline (r³)
└─Polynomial augmentation: degree 2/2/∇² 3.42 ± 0.001 ns 3.42 ± 0.01 ns 1 ± 0.0029
RBF/Polyharmonic spline (r¹)
└─Polynomial augmentation: degree 0/0/∂ 4.27 ± 0.01 ns 4.27 ± 0.01 ns 1 ± 0.0033
RBF/Polyharmonic spline (r¹)
└─Polynomial augmentation: degree 0/0/∂² 5.58 ± 0.011 ns 5.58 ± 0.01 ns 1 ± 0.0027
RBF/Polyharmonic spline (r¹)
└─Polynomial augmentation: degree 0/0/∇ 6.85 ± 0.011 ns 7.37 ± 0.03 ns 0.93 ± 0.0041
RBF/Polyharmonic spline (r¹)
└─Polynomial augmentation: degree 0/0/∇² 4.27 ± 0.01 ns 4.28 ± 0.01 ns 0.998 ± 0.0033
RBF/Polyharmonic spline (r¹)
└─Polynomial augmentation: degree 1/1/∂ 4.27 ± 0.01 ns 4.27 ± 0.01 ns 1 ± 0.0033
RBF/Polyharmonic spline (r¹)
└─Polynomial augmentation: degree 1/1/∂² 5.58 ± 0.01 ns 5.58 ± 0.01 ns 1 ± 0.0025
RBF/Polyharmonic spline (r¹)
└─Polynomial augmentation: degree 1/1/∇ 6.85 ± 0.011 ns 7.12 ± 0.21 ns 0.962 ± 0.029
RBF/Polyharmonic spline (r¹)
└─Polynomial augmentation: degree 1/1/∇² 4.27 ± 0.01 ns 4.28 ± 0.01 ns 0.998 ± 0.0033
RBF/Polyharmonic spline (r¹)
└─Polynomial augmentation: degree 2/2/∂ 4.27 ± 0.01 ns 4.27 ± 0.01 ns 1 ± 0.0033
RBF/Polyharmonic spline (r¹)
└─Polynomial augmentation: degree 2/2/∂² 5.58 ± 0.01 ns 5.58 ± 0.01 ns 1 ± 0.0025
RBF/Polyharmonic spline (r¹)
└─Polynomial augmentation: degree 2/2/∇ 6.85 ± 0.02 ns 7.12 ± 0.011 ns 0.962 ± 0.0032
RBF/Polyharmonic spline (r¹)
└─Polynomial augmentation: degree 2/2/∇² 4.27 ± 0.01 ns 4.28 ± 0.01 ns 0.998 ± 0.0033
RBF/Polyharmonic spline (r⁵)
└─Polynomial augmentation: degree 0/0/∂ 4.65 ± 0.01 ns 4.65 ± 0.001 ns 1 ± 0.0022
RBF/Polyharmonic spline (r⁵)
└─Polynomial augmentation: degree 0/0/∂² 4.96 ± 0.01 ns 4.96 ± 0.001 ns 1 ± 0.002
RBF/Polyharmonic spline (r⁵)
└─Polynomial augmentation: degree 0/0/∇ 6.19 ± 0.011 ns 6.11 ± 0.03 ns 1.01 ± 0.0053
RBF/Polyharmonic spline (r⁵)
└─Polynomial augmentation: degree 0/0/∇² 3.42 ± 0.001 ns 3.42 ± 0.01 ns 1 ± 0.0029
RBF/Polyharmonic spline (r⁵)
└─Polynomial augmentation: degree 1/1/∂ 4.65 ± 0.01 ns 4.65 ± 0.001 ns 1 ± 0.0022
RBF/Polyharmonic spline (r⁵)
└─Polynomial augmentation: degree 1/1/∂² 4.96 ± 0.01 ns 4.96 ± 0.001 ns 1 ± 0.002
RBF/Polyharmonic spline (r⁵)
└─Polynomial augmentation: degree 1/1/∇ 6.19 ± 0.011 ns 6.11 ± 0.021 ns 1.01 ± 0.0039
RBF/Polyharmonic spline (r⁵)
└─Polynomial augmentation: degree 1/1/∇² 3.42 ± 0.001 ns 3.42 ± 0.01 ns 1 ± 0.0029
RBF/Polyharmonic spline (r⁵)
└─Polynomial augmentation: degree 2/2/∂ 4.65 ± 0.01 ns 4.65 ± 0.001 ns 1 ± 0.0022
RBF/Polyharmonic spline (r⁵)
└─Polynomial augmentation: degree 2/2/∂² 4.96 ± 0.01 ns 4.96 ± 0.001 ns 1 ± 0.002
RBF/Polyharmonic spline (r⁵)
└─Polynomial augmentation: degree 2/2/∇ 6.19 ± 0.011 ns 6.11 ± 0.04 ns 1.01 ± 0.0069
RBF/Polyharmonic spline (r⁵)
└─Polynomial augmentation: degree 2/2/∇² 3.42 ± 0.001 ns 3.42 ± 0.01 ns 1 ± 0.0029
RBF/Polyharmonic spline (r⁷)
└─Polynomial augmentation: degree 0/0/∂ 10.4 ± 0.09 ns 10.4 ± 0.071 ns 1 ± 0.011
RBF/Polyharmonic spline (r⁷)
└─Polynomial augmentation: degree 0/0/∂² 4.96 ± 0.001 ns 5.26 ± 0.01 ns 0.943 ± 0.0018
RBF/Polyharmonic spline (r⁷)
└─Polynomial augmentation: degree 0/0/∇ 12.5 ± 0.059 ns 15.8 ± 0.91 ns 0.792 ± 0.046
RBF/Polyharmonic spline (r⁷)
└─Polynomial augmentation: degree 0/0/∇² 8 ± 0.12 ns 8.14 ± 0.05 ns 0.983 ± 0.016
RBF/Polyharmonic spline (r⁷)
└─Polynomial augmentation: degree 1/1/∂ 10.4 ± 0.1 ns 10.4 ± 0.08 ns 1 ± 0.012
RBF/Polyharmonic spline (r⁷)
└─Polynomial augmentation: degree 1/1/∂² 4.96 ± 0.001 ns 5.26 ± 0.01 ns 0.943 ± 0.0018
RBF/Polyharmonic spline (r⁷)
└─Polynomial augmentation: degree 1/1/∇ 12.5 ± 0.07 ns 15.8 ± 0.92 ns 0.791 ± 0.046
RBF/Polyharmonic spline (r⁷)
└─Polynomial augmentation: degree 1/1/∇² 8 ± 0.12 ns 8.14 ± 0.05 ns 0.983 ± 0.016
RBF/Polyharmonic spline (r⁷)
└─Polynomial augmentation: degree 2/2/∂ 10.4 ± 0.1 ns 10.4 ± 0.091 ns 1 ± 0.013
RBF/Polyharmonic spline (r⁷)
└─Polynomial augmentation: degree 2/2/∂² 4.96 ± 0.001 ns 5.26 ± 0.01 ns 0.943 ± 0.0018
RBF/Polyharmonic spline (r⁷)
└─Polynomial augmentation: degree 2/2/∇ 12.5 ± 0.061 ns 15.8 ± 0.079 ns 0.793 ± 0.0056
RBF/Polyharmonic spline (r⁷)
└─Polynomial augmentation: degree 2/2/∇² 8 ± 0.11 ns 8.12 ± 0.05 ns 0.985 ± 0.015
time_to_load 0.81 ± 0.011 s 0.786 ± 0.005 s 1.03 ± 0.015

Benchmark Plots

A plot of the benchmark results have been uploaded as an artifact to the workflow run for this PR.
Go to "Actions"->"Benchmark a pull request"->[the most recent run]->"Artifacts" (at the bottom).

…ith 18 updates

Updates the requirements on [DifferentiationInterface](https://github.com/JuliaDiff/DifferentiationInterface.jl), [DelimitedFiles](https://github.com/JuliaData/DelimitedFiles.jl), [CairoMakie](https://github.com/MakieOrg/Makie.jl), [RadialBasisFunctions](https://github.com/JuliaMeshless/RadialBasisFunctions.jl), [LiveServer](https://github.com/JuliaDocs/LiveServer.jl), [Enzyme](https://github.com/EnzymeAD/Enzyme.jl), [StaticArrays](https://github.com/JuliaArrays/StaticArrays.jl), [Cairo](https://github.com/JuliaGraphics/Cairo.jl), [Mooncake](https://github.com/chalk-lab/Mooncake.jl), [HaltonSequences](https://github.com/tobydriscoll/HaltonSequences.jl), [Statistics](https://github.com/JuliaStats/Statistics.jl), [ForwardDiff](https://github.com/JuliaDiff/ForwardDiff.jl), [StaticArraysCore](https://github.com/JuliaArrays/StaticArraysCore.jl), [EnzymeCore](https://github.com/EnzymeAD/Enzyme.jl), [FiniteDifferences](https://github.com/JuliaDiff/FiniteDifferences.jl), [SafeTestsets](https://github.com/YingboMa/SafeTestsets.jl), [Adapt](https://github.com/JuliaGPU/Adapt.jl) and [KernelAbstractions](https://github.com/JuliaGPU/KernelAbstractions.jl) to permit the latest version.

Updates `DifferentiationInterface` to 0.7.16
- [Release notes](https://github.com/JuliaDiff/DifferentiationInterface.jl/releases)
- [Commits](JuliaDiff/DifferentiationInterface.jl@DifferentiationInterface-v0.1.0...DifferentiationInterface-v0.7.16)

Updates `DelimitedFiles` to 1.9.1
- [Release notes](https://github.com/JuliaData/DelimitedFiles.jl/releases)
- [Commits](JuliaData/DelimitedFiles.jl@v1.9.0...v1.9.1)

Updates `CairoMakie` to 0.15.8
- [Release notes](https://github.com/MakieOrg/Makie.jl/releases)
- [Changelog](https://github.com/MakieOrg/Makie.jl/blob/master/CHANGELOG.md)
- [Commits](https://github.com/MakieOrg/Makie.jl/commits)

Updates `RadialBasisFunctions` to 0.2.6
- [Release notes](https://github.com/JuliaMeshless/RadialBasisFunctions.jl/releases)
- [Changelog](https://github.com/JuliaMeshless/RadialBasisFunctions.jl/blob/main/RELEASE_NOTES_v0.3.0.md)
- [Commits](v0.1.0...v0.2.6)

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

Updates `Enzyme` to 0.13.129
- [Release notes](https://github.com/EnzymeAD/Enzyme.jl/releases)
- [Commits](EnzymeAD/Enzyme.jl@v0.1.0...v0.13.129)

Updates `StaticArrays` to 1.9.17
- [Release notes](https://github.com/JuliaArrays/StaticArrays.jl/releases)
- [Commits](JuliaArrays/StaticArrays.jl@v0.0.1...v1.9.17)

Updates `Cairo` to 1.1.1
- [Release notes](https://github.com/JuliaGraphics/Cairo.jl/releases)
- [Commits](JuliaGraphics/Cairo.jl@v0.2.11...v1.1.1)

Updates `Mooncake` to 0.5.6
- [Release notes](https://github.com/chalk-lab/Mooncake.jl/releases)
- [Changelog](https://github.com/chalk-lab/Mooncake.jl/blob/main/HISTORY.md)
- [Commits](chalk-lab/Mooncake.jl@v0.1.0...v0.5.6)

Updates `DifferentiationInterface` to 0.7.16
- [Release notes](https://github.com/JuliaDiff/DifferentiationInterface.jl/releases)
- [Commits](JuliaDiff/DifferentiationInterface.jl@DifferentiationInterface-v0.1.0...DifferentiationInterface-v0.7.16)

Updates `RadialBasisFunctions` to 0.2.6
- [Release notes](https://github.com/JuliaMeshless/RadialBasisFunctions.jl/releases)
- [Changelog](https://github.com/JuliaMeshless/RadialBasisFunctions.jl/blob/main/RELEASE_NOTES_v0.3.0.md)
- [Commits](v0.1.0...v0.2.6)

Updates `Enzyme` to 0.13.129
- [Release notes](https://github.com/EnzymeAD/Enzyme.jl/releases)
- [Commits](EnzymeAD/Enzyme.jl@v0.1.0...v0.13.129)

Updates `StaticArrays` to 1.9.17
- [Release notes](https://github.com/JuliaArrays/StaticArrays.jl/releases)
- [Commits](JuliaArrays/StaticArrays.jl@v0.0.1...v1.9.17)

Updates `Mooncake` to 0.5.6
- [Release notes](https://github.com/chalk-lab/Mooncake.jl/releases)
- [Changelog](https://github.com/chalk-lab/Mooncake.jl/blob/main/HISTORY.md)
- [Commits](chalk-lab/Mooncake.jl@v0.1.0...v0.5.6)

Updates `HaltonSequences` to 0.2.0
- [Release notes](https://github.com/tobydriscoll/HaltonSequences.jl/releases)
- [Commits](tobydriscoll/HaltonSequences.jl@v0.1.0...v0.2.0)

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 `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 `StaticArraysCore` to 1.4.4
- [Release notes](https://github.com/JuliaArrays/StaticArraysCore.jl/releases)
- [Commits](JuliaArrays/StaticArraysCore.jl@v1.0.0...v1.4.4)

Updates `EnzymeCore` to 0.8.18
- [Release notes](https://github.com/EnzymeAD/Enzyme.jl/releases)
- [Commits](https://github.com/EnzymeAD/Enzyme.jl/commits)

Updates `FiniteDifferences` to 0.12.33
- [Release notes](https://github.com/JuliaDiff/FiniteDifferences.jl/releases)
- [Commits](JuliaDiff/FiniteDifferences.jl@v0.1.0...v0.12.33)

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

Updates `Adapt` to 4.4.0
- [Release notes](https://github.com/JuliaGPU/Adapt.jl/releases)
- [Commits](JuliaGPU/Adapt.jl@v0.1.0...v4.4.0)

Updates `KernelAbstractions` to 0.9.40
- [Release notes](https://github.com/JuliaGPU/KernelAbstractions.jl/releases)
- [Commits](JuliaGPU/KernelAbstractions.jl@v0.1.0...v0.9.40)

---
updated-dependencies:
- dependency-name: DifferentiationInterface
  dependency-version: 0.7.16
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: DelimitedFiles
  dependency-version: 1.9.1
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: CairoMakie
  dependency-version: 0.15.8
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: RadialBasisFunctions
  dependency-version: 0.2.6
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: LiveServer
  dependency-version: 1.5.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Enzyme
  dependency-version: 0.13.129
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: StaticArrays
  dependency-version: 1.9.17
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Cairo
  dependency-version: 1.1.1
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Mooncake
  dependency-version: 0.5.6
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: DifferentiationInterface
  dependency-version: 0.7.16
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: RadialBasisFunctions
  dependency-version: 0.2.6
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Enzyme
  dependency-version: 0.13.129
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: StaticArrays
  dependency-version: 1.9.17
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Mooncake
  dependency-version: 0.5.6
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: HaltonSequences
  dependency-version: 0.2.0
  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: ForwardDiff
  dependency-version: 1.3.2
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: StaticArraysCore
  dependency-version: 1.4.4
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: EnzymeCore
  dependency-version: 0.8.18
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: FiniteDifferences
  dependency-version: 0.12.33
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: SafeTestsets
  dependency-version: 0.1.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Adapt
  dependency-version: 4.4.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: KernelAbstractions
  dependency-version: 0.9.40
  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/docs/all-julia-packages-76351639fb branch from 62a37c9 to 0f5beb8 Compare February 23, 2026 06:40
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 24, 2026

Superseded by #96.

@dependabot dependabot bot closed this Feb 24, 2026
@dependabot dependabot bot deleted the dependabot/julia/docs/all-julia-packages-76351639fb branch February 24, 2026 06:24
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