Skip to content

Bump the all-julia-packages group across 2 directories with 15 updates#204

Merged
tpapp merged 5 commits into
masterfrom
dependabot/julia/docs/all-julia-packages-b6f3222371
May 30, 2026
Merged

Bump the all-julia-packages group across 2 directories with 15 updates#204
tpapp merged 5 commits into
masterfrom
dependabot/julia/docs/all-julia-packages-b6f3222371

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 30, 2026

Copy link
Copy Markdown
Contributor

Updates the requirements on Statistics, LogDensityProblemsAD, TransformVariables, OhMyThreads, TransformedLogDensities, MCMCDiagnosticTools, LogDensityProblems, LogExpFunctions, ArgCheck, DocStringExtensions, ForwardDiff, HypothesisTests, StatsBase, Aqua and JET to permit the latest version.
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 LogDensityProblemsAD to 1.13.1

Release notes

Sourced from LogDensityProblemsAD's releases.

v1.13.1

LogDensityProblemsAD v1.13.1

Diff since v1.13.0

compat version bumps, separate test project file, test fix

Merged pull requests:

Commits

Updates TransformVariables to 0.8.24

Release notes

Sourced from TransformVariables's releases.

v0.8.24

TransformVariables v0.8.24

Diff since v0.8.23

minor efficiency improvement in TVExp, thanks @​devmotion

Merged pull requests:

Changelog

Sourced from TransformVariables's changelog.

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Unreleased

Added

Changed

Deprecated

Removed

Fixed

Security

0.8.23

Fixed

  • eliminate Union in as(SArray{}, ...) implementation

0.8.22

Fixed

Fixed variable capture in StaticArrayTransformation (tpapp/TransformVariables.jl#167).

0.8.21

Added

Transform into structs (tpapp/TransformVariables.jl#163).

0.8.20

Fixed

Loosen types for Reactant.jl (tpapp/TransformVariables.jl#162)

0.8.19

Added

  • add a merge method for NamedTuple transformations #150

Fixed

  • Cleaned up inverse eltype calculations #149

... (truncated)

Commits
  • c6cb89c Make inverse_and_logjac for TVExp more efficient (#171)
  • f4ecccc Revert "Make inverse_and_logjac for TVExp more efficient"
  • 48a0113 Make inverse_and_logjac for TVExp more efficient
  • a258f7c Bump julia-actions/setup-julia from 2 to 3 (#169)
  • 9b0a3d3 fix Union in SArray aggregation code (#168)
  • 93900b5 add various manifests to .gitignore
  • 6cfdff6 Bump codecov/codecov-action from 5 to 6 (#166)
  • 88fc941 bump version, changelog
  • 1080cf5 fix captured variable in static array aggregation (#167)
  • 6357270 Bump actions/cache from 4 to 5 (#161)
  • Additional commits viewable in compare view

Updates OhMyThreads to 0.8.6

Release notes

Sourced from OhMyThreads's releases.

v0.8.6

OhMyThreads v0.8.6

Diff since v0.8.5

Merged pull requests:

Closed issues:

  • showprogress setting (#59)
Changelog

Sourced from OhMyThreads's changelog.

Version 0.8.6

  • ![Enhancement][badge-enhancement] tmap, tmap!, tforeach, tmapreduce, treducemap, and treduce are now compatible with ProgressMeter.jl, so you can do e.g. @showprogress tmap(...)#164[gh-pr-164].

Version 0.8.5

  • ![Enhancement][badge-enhancement] SerialScheduler now accepts and ignores arguments passed to it to make switching schedulers easier #162[gh-pr-162].

Version 0.8.3

  • ![Enhancement][badge-enhancement] The overhead of tmapreduce in the serial case was reduced a bit. Sentinel values in scheduler kwarg internals were replaced by nothing #148[gh-pr-148]

Version 0.8.2

  • ![Feature][badge-feature] Added a minchunksize chunking argument for schedulers, so that they can specify a lower bound on the size of chunks which are worth parallelizing. For example, treduce(+, 1:10; minchunksize=100) will run serially, but treduce(+, 1:1000000; minchunksize=100) will be parallelized #145[gh-pr-145].
  • ![Enhancement][badge-enhancement] Operations on collections with only one 'chunk' no longer spawn an unnecessary task. That means operations like treduce(+, 1:10; minchunksize=100) will have less overhead #145[gh-pr-145].

Version 0.8.1

  • ![Feature][badge-feature] Added a @localize macro which turns @localize x y expr into let x=x, y=y; expr end (#142[gh-pr-142])
  • ![INFO][badge-info] The error messafe for captured variables now has a longer error hint that displays when the Markdown package is loaded (e.g. in the REPL.) (#142[gh-pr-142])

Version 0.8.0

  • ![BREAKING][badge-breaking] We now detect and throw errors if an OhMyThreads parallel function is passed a closure containing a Boxed variable. This behaviour can be disabled with the new @allow_boxed_captures macro, and re-enabled with @disallow_boxed_captures. (#141[gh-pr-141])
  • ![INFO][badge-info] Schedulder chunking info is no longer directly available via getproperty. This was never a public interface, but it's possible some users relied upon it #135[gh-pr-135].

Version 0.7.0

  • ![BREAKING][badge-breaking] We now use ChunkSplitters version 3.0. The function OhMyThreads.chunks has been renamed to OhMyThreads.index_chunks. The new functions index_chunks and chunks (different from the old one with the same name!) are now exported. See ChunkSplitters.jl for more information.
  • ![BREAKING][badge-breaking] If you provide a chunks or index_chunks as input we now disable the internal chunking without a warning. Previously, we did show a warning unless you had set chunking=false. In contrast, we now throw an error when you set any incompatible chunking related keyword arguments.
  • ![Deprecation][badge-deprecation] The split options :batch and :scatter are now deprecated (they still work but will be dropped at some point). Use :consecutive and :roundrobin, respectively, instead.
  • ![Enhancement][badge-enhancement] The split keyword argument can now also be a <: OhMyThreads.Split. Compared to providing a Symbol, the former can potentially give better performance. For example, you can replace :consecutive by OhMyThreads.Consecutive() and :roundrobin by OhMyThreads.RoundRobin().
  • ![Feature][badge-feature] ChannelLike is a new public (but not exported) type. ChannelLike(itr) provide a way to iterate over itr in a concurrency safe manner similar to Channel. See the docstring for more details. (#121[gh-pr-121])
  • ![Enhancement][badge-enhancement] ChannelLike is used internally for the GreedyScheduler when chunking=true. This improves performance overall but it is especially noticeable when the number of chunks is large. (#121[gh-pr-121])

Version 0.6.2

  • ![Enhancement][badge-enhancement] Added API support for enumerate(chunks(...)). Best used in combination with chunking=false

Version 0.6.1

Version 0.6.0

  • ![BREAKING][badge-breaking] Drop support for Julia < 1.10.

Version 0.5.3

  • ![Enhancement][badge-enhancement] For the special/fake "macros" like, e.g., @set, support the verbose form OhMyThreads.@set within a @tasks for-loop (#107).

... (truncated)

Commits

Updates TransformedLogDensities to 1.1.1

Release notes

Sourced from TransformedLogDensities's releases.

v1.1.1

TransformedLogDensities v1.1.1

Diff since v1.1.0

Compat version bump

Commits

Updates MCMCDiagnosticTools to 0.3.17

Release notes

Sourced from MCMCDiagnosticTools's releases.

v0.3.17

MCMCDiagnosticTools v0.3.17

Diff since v0.3.16

Merged pull requests:

Closed issues:

  • Nested R-hat (#23)
Commits
  • b0f90fb feat: Add Nested R-hat (#152)
  • ef1019a test: Replace MLJModels with MLJTransforms (#151)
  • 2345253 CompatHelper: bump compat for EvoTrees in [extras] to 0.18, (keep existing co...
  • 9133941 docs: CompatHelper: bump compat for StatisticalMeasures to 0.3 for package do...
  • 48e810e Use native Julia binaries (#147)
  • 2c93747 Bump actions/checkout from 5 to 6 (#146)
  • a99df02 Fix badge (#145)
  • d3d50c8 CompatHelper: bump compat for EvoTrees to 0.18 for package docs, (keep existi...
  • 8f11f24 Update link to contributor page on license
  • 53328b8 Bump actions/checkout from 4 to 5 (#141)
  • Additional commits viewable in compare view

Updates LogDensityProblems to 2.2.0

Release notes

Sourced from LogDensityProblems's releases.

v2.2.0

LogDensityProblems v2.2.0

Diff since v2.1.2

Merged pull requests:

Changelog

Sourced from LogDensityProblems's changelog.

Unreleased

  • test Zygote on all Julia branches #55

Major cleanup #54

  • remove support for ReverseDiff
  • replace Flux with Tracker
  • bump Documenter version, minor docs cleanup

0.9.2

  • follow API change in Zygote (#51, thanks @​scheidan)

  • add compat bounds (for automatic registration)

0.9.1

  • clarify constant shifts in log densities

  • test for inference issues, fix for Flux

0.9.0

Major, breaking API changes.

  1. Wrapper types Value and ValueGradient are removed. Interface functions return real numbers (logdensity), or a real number and a vector (logdensity_and_gradient). The calling convention of these types is simplified.

  2. Capabilities of log density objects are described by traits, see capabilities.

  3. dimension is now distinct from TransformVariables.dimension, as it is not really the same thing.

  4. Condition-based wrappers removed, as it was interfering with AD (mostly Zygote).

  5. Documentation significantly improved.

  6. Code organized into a single file (except for conditional loads), tests greatly simplified.

0.8.3

  • update to work with new Zygote interface

0.8.2

  • no code change, just a version bump to fix registoy problems

0.8.1

  • minor package and version fixes

... (truncated)

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 LogExpFunctions to 1.0.0

Release notes

Sourced from LogExpFunctions's releases.

v1.0.0

LogExpFunctions v1.0.0

Diff since v0.3.29

Breaking changes

  • Remove overly strict promise regarding the implementation of log2mexp (#103)
  • Release version 1.0 (#95)

Closed issues:

  • logit(x::Float64) accuracy vanishes around the zero, at x = 1/2 (#98)
  • logcosh(x) accuracy vanishes around the zero, at x = 0 (#100)
Changelog

Sourced from LogExpFunctions's changelog.

1.0.0

Added

  • add logabstanh

Changed

  • improve log1pmx, add Float32 implementation
  • make tests have their own environment, use JET.jl and Aqua.jl
  • improve _log1pmx_ker internal documentation on the polynomial
  • improve accuracy of logit, logcosh
  • more detailed testing (ULPError.jl)
  • relax the doc string of log2mexp to promise just "careful evaluation", technically breaking

0.3.29

A changelog is not available up to this version.

Commits
  • 34f13bb remove 'pre' from CI
  • c837fc0 Merge pull request #111 from JuliaStats/dependabot/github_actions/julia-actio...
  • d00fd51 Change CI matrix version from 'min' to 'min-patch'
  • d35edd2 Bump julia-actions/setup-julia from 2 to 3
  • c084f58 Bump codecov/codecov-action from 5 to 6 (#110)
  • 63f988a Bump julia-actions/cache from 2 to 3 (#109)
  • 41f0689 Merge pull request #108 from JuliaStats/dependabot/github_actions/actions/che...
  • 3d98b1b remove ancient coverage code
  • ca8342b Bump actions/checkout from 5 to 6
  • 77c5cf0 Bump actions/checkout from 4 to 5 (#107)
  • Additional commits viewable in compare view

Updates ArgCheck to 2.5.0

Commits

Updates DocStringExtensions to 0.9.5

Release notes

Sourced from DocStringExtensions's releases.

v0.9.5

DocStringExtensions v0.9.5

Diff since v0.9.4

Merged pull requests:

Commits
  • a84ff78 Fixes for nightly (#176)
  • bca4b2c Set version to 0.9.4. (#175)
  • 63c9841 Merge pull request #174 from JuliaDocs/dependabot/github_actions/codecov/code...
  • 934a498 Bump codecov/codecov-action from 3 to 5
  • 17eba14 Merge pull request #173 from JuliaDocs/dependabot/github_actions/julia-action...
  • f65e316 Bump julia-actions/setup-julia from 1 to 2
  • 2d684d6 Merge pull request #162 from JuliaDocs/dependabot/github_actions/actions/cache-4
  • 8a41621 Bump actions/cache from 3 to 4
  • 2df82e8 Merge pull request #172 from JuliaDocs/mh/no-libgit2
  • 4a28d59 Avoid needing to use splitpath for path separator rewrites
  • Additional commits viewable in compare view

Updates TransformVariables to 0.8.24

Release notes

Sourced from TransformVariables's releases.

v0.8.24

TransformVariables v0.8.24

Diff since v0.8.23

minor efficiency improvement in TVExp, thanks @​devmotion

Merged pull requests:

Changelog

Sourced from TransformVariables's changelog.

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Unreleased

Added

Changed

Deprecated

Removed

Fixed

Security

0.8.23

Fixed

  • eliminate Union in as(SArray{}, ...) implementation

0.8.22

Fixed

Fixed variable capture in StaticArrayTransformation (tpapp/TransformVariables.jl#167).

0.8.21

Added

Transform into structs (tpapp/TransformVariables.jl#163).

0.8.20

Fixed

Loosen types for Reactant.jl (tpapp/TransformVariables.jl#162)

0.8.19

Added

  • add a merge method for NamedTuple transformations #150

Fixed

  • Cleaned up inverse eltype calculations #149

... (truncated)

Commits
  • c6cb89c Make inverse_and_logjac for TVExp more efficient (#171)
  • f4ecccc Revert "Make inverse_and_logjac for TVExp more efficient"
  • 48a0113 Make inverse_and_logjac for TVExp more efficient
  • a258f7c Bump julia-actions/setup-julia from 2 to 3 (#169)
  • 9b0a3d3 fix Union in SArray aggregation code (#168)
  • 93900b5 add various manifests to .gitignore
  • 6cfdff6 Bump codecov/codecov-action from 5 to 6 (#166)
  • 88fc941 bump version, changelog
  • 1080cf5 fix captured variable in static array aggregation (#167)
  • 6357270 Bump actions/cache from 4 to 5 (#161)
  • Additional commits viewable in compare view

Updates OhMyThreads to 0.8.6

Release notes

Sourced from OhMyThreads's releases.

v0.8.6

OhMyThreads v0.8.6

Diff since v0.8.5

Merged pull requests:

Closed issues:

  • showprogress setting (#59)
Changelog

Sourced from OhMyThreads's changelog.

Version 0.8.6

  • ![Enhancement][badge-enhancement] tmap, tmap!, tforeach, tmapreduce, treducemap, and treduce are now compatible with ProgressMeter.jl, so you can do e.g. @showprogress tmap(...)#164[gh-pr-164].

Version 0.8.5

  • ![Enhancement][badge-enhancement] SerialScheduler now accepts and ignores arguments passed to it to make switching schedulers easier #162[gh-pr-162].

Version 0.8.3

  • ![Enhancement][badge-enhancement] The overhead of tmapreduce in the serial case was reduced a bit. Sentinel values in scheduler kwarg internals were replaced by nothing #148[gh-pr-148]

Version 0.8.2

  • ![Feature][badge-feature] Added a minchunksize chunking argument for schedulers, so that they can specify a lower bound on the size of chunks which are worth parallelizing. For example, treduce(+, 1:10; minchunksize=100) will run serially, but treduce(+, 1:1000000; minchunksize=100) will be parallelized #145[gh-pr-145].
  • ![Enhancement][badge-enhancement] Operations on collections with only one 'chunk' no longer spawn an unnecessary task. That means operations like treduce(+, 1:10; minchunksize=100) will have less overhead #145[gh-pr-145].

Version 0.8.1

  • ![Feature][badge-feature] Added a @localize macro which turns @localize x y expr into let x=x, y=y; expr end (#142[gh-pr-142])
  • ![INFO][badge-info] The error messafe for captured variables now has a longer error hint that displays when the Markdown package is loaded (e.g. in the REPL.) (#142[gh-pr-142])

Version 0.8.0

  • ![BREAKING][badge-breaking] We now detect and throw errors if an OhMyThreads parallel function is passed a closure containing a Boxed variable. This behaviour can be disabled with the new @allow_boxed_captures macro, and re-enabled with @disallow_boxed_captures. (#141[gh-pr-141])
  • ![INFO][badge-info] Schedulder chunking info is no longer directly available via getproperty. This was never a public interface, but it's possible some users relied upon it #135[gh-pr-135].

Version 0.7.0

  • ![BREAKING][badge-breaking] We now use ChunkSplitters version 3.0. The function OhMyThreads.chunks has been renamed to OhMyThreads.index_chunks. The new functions index_chunks and chunks (different from the old one with the same name!) are now exported. See ChunkSplitters.jl for more information.
  • ![BREAKING][badge-breaking] If you provide a chunks or index_chunks as input we now disable the internal chunking without a warning. Previously, we did show a warning unless you had set chunking=false. In contrast, we now throw an error when you set any incompatible chunking related keyword arguments.
  • ![Deprecation][badge-deprecation] The split options :batch and :scatter are now deprecated (they still work but will be dropped at some point). Use :consecutive and :roundrobin, respectively, instead.
  • ![Enhancement][badge-enhancement] The split keyword argument can now also be a <: OhMyThreads.Split. Compared to providing a Symbol, the former can potentially give better performance. For example, you can replace :consecutive by OhMyThreads.Consecutive() and :roundrobin by OhMyThreads.RoundRobin().
  • ![Feature][badge-feature] ChannelLike is a new public (but not exported) type. ChannelLike(itr) provide a way to iterate over itr in a concurrency safe manner similar to Channel. See the docstring for more details. (#121[gh-pr-121])
  • ![Enhancement][badge-enhancement] ChannelLike is used internally for the GreedyScheduler when chunking=true. This improves performance overall but it is especially noticeable when the number of chunks is large. (#121[gh-pr-121])

Version 0.6.2

  • ![Enhancement][badge-enhancement] Added API support for enumerate(chunks(...)). Best used in combination with chunking=false

Version 0.6.1

Version 0.6.0

  • ![BREAKING][badge-breaking] Drop support for Julia < 1.10.

Version 0.5.3

  • ![Enhancement][badge-enhancement] For the special/fake "macros" like, e.g., @set, support the verbose form OhMyThreads.@set within a @tasks for-loop (#107).

... (truncated)

Commits

Updates MCMCDiagnosticTools to 0.3.17

Release notes

Sourced from MCMCDiagnosticTools's releases.

v0.3.17

MCMCDiagnosticTools v0.3.17

Diff since v0.3.16

Merged pull requests:

...

Description has been truncated

Updates the requirements on [Statistics](https://github.com/JuliaStats/Statistics.jl), [LogDensityProblemsAD](https://github.com/tpapp/LogDensityProblemsAD.jl), [TransformVariables](https://github.com/tpapp/TransformVariables.jl), [OhMyThreads](https://github.com/JuliaFolds2/OhMyThreads.jl), [TransformedLogDensities](https://github.com/tpapp/TransformedLogDensities.jl), [MCMCDiagnosticTools](https://github.com/TuringLang/MCMCDiagnosticTools.jl), [LogDensityProblems](https://github.com/tpapp/LogDensityProblems.jl), [LogExpFunctions](https://github.com/JuliaStats/LogExpFunctions.jl), [ArgCheck](https://github.com/jw3126/ArgCheck.jl), [DocStringExtensions](https://github.com/JuliaDocs/DocStringExtensions.jl), [ForwardDiff](https://github.com/JuliaDiff/ForwardDiff.jl), [HypothesisTests](https://github.com/JuliaStats/HypothesisTests.jl), [StatsBase](https://github.com/JuliaStats/StatsBase.jl), [Aqua](https://github.com/JuliaTesting/Aqua.jl) and [JET](https://github.com/aviatesk/JET.jl) to permit the latest version.

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 `LogDensityProblemsAD` to 1.13.1
- [Release notes](https://github.com/tpapp/LogDensityProblemsAD.jl/releases)
- [Commits](tpapp/LogDensityProblemsAD.jl@v1.0.0...v1.13.1)

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

Updates `OhMyThreads` to 0.8.6
- [Release notes](https://github.com/JuliaFolds2/OhMyThreads.jl/releases)
- [Changelog](https://github.com/JuliaFolds2/OhMyThreads.jl/blob/master/CHANGELOG.md)
- [Commits](JuliaFolds2/OhMyThreads.jl@v0.2.0...v0.8.6)

Updates `TransformedLogDensities` to 1.1.1
- [Release notes](https://github.com/tpapp/TransformedLogDensities.jl/releases)
- [Commits](tpapp/TransformedLogDensities.jl@v1.0.0...v1.1.1)

Updates `MCMCDiagnosticTools` to 0.3.17
- [Release notes](https://github.com/TuringLang/MCMCDiagnosticTools.jl/releases)
- [Commits](TuringLang/MCMCDiagnosticTools.jl@v0.1.0...v0.3.17)

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 `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 `LogExpFunctions` to 1.0.0
- [Release notes](https://github.com/JuliaStats/LogExpFunctions.jl/releases)
- [Changelog](https://github.com/JuliaStats/LogExpFunctions.jl/blob/master/CHANGELOG.md)
- [Commits](JuliaStats/LogExpFunctions.jl@v0.2.0...v1.0.0)

Updates `ArgCheck` to 2.5.0
- [Release notes](https://github.com/jw3126/ArgCheck.jl/releases)
- [Commits](https://github.com/jw3126/ArgCheck.jl/commits)

Updates `DocStringExtensions` to 0.9.5
- [Release notes](https://github.com/JuliaDocs/DocStringExtensions.jl/releases)
- [Commits](JuliaDocs/DocStringExtensions.jl@v0.1.0...v0.9.5)

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

Updates `OhMyThreads` to 0.8.6
- [Release notes](https://github.com/JuliaFolds2/OhMyThreads.jl/releases)
- [Changelog](https://github.com/JuliaFolds2/OhMyThreads.jl/blob/master/CHANGELOG.md)
- [Commits](JuliaFolds2/OhMyThreads.jl@v0.2.0...v0.8.6)

Updates `MCMCDiagnosticTools` to 0.3.17
- [Release notes](https://github.com/TuringLang/MCMCDiagnosticTools.jl/releases)
- [Commits](TuringLang/MCMCDiagnosticTools.jl@v0.1.0...v0.3.17)

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

Updates `HypothesisTests` to 0.11.7
- [Release notes](https://github.com/JuliaStats/HypothesisTests.jl/releases)
- [Commits](JuliaStats/HypothesisTests.jl@v0.2.3...v0.11.7)

Updates `StatsBase` to 0.34.11
- [Release notes](https://github.com/JuliaStats/StatsBase.jl/releases)
- [Commits](JuliaStats/StatsBase.jl@0.2.3...v0.34.11)

Updates `Aqua` to 0.8.14
- [Release notes](https://github.com/JuliaTesting/Aqua.jl/releases)
- [Changelog](https://github.com/JuliaTesting/Aqua.jl/blob/master/CHANGELOG.md)
- [Commits](JuliaTesting/Aqua.jl@v0.1.0...v0.8.14)

Updates `JET` to 0.11.3
- [Release notes](https://github.com/aviatesk/JET.jl/releases)
- [Changelog](https://github.com/aviatesk/JET.jl/blob/master/CHANGELOG.md)
- [Commits](aviatesk/JET.jl@v0.0.1...v0.11.3)

---
updated-dependencies:
- dependency-name: Statistics
  dependency-version: 1.11.1
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: LogDensityProblemsAD
  dependency-version: 1.13.1
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: TransformVariables
  dependency-version: 0.8.24
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: OhMyThreads
  dependency-version: 0.8.6
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: TransformedLogDensities
  dependency-version: 1.1.1
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: MCMCDiagnosticTools
  dependency-version: 0.3.17
  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: Statistics
  dependency-version: 1.11.1
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: LogExpFunctions
  dependency-version: 1.0.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: ArgCheck
  dependency-version: 2.5.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: DocStringExtensions
  dependency-version: 0.9.5
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: TransformVariables
  dependency-version: 0.8.24
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: OhMyThreads
  dependency-version: 0.8.6
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: MCMCDiagnosticTools
  dependency-version: 0.3.17
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: ForwardDiff
  dependency-version: 1.3.3
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: HypothesisTests
  dependency-version: 0.11.7
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: StatsBase
  dependency-version: 0.34.11
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Aqua
  dependency-version: 0.8.14
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: JET
  dependency-version: 0.11.3
  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 May 30, 2026
Comment thread docs/Project.toml Outdated
Comment thread test/Project.toml Outdated
Comment thread test/Project.toml Outdated
Comment thread test/Project.toml Outdated
@tpapp tpapp merged commit 9a2a1a2 into master May 30, 2026
0 of 3 checks passed
@dependabot dependabot Bot deleted the dependabot/julia/docs/all-julia-packages-b6f3222371 branch May 30, 2026 12:40
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.

1 participant