Skip to content

build(deps): bump the all-julia-packages group across 1 directory with 7 updates#43

Merged
oameye merged 1 commit into
mainfrom
dependabot/julia/docs/all-julia-packages-5c23f472eb
Feb 5, 2026
Merged

build(deps): bump the all-julia-packages group across 1 directory with 7 updates#43
oameye merged 1 commit into
mainfrom
dependabot/julia/docs/all-julia-packages-5c23f472eb

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jan 31, 2026

Copy link
Copy Markdown
Contributor

Updates the requirements on CairoMakie, IntervalArithmetic, Documenter, Literate, GraphMakie, Plots and GraphRecipes to permit the latest version.
Updates CairoMakie to 0.15.8

Commits

Updates IntervalArithmetic to 1.0.2

Release notes

Sourced from IntervalArithmetic's releases.

v1.0.2

IntervalArithmetic v1.0.2

Diff since v1.0.1

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

Updates GraphMakie to 0.6.3

Release notes

Sourced from GraphMakie's releases.

v0.6.3

GraphMakie v0.6.3

Diff since v0.6.2

Merged pull requests:

Closed issues:

  • Plotting empty edgeplot gives a warning (#235)
  • empty edge_color for graph without edges gives an error (#237)
  • Warning when updating Julia to 1.12 (#238)
Changelog

Sourced from GraphMakie's changelog.

NEWS

Version 0.6.1

  • introduce force_straight_edges kw argument to recipe (false per default). This is a replacement for the deprecated edge_plottype=:linesegments.

Version 0.6.0 (Makie 0.24 Compatibility)

Breaking Changes:

  • Removed edge_plottype parameter: The edge_plottype argument has been removed from graphplot. Edge plotting is now handled automatically with improved performance - curved edges (BezierPaths) are now rendered as efficiently as straight edges using a unified plotting system.

New Features:

  • Added edge_linestyle parameter: New parameter to control line styles for individual edges. Supports vectors and dictionaries for per-edge customization. Performance note: The new unified edge system maintains optimal performance for both straight and curved edges when using homogeneous linestyles. Only when using different linestyles for different edges (inhomogeneous) does the system fall back to creating separate line plots for each edge, which may reduce performance for graphs with many edges.

Internal Changes:

  • Refactored reactive system to use map! instead of @lift macros for better performance and Makie 0.24 compatibility
  • Unified edge plotting system replaces separate linesegments and beziersegments approaches
  • Improved interaction system with updated selection handling
Commits
  • 37d64cc Bump version from 0.6.2 to 0.6.3
  • 5ac8308 Merge pull request #239 from MakieOrg/hw/pointf
  • d89187e fix error on empty edge arguments
  • 84be521 missed some Pointf references
  • cb29997 rename Pointf -> to_pointf32
  • 78d6f05 Merge pull request #236 from MakieOrg/hw/fix_edgeplot
  • 16e397e don't split on linestyle=nothing
  • 05aaad5 improve localmake script for docs
  • d3fe703 Merge pull request #234 from MakieOrg/hw/bumpcompats
  • 418c148 Merge pull request #230 from MakieOrg/dependabot/github_actions/actions/check...
  • Additional commits viewable in compare view

Updates Plots to 1.41.4

Release notes

Sourced from Plots's releases.

v1.41.4

What's Changed

Full Changelog: JuliaPlots/Plots.jl@v1.41.3...v1.41.4

Changelog

Sourced from Plots's changelog.

Plots.jl NEWS

Breaking changes


v2

  • deprecated backends pgfplots and pyplot removed
  • deprecated keyword orientation removed
  • backends are extensions now so the backend code must be explicitly loaded using import with the backend package, e.g.
    using Plots
    import GR # loads backend code

  • Types are no longer part of the Plots API this affects
    • Shape, which is now shape
  • The default label is now :none, use :auto to restore the previous behaviour
  • UnitfulExt changes:
    • The P_str macro is no longer provided as API. The intended goal was simply to not put units on axis labels which were "protected strings". To achieve this now, pass unitformat=:nounit.
    • The axis option unitformat=:none, unitformat=nothing, and unitformat=false previously printed the axis guide as string(label, " ", unit). That behavior is now moved to unitformat=:space, and :none, nothing, and false print the axis guide without units.

notes on release changes, ongoing development, and future planned work

NOTE: this file is deprecated, see the TagBot auto-generated changelogs instead

0.28.3

  • support generalized array interface
  • save to pdf, svg and eps in plotlyjs
  • fix for clims in line_z
  • optimize heatmap logic in gr

0.26.3

  • fix vline with dates
  • fix PyPlot logscale bug
  • avoid annotation clipping for PyPlot
  • allow plotting of Any vectors and 3D plotting again in convertToAnyVector
  • specify legend title font in GR and PyPlot
  • delete pushtomaster.sh
  • use === nothing

0.26.2

  • improve empty animation build error

... (truncated)

Commits

Updates GraphRecipes to 0.5.15

Release notes

Sourced from GraphRecipes's releases.

v0.5.15

GraphRecipes v0.5.15

Diff since v0.5.14

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

…h 7 updates

Updates the requirements on [CairoMakie](https://github.com/MakieOrg/Makie.jl), [IntervalArithmetic](https://github.com/JuliaIntervals/IntervalArithmetic.jl), [Documenter](https://github.com/JuliaDocs/Documenter.jl), [Literate](https://github.com/fredrikekre/Literate.jl), [GraphMakie](https://github.com/MakieOrg/GraphMakie.jl), [Plots](https://github.com/JuliaPlots/Plots.jl) and [GraphRecipes](https://github.com/JuliaPlots/GraphRecipes.jl) to permit the latest version.

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 `IntervalArithmetic` to 1.0.2
- [Release notes](https://github.com/JuliaIntervals/IntervalArithmetic.jl/releases)
- [Commits](JuliaIntervals/IntervalArithmetic.jl@v0.9.0...v1.0.2)

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.1.0...v1.16.1)

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)

Updates `GraphMakie` to 0.6.3
- [Release notes](https://github.com/MakieOrg/GraphMakie.jl/releases)
- [Changelog](https://github.com/MakieOrg/GraphMakie.jl/blob/master/NEWS.md)
- [Commits](MakieOrg/GraphMakie.jl@v0.1.0...v0.6.3)

Updates `Plots` to 1.41.4
- [Release notes](https://github.com/JuliaPlots/Plots.jl/releases)
- [Changelog](https://github.com/JuliaPlots/Plots.jl/blob/v2/NEWS.md)
- [Commits](JuliaPlots/Plots.jl@v0.0.1...v1.41.4)

Updates `GraphRecipes` to 0.5.15
- [Release notes](https://github.com/JuliaPlots/GraphRecipes.jl/releases)
- [Changelog](https://github.com/JuliaPlots/GraphRecipes.jl/blob/master/NEWS.md)
- [Commits](JuliaPlots/GraphRecipes.jl@v0.0.1...v0.5.15)

---
updated-dependencies:
- dependency-name: CairoMakie
  dependency-version: 0.15.8
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: IntervalArithmetic
  dependency-version: 1.0.2
  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: Literate
  dependency-version: 2.21.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: GraphMakie
  dependency-version: 0.6.3
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: Plots
  dependency-version: 1.41.4
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: GraphRecipes
  dependency-version: 0.5.15
  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 31, 2026
@oameye oameye merged commit ed5c10a into main Feb 5, 2026
4 checks passed
@dependabot dependabot Bot deleted the dependabot/julia/docs/all-julia-packages-5c23f472eb branch February 5, 2026 07:13
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