Skip to content

Bump the julia-packages group with 2 updates - #5

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/julia/julia-packages-b32eeeb708
Open

Bump the julia-packages group with 2 updates#5
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/julia/julia-packages-b32eeeb708

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 10, 2026

Copy link
Copy Markdown

Updates the requirements on Interpolations and Makie to permit the latest version.
Updates Interpolations to 0.16.3

Release notes

Sourced from Interpolations's releases.

v0.16.3

Non-breaking changes

Interpolation package directory listing

Maintenance

New Contributors

Full Changelog: JuliaMath/Interpolations.jl@v0.16.2...v0.16.3

Changelog

Sourced from Interpolations's changelog.

For a comprehensive list of changes, see Releases.

v0.16.1

Fixes:

  • Fix hessian with ForwardDiff.jl for scaled interpolants (#628)

v0.16

Breaking changes:

  • getindex for AbstractInterpolations only accepts integers (#579), deprecated since (#226)
  • gradient and hessian are once again no longer exported (#623)
  • Fix free boundary condition on Cubic (#616)
  • Compatible with Julia versions 1.9 and later

v0.15

Breaking changes:

  • Compatible with Julia versions 1.6 and later

v0.14.0

Breaking changes:

Implement inplace GriddedInterpolation (#496, for #495)

  • interpolate now copies the coefficients for GriddedInterpolation.
  • interpolate! now does not copy the coefficients for GriddedInterpolation.
  • The third argument of GriddedInterpolation describes the array type of the coefficients rather than the element type of Array.

v0.9.0

Breaking changes:

  • gradient and hessian are no longer exported; use Interpolations.gradient and Interpolations.hessian.
  • interpolate objects now check bounds, and throw an error if you try to evaluate them at locations beyond the edge of their interpolation domain; use extrapolate if you need out-of-bounds evaluation
  • For quadratic and cubic interpolation, interpolate! now returns an object whose axes are narrowed by the amount of padding needed on the array edges. This preserves correspondence between input indices and output indices. See https://julialang.org/blog/2017/04/offset-arrays for more information.
  • The parametrization of some types has changed; this does not affect users of the "exported" interface, but does break packages that performed manual construction of explicit types.

Changes with deprecation warnings:

  • itp[i...] should be replaced with itp(i...).
  • OnGrid and OnCell should now be placed inside the boundary condition (e.g., Flat(OnGrid())), and should only be used for quadratic and cubic interpolation.
  • the extrapolation boundary condition Linear was changed to Line, to be consistent

... (truncated)

Commits
  • 58aaba9 Merge pull request #648 from JuliaMath/giordano-patch-1
  • aeddc2e Bump version number to v0.16.3
  • 5b5a0f4 Syntax fix: callable type instead of tuple assignment (#647)
  • 390fd26 Merge pull request #646 from JuliaMath/dependabot/github_actions/codecov/code...
  • 903451c Bump codecov/codecov-action from 6 to 7
  • da82006 Replace padded_similar by similar (#634)
  • f0e405d Bump codecov/codecov-action from 5 to 6 (#643)
  • 2ccd020 Improve description for FastInterpolations.jl (#642)
  • 30d450b CI workflow to ignore markdown changes (#641)
  • 34645c3 Add FastInterpolations.jl entry (#640)
  • Additional commits viewable in compare view

Updates Makie to 0.24.14

Release notes

Sourced from Makie's releases.

v0.24.14

Makie v0.24.14

Diff since v0.24.13

Merged pull requests:

Closed issues:

  • interpolate kwarg has no effect on meshes (#520)
  • Observables don't work with meshscatter (#401)
  • Fast pixel markers for CairoMakie (#585)
  • Point2 with missing (#1389)
  • Weird update order issue with multiple Observables passed to the same plot (#1850)
  • Inconsistent formatting / code style (#2519)
  • linesegments with arrow, or arrows method that takes a pair of points (#2612)
  • ERROR: program 20 not linked (#2660)
  • How to plot contourlines when the geometry is irregular (#2715)
  • Better error messaging for Missing datatype (#2847)
  • Changing number of elements in boxplot does not work (#2867)
  • boxplot doesn't have alpha keyword (#3099)
  • Colorbar breaks with min limit == max limit (#3174)
  • Recipes do not react to keyword arguments properly (#3263)
  • volumeslices doesnt detect colorrange with missing values (#3367)
  • Cannot create Colorbar from contourf of zeros (#3470)
  • Diamond dependency patterns can cause issues with @lift (#3658)

... (truncated)

Changelog

Sourced from Makie's changelog.

[0.24.14] - 2026-08-27

  • Fixed WGLMakie's precompilation regression #5767.
  • Fixed BoundsError in CairoMakie when clip planes remove all points of a plot, fixed apply_transform(::Mat4, ::Plane3) producing a NaN-distance plane that clips everything when the transform collapses the plane's normal direction, and fixed Axis3 collapsing dimensions with zero-width limits #5759.
  • Fixed log-scale Axis interactions producing invalid limits. #5736
  • Fixed arrows3d component alignment (tail, shaft, tip) when normalize = true and scaling applies (e.g. Axis3, scale!, transform_func). #5711
  • Added StageCamera (stage_cam!), a 3D camera with photographic settings that keeps a stage of a given size in view #5472.
  • Menu is now searchable: typing while it is open filters the options. Set searchable = false for the old behavior #5642
  • Added textcolor_active and textcolor_hover attributes to Menu, with the selected entry now white by default #5642
  • Fixed Menu erroring on hover when cell_color_hover or cell_color_active were not RGBA values #5642
  • Added support for IntervalSliders in SliderGrid via the type keyword
  • poly no longer builds the stroke outline when strokewidth is 0, and no longer widens 2D input to 3D points when computing the outline. For a poly of 457k points this cuts allocations from 94 MiB to 32 MiB when unstroked (strokewidth defaults to 0) and to 87 MiB when stroked #5713.
  • Fixed volume and 3D contour plots losing parts of the interior when rendered with mirrored or left-handed transforms, such as with one or three reversed axes in Axis3. #5649
  • Added tricontour recipe for plotting isolines on unstructured/scattered data, analogous to tricontourf. Supports Colorbar(fig[1,2], tr) #5682.
  • Added Colorbar(fig[1,2], plt) support for 2D contour plots #5682.
  • Fixed crashes when plotting constant scalar fields: contourf/tricontourf now produce evenly-spaced bands around the constant value; contour produces no lines; heatmap and all colormapped plots no longer error on colorrange=(c,c) #5682.
  • Added an absolute attribute to dendrogram that keeps the input leaf positions instead of translating the root to origin, making it easy to align leaves to e.g. heatmap rows or columns #5666.
  • WGLMakie.ToolTip can now be styled with class and css keyword arguments, and ships a DATAINSPECTOR_CSS preset that matches the GLMakie DataInspector look #5664.
  • Scope the CairoMakie precompile workload's figures inside let, so rendered Screens and their pixel buffers are no longer serialized into the package image (~150 MB smaller pkgimage) #5692.
  • tooltip now inherits fontsize from the theme, sets its default outline linewidth to 1.0 to match axis spines, reduces its default triangle_size from 10 to 7, and uses slightly wider horizontal textpadding #5698.
  • Fixed plots in Axis3 not clipping in the correct place when changing aspect due to plot clip_planes not getting updated #5723
  • Fixed surface normals sometimes being NaN in GLMakie (when vertices collapse to single point on the edge of a surface) #5725
  • Fixed specialized args_preferred_axis methods getting skipped by less specialized Makie defaults. #5722
  • Fixed Axis3(..., title = rich(...)) not working #5729

[0.24.13] - 2026-07-02

  • WGLMakie: made scene lookup retry timing configurable via WGLMAKIE_SCENE_RETRY_DELAY_MS and WGLMAKIE_SCENE_RETRY_TOTAL_MS to avoid timeout failures for slow scene initialization. #5693
  • WGLMakie: fixed a Cannot destructure property 'geometry' of 'mesh' JS error and allow Bonito@v5 #5683
  • Adjusted cycled attributes to be marked as :cycled instead of nothing so that nothing doesn't get overridden. This allows e.g. linestyle = nothing to be set when linestyle is cycled. #5267

[0.24.12] - 2026-06-18

  • text now validates align and errors with a clear message for invalid values like align = :center #4651.
  • Fixed contourf not rendering non-closed contours #5651.
  • Fixed WGLMakie flickering while continuously resizing a canvas by re-rendering right after the resize.
  • Fixed WGLMakie crashing on a null WebGL context; it now shows the WebGL error message and requests the context with failIfMajorPerformanceCaveat: false.
  • Updated volume colormapping to include lowclip, highclip and nancolor. This affects :absorption, :mip and :iso algorithms as well as 3D contour plots. #5656
  • Fixed some errors with the color accumulation of :absorption, :absorptionrgba and :indexedabsorption algorithms in volume plots. Renders should no longer over sample thin regions (corners and edges of the volume bounding box) and otherwise be brighter. #5656
  • Added samples as a volume attribute for controlling the number of ray samples and added absorption as a multiplier for sampled colors with :additive. #5656
  • Adjusted volume conversions to preserve N0f8 and Float16 types (numbers and color eltypes). This allows users to reduce (v)ram usage by choosing smaller types. #5660
  • Adjusted volume algorithm = :additive to include the ray step size as a weight. This should allow additive volumes to render without downscaling volume data #5662
  • Adjusted PolarAxis defaults to match Axis: lightened grid colors (fallback major grid is now RGBAf(0, 0, 0, 0.12), was black at 50%; minor grid is now RGBAf(0, 0, 0, 0.05), was black at 20%), reduced the default spinewidth from 2 to 1, and matched the title titlefont (now :bold), titlesize fallback (now the plain fontsize instead of 1.2 × fontsize), and titlegap (now 4, and correctly inheriting (:Axis, :titlegap) instead of (:Axis, :titlesize)).

[0.24.11] - 2026-05-30

  • Menu and Toggle now immediately changed their color when updated via an Observable 5588
  • Added convert_arguments method for one dimensional StatsBase.Histogram for Stairs #5631
  • Added an Base.iterate for FigureAxis so that can be splashed in code as well #5646.

... (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 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 [Interpolations](https://github.com/JuliaMath/Interpolations.jl) and [Makie](https://github.com/MakieOrg/Makie.jl) to permit the latest version.

Updates `Interpolations` to 0.16.3
- [Release notes](https://github.com/JuliaMath/Interpolations.jl/releases)
- [Changelog](https://github.com/JuliaMath/Interpolations.jl/blob/master/NEWS.md)
- [Commits](JuliaMath/Interpolations.jl@v0.15.2...v0.16.3)

Updates `Makie` to 0.24.14
- [Release notes](https://github.com/MakieOrg/Makie.jl/releases)
- [Changelog](https://github.com/MakieOrg/Makie.jl/blob/master/CHANGELOG.md)
- [Commits](MakieOrg/Makie.jl@assets-v0.0.1-dev...v0.24.14)

---
updated-dependencies:
- dependency-name: Interpolations
  dependency-version: 0.16.3
  dependency-type: direct:production
  dependency-group: julia-packages
- dependency-name: Makie
  dependency-version: 0.24.14
  dependency-type: direct:production
  dependency-group: 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 Sep 10, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file julia Pull requests that update julia code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants