Skip to content

Bump the all-julia-packages group across 7 directories with 11 updates#1426

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/julia/all-julia-packages-539aa16892
Closed

Bump the all-julia-packages group across 7 directories with 11 updates#1426
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/julia/all-julia-packages-539aa16892

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Updates the requirements on OrderedCollections, StatsFuns, DynamicPPL, Bijectors, AbstractPPL, ADTypes, ForwardDiff, DifferentiationInterface, Enzyme, Distributions and LogDensityProblems to permit the latest version.
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 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 StatsFuns to 2.1.0

Release notes

Sourced from StatsFuns's releases.

v2.1.0

StatsFuns v2.1.0

Diff since v2.0.1

Merged pull requests:

Commits

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 DynamicPPL to 0.42.0

Release notes

Sourced from DynamicPPL's releases.

v0.42.0

DynamicPPL v0.42.0

Diff since v0.41.8

LogDensityFunction now performs AD preparation through AbstractPPL's prepare / value_and_gradient!! interface instead of calling DifferentiationInterface directly. Internally this removes the _use_closure heuristic and the explicit DI.Constant plumbing; the choice between closure and constants now lives in AbstractPPL.

logdensity_at has been renamed to logdensity_internal. The old name is kept as a const alias so external callers do not break.

LogDensityAt is now a deprecation shim that emits a warning and returns an AbstractPPL.Evaluators.VectorEvaluator whose call forwards to logdensity_internal. New code should call AbstractPPL.prepare(logdensity_internal, x; context=...) directly.

Breaking changes

DifferentiationInterface is no longer a hard dependency of DynamicPPL. With AbstractPPL 0.15.2, the following backends now have native AbstractPPL extensions and only need the concrete AD package loaded:

  • AutoForwardDiff — load ForwardDiff
  • AutoMooncake, AutoMooncakeForward — load Mooncake

For other DI-routed backends like AutoReverseDiff, users must load DifferentiationInterface together with the concrete AD package:

using DynamicPPL, ADTypes, DifferentiationInterface, ReverseDiff
ldf = LogDensityFunction(model; adtype=AutoReverseDiff())

For distributed sampling the same packages must be loaded on every worker.

Compatibility bounds bumped:

  • AbstractPPL 0.140.15
  • Bijectors 0.15.170.16

The integration test suites for MarginalLogDensities, ReverseDiff, and Enzyme now live in their own environments under test/ext/DynamicPPL*Ext/ and run as separate CI jobs.

Merged pull requests:

Closed issues:

  • Improve DynamicPPL benchmarks (#1374)
Changelog

Sourced from DynamicPPL's changelog.

0.42.0

LogDensityFunction now performs AD preparation through AbstractPPL's prepare / value_and_gradient!! interface instead of calling DifferentiationInterface directly. Internally this removes the _use_closure heuristic and the explicit DI.Constant plumbing; the choice between closure and constants now lives in AbstractPPL.

logdensity_at has been renamed to logdensity_internal. The old name is kept as a const alias so external callers do not break.

LogDensityAt is now a deprecation shim that emits a warning and returns an AbstractPPL.Evaluators.VectorEvaluator whose call forwards to logdensity_internal. New code should call AbstractPPL.prepare(logdensity_internal, x; context=...) directly.

Breaking changes

DifferentiationInterface is no longer a hard dependency of DynamicPPL. With AbstractPPL 0.15.2, the following backends now have native AbstractPPL extensions and only need the concrete AD package loaded:

  • AutoForwardDiff — load ForwardDiff
  • AutoMooncake, AutoMooncakeForward — load Mooncake

For other DI-routed backends like AutoReverseDiff, users must load DifferentiationInterface together with the concrete AD package:

using DynamicPPL, ADTypes, DifferentiationInterface, ReverseDiff
ldf = LogDensityFunction(model; adtype=AutoReverseDiff())

For distributed sampling the same packages must be loaded on every worker.

Compatibility bounds bumped:

  • AbstractPPL 0.140.15
  • Bijectors 0.15.170.16

The integration test suites for MarginalLogDensities, ReverseDiff, and Enzyme now live in their own environments under test/ext/DynamicPPL*Ext/ and run as separate CI jobs.

0.41.8

Override MarginalLogDensities.optimize_marginal! for LogDensityFunctionWrapper so the underlying OptimizationProblem is rebuilt with the current non-marginalised parameters on each call, rather than reusing a stale problem.

0.41.7

Enable usage of ComponentVectors on the left-hand side of tilde-statements.

Accessing a nonexistent variable in a VarNamedTuple now throws a KeyError with the original VarName, instead of an opaque type NamedTuple has no field ... error.

0.41.6

Add a factorize::Bool keyword argument for pointwise_logdensities(model, values), which controls whether pointwise logdensities for factorisable distributions (e.g. MvNormal, product_distribution, etc.) are returned as a single log-density for the whole distribution, or as an array of log-densities for each factor. The same argument is also added to pointwise_loglikelihoods and pointwise_prior_logdensities.

0.41.5

Make sure that DynamicPPL.TestUtils.AD.run_ad(...; verbose=false) truly silences all messages.

... (truncated)

Commits

Updates Bijectors to 0.16.0

Release notes

Sourced from Bijectors's releases.

v0.16.0

Bijectors v0.16.0

Diff since v0.15.24

Breaking changes

ChainRulesCore and EnzymeCore have been moved from direct dependencies to weak dependencies. Their integration code, including the find_alpha Enzyme rule and the rrules previously defined in src/chainrules.jl, now lives in the new BijectorsChainRulesCoreExt and BijectorsEnzymeCoreExt package extensions. These extensions are only loaded when the user also loads ChainRulesCore or EnzymeCore themselves, so downstream packages that relied on Bijectors to pull in these packages transitively must now load them directly.

DifferentiationInterface has been removed from the package's direct dependencies. It is no longer used at runtime.

Merged pull requests:

Closed issues:

  • LKJCholesky Unconstrained Parameterization is Rather "Stiff" (#468)
Changelog

Sourced from Bijectors's changelog.

0.16.0

Breaking changes

ChainRulesCore and EnzymeCore have been moved from direct dependencies to weak dependencies. Their integration code, including the find_alpha Enzyme rule and the rrules previously defined in src/chainrules.jl, now lives in the new BijectorsChainRulesCoreExt and BijectorsEnzymeCoreExt package extensions. These extensions are only loaded when the user also loads ChainRulesCore or EnzymeCore themselves, so downstream packages that relied on Bijectors to pull in these packages transitively must now load them directly.

DifferentiationInterface has been removed from the package's direct dependencies. It is no longer used at runtime.

0.15.24

Export a few more functions from Bijectors.VectorBijectors, namely scalar_to_scalar_bijector, TypedIdentity, Log, and Untruncate.

0.15.23

Implement vector bijectors for Distributions.MvTDist.

0.15.22

Implement vector bijectors for Bijectors.TransformedDistribution.

0.15.21

Add compatibility with Roots.jl v3.

0.15.20

Export Bijectors.VectorBijectors.has_constant_vec_bijector to allow downstream packages to overload it.

0.15.19

Optimise performance of vector bijectors for products of univariate distributions.

0.15.18

Implemented vector bijectors for Bijectors.OrderedDistribution.

0.15.17

Adds a new module, Bijectors.VectorBijectors. This module implements bijectors that always return vectors as the output of a linking operation. This provides additional guarantees over the existing Bijectors interface, which in general will return some collection of values that are in Euclidean space, but whose shape is not generally a vector (it could be a scalar or a multidimensional array). The intention is to make it easier to implement bijectors that are compatible with libraries that use vector inputs, such as LogDensityProblems.jl (which is in turn heavily used in the Turing ecosystem).

Please see the documentation for further information.

0.15.16

Added compatibility with Mooncake.jl v0.5.

0.15.15

... (truncated)

Commits

Updates AbstractPPL to 0.15.3

Release notes

Sourced from AbstractPPL's releases.

v0.15.3

AbstractPPL v0.15.3

Diff since v0.15.2

Closed issues:

  • Add ForwardDiff support (#165)
Changelog

Sourced from AbstractPPL's changelog.

0.15.3

Added the of type system: a self-contained, declarative way to specify the shape, element type, and support of model variables. Construct specifications with the exported of function or the exported @of macro:

using AbstractPPL
s = of(Real, 0, 1)                       # a real in [0, 1]
RegressionParams = @of(
    y = of(Array, Float64, 100), beta = of(Array, Float64, 3), sigma = of(Real, 0, nothing),
)

of-types support rand/zero (drawing or zeroing a value of the declared shape) and size/length (querying the declared shape), and can be flattened to / unflattened from a flat numeric vector. rand accepts an optional AbstractRNG for reproducible draws. flatten returns a vector whose element type is the promotion of the declared leaf types, and unflatten is automatic-differentiation transparent (float leaves take promote_type(declared, eltype(flat)), so ForwardDiff.Dual numbers flow through); both are type-stable. These are narrow methods dispatched on AbstractPPL-owned OfType subtypes. The supporting types (OfType and its subtypes) and the inspection/flatten/unflatten helpers are marked public for downstream use without being exported.

0.15.2

Added AbstractPPLForwardDiffExt, a direct ForwardDiff path for AutoForwardDiff (gradient, Jacobian, Hessian, context, chunk size, custom tag).

0.15.1

Added Hessian support to the AD interface. Pass order=2 to prepare(adtype, problem, x) to build a Hessian-capable evaluator. The new value_gradient_and_hessian!!(prepared, x) then returns (value, gradient, hessian) in a single call. Both the DifferentiationInterface and Mooncake extensions implement this.

order=2 accepts the same context::Tuple and check_dims options as order=1. NamedTuple inputs are not supported with order=2.

The AbstractPPLTestExt conformance harness now provides a :hessian group covering value, gradient and Hessian round-trips, along with an order-mismatch edge case.

0.15.0

Added a new evaluator-preparation interface for AD backends. prepare binds a callable to a sample input, either a vector or a NamedTuple, and returns a Prepared wrapper. value_and_gradient!! and value_and_jacobian!! then compute value-and-derivative pairs from that wrapper. The !! suffix means the returned derivative may alias backend cache storage, so copy it if you need to keep it across calls.

using ADTypes, Mooncake  # or DifferentiationInterface + ForwardDiff
using AbstractPPL: prepare, value_and_gradient!!
prepared = prepare(AutoMooncake(), x -> -0.5 * sum(abs2, x), zeros(3))
val, grad = value_and_gradient!!(prepared, [1.0, 2.0, 3.0])
# val == -7.0; grad == [-1.0, -2.0, -3.0]

Added two AD-backend extensions:

  • AbstractPPLDifferentiationInterfaceExt, supporting DifferentiationInterface backends.
  • AbstractPPLMooncakeExt, supporting AutoMooncake and AutoMooncakeForward.

The new evaluator path supports scalar gradients, vector-output Jacobians, NamedTuple inputs, reusable AD caches, input-shape checks, and constant context arguments via context::Tuple.

AbstractPPLTestExt now provides a small AD conformance harness through generate_testcases and run_testcases, with reserved groups :vector, :namedtuple, :edge, and :cache_reuse.

See https://github.com/TuringLang/AbstractPPL.jl/blob/main/docs/src/evaluators.md for the full interface, the check_dims and context::Tuple options, the NamedTuple input path, and extension-author guidance.

0.14.2

... (truncated)

Commits
  • 0c49dba Add the of type from JuliaBUGS.jl (#168)
  • 831c9c9 Bump codecov/codecov-action in the all-github-actions-packages group (#175)
  • a6da56d skip codecov upload on Dependabot PRs (#174)
  • 123cdd4 Bump the all-github-actions-packages group with 3 updates (#172)
  • 5c1a26c Replace CompatHelper with Dependabot (#171)
  • 9ebf18f Add direct ForwardDiff extension (#166)
  • 2d35e51 Update HISTORY.md for 0.15.1 (#164)
  • 4390c43 Add order=2 Hessian preparation via value_gradient_and_hessian!! (#163)
  • 1599516 Revise 0.15.0 HISTORY.md (#162)
  • 451bfa6 Add Mooncake extension; extend AD conformance suite with NamedTuple and cache...
  • Additional commits viewable in compare view

Updates ADTypes to 1.22.0

Release notes

Sourced from ADTypes's releases.

v1.22.0

ADTypes v1.22.0

Diff since v1.21.0

Merged pull requests:

Commits
  • b1759cd Bump version to 1.22.0 (#147)
  • 5f444f7 add HyperHessian definition (#146)
  • 58528c1 Merge pull request #145 from SciML/dependabot/github_actions/julia-actions/se...
  • 8d59cb1 Bump julia-actions/setup-julia from 2 to 3
  • 420fcec Merge pull request #144 from SciML/dependabot/github_actions/codecov/codecov-...
  • b8f651a Bump codecov/codecov-action from 5 to 6
  • 6cc1c9e Merge pull request #143 from SciML/dependabot/github_actions/julia-actions/ca...
  • 59c6ed7 Bump julia-actions/cache from 2 to 3
  • 8d795ca Merge pull request #142 from SciML/dependabot/github_actions/actions/checkout-6
  • 94ee83c Bump actions/checkout from 4 to 6
  • Additional commits viewable in compare view

Updates ForwardDiff to 1.4.1

Release notes

Sourced from ForwardDiff's releases.

v1.4.1

ForwardDiff v1.4.1

Diff since v1.4.0

Merged pull requests:

Commits
  • 777420f Remove allocations of nested Jacobians of StaticArrays (#810)
  • 5bf530a Bump codecov/codecov-action from 6 to 7 (#814)
  • 0a3d297 CompatHelper: bump compat for LogExpFunctions to 1, (keep existing compat) (#...
  • 39916da CompatHelper: bump compat for JET in [extras] to 0.11, (keep existing compat)...
  • 7e52ffa Bump julia-actions/setup-julia from 2 to 3 (#802)
  • 39a27fe Bump codecov/codecov-action from 5 to 6 (#799)
  • 1295777 Avoid reshape allocation in extract_jacobian! for Matrix results (#797)
  • ff0d903 Bump julia-actions/cache from 2 to 3 (#796)
  • 7262054 Remove explicit != methods for Dual (#793)
  • 71258ec Update documentation formatting and infrastructure (#792)
  • Additional commits viewable in compare view

Updates DynamicPPL to 0.42.0

Release notes

Sourced from DynamicPPL's releases.

v0.42.0

DynamicPPL v0.42.0

Diff since v0.41.8

LogDensityFunction now performs AD preparation through AbstractPPL's prepare / value_and_gradient!! interface instead of calling DifferentiationInterface directly. Internally this removes the _use_closure heuristic and the explicit DI.Constant plumbing; the choice between closure and constants now lives in AbstractPPL.

logdensity_at has been renamed to logdensity_internal. The old name is kept as a const alias so external callers do not break.

LogDensityAt is now a deprecation shim that emits a warning and returns an AbstractPPL.Evaluators.VectorEvaluator whose call forwards to logdensity_internal. New code should call AbstractPPL.prepare(logdensity_internal, x; context=...) directly.

Breaking changes

DifferentiationInterface is no longer a hard dependency of DynamicPPL. With AbstractPPL 0.15.2, the following backends now have native AbstractPPL extensions and only need the concrete AD package loaded:

  • AutoForwardDiff — load ForwardDiff
  • AutoMooncake, AutoMooncakeForward — load Mooncake

For other DI-routed backends like AutoReverseDiff, users must load DifferentiationInterface together with the concrete AD package:

using DynamicPPL, ADTypes, DifferentiationInterface, ReverseDiff
ldf = LogDensityFunction(model; adtype=AutoReverseDiff())

For distributed sampling the same packages must be loaded on every worker.

Compatibility bounds bumped:

  • AbstractPPL 0.140.15
  • Bijectors 0.15.170.16

The integration test suites for MarginalLogDensities, ReverseDiff, and Enzyme now live in their own environments under test/ext/DynamicPPL*Ext/ and run as separate CI jobs.

Merged pull requests:

Closed issues:

  • Improve DynamicPPL benchmarks (#1374)
Changelog

Sourced from DynamicPPL's changelog.

0.42.0

LogDensityFunction now performs AD preparation through AbstractPPL's prepare / value_and_gradient!! interface instead of calling DifferentiationInterface directly. Internally this removes the _use_closure heuristic and the explicit DI.Constant plumbing; the choice between closure and constants now lives in AbstractPPL.

logdensity_at has been renamed to logdensity_internal. The old name is kept as a const alias so external callers do not break.

LogDensityAt is now a deprecation shim that emits a warning and returns an AbstractPPL.Evaluators.VectorEvaluator whose call forwards to logdensity_internal. New code should call AbstractPPL.prepare(logdensity_internal, x; context=...) directly.

Breaking changes

DifferentiationInterface is no longer a hard dependency of DynamicPPL. With AbstractPPL 0.15.2, the following backends now have native AbstractPPL extensions and only need the concrete AD package loaded:

  • AutoForwardDiff — load ForwardDiff
  • AutoMooncake, AutoMooncakeForward — load Mooncake

For other DI-routed backends like AutoReverseDiff, users must load DifferentiationInterface together with the concrete AD package:

using DynamicPPL, ADTypes, DifferentiationInterface, ReverseDiff
ldf = LogDensityFunction(model; adtype=AutoReverseDiff())

For distributed sampling the same packages must be loaded on every worker.

Compatibility bounds bumped:

  • AbstractPPL 0.140.15
  • Bijectors 0.15.170.16

The integration test suites for MarginalLogDensities, ReverseDiff, and Enzyme now live in their own environments under test/ext/DynamicPPL*Ext/ and run as separate CI jobs.

0.41.8

Override MarginalLogDensities.optimize_marginal! for LogDensityFunctionWrapper so the underlying OptimizationProblem is rebuilt with the current non-marginalised parameters on each call, rather than reusing a stale problem.

0.41.7

Enable usage of ComponentVectors on the left-hand side of tilde-statements.

Accessing a nonexistent variable in a VarNamedTuple now throws a KeyError with the original VarName, instead of an opaque type NamedTuple has no field ... error.

0.41.6

Add a factorize::Bool keyword argument for pointwise_logdensities(model, values), which controls whether pointwise logdensities for factorisable distributions (e.g. MvNormal, product_distribution, etc.) are returned as a single log-density for the whole distribution, or as an array of log-densities for each factor. The same argument is also added to pointwise_loglikelihoods and pointwise_prior_logdensities.

0.41.5

Make sure that DynamicPPL.TestUtils.AD.run_ad(...; verbose=false) truly silences all messages.

... (truncated)

Commits

Updates DifferentiationInterface to 0.7.18

Release notes

Sourced from DifferentiationInterface's releases.

DifferentiationInterface-v0.7.18

DifferentiationInterface DifferentiationInterface-v0.7.18

Diff since DifferentiationInterface-v0.7.17

Merged pull requests:

Closed issues:

  • FiniteDiff with :central includes junk (#983)
  • Tracking removal from Turing-verse (#992)
Commits
  • f477fa3 fix: proper eltype in wrong-mode pushforward/pullback (#1003)
  • cb6801e feat: add support for HyperHessian backend (#940)
  • d38d905 fix: make DI compatible with latest Mooncake friendly tangents (#1001)
  • 1b5d91c chore: clean up backend testing CI (#1002)
  • 5a3ea38 test: activate Enzyme tests on Julia 1.12 (#966)
  • ee29327 chore(deps): bump julia-actions/setup-julia from 2 to 3 (#994)
  • 508572e chore: upper-bound Mooncake version (coherence with General) (

Updates the requirements on [OrderedCollections](https://github.com/JuliaCollections/OrderedCollections.jl), [StatsFuns](https://github.com/JuliaStats/StatsFuns.jl), [DynamicPPL](https://github.com/TuringLang/DynamicPPL.jl), [Bijectors](https://github.com/TuringLang/Bijectors.jl), [AbstractPPL](https://github.com/TuringLang/AbstractPPL.jl), [ADTypes](https://github.com/SciML/ADTypes.jl), [ForwardDiff](https://github.com/JuliaDiff/ForwardDiff.jl), [DifferentiationInterface](https://github.com/JuliaDiff/DifferentiationInterface.jl), [Enzyme](https://github.com/EnzymeAD/Enzyme.jl), [Distributions](https://github.com/JuliaStats/Distributions.jl) and [LogDensityProblems](https://github.com/tpapp/LogDensityProblems.jl) to permit the latest version.

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

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

Updates `StatsFuns` to 2.1.0
- [Release notes](https://github.com/JuliaStats/StatsFuns.jl/releases)
- [Commits](JuliaStats/StatsFuns.jl@v1.0.0...v2.1.0)

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

Updates `DynamicPPL` to 0.42.0
- [Release notes](https://github.com/TuringLang/DynamicPPL.jl/releases)
- [Changelog](https://github.com/TuringLang/DynamicPPL.jl/blob/main/HISTORY.md)
- [Commits](v0.1.0...v0.42.0)

Updates `Bijectors` to 0.16.0
- [Release notes](https://github.com/TuringLang/Bijectors.jl/releases)
- [Changelog](https://github.com/TuringLang/Bijectors.jl/blob/main/HISTORY.md)
- [Commits](TuringLang/Bijectors.jl@v0.1.0...v0.16.0)

Updates `AbstractPPL` to 0.15.3
- [Release notes](https://github.com/TuringLang/AbstractPPL.jl/releases)
- [Changelog](https://github.com/TuringLang/AbstractPPL.jl/blob/main/HISTORY.md)
- [Commits](TuringLang/AbstractPPL.jl@v0.1.0...v0.15.3)

Updates `ADTypes` to 1.22.0
- [Release notes](https://github.com/SciML/ADTypes.jl/releases)
- [Commits](SciML/ADTypes.jl@v0.1.0...v1.22.0)

Updates `ForwardDiff` to 1.4.1
- [Release notes](https://github.com/JuliaDiff/ForwardDiff.jl/releases)
- [Commits](JuliaDiff/ForwardDiff.jl@v0.0.2...v1.4.1)

Updates `DynamicPPL` to 0.42.0
- [Release notes](https://github.com/TuringLang/DynamicPPL.jl/releases)
- [Changelog](https://github.com/TuringLang/DynamicPPL.jl/blob/main/HISTORY.md)
- [Commits](v0.1.0...v0.42.0)

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

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

Updates `AbstractPPL` to 0.15.3
- [Release notes](https://github.com/TuringLang/AbstractPPL.jl/releases)
- [Changelog](https://github.com/TuringLang/AbstractPPL.jl/blob/main/HISTORY.md)
- [Commits](TuringLang/AbstractPPL.jl@v0.1.0...v0.15.3)

Updates `DynamicPPL` to 0.42.0
- [Release notes](https://github.com/TuringLang/DynamicPPL.jl/releases)
- [Changelog](https://github.com/TuringLang/DynamicPPL.jl/blob/main/HISTORY.md)
- [Commits](v0.1.0...v0.42.0)

Updates `Distributions` to 0.25.126
- [Release notes](https://github.com/JuliaStats/Distributions.jl/releases)
- [Commits](JuliaStats/Distributions.jl@0.2.2...v0.25.126)

Updates `Bijectors` to 0.16.0
- [Release notes](https://github.com/TuringLang/Bijectors.jl/releases)
- [Changelog](https://github.com/TuringLang/Bijectors.jl/blob/main/HISTORY.md)
- [Commits](TuringLang/Bijectors.jl@v0.1.0...v0.16.0)

Updates `LogDensityProblems` to 2.2.0
- [Release notes](https://github.com/tpapp/LogDensityProblems.jl/releases)
- [Changelog](https://github.com/tpapp/LogDensityProblems.jl/blob/master/CHANGELOG.md)
- [Commits](tpapp/LogDensityProblems.jl@v0.1.0...v2.2.0)

Updates `AbstractPPL` to 0.15.3
- [Release notes](https://github.com/TuringLang/AbstractPPL.jl/releases)
- [Changelog](https://github.com/TuringLang/AbstractPPL.jl/blob/main/HISTORY.md)
- [Commits](TuringLang/AbstractPPL.jl@v0.1.0...v0.15.3)

Updates `ADTypes` to 1.22.0
- [Release notes](https://github.com/SciML/ADTypes.jl/releases)
- [Commits](SciML/ADTypes.jl@v0.1.0...v1.22.0)

Updates `ForwardDiff` to 1.4.1
- [Release notes](https://github.com/JuliaDiff/ForwardDiff.jl/releases)
- [Commits](JuliaDiff/ForwardDiff.jl@v0.0.2...v1.4.1)

Updates `DynamicPPL` to 0.42.0
- [Release notes](https://github.com/TuringLang/DynamicPPL.jl/releases)
- [Changelog](https://github.com/TuringLang/DynamicPPL.jl/blob/main/HISTORY.md)
- [Commits](v0.1.0...v0.42.0)

Updates `Distributions` to 0.25.126
- [Release notes](https://github.com/JuliaStats/Distributions.jl/releases)
- [Commits](JuliaStats/Distributions.jl@0.2.2...v0.25.126)

Updates `Bijectors` to 0.16.0
- [Release notes](https://github.com/TuringLang/Bijectors.jl/releases)
- [Changelog](https://github.com/TuringLang/Bijectors.jl/blob/main/HISTORY.md)
- [Commits](TuringLang/Bijectors.jl@v0.1.0...v0.16.0)

Updates `LogDensityProblems` to 2.2.0
- [Release notes](https://github.com/tpapp/LogDensityProblems.jl/releases)
- [Changelog](https://github.com/tpapp/LogDensityProblems.jl/blob/master/CHANGELOG.md)
- [Commits](tpapp/LogDensityProblems.jl@v0.1.0...v2.2.0)

Updates `AbstractPPL` to 0.15.3
- [Release notes](https://github.com/TuringLang/AbstractPPL.jl/releases)
- [Changelog](https://github.com/TuringLang/AbstractPPL.jl/blob/main/HISTORY.md)
- [Commits](TuringLang/AbstractPPL.jl@v0.1.0...v0.15.3)

Updates `ADTypes` to 1.22.0
- [Release notes](https://github.com/SciML/ADTypes.jl/releases)
- [Commits](SciML/ADTypes.jl@v0.1.0...v1.22.0)

Updates `ForwardDiff` to 1.4.1
- [Release notes](https://github.com/JuliaDiff/ForwardDiff.jl/releases)
- [Commits](JuliaDiff/ForwardDiff.jl@v0.0.2...v1.4.1)

Updates `DynamicPPL` to 0.42.0
- [Release notes](https://github.com/TuringLang/DynamicPPL.jl/releases)
- [Changelog](https://github.com/TuringLang/DynamicPPL.jl/blob/main/HISTORY.md)
- [Commits](v0.1.0...v0.42.0)

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

---
updated-dependencies:
- dependency-name: OrderedCollections
  dependency-version: 2.0.0
  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: StatsFuns
  dependency-version: 2.1.0
  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: DynamicPPL
  dependency-version: 0.42.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Bijectors
  dependency-version: 0.16.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: AbstractPPL
  dependency-version: 0.15.3
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: ADTypes
  dependency-version: 1.22.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: ForwardDiff
  dependency-version: 1.4.1
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: DynamicPPL
  dependency-version: 0.42.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: DifferentiationInterface
  dependency-version: 0.7.18
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Enzyme
  dependency-version: 0.13.159
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: AbstractPPL
  dependency-version: 0.15.3
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: DynamicPPL
  dependency-version: 0.42.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Distributions
  dependency-version: 0.25.126
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Bijectors
  dependency-version: 0.16.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: LogDensityProblems
  dependency-version: 2.2.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: AbstractPPL
  dependency-version: 0.15.3
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: ADTypes
  dependency-version: 1.22.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: ForwardDiff
  dependency-version: 1.4.1
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: DynamicPPL
  dependency-version: 0.42.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Distributions
  dependency-version: 0.25.126
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Bijectors
  dependency-version: 0.16.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: LogDensityProblems
  dependency-version: 2.2.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: AbstractPPL
  dependency-version: 0.15.3
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: ADTypes
  dependency-version: 1.22.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: ForwardDiff
  dependency-version: 1.4.1
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: DynamicPPL
  dependency-version: 0.42.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: DifferentiationInterface
  dependency-version: 0.7.18
  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 Jun 17, 2026
@github-actions

Copy link
Copy Markdown
Contributor

DynamicPPL.jl documentation for PR #1426 is available at:
https://TuringLang.github.io/DynamicPPL.jl/previews/PR1426/

@github-actions

Copy link
Copy Markdown
Contributor

Benchmarks @ eaca220

Performance Ratio: gradient time divided by log-density time.

For very small models these ratios are noisy across runs and machines; raw primal and gradient timings are more reliable. The benchmarks are aimed at DynamicPPL developers and mainly catch obvious allocation or type-stability regressions. See benchmark notes for details.

===================================================================================================
                                               eval                       gradient                 
                                            ----------  -------------------------------------------
Model                        dim    linked      primal     FwdDiff    RvsDiff    Mooncake    Enzyme
---------------------------------------------------------------------------------------------------
Simple assume observe*         1     false     4.63 ns       13.25    1436.69       37.26     12.43
Simple assume observe*         1      true     4.63 ns       12.57    1628.74       38.97     12.27
Smorgasbord                  201     false      5.9 μs       71.84     135.05        6.82      9.65
Smorgasbord                  201      true     7.57 μs       76.87     142.21        6.18      6.90
Loop univariate 1k          1000     false     17.6 μs      978.50     295.27        8.09      6.65
Loop univariate 1k          1000      true     19.1 μs     1415.80     276.96        7.48      6.10
Multivariate 1k             1000     false     23.5 μs      331.95      73.34        8.76      3.13
Multivariate 1k             1000      true     25.0 μs      282.76      59.87        8.94      3.03
Loop univariate 10k        10000     false    172.0 μs    11851.62     322.93        8.27      6.75
Loop univariate 10k        10000      true    188.0 μs    11802.20     296.77        7.53      6.16
Multivariate 10k           10000     false    194.0 μs     5112.73      89.89       11.51      2.30
Multivariate 10k           10000      true    194.0 μs     5048.86      90.20       11.37      2.31
Dynamic                       15     false     1.34 μs         err      43.45       14.23     10.98
Dynamic                       10      true     1.89 μs        1.98      59.47       18.46     18.93
Submodel*                      1     false     4.64 ns       12.81    1678.70       37.18     12.30
Submodel*                      1      true     4.64 ns       12.54    1786.27       39.51     12.18
LDA                           12      true     23.1 μs        0.65       2.06       32.91       err
===================================================================================================
Main @ b310eec
===================================================================================================
                                               eval                       gradient                 
                                            ----------  -------------------------------------------
Model                        dim    linked      primal     FwdDiff    RvsDiff    Mooncake    Enzyme
---------------------------------------------------------------------------------------------------
Simple assume observe*         1     false     4.63 ns       12.53    1572.18       32.48     12.68
Simple assume observe*         1      true     4.63 ns       12.47    1703.07       35.40     12.73
Smorgasbord                  201     false     5.94 μs       70.22     135.16        6.95      9.73
Smorgasbord                  201      true     7.65 μs       79.69     141.03        6.20      6.74
Loop univariate 1k          1000     false     17.7 μs      939.68     299.99        8.12      6.79
Loop univariate 1k          1000      true     19.0 μs     1507.23     287.24        7.53      6.08
Multivariate 1k             1000     false     24.3 μs      410.71      70.83        8.39      2.96
Multivariate 1k             1000      true     20.9 μs      302.20      57.84       10.75      2.99
Loop univariate 10k        10000     false    173.0 μs    11825.89     320.82        8.39      6.68
Loop univariate 10k        10000      true    186.0 μs    11709.20     301.65        7.72      6.12
Multivariate 10k           10000     false    194.0 μs     6100.32      90.51       11.43      2.27
Multivariate 10k           10000      true    194.0 μs     5892.87      91.05       11.48      2.27
Dynamic                       15     false     1.35 μs         err      44.29       14.13     11.21
Dynamic                       10      true     1.87 μs        1.96      58.86       13.78     21.71
Submodel*                      1     false     4.63 ns       12.57    1788.92       35.51     12.56
Submodel*                      1      true     4.63 ns       12.53    1818.20       35.30     12.78
LDA                           12      true     22.9 μs        0.47       1.99       33.05       err
===================================================================================================
Environment
Julia Version 1.11.9
Commit 53a02c0720c (2026-02-06 00:27 UTC)
Build Info:
  Official https://julialang.org/ release
Platform Info:
  OS: Linux (x86_64-linux-gnu)
  CPU: 4 × AMD EPYC 7763 64-Core Processor
  WORD_SIZE: 64
  LLVM: libLLVM-16.0.6 (ORCJIT, znver3)
Threads: 1 default, 0 interactive, 1 GC (on 4 virtual cores)

@dependabot @github

dependabot Bot commented on behalf of github Jun 22, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Jun 22, 2026
@dependabot dependabot Bot deleted the dependabot/julia/all-julia-packages-539aa16892 branch June 22, 2026 19:57
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