Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Mar 19, 2025

This PR contains the following updates:

Package Change Age Confidence
armonik >=3.25.0>=3.28.1 age confidence
jax >=0.6.1>=0.9.0 age confidence
pymonik >=0.2.2>=0.2.5 age confidence
com.google.errorprone:error_prone_annotations (source) 2.36.02.46.0 age confidence
org.apache.maven.plugins:maven-shade-plugin (source) 3.6.03.6.1 age confidence
info.picocli:picocli (source) 4.7.64.7.7 age confidence
org.apache.maven.plugins:maven-assembly-plugin (source) 3.7.13.8.0 age confidence
fr.aneo:armonik-java 3.26.03.27.1-flupdateapiversion3261.1.e094193 age confidence

Release Notes

aneoconsulting/ArmoniK.Api (armonik)

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.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.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.
google/error-prone (com.google.errorprone:error_prone_annotations)

v2.46.0: Error Prone 2.46.0

Changes:

New checks:

v2.45.0: Error Prone 2.45.0

Changes:

  • Improved compatibility with latest JDK 26 EA builds.

New checks:

Closed issues: #​5335

Full changelog: google/error-prone@v2.44.0...v2.45.0

v2.44.0: Error Prone 2.44.0

Changes

Closed issues: #​5218, #​5278

Full changelog: google/error-prone@v2.43.0...v2.44.0

v2.43.0: Error Prone 2.43.0

The minimum supported JDK version to run Error Prone is now JDK 21 (#​4867).

Changes:

  • -XepPatchChecks now skips disabled checks (#​4943)
  • AndroidJdkLibsChecker has been removed, the recommended replacement for Android code is Android Lint's NewApi check

New checks:

Closed issues: #​4943, #​5102, #​5107, #​5121, #​5158, #​5217, #​5239

Full changelog: google/error-prone@v2.42.0...v2.43.0

v2.42.0: Error Prone 2.42.0

Compare Source

New checks:

Changes:

  • The return type of ASTHelpers.asFlagSet has changed. The previous type was EnumSet<Flags.Flag>, where Flags.Flag is an enum in the javac class Flags. A recent JDK change has replaced that enum with a new top-level enum called FlagsEnum. It is not possible to change ASTHelpers.asFlagSet in a way that would be type-safe and compatible with the enums from JDKs both before and after the change. Instead, the method now returns ImmutableSet<String>, where the strings come from the toString() of the enum constants. That means they are "native", "abstract", etc.
  • Flag IO.print[ln]() in SystemOut.

Full changelog: google/error-prone@v2.41.0...v2.42.0

v2.41.0: Error Prone 2.41.0

New checks:

  • EffectivelyPrivate: Detect declarations that have public or protected modifiers, but are effectively private

Changes:

  • Skip BooleanLiteral findings if the target type is boxed (#​5134)

Full changelog: google/error-prone@v2.40.0...v2.41.0

v2.40.0: Error Prone 2.40.0

Changes:

Full changelog: google/error-prone@v2.39.0...v2.40.0

v2.39.0: Error Prone 2.39.0

Changes:

  • Temporarily downgrade to Guava 33.4.0 (#​5108)

Checks:

  • BooleanLiteral: Prefer true to Boolean.TRUE
  • ExpensiveLenientFormatString: Renamed from PreconditionsExpensiveString, detects unnecessary calls to String.format in the arguments of lenient formatting methods.
  • UnnecessaryQualifier: Detects @Qualifier or @BindingAnnotation annotations that have no effect, and can be removed

Issues: #​4996, #​5045

Full changelog: google/error-prone@v2.38.0...v2.39.0

v2.38.0: Error Prone 2.38.0

New checks:

Closed issues: #​4924, #​4897, #​4995

Full changelog: google/error-prone@v2.37.0...v2.38.0

v2.37.0: Error Prone 2.37.0

Changes:

  • The annotations that were previously in error_prone_type_annotations have been been merged into error_prone_annotations. error_prone_type_annotations is now deprecated, and will be removed in a future release.

New checks:

  • AssignmentExpression - The use of an assignment expression can be surprising and hard to read; consider factoring out the assignment to a separate statement.
  • IntFloatConversion - Detect calls to scalb that should be using the double overload instead
  • InvalidSnippet - Detects snippets which omit the : required for inline code.
  • JUnit4EmptyMethods - Detects empty JUnit4 @Before, @After, @BeforeClass, and @AfterClass methods.
  • MockIllegalThrows - Detects cases where Mockito is configured to throw checked exception types which are impossible.
  • NegativeBoolean - Prefer positive boolean names.
  • RuleNotRun - Detects TestRules not annotated with @Rule, that won't be run.
  • StringConcatToTextBlock - Replaces concatenated multiline strings with text blocks.
  • TimeInStaticInitializer - Detects accesses of the system time in static contexts.

Closed issues:

  • Propagate check flags in patch mode (#​4699)
  • Fixes a crash in ComputeIfAbsentAmbiguousReference (#​4736)
  • Show the field name in HidingField diagnostics (#​4775)
  • Add support for jakarta annotations to some checks (#​4782)
  • FloatingPointAssertionWithinEpsilonTest depends on default locale (#​4815)
  • @InlineMe patching of Strings.repeat produces broken code (#​4819)
  • Fix a crash in IdentifierName on unnamed (_) variables (#​4847)
  • Fix a crash in ArgumentParameterSwap (#​490)

Full changelog: google/error-prone@v2.36.0...v2.37.0

remkop/picocli (info.picocli:picocli)

v4.7.7

The picocli community is pleased to announce picocli 4.7.7.

This release includes bugfixes and enhancements.

Many thanks to the picocli community for raising these issues and providing the pull requests to address them!

This is the eighty-sixth public release.
Picocli follows semantic versioning.
Artifacts in this release are signed by Remko Popma (6601 E5C0 8DCC BB96).

Table of Contents

New and Noteworthy

This release fixes a problem that was introduced in the previous release (4.7.6), where using an ArgGroup in a Mixin would result in options being added twice, or DuplicateOptionAnnotationsException.

The built-in picocli.CommandLine.HelpCommand subcommand now implements Callable<Integer> and returns the exit code of the subcommand's exitCodeOnUsageHelp value for the subcommand whose help was requested.

From this release, if a command implements both Callable and Runnable, then the default execution strategy will invoke the call method instead of the run method.

Fixed issues

  • [#​2353] Enhancement: picocli.shell.jline3.PicocliCommands::invoke now returns ParseResult instead of null. Thanks to Paul for raising this.
  • [#​2336] Enhancement: Avoid syntax error in auto-completion script for invalid option names and paramLabel values starting with a digit. Thanks to Ruud Senden and Tobias Knerr for raising this.
  • [#​2281] Enhancement: Variable interpolation should work for ArgGroup.heading attribute. Thanks to Marc Philipp for raising this.
  • [#​2355] Bugfix: The built-in help subcommand should return the exit code of the subcommand's exitCodeOnUsageHelp value for the subcommand whose help was requested. Thanks to marco-brandizi for raising this.
  • [#​2335] Bugfix: Module info missing in all jars except the main picocli jar file. Thanks to Oliver B. Fischer for raising this.
  • [#​2331] Bugfix: AutoComplete with jline3 was showing hidden commands. Thanks to clebertsuconic for raising this.
  • [#​2291] Bugfix: NullPointerException when using PropertiesDefaultProvider. Thanks to JessHolle for raising this.
  • [#​2344] Bugfix: negatable=true option in an ArgGroup should not add negated option twice. Thanks to Robin Fritz for raising this.
  • [#​2309] Bugfix: Duplicate help output for ArgGroup from a Mixin. Thanks to s-falke for raising this. Thanks to Simon Gamma for providing a pull request for this.
  • [#​2341] Bugfix: Options get doubled in non validating ArgGroup when used in Mixin. Thanks to Selene Feigl for raising this.
  • [#​2349] Bugfix: Incorrect results when using ArgGroup + defaultValue + split + List/Set. Thanks to Mithun Josalyn Gonsalvez for raising this.
  • [#​2292] Bugfix: DuplicateOptionAnnotationsException on using negatable option in ArgGroup. Thanks to Bhavik Patel for raising this.
  • [#​2380] Bugfix: boolean with arity=0 and defaultValue=false behaved unexpectedly. Thanks to Leonard Brünings for raising this.
  • [#​2290] DOC: User guide, CDI 2.0 (JSR 365) section: fix example and add warning about dynamic proxies. Thanks to Mert Zeybekler for the pull request.
  • [#​2347] DOC: Fix line-endings in generated asciidoc HTML. Thanks to Fridrich Štrba for the pull request.
  • [#​2367] DOC: Fix broken link. Thanks to yeoleobun for the pull request.
  • [#​2370] DOC: Add at least a link to how to use the CodeGen APT under Bazel. Thanks to Michael Vorburger for the pull request.
  • [#​2302] DEP: Bump actions/checkout from 4.1.4 to 4.1.7
  • [#​2391] DEP: Bump actions/checkout from 4.1.7 to 4.2.2
  • [#​2388] DEP: Bump actions/setup-java from 4.2.1 to 4.7.1
  • [#​2390] DEP: Bump actions/upload-artifact from 4.3.3 to 4.6.2
  • [#​2317] DEP: Bump gradle/wrapper-validation-action from 3.3.2 to 3.5.0
  • [#​2321] DEP: Bump com.google.errorprone:error_prone_core from 2.27.1 to 2.29.2
  • [#​2382] DEP: Bump com.google.errorprone:error_prone_core from 2.29.2 to 2.37.0
  • [#​2329] DEP: Bump github/codeql-action from 3.25.3 to 3.25.15
  • [#​2387] DEP: Bump github/codeql-action from 3.25.15 to 3.28.15
    [#​2399] DEP: Bump jakarta.validation:jakarta.validation-api from 3.1.0 to 3.1.1
  • [#​2384] DEP: Bump junit5Version from 5.10.2 to 5.12.2
  • [#​2392] DEP: Bump log4j2Version from 2.23.1 to 2.24.3
  • [#​2308] DEP: Bump net.ltgt.gradle:gradle-errorprone-plugin from 3.1.0 to 4.0.1
    [#​2403] DEP: Bump net.ltgt.gradle:gradle-errorprone-plugin from 4.1.0 to 4.2.0
  • [#​2393] DEP: Bump org.apache.ivy:ivy from 2.5.2 to 2.5.3
  • [#​2385] DEP: Bump org.asciidoctor:asciidoctor-gradle-jvm from 4.0.2 to 4.0.4
  • [#​2386] DEP: Bump org.asciidoctor:asciidoctorj-pdf from 2.3.15 to 2.3.19
  • [#​2394] DEP: Bump org.hamcrest:hamcrest-core from 2.2 to 3.0 (REVERTED)
  • [#​2396] DEP: Bump org.hibernate.validator:hibernate-validator from 8.0.1.Final to 8.0.2.Final
  • [#​2395] DEP: Bump org.hibernate.validator:hibernate-validator-annotation-processor from 8.0.1.Final to 8.0.2.Final
    [#​2400] DEP: Bump org.jetbrains.kotlin:kotlin-gradle-plugin from 2.0.0 to 2.1.20
    [#​2401] DEP: Bump org.jetbrains.kotlin:kotlin-script-runtime from 2.0.0 to 2.1.20
    [#​2402] DEP: Bump org.jline:jline from 3.26.1 to 3.29.0
  • [#​2383] DEP: Bump org.scala-lang:scala-library from 2.13.14 to 2.13.16
  • [#​2330] DEP: Bump ossf/scorecard-action from 2.3.1 to 2.4.0
  • [#​2389] DEP: Bump ossf/scorecard-action from 2.4.0 to 2.4.1
  • [#​2320] DEP: Bump step-security/harden-runner from 2.7.1 to 2.9.0
  • [#​2397] DEP: Bump step-security/harden-runner from 2.9.0 to 2.11.1

Deprecations

No features were deprecated in this release.

Potential breaking changes

This release has no breaking changes.


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 from 83229a5 to f5f757f Compare January 21, 2026 01:44
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.

1 participant