Skip to content

Bump the all-julia-dependencies group across 2 directories with 1 update - #303

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/julia/LibTrixi.jl/all-julia-dependencies-5f76ceaf61
Open

Bump the all-julia-dependencies group across 2 directories with 1 update#303
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/julia/LibTrixi.jl/all-julia-dependencies-5f76ceaf61

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 3, 2026

Copy link
Copy Markdown
Contributor

Updates the requirements on and Trixi to permit the latest version.
Updates Trixi to 0.17.0

Release notes

Sourced from Trixi's releases.

v0.17.0

Trixi v0.17.0

Diff since v0.16.27

The breaking changes are documented in the changelog in NEWS.md and the online documentation.

Merged pull requests:

Closed issues:

  • Remove option to pass normal_direction_avg for NonConservativeJump terms (#2852)
Changelog

Sourced from Trixi's changelog.

Changelog

Trixi.jl follows the interpretation of semantic versioning (semver) used in the Julia ecosystem. Notable changes will be documented in this file for human readability.

Changes when updating to v0.17 from v0.16.x

Added

Changed

  • The NonConservativeJump terms now require normal_direction_ll and normal_direction_rr as function arguments instead of the previous averaged normal_direction (#2890). This is necessary because the averaged normal_direction did not yield a consistent jump term.
  • Renamed the hyperbolic right-hand side function rhs! to rhs_hyperbolic! at the semidiscretization and solver levels for consistency with rhs_parabolic! (#2921). The internal default_rhs helper now rejects SemidiscretizationHyperbolicParabolic, which has separate hyperbolic and parabolic right-hand sides and thus lacks a single default right-hand side function.
  • The internal ODE right-hand side functions such as rhs_hyperbolic! and rhs_parabolic! now dispatch additionally on the backend type (#3113). The public interface rhs_hyperbolic!(du_ode, u_ode, semi, t) is unchanged.
  • Trixi.jl now uses t8code v4 through T8code.jl v0.9 (#2706). This results in some changes to the t8code API in examples and internally in Trixi.jl. Moreover, the T8codeMesh constructors gained the keyword argument partition_allow_for_coarsening, which keeps same-level sibling elements together during mesh partitioning to allow later coarsening.
  • The function cons2prim for CompressibleNavierStokesDiffusion has been changed (#3125). It now returns the primitive variables (rho, v1, v2, v3, p) (identical to the CompressibleEulerEquations) instead of (rho, v1, v2, v3, T). The latter functionality is now provided by cons2prim_temperature instead (although it may change in future releases since it is labeled as experimental for now).

Deprecated

Removed

  • The unnecessary method of flux_nonconservative_chan_etal accepting two normal directions was removed (#3147). The other methods are still there and unchanged.
  • The keyword argument n_cells_max has been removed from the TreeMesh constructor and from load_mesh (#3021). Previously it set the initial capacity of the internal tree data structure; since TreeMesh now auto-resizes as needed, the argument is no longer necessary. To migrate, simply remove any n_cells_max = ... argument from existing code. TreeMesh mesh files no longer store the internal capacity HDF5 attribute; new versions derive storage from

... (truncated)

Commits
  • 407dcb4 set version to v0.17.0
  • 2bbdfbc Update to t8code v4 (#2706)
  • e91c2b4 remove n_cells_max argument from TreeMesh constructor (#3021)
  • d8eaacd Resolve cons2prim ambiguity Navier Stokes (#3125)
  • 1f7a96c Rename rhs! to rhs_hyperbolic! (#3166)
  • 3614b78 remove method of flux_nonconservative_chan_etal accepting two normals (#3147)
  • a7b7136 Specialize rhs! for different backends (#3113)
  • 03b3af8 Remove option to pass averaged normal direction for NonConservativeJump ter...
  • c251f56 adapt benchmark compat
  • 688aba5 set development version to v0.17.0-DEV
  • Additional commits viewable in compare view

Updates Trixi to 0.17.0

Release notes

Sourced from Trixi's releases.

v0.17.0

Trixi v0.17.0

Diff since v0.16.27

The breaking changes are documented in the changelog in NEWS.md and the online documentation.

Merged pull requests:

Closed issues:

  • Remove option to pass normal_direction_avg for NonConservativeJump terms (#2852)
Changelog

Sourced from Trixi's changelog.

Changelog

Trixi.jl follows the interpretation of semantic versioning (semver) used in the Julia ecosystem. Notable changes will be documented in this file for human readability.

Changes when updating to v0.17 from v0.16.x

Added

Changed

  • The NonConservativeJump terms now require normal_direction_ll and normal_direction_rr as function arguments instead of the previous averaged normal_direction (#2890). This is necessary because the averaged normal_direction did not yield a consistent jump term.
  • Renamed the hyperbolic right-hand side function rhs! to rhs_hyperbolic! at the semidiscretization and solver levels for consistency with rhs_parabolic! (#2921). The internal default_rhs helper now rejects SemidiscretizationHyperbolicParabolic, which has separate hyperbolic and parabolic right-hand sides and thus lacks a single default right-hand side function.
  • The internal ODE right-hand side functions such as rhs_hyperbolic! and rhs_parabolic! now dispatch additionally on the backend type (#3113). The public interface rhs_hyperbolic!(du_ode, u_ode, semi, t) is unchanged.
  • Trixi.jl now uses t8code v4 through T8code.jl v0.9 (#2706). This results in some changes to the t8code API in examples and internally in Trixi.jl. Moreover, the T8codeMesh constructors gained the keyword argument partition_allow_for_coarsening, which keeps same-level sibling elements together during mesh partitioning to allow later coarsening.
  • The function cons2prim for CompressibleNavierStokesDiffusion has been changed (#3125). It now returns the primitive variables (rho, v1, v2, v3, p) (identical to the CompressibleEulerEquations) instead of (rho, v1, v2, v3, T). The latter functionality is now provided by cons2prim_temperature instead (although it may change in future releases since it is labeled as experimental for now).

Deprecated

Removed

  • The unnecessary method of flux_nonconservative_chan_etal accepting two normal directions was removed (#3147). The other methods are still there and unchanged.
  • The keyword argument n_cells_max has been removed from the TreeMesh constructor and from load_mesh (#3021). Previously it set the initial capacity of the internal tree data structure; since TreeMesh now auto-resizes as needed, the argument is no longer necessary. To migrate, simply remove any n_cells_max = ... argument from existing code. TreeMesh mesh files no longer store the internal capacity HDF5 attribute; new versions derive storage from

... (truncated)

Commits
  • 407dcb4 set version to v0.17.0
  • 2bbdfbc Update to t8code v4 (#2706)
  • e91c2b4 remove n_cells_max argument from TreeMesh constructor (#3021)
  • d8eaacd Resolve cons2prim ambiguity Navier Stokes (#3125)
  • 1f7a96c Rename rhs! to rhs_hyperbolic! (#3166)
  • 3614b78 remove method of flux_nonconservative_chan_etal accepting two normals (#3147)
  • a7b7136 Specialize rhs! for different backends (#3113)
  • 03b3af8 Remove option to pass averaged normal direction for NonConservativeJump ter...
  • c251f56 adapt benchmark compat
  • 688aba5 set development version to v0.17.0-DEV
  • Additional commits viewable in compare view

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  and [Trixi](https://github.com/trixi-framework/Trixi.jl) to permit the latest version.

Updates `Trixi` to 0.17.0
- [Release notes](https://github.com/trixi-framework/Trixi.jl/releases)
- [Changelog](https://github.com/trixi-framework/Trixi.jl/blob/main/NEWS.md)
- [Commits](trixi-framework/Trixi.jl@v0.16.10...v0.17.0)

Updates `Trixi` to 0.17.0
- [Release notes](https://github.com/trixi-framework/Trixi.jl/releases)
- [Changelog](https://github.com/trixi-framework/Trixi.jl/blob/main/NEWS.md)
- [Commits](trixi-framework/Trixi.jl@v0.16.10...v0.17.0)

---
updated-dependencies:
- dependency-name: Trixi
  dependency-version: 0.17.0
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
- dependency-name: Trixi
  dependency-version: 0.17.0
  dependency-type: direct:production
  dependency-group: all-julia-dependencies
...

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 Aug 3, 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