Skip to content

Bump the all-julia-packages group across 2 directories with 5 updates#285

Open
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/julia/all-julia-packages-b698191200
Open

Bump the all-julia-packages group across 2 directories with 5 updates#285
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/julia/all-julia-packages-b698191200

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 29, 2025

Updates the requirements on DataStructures, TermInterface, Documenter, Metatheory and Literate to permit the latest version.
Updates DataStructures to 0.19.3

Release notes

Sourced from DataStructures's releases.

v0.19.3

DataStructures v0.19.3

Diff since v0.19.2

Merged pull requests:

  • Don't require the element to be provided to percolate_down! and percolate_up! (#960) (@​Drvi)
Changelog

Sourced from DataStructures's changelog.

[0.19.3]

Fixed

  • Reintroduce a method for percolate_up! percolate_down!JuliaCollections/DataStructures.jl#960

[0.19.2]

Added

  • percolate_up!, percolate_down! now use @propagate_inboundsJuliaCollections/DataStructures.jl#954

[0.19.1] - 2025-08-26

Fixed

  • Add newsz::Integer type annotation to sizehint!JuliaCollections/DataStructures.jl#945
  • Fix pop! with default for OrderedRobinDictJuliaCollections/DataStructures.jl#950
  • Fix deprecation of DisjointSets(xs...)JuliaCollections/DataStructures.jl#951

Other

  • JuliaCollections/DataStructures.jl#944
  • Bump actions/checkoutJuliaCollections/DataStructures.jl#947
  • Add docstrings to DefaultDictJuliaCollections/DataStructures.jl#948

[0.19.0] - 2025-07-31

Added

  • New Queue and Stack as separate types with enhanced documentation
  • Add empty!JuliaCollections/DataStructures.jl#932
  • Support for recursive DefaultDict creation
  • Add find_prefixes method to TrieJuliaCollections/DataStructures.jl#933
  • Improved constructors for CircularBuffer allowing initialization with an iterable and capacity
  • Add resize! method for CircularBuffer
  • JuliaCollections/DataStructures.jl#931

Changed

  • JuliaCollections/DataStructures.jl#874
  • DisjointSets renamed to DisjointSetJuliaCollections/DataStructures.jl#700
  • IntDisjointSets renamed to IntDisjointSetJuliaCollections/DataStructures.jl#700
  • PriorityQueue API updated to use standard Julia interfaces:
    • enqueue!push!
    • dequeue!popfirst!
    • dequeue_pair!popfirst!
    • peekfirst

... (truncated)

Commits
  • a6eba5a Don't require the element to be provided to percolate_down! and `percolate_...
  • c9961a9 Merge pull request #954 from Drvi/td-heap-boundchecks
  • 35d87fe Merge pull request #959 from m-fila/disjointset_rename_docs
  • e1651ad v0.19.2
  • 8f3241b Fix naming of DisjointSet in documentation and tests
  • 292debd .
  • 7fc3ca6 PR feedback
  • 708eeae Improve bounds checks in heap operations
  • c86628e Merge pull request #953 from odow/od/v0.19.1
  • 71775aa Merge pull request #951 from odow/od/fix-deprecation
  • Additional commits viewable in compare view

Updates TermInterface to 2.0.0

Release notes

Sourced from TermInterface's releases.

v2.0.0

TermInterface v2.0.0

Diff since v1.0.1

Merged pull requests:

Commits

Updates TermInterface to 2.0.0

Release notes

Sourced from TermInterface's releases.

v2.0.0

TermInterface v2.0.0

Diff since v1.0.1

Merged pull requests:

Commits

Updates Documenter to 1.16.1

Release notes

Sourced from Documenter's releases.

v1.16.1

The changes are documented in the CHANGELOG.md file.

Diff since v1.16.0

Changelog

Sourced from Documenter's changelog.

Version [v1.16.1] - 2025-11-21

Fixed

  • The -g is now passed to curl when checking links, to disable globbing, which could cause undesirable behavior when checking links containing characters like for example [, {, & or ?. (#2839, #2842)
  • Fixed insufficient paragraph spacing in HTML output for @docs blocks. ([#2845, #2847])
  • Don't expand details admonition by default. ([#2846, #2847])
  • Removed superfluous vertical space at end of @docs blocks. (#2849)

Version [v1.16.0] - 2025-11-14

Added

  • Added option treat_markdown_warnings_as_error which throws an error when encountering a markdown/interpolation warning (#2792, #2751)
  • Footnotes can now be previewed by hovering over the link. (#2080)
  • The version selector now attempts to stay on the same page when switching between documentation versions. If the page doesn't exist in the target version, it falls back to the version homepage. (#2801)
  • Allow named @eval blocks: such a block shares its execution context with all other @eval, @example, @repl and @setup blocks on the same page which use the same name. (#2074, #2812)

Changed

  • Page category is removed from the search index and now everything is in section category. (#2762, #2413)
  • Changed the docstring block accordions from a custom implementation to HTML details+summary tag. (#2772, #2773)
  • Improved the search tokenizer and custom trimmer to improve search results. (#1457, #2114, #2744)
  • Improved several warning/error messages to (more accurately) report the location (filename, line range) in which the warning/error originated. (#2426, #2752, #2793, #2803, #2809)
  • Warn/error if jldoctest starts with an empty line; or lacks empty line between two REPL prompts. (#2031, #2083, #2679, #2808)
  • The forcepush=true option to deploydocs now uses --force-with-lease instead of --force. (#2817)
  • Improved the generation of anchors for admonitions in HTML output to be more stable and e.g. not change due to changes of the internal representation across different Julia versions. (#2710)

Fixed

  • Modules for @example environments are now generated by eval'ing an expression, rather than invoking the Module constructor, which is not recommended. (#2683)

  • Fix handling of expandfirst entries containing slashes as path separators on Windows. (#1725, #2804)

  • Changed the header crossref step to eagerly fail when encountering a non-unique header slug. (#2668, #2787)

    This is potentially breaking and may cause some documentation builds to fail. Those previously passed but generated incorrect cross-references. You can fix this by ensuring that you have distinct headers across your markdown pages, or by using the @id syntax to give the headers unique slugs.

  • Changed CSS for the navigation "breadcrumbs" at the top of each page to avoid an issue where code blocks in there were missing spacing around them. (#1614, #2813)

  • Commit status for pull request previews publishing in GitHub Actions for out-of-repo deployment now works correctly. (#2814, #2816)

  • Fix assertions resp. errors being raised in @example, @eval, @repl blocks that are empty or contain code with syntax errors. (#2206, #2731, #2827)

Version [v1.15.0] - 2025-10-22

Changed

  • Created a warning for when the search index size is too big (500Kib). (#2423, #2753)
  • In the HTML output, the search modal can now be navigated using up and down keys. (#2761)

Other

... (truncated)

Commits
  • 55b500f Set version to 1.16.1 (#2848)
  • 56c72d8 Guide users to use workspaces when setting up Documenter (#2830)
  • a8b1479 Removed superfluous vertical space at end of @docs blocks (#2849)
  • a397e12 Fix spacing in @docs blocks; don't expand details admonition by default (...
  • 050ce55 Pass -g option to curl in linkchecker (#2842)
  • 26d0051 Build Julia HTML manual in regression tests (#2724)
  • a9af48e Set version to 1.16.0 (#2841)
  • a0665d5 Update changelog (#2840)
  • 1aecd99 Restore cd inside @eval, and add a test for it (#2837)
  • 4b6ff9d Add syntax highlight tags to docs/src/man/other-formats.md (#2838)
  • Additional commits viewable in compare view

Updates Metatheory to 2.0.2

Release notes

Sourced from Metatheory's releases.

v2.0.2

Metatheory v2.0.2

Diff since v2.0.1

Merged pull requests:

Closed issues:

  • Refactor Codebase (#107)
  • Struct-Valued Analysis Cause Infinite Loop (#153)
  • regression in simplification compared to v1 (#166)
  • Try Dictionaries.jl (#168)
Changelog

Sourced from Metatheory's changelog.

2.0

  • No longer dispatch against types, but instead dispatch against objects.
  • Faster E-Graph Analysis
  • Better library macros
  • Updated TermInterface to 0.3.3
  • New interface for e-graph extraction using EGraphs.egraph_reconstruct_expression
  • Simplify E-Graph Analysis Interface. Use Symbols or functions for identifying Analyses.
  • Remove duplicates in E-Graph analyses data.

1.2

  • Fixes when printing patterns
  • Can pass custom similarterm to SaturationParams by using SaturationParams.simterm.

1.1

  • EGraph pattern matcher can now match against both symbols and function objects
  • Fixes for Symbolics.jl integration

1.0

Metatheory.jl + SymbolicUtils.jl = ❤️

  • Metatheory.jl now supports the same syntax as SymbolicUtils.jl for the rule definition DSL!
  • The classical pattern matcher has been redesigned, and it is a port of SymbolicUtils.jl's pattern matcher. Now Metatheory.jl can be used in place of SU's rewriting backend.
  • Performance improvements: caching of ground terms when doing e-matching in equality saturation.
  • Dynamic Rules do not use RuntimeGeneratedFunctions when not needed.
  • Removed @metatheory_init
  • Rules now support type and function predicates as in SymbolicUtils.jl
  • Redesigned the library
  • Introduced @timerewrite to time the execution of classical rewriting systems.
Commits

Updates Literate to 2.21.0

Release notes

Sourced from Literate's releases.

v2.21.0

See CHANGELOG.md for notable changes.

See CHANGELOG.md for notable changes.

Diff since v2.20.1

Changelog

Sourced from Literate's changelog.

[v2.21.0] - 2025-11-19

Changed

  • Allow IOCapture version 1. (#280)

[v2.20.1] - 2024-10-17

Fixed

  • Errors from code evaluation (with continue_on_error = true) are now properly displayed with showerror. (#261)

[v2.20.0] - 2024-10-16

Added

  • A new keyword argument configuration continue_on_error::Bool = false has been added which controls the behavior of code execution errors. By default (continue_on_error = false) execution errors are re-thrown by Literate (as before). If continue_on_error = true is set the error is used as the block result and execution continues with following blocks. (#201, #257)
  • Literate now replaces Documenter-style admonitions when generating notebook output (#259). Concretely,
    # !!! note
    #     A note.
    

    !!! warn "Warning title text"

    A warning.

    is replaced with

    # > **Note**
    # >
    # > A note.
    

    > Warning title text

    >

    > A warning.

[v2.19.1] - 2024-09-13

Fixed

  • Set :SOURCE_PATH in the task local storage to the output file when executing code so that recursive include works as expected. (#251, #252)

[v2.19.0] - 2024-07-11

Changed

  • Literate.markdown, Literate.notebook, and Literate.script are marked as public in Julia version that support the public keyword. (#248)

[v2.18.0] - 2024-04-17

Added

... (truncated)

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

Updates the requirements on [DataStructures](https://github.com/JuliaCollections/DataStructures.jl), [TermInterface](https://github.com/JuliaSymbolics/TermInterface.jl), [Documenter](https://github.com/JuliaDocs/Documenter.jl), [Metatheory](https://github.com/JuliaSymbolics/Metatheory.jl) and [Literate](https://github.com/fredrikekre/Literate.jl) to permit the latest version.

Updates `DataStructures` to 0.19.3
- [Release notes](https://github.com/JuliaCollections/DataStructures.jl/releases)
- [Changelog](https://github.com/JuliaCollections/DataStructures.jl/blob/master/CHANGELOG.md)
- [Commits](JuliaCollections/DataStructures.jl@v0.18.0...v0.19.3)

Updates `TermInterface` to 2.0.0
- [Release notes](https://github.com/JuliaSymbolics/TermInterface.jl/releases)
- [Commits](JuliaSymbolics/TermInterface.jl@v0.3.3...v2.0.0)

Updates `TermInterface` to 2.0.0
- [Release notes](https://github.com/JuliaSymbolics/TermInterface.jl/releases)
- [Commits](JuliaSymbolics/TermInterface.jl@v0.3.3...v2.0.0)

Updates `Documenter` to 1.16.1
- [Release notes](https://github.com/JuliaDocs/Documenter.jl/releases)
- [Changelog](https://github.com/JuliaDocs/Documenter.jl/blob/master/CHANGELOG.md)
- [Commits](JuliaDocs/Documenter.jl@v0.26.0...v1.16.1)

Updates `Metatheory` to 2.0.2
- [Release notes](https://github.com/JuliaSymbolics/Metatheory.jl/releases)
- [Changelog](https://github.com/JuliaSymbolics/Metatheory.jl/blob/master/NEWS.md)
- [Commits](v0.1.1...v2.0.2)

Updates `Literate` to 2.21.0
- [Release notes](https://github.com/fredrikekre/Literate.jl/releases)
- [Changelog](https://github.com/fredrikekre/Literate.jl/blob/master/CHANGELOG.md)
- [Commits](fredrikekre/Literate.jl@v0.1.0...v2.21.0)

---
updated-dependencies:
- dependency-name: DataStructures
  dependency-version: 0.19.3
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: TermInterface
  dependency-version: 2.0.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: TermInterface
  dependency-version: 2.0.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Documenter
  dependency-version: 1.16.1
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Metatheory
  dependency-version: 2.0.2
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Literate
  dependency-version: 2.21.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 Dec 29, 2025
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

Comments