Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 30, 2026

Updates the requirements on Mooncake, DifferentiationInterfaceTest, Tables and DataAPI to permit the latest version.
Updates Mooncake to 0.5.0

Release notes

Sourced from Mooncake's releases.

v0.5.0

Mooncake v0.5.0

Diff since v0.4.203

Breaking changes

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
  • 80cc727 Mooncake v0.5.0: Use Config in the interface (#977)
  • 7b2f7ba Use non-parametric alias or full form.
  • ad0c3c2 Refine CF alias with type constraint.
  • a9c72fd Bump version from 0.4.203 to 0.4.204 (#973)
  • 863d8e2 clarifying rules for new, lgetfield, and lsetfield! in customised tangents ...
  • d6d0ada Make Complex{<:IEEEFloat} its own tangent type (#953)
  • 05c93de replace overlay with matrixify (see #961) (#966)
  • 0be696d fix typos (#964)
  • ae44b48 run formatting CI on LTS only (#960)
  • cfdaf2d support matrix-vector or vector-matrix in gemm (#942)
  • Additional commits viewable in compare view

Updates DifferentiationInterfaceTest to 0.11.0

Release notes

Sourced from DifferentiationInterfaceTest's releases.

DifferentiationInterfaceTest-v0.11.0

DifferentiationInterfaceTest DifferentiationInterfaceTest-v0.11.0

Diff since DifferentiationInterfaceTest-v0.10.4

Breaking changes

Removed JET, Chairmarks and DataFrames dependencies:

  • To analyze type stability, run using JET first
  • To benchmark, run using Chairmarks first and manually convert the resulting table into a DataFrame if necessary

Merged pull requests:

Closed issues:

  • Overhead of function call to get output shape in pushforward-via-pullback (#930)
  • Fix second order with FunctionContext in Enzyme (#937)
  • This is not an issue (#941)
  • Missing _shadow method in Enzyme extension (#942)
  • Missing basis method (#944)
  • Precompilation error with weakdeps (#947)
  • inner second order and outer optimization AD? (#953)
Commits
  • 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)
  • c892c22 feat: allow non-numeric arguments with AutoSymbolics (#945)
  • 0dd1abf test: toggle fail fast until Enzyme bug is fixed (#936)
  • Additional commits viewable in compare view

Updates Tables to 1.12.1

Release notes

Sourced from Tables's releases.

v1.12.1

Tables v1.12.1

Diff since v1.12.0

Merged pull requests:

Closed issues:

  • Unexpected complaint about too-wide a table (#357)
  • Improve show when printing vectors of AbstractRows (#361)
Commits

Updates DataAPI to 1.16.0

Release notes

Sourced from DataAPI's releases.

v1.16.0

DataAPI v1.16.0

Diff since v1.15.0

Merged pull requests:

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

…ith 4 updates

Updates the requirements on [Mooncake](https://github.com/chalk-lab/Mooncake.jl), [DifferentiationInterfaceTest](https://github.com/JuliaDiff/DifferentiationInterface.jl), [Tables](https://github.com/JuliaData/Tables.jl) and [DataAPI](https://github.com/JuliaData/DataAPI.jl) to permit the latest version.

Updates `Mooncake` to 0.5.0
- [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.4.175...v0.5.0)

Updates `DifferentiationInterfaceTest` to 0.11.0
- [Release notes](https://github.com/JuliaDiff/DifferentiationInterface.jl/releases)
- [Commits](DifferentiationInterfaceTest-v0.1.0...DifferentiationInterfaceTest-v0.11.0)

Updates `Tables` to 1.12.1
- [Release notes](https://github.com/JuliaData/Tables.jl/releases)
- [Commits](JuliaData/Tables.jl@v0.1.0...v1.12.1)

Updates `DataAPI` to 1.16.0
- [Release notes](https://github.com/JuliaData/DataAPI.jl/releases)
- [Commits](JuliaData/DataAPI.jl@v1.0.0...v1.16.0)

---
updated-dependencies:
- dependency-name: Mooncake
  dependency-version: 0.5.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: DifferentiationInterfaceTest
  dependency-version: 0.11.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Tables
  dependency-version: 1.12.1
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: DataAPI
  dependency-version: 1.16.0
  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 Jan 30, 2026
@dependabot dependabot bot requested a review from gdalle as a code owner January 30, 2026 08:31
@dependabot dependabot bot added dependencies Pull requests that update a dependency file julia Pull requests that update julia code labels Jan 30, 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