Skip to content

chore(deps): update all non-major dependencies#145

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch
Open

chore(deps): update all non-major dependencies#145
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Mar 19, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
armonik >=3.25.0>=3.29.0 age confidence
jax >=0.6.1>=0.9.2 age confidence
maven (source) 3.9.63.9.14 age confidence
maven-wrapper (source) 3.2.03.3.4 age confidence
myst_parser ==4.0.0==4.0.1 age confidence
pymonik >=0.2.2>=0.2.5 age confidence
sphinx (changelog) ==8.1.3==8.2.3 age confidence
sphinx-rtd-theme ==3.0.2==3.1.0 age confidence
sphinxcontrib-mermaid (changelog) ==1.0.0==1.2.3 age confidence
org.apache.maven.plugins:maven-assembly-plugin (source) 3.7.13.8.0 age confidence
org.codehaus.mojo:exec-maven-plugin (source) 3.1.03.6.3 age confidence
org.apache.maven.plugins:maven-shade-plugin (source) 3.6.13.6.2 age confidence
org.apache.maven.plugins:maven-compiler-plugin (source) 3.12.13.15.0 age confidence
org.apache.maven.plugins:maven-wrapper-plugin (source) 3.2.03.3.4 age confidence
ch.qos.logback:logback-classic (source, changelog) 1.5.201.5.32 age confidence

Release Notes

aneoconsulting/ArmoniK.Api (armonik)

v3.29.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v3.28.3

Compare Source

   🏎 Performance
    View changes on GitHub

v3.28.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.28.1

Compare Source

   🐞 Bug Fixes
  • Use System.Linq.AsyncEnumerable instead of System.Linq.Async to be compatible with dotnet 10  -  by @​aneojgurhem (21eb4)
  • Use System.Linq.AsyncEnumerable instead of System.Linq.Async to be compatible with dotnet 10  -  by @​aneojgurhem in #​649 (b2dcb)
    View changes on GitHub

v3.28.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v3.27.0

Compare Source

What's Changed

New Contributors

Full Changelog: aneoconsulting/ArmoniK.Api@3.26.1...3.27.0

v3.26.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v3.26.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
jax-ml/jax (jax)

v0.9.2

Compare Source

  • Changes:
    • The semi-private type jax._src.literals.TypedNdArray is now a subclass of
      np.ndarray, rather than a duck type of it.
    • {func}jax.numpy.arange with step specified no longer generates the array
      on host. The benefit is more efficient code, though this can lead to less
      precise outputs for narrow-width floats (e.g. bfloat16). To recover the
      previous behavior in this case, use jnp.array(np.arange(...)).

v0.9.1

Compare Source

  • Changes:

    • JAX tracers that are not of Array type (e.g., of Ref type) will no
      longer report themselves to be instances of Array.
    • Using jax.shard_map in Explicit mode will raise an error
      if the PartitionSpec of input does not match the PartitionSpec specified in
      in_specs. In other words, it will act like an assert instead of an
      implicit reshard.
      in_specs is an optional argument so you can omit specifying it
      and shard_map will infer the PartitionSpec from the argument. If you
      want to reshard your inputs, you can use jax.reshard on the arguments and
      then pass those args to shard_map.
  • New features:

    • Added a debug config jax_compilation_cache_check_contents. If set, we miss
      when get() is called on a value that has not been put() by the current
      process, even if the value is actually in the disk cache. When a value is
      put(), we verify that its contents match.

v0.9.0.1: JAX v0.9.0.1

Compare Source

JAX v0.9.0.1 is identical to v0.9.0 with the commits from the following four PRs patched in:

v0.9.0

Compare Source

  • New features:

    • Added {func}jax.thread_guard, a context manager that detects when devices
      are used by multiple threads in multi-controller JAX.
  • Bug fixes:

    • Fixed a workspace size calculation error for pivoted QR (magma_zgeqp3_gpu)
      in MAGMA 2.9.0 when using use_magma=True and pivoting=True.
      ({jax-issue}#34145).
  • Deprecations:

    • The flag jax_collectives_common_channel_id was removed.
    • The jax_pmap_no_rank_reduction config state has been removed. The
      no-rank-reduction behavior is now the only supported behavior: a
      jax.pmapped function f sees inputs of the same rank as the input to
      jax.pmap(f). For example, if jax.pmap(f) receives shape (8, 128) on
      8 devices, then f receives shape (1, 128).
    • Setting the jax_pmap_shmap_merge config state is deprecated in JAX v0.9.0
      and will be removed in JAX v0.10.0.
    • {func}jax.numpy.fix is deprecated, anticipating the deprecation of
      {func}numpy.fix in NumPy v2.5.0. {func}jax.numpy.trunc is a drop-in
      replacement.
  • Changes:

    • {func}jax.export now supports explicit sharding. This required a new
      export serialization format version that includes the NamedSharding,
      including the abstract mesh, and the partition spec. As part of this
      change we have added a restriction in the use of exported modules: when
      calling them the abstract mesh must match the one used at export time,
      including the axis names. Previously, only the number of the devices
      mattered.

v0.8.3: JAX v0.8.3

Compare Source

JAX v0.8.3 is identical to v0.8.2 with the following two bug fixes patched in:

v0.8.2

Compare Source

  • Deprecations

    • jax.lax.pvary has been deprecated.
      Please use jax.lax.pcast(..., to='varying') as the replacement.
    • Complex arguments passed to {func}jax.numpy.arange now result in a
      deprecation warning, because the output is poorly-defined.
    • From {mod}jax.core a number of symbols are newly deprecated including:
      call_impl, get_aval, mapped_aval, subjaxprs, set_current_trace,
      take_current_trace, traverse_jaxpr_params, unmapped_aval,
      AbstractToken, and TraceTag.
    • All symbols in {mod}jax.interpreters.pxla are deprecated. These are
      primarily JAX internal APIs, and users should not rely on them.
  • Changes:

    • jax's Tracer no longer inherits from jax.Array at runtime. However,
      jax.Array now uses a custom metaclass such isinstance(x, Array) is true
      if an object x represents a traced Array. Only some Tracers represent
      Arrays, so it is not correct for Tracer to inherit from Array.

      For the moment, during Python type checking, we continue to declare Tracer
      as a subclass of Array, however we expect to remove this in a future
      release.

    • jax.experimental.si_vjp has been deleted.
      jax.vjp subsumes it's functionality.

v0.8.1

Compare Source

  • New features:

    • {func}jax.jit now supports the decorator factory pattern; i.e instead of
      writing
      @​functools.partial(jax.jit, static_argnames=['n'])
      def f(x, n):
        ...
      
      you may write
      @​jax.jit(static_argnames=['n'])
      def f(x, n):
        ...
      
  • Changes:

    • {func}jax.lax.linalg.eigh now accepts an implementation argument to
      select between QR (CPU/GPU), Jacobi (GPU/TPU), and QDWH (TPU)
      implementations. The EighImplementation enum is publicly exported from
      {mod}jax.lax.linalg.

    • {func}jax.lax.linalg.svd now implements an algorithm that uses the polar
      decomposition on CUDA GPUs. This is also an alias for the existing algorithm
      on TPUs.

  • Bug fixes:

    • Fixed a bug introduced in JAX 0.7.2 where eigh failed for large matrices on
      GPU (({jax-issue}#33062).
  • Deprecations:

    • jax.sharding.PmapSharding is now deprecated. Please use
      jax.NamedSharding instead.
    • jx.device_put_replicated is now deprecated. Please use jax.device_put
      with the appropriate sharding instead.
    • jax.device_put_sharded is now deprecated. Please use jax.device_put with
      the appropriate sharding instead.
    • Default axis_types of jax.make_mesh will change in JAX v0.9.0 to return
      jax.sharding.AxisType.Explicit. Leaving axis_types unspecified will raise a
      DeprecationWarning.
    • {mod}jax.cloud_tpu_init and its contents were deprecated. There is no reason for a user to import or use the contents of this module; JAX handles this for you automatically if needed.

v0.8.0

Compare Source

  • Breaking changes:

    • JAX is changing the default jax.pmap implementation to one implemented in
      terms of jax.jit and jax.shard_map. jax.pmap is in maintenance mode
      and we encourage all new code to use jax.shard_map directly. See the
      migration guide for
      more information.
    • The auto= parameter of jax.experimental.shard_map.shard_map has been
      removed. This means that jax.experimental.shard_map.shard_map no longer
      supports nesting. If you want to nest shard_map calls, please use
      jax.shard_map.
    • JAX no longer allows passing objects that support __jax_array__ directly
      to, e.g. jit-ed functions. Call jax.numpy.asarray on them first.
    • {func}jax.numpy.cov is now returns NaN for empty arrays ({jax-issue}#32305),
      and matches NumPy 2.2 behavior for single-row design matrices ({jax-issue}#32308).
    • JAX no longer accepts Array values where a dtype value is expected. Call
      .dtype on these values first.
    • The deprecated function {func}jax.interpreters.mlir.custom_call was
      removed.
    • The jax.util, jax.extend.ffi, and jax.experimental.host_callback
      modules have been removed. All public APIs within these modules were
      deprecated and removed in v0.7.0 or earlier.
    • The deprecated symbol {obj}jax.custom_derivatives.custom_jvp_call_jaxpr_p
      was removed.
    • jax.experimental.multihost_utils.process_allgather raises an error when
      the input is a jax.Array and not fully-addressable and tiled=False. To fix
      this, pass tiled=True to your process_allgather invocation.
    • from {mod}jax.experimental.compilation_cache, the deprecated symbols
      is_initialized and initialize_cache were removed.
    • The deprecated function {func}jax.interpreters.xla.canonicalize_dtype
      was removed.
    • {mod}jaxlib.hlo_helpers has been removed. Use {mod}jax.ffi instead.
    • The option jax_cpu_enable_gloo_collectives has been removed. Use
      jax_cpu_collectives_implementation instead.
    • The previously-deprecated interpolation argument to
      {func}jax.numpy.percentile and {func}jax.numpy.quantile has been
      removed; use method instead.
    • The JAX-internal for_loop primitive was removed. Its functionality,
      reading from and writing to refs in the loop body, is now directly
      supported by {func}jax.lax.fori_loop. If you need help updating your
      code, please file a bug.
    • {func}jax.numpy.trimzeros now errors for non-1D input.
    • The where argument to {func}jax.numpy.sum and other reductions is now
      required to be boolean. Non-boolean values have resulted in a
      DeprecationWarning since JAX v0.5.0.
    • The deprecated functions in {mod} jax.dlpack, {mod} jax.errors, {mod}
      jax.lib.xla_bridge, {mod} jax.lib.xla_client, and {mod}
      jax.lib.xla_extension were removed.
    • jax.interpreters.mlir.dense_bool_array was removed. Use MLIR APIs to
      construct attributes instead.
  • Changes

    • {func}jax.numpy.linalg.eig now returns a namedtuple (with attributes
      eigenvalues and eigenvectors) instead of a plain tuple.
    • {func}jax.grad and {func}jax.vjp will now round always primals to
      float32 if float64 mode is not enabled.
    • {func}jax.dlpack.from_dlpack now accepts arrays with non-default layouts,
      for example, transposed.
    • The default nonsymmetric eigendecomposition on NVIDIA GPUs now uses
      cusolver. The magma and LAPACK implementations are still available via the
      new implementation argument to {func}jax.lax.linalg.eig
      ({jax-issue}#27265). The use_magma argument is now deprecated in favor
      of implementation.
    • {func}jax.numpy.trim_zeros now follows NumPy 2.2 in supporting
      multi-dimensional inputs.
  • Deprecations

    • {func}jax.experimental.enable_x64 and {func}jax.experimental.disable_x64
      are deprecated in favor of the new non-experimental context manager
      {func}jax.enable_x64.
    • {func}jax.experimental.shard_map.shard_map is deprecated; going forward use
      {func}jax.shard_map.
    • {func}jax.experimental.pjit.pjit is deprecated; going forward use
      {func}jax.jit.

v0.7.2

Compare Source

  • Breaking changes:

    • {func}jax.dlpack.from_dlpack no longer accepts a DLPack capsule. This
      behavior was deprecated and is now removed. The function must be called
      with an array implementing __dlpack__ and __dlpack_device__.
  • Changes

    • The minimum supported NumPy version is now 2.0. Since SciPy 1.13 is required
      for NumPy 2.0 support, the minimum supported SciPy version is now 1.13.

    • JAX now represents constants in its internal jaxpr representation as a
      TypedNdArray, which is a private JAX type that duck types as a
      numpy.ndarray. This type may be exposed to users via custom_jvp rules,
      for example, and may break code that uses isinstance(x, np.ndarray). If
      this breaks your code, you may convert these arrays to classic NumPy arrays
      using np.asarray(x).

  • Bug fixes

    • arr.view(dtype=None) now returns the array unchanged, matching NumPy's
      semantics. Previously it returned the array with a float dtype.
    • jax.random.randint now produces a less-biased distribution for 8-bit and
      16-bit integer types ({jax-issue}#27742). To restore the previous biased
      behavior, you may temporarily set the jax_safer_randint configuration to
      False, but note this is a temporary config that will be removed in a
      future release.
  • Deprecations:

    • The parameters enable_xla and native_serialization for jax2tf.convert
      are deprecated and will be removed in a future version of JAX. These were
      used for jax2tf with non-native serialization, which has been now removed.
    • Setting the config state jax_pmap_no_rank_reduction to False is
      deprecated. By default, jax_pmap_no_rank_reduction will be set to True
      and jax.pmap shards will not have their rank reduced, keeping the same
      rank as their enclosing array.

v0.7.1

Compare Source

  • New features

    • JAX now ships Python 3.14 and 3.14t wheels.
    • JAX now ships Python 3.13t and 3.14t wheels on Mac. Previously we only
      offered free-threading builds on Linux.
  • Changes

    • Exposed jax.set_mesh which acts as a global setter and a context manager.
      Removed jax.sharding.use_mesh in favor of jax.set_mesh.
    • JAX is now built using CUDA 12.9. All versions of CUDA 12.1 or newer remain
      supported.
    • {func}jax.lax.dot now implements the general dot product via the optional
      dimension_numbers argument.
  • Deprecations:

    • {func}jax.lax.zeros_like_array is deprecated. Please use
      {func}jax.numpy.zeros_like instead.
    • Attempting to import {mod}jax.experimental.host_callback now results in
      a DeprecationWarning, and will result in an ImportError starting in JAX
      v0.8.0. Its APIs have raised NotImplementedError since JAX version 0.4.35.
    • In {func}jax.lax.dot, passing the precision and preferred_element_type
      arguments by position is deprecated. Pass them by explicit keyword instead.
    • Several dozen internal APIs have been deprecated from {mod}jax.interpreters.ad,
      {mod}jax.interpreters.batching, and {mod}jax.interpreters.partial_eval; they
      are used rarely if ever outside JAX itself, and most are deprecated without any
      public replacement.

v0.7.0

Compare Source

  • New features:

    • Added jax.P which is an alias for jax.sharding.PartitionSpec.
    • Added {func}jax.tree.reduce_associative.
    • The {attr}jax.numpy.ndarray.at indexing methods now support a wrap_negative_indices
      argument, which defaults to True to match the current behavior ({jax-issue}#29434).
  • Breaking changes:

    • JAX is migrating from GSPMD to Shardy by default. See the
      migration guide
      for more information.
    • JAX autodiff is switching to using direct linearization by default (instead of
      implementing linearization via JVP and partial eval).
      See migration guide
      for more information.
    • jax.stages.OutInfo has been replaced with jax.ShapeDtypeStruct.
    • {func}jax.jit now requires fun to be passed by position, and additional
      arguments to be passed by keyword. Doing otherwise will result in an error
      starting in v0.7.x. This raised a DeprecationWarning in v0.6.x.
    • The minimum Python version is now 3.11. 3.11 will remain the minimum
      supported version until July 2026.
    • Layout API renames:
      • Layout, .layout, .input_layouts and .output_layouts have been
        renamed to Format, .format, .input_formats and .output_formats
      • DeviceLocalLayout, .device_local_layout have been renamed to Layout
        and .layout
    • jax.experimental.shard module has been deleted and all the APIs have been
      moved to the jax.sharding endpoint. So use jax.sharding.reshard,
      jax.sharding.auto_axes and jax.sharding.explicit_axes instead of their
      experimental endpoints.
    • lax.infeed and lax.outfeed were removed, after being deprecated in
      JAX 0.6. The transfer_to_infeed and transfer_from_outfeed methods were
      also removed the Device objects.
    • The jax.extend.core.primitives.pjit_p primitive has been renamed to
      jit_p, and its name attribute has changed from "pjit" to "jit".
      This affects the string representations of jaxprs. The same primitive is no
      longer exported from the jax.experimental.pjit module.
    • The (undocumented) function jax.extend.backend.add_clear_backends_callback
      has been removed. Users should use jax.extend.backend.register_backend_cache
      instead.
    • out_sharding arg added to x.at[y].set and x.at[y].add. Previous
      behavior propagating operand sharding removed. Please use
      x.at[y].set/add(z, out_sharding=jax.typeof(x).sharding) to retain previous
      behavior if scatter op requires collectives.
  • Deprecations:

    • {obj}jax.dlpack.SUPPORTED_DTYPES is deprecated; please use the new
      {func}jax.dlpack.is_supported_dtype function.
    • {func}jax.scipy.special.sph_harm has been deprecated following a similar
      deprecation in SciPy; use {func}jax.scipy.special.sph_harm_y instead.
    • From {mod}jax.interpreters.xla, the previously deprecated symbols
      abstractify and pytype_aval_mappings have been removed.
    • {func}jax.interpreters.xla.canonicalize_dtype is deprecated. For
      canonicalizing dtypes, prefer {func}jax.dtypes.canonicalize_dtype.
      For checking whether an object is a valid jax input, prefer
      {func}jax.core.valid_jaxtype.
    • From {mod}jax.core, the previously deprecated symbols AxisName,
      ConcretizationTypeError, axis_frame, call_p, closed_call_p,
      get_type, trace_state_clean, typematch, and typecheck have been
      removed.
    • From {mod}jax.lib.xla_client, the previously deprecated symbols
      DeviceAssignment, get_topology_for_devices, and mlir_api_version
      have been removed.
    • jax.extend.ffi was removed after being deprecated in v0.5.0.
      Use {mod}jax.ffi instead.
    • {func}jax.lib.xla_bridge.get_compile_options is deprecated, and replaced by
      {func}jax.extend.backend.get_compile_options.

v0.6.2

Compare Source

  • New features:

    • Added {func}jax.tree.broadcast which implements a pytree prefix broadcasting helper.
  • Changes

    • The minimum NumPy version is 1.26 and the minimum SciPy version is 1.12.
apache/maven (maven)

v3.9.14

Compare Source

v3.9.13

Compare Source

v3.9.12: 3.9.12

Compare Source

🚀 New features and improvements

🐛 Bug Fixes

📝 Documentation updates

👻 Maintenance

🔧 Build

📦 Dependency updates

v3.9.11: 3.9.11

Compare Source

🚀 New features and improvements
🐛 Bug Fixes
👻 Maintenance
🔧 Build
📦 Dependency updates

v3.9.10: 3.9.10

Compare Source

Release Notes - Maven - Version 3.9.10

Bug

  • [MNG-8096] - Inconsistent dependency resolution behaviour for concurrent multi-module build can cause failures
  • [MNG-8169] - MINGW support requires --add-opens java.base/java.lang=ALL-UNNAMED
  • [MNG-8170] - Maven 3.9.8 contains weird native library for Jansi on Windows/arm64
  • [MNG-8211] - Maven should fail builds that use CI Friendly versions but have no values set
  • [MNG-8248] - WARNING: A restricted method in java.lang.System has been called
  • [MNG-8256] - ProjectDependencyGraph bug: in case of filtering, non-direct module links are lost
  • [MNG-8315] - Failure of mvn.cmd if a .mvn directory is located at drive root
  • [MNG-8396] - Maven takes forever to resume
  • [MNG-8711] - "Duplicate artifact" in LifecycleDependencyResolver

Improvement

  • [MNG-8370] - Introduce maven.repo.local.head
  • [MNG-8399] - JDK 24+ issues warning about usage of sun.misc.Unsafe
  • [MNG-8707] - Add methods to remove compile and test source roots
  • [MNG-8712] - improve dependency version explanation: it&#​39;s a requirement, not always effective version
  • [MNG-8717] - Remove maven-plugin-plugin:addPluginArtifactMetadata from default binding
  • [MNG-8722] - Use a single standalone version of asm
  • [MNG-8731] - Use https for xsi:schemaLocation in generated descriptors
  • [MNG-8734] - Simplify scripting like "get project version" cases

Task

  • [MNG-8728] - Bump Eclipse Sisu from 0.9.0.M3 to 0.9.0.M4 and use Java 24 on CI

Dependency upgrade

  • [MNG-8289] - Update Plexus annotations to 2.2.0
  • [MNG-8443] - Bump com.google.guava:guava from 33.2.1-jre to 33.4.0-jre
  • [MNG-8531] - Bump org.codehaus.plexus:plexus-utils from 3.5.1 to 3.6.0
  • [MNG-8532] - Bump commons-io:commons-io from 2.16.1 to 2.18.0
  • [MNG-8534] - Bump org.codehaus.mojo:buildnumber-maven-plugin from 3.2.0 to 3.2.1
  • [MNG-8635] - Bump com.google.guava:failureaccess from 1.0.2 to 1.0.3
  • [MNG-8636] - Bump com.google.guava:guava from 33.4.0-jre to 33.4.5-jre
  • [MNG-8640] - Bump org.apache.maven:maven-parent from 43 to 44
  • [MNG-8661] - Bump com.google.guava:guava from 33.4.5-jre to 33.4.6-jre
  • [MNG-8701] - Bump org.codehaus.plexus:plexus-interpolation from 1.27 to 1.28
  • [MNG-8702] - Bump org.codehaus.plexus:plexus-classworlds from 2.8.0 to 2.9.0
  • [MNG-8703] - Bump commons-io:commons-io from 2.18.0 to 2.19.0
  • [MNG-8704] - Bump com.google.guava:guava from 33.4.6-jre to 33.4.8-jre
  • [MNG-8705] - Bump commons-jxpath:commons-jxpath from 1.3 to 1.4.0
  • [MNG-8706] - Bump commons-cli:commons-cli from 1.8.0 to 1.9.0
  • [MNG-8715] - Bump org.fusesource.jansi:jansi from 2.4.1 to 2.4.2
  • [MNG-8716] - Bump resolver to 1.9.23
  • [MNG-8745] - Bump xmlunitVersion from 2.10.0 to 2.10.2
What's Changed

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title chore(deps): update dependency com.google.errorprone:error_prone_annotations to v2.37.0 chore(deps): update dependency com.google.errorprone:error_prone_annotations to v2.38.0 Apr 18, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 9fc1b17 to ee3ca9d Compare April 19, 2025 02:37
@renovate renovate bot changed the title chore(deps): update dependency com.google.errorprone:error_prone_annotations to v2.38.0 chore(deps): update all non-major dependencies Apr 19, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ee3ca9d to 5281043 Compare May 28, 2025 15:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 15964bb to 19d6a5b Compare June 6, 2025 21:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 19d6a5b to b8e794c Compare June 12, 2025 15:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b8e794c to 4d97d84 Compare June 24, 2025 23:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 6cc8f3c to 2522b02 Compare July 15, 2025 17:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 3c94c39 to 74e953b Compare July 24, 2025 16:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 74e953b to af586c8 Compare July 31, 2025 16:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from af586c8 to ea9955a Compare August 20, 2025 02:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ea9955a to b3829bf Compare September 5, 2025 15:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from cd58de4 to 69ccce4 Compare September 19, 2025 20:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from f563a0b to 7e609d3 Compare October 22, 2025 20:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7e609d3 to 67ac441 Compare November 7, 2025 16:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 15be8d1 to 146a5e7 Compare November 19, 2025 00:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 31fcddb to 3417e82 Compare November 29, 2025 02:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3417e82 to 5e2b1bf Compare December 9, 2025 14:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5e2b1bf to 396926b Compare December 18, 2025 21:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 396926b to 83229a5 Compare January 8, 2026 20:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from f5f757f to 20842e6 Compare January 27, 2026 18:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from ab0ec89 to da0034d Compare February 5, 2026 20:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from da0034d to 68d8218 Compare February 16, 2026 15:20
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 710682a to 3b5196b Compare March 6, 2026 14:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 4427280 to c68db60 Compare March 19, 2026 01:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c68db60 to bc37986 Compare March 24, 2026 16:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from bc37986 to 8fb9564 Compare April 1, 2026 16:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants