chore(deps): update core handwritten gems lockfiles#34747
Open
renovate-bot wants to merge 1 commit into
Open
Conversation
22c62a2 to
350f87e
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.11.3→0.18.0">= 1.3.0", "< 1.5"→">= 1.3.0", "< 1.7.1""~> 1.30.0"→"~> 1.32.0""~> 1.25.1"→"~> 1.32.0""~> 1.31.1"→"~> 1.32.0""~> 1.30.1"→"~> 1.32.0"1.2.0→1.2.2"~> 1.5.0"→"~> 1.8.0""~> 1.7.0"→"~> 1.8.0""~> 0.5.5"→"~> 0.6.0""~> 0.15.2"→"~> 0.16.0""~> 3.1.2"→"~> 3.8.0"Release Notes
googleapis/google-api-ruby-client (google-apis-core)
v0.18.0Compare Source
Features
v0.17.0Compare Source
Features
Bug Fixes
v0.16.0Features
v0.15.1Bug Fixes
v0.15.0Compare Source
Features
v0.14.1Compare Source
Bug Fixes
v0.14.0Compare Source
Features
Bug Fixes
v0.13.0Compare Source
Features
v0.12.0Compare Source
Features
googleapis/google-cloud-ruby (google-cloud-bigquery-connection-v1)
v1.7.0: google-cloud-bigquery-connection-v1: v1.7.01.7.0 (2026-06-11)
Features
v1.6.0: google-cloud-bigquery-connection-v1: v1.6.01.6.0 (2026-04-02)
Features
v1.5.0: google-cloud-bigquery-connection-v1: v1.5.01.5.0 (2026-03-19)
Features
googleapis/ruby-style (google-style)
v1.32.0Features
v1.31.1Bug Fixes
v1.31.0Features
seattlerb/minitest-autotest (minitest-autotest)
v1.2.2Compare Source
v1.2.1Compare Source
minitest-reporters/minitest-reporters (minitest-reporters)
v1.8.0Compare Source
v1.7.1Compare Source
suppress_inline_failure_output. This option was doing the opposite of what it intended to do.#354
v1.7.0Compare Source
JUnitReporterto output a failure screenshot path when included in the minitest result #346 contributed by matteeyahProgressReporterdefault format #348 contributed by notEthansuppress_inline_failure_outputtoSpecReporterto provide an explicit switch, separate fromprint_failure_summary, for suppressing inline failure messages. Until this change, theprint_failure_summarywould do both: print a failure/error summary after all tests run and suppress the inline failure messages. With this changeprint_failure_summarywill just add a summary at the end of a test run, and it will no longer suppress the inline failure messages. #352 contributed by rthboundv1.6.1Compare Source
MiniTestconstant withMinitest#345 contributed by istanav1.6.0Compare Source
percent_skipps->percent_skips) #326 contributed by andyw8Object#=~#318 contributed by etiennebarrieprint_failure_summarytoSpecReporterwhich causes failures and errors to print at the end of the test suite instead of inlineas they happen #306 contributed by picandocodigo
ruby/ostruct (ostruct)
v0.6.3Compare Source
What's Changed
Ractor.shareable_procby @ko1 in #82Full Changelog: ruby/ostruct@v0.6.2...v0.6.3
v0.6.2Compare Source
What's Changed
612653dto9e85cb1by @dependabot in #66Ractor#valueasRactor#takeis removed by @ko1 in #78gh releaseby @hsbt in #79New Contributors
Full Changelog: ruby/ostruct@v0.6.1...v0.6.2
v0.6.1Compare Source
What's Changed
Full Changelog: ruby/ostruct@v0.6.0...v0.6.1
v0.6.0Compare Source
What's Changed
New Contributors
Full Changelog: ruby/ostruct@v0.5.5...v0.6.0
kamui/retriable (retriable)
v3.8.0Compare Source
Deprecations
timeout:option ahead of its removal in Retriable 4.0. Non-nil timeout values supplied throughRetriable.configure,Retriable.retriable(...), orRetriable.with_override(...)now emit a deprecation warning while keeping the existing runtime behavior unchanged. On Ruby 2.7+ the warning is emitted viaKernel.warn(..., category: :deprecated), so callers can silence it through the standard Ruby controls (Warning[:deprecated] = false,ruby -W:no-deprecated, or a customWarning.warn). To keep the notice from drowning busy applications, it is emitted at most once per process; suppression viaWarning[:deprecated]leaves the warner armed for the next call that re-enables the category. Prefer library-native timeout settings, or wrap the retried block inTimeout.timeout(...)directly if you still need that behavior. See the README migration guidance for details.v3.7.0Compare Source
tries: Float::INFINITY. Requires a finitemax_elapsed_timeas a safety bound and is incompatible with customintervals:. Both invalid configurations raiseArgumentErrorfromConfig#validate!.v3.6.1Compare Source
on:option before retrying. Previously, passing a non-Exceptionvalue such asObject,Kernel, or a plainModule(which appear in everyException's ancestor chain) would silently retry process-critical exceptions likeSystemExitandInterrupt. Theon:option now requires anExceptionsubclass, an array of them, or a hash whose keys are such classes and whose values arenil, aRegexp, or an array ofRegexps. Invalid shapes raiseArgumentErrorbefore the block runs.with_override(contexts:)shape before applying overrides.contextsmay benilor a hash, and each per-context override must be a hash.on_retry: falsedisables a callback set inRetriable.configurefor a single call.v3.6.0Compare Source
Retriable.overrideandRetriable.reset_overrideare removed and replaced by block-scopedRetriable.with_override(opts) { ... }. The new API requires a block, restores the previous override (or absence of override) when the block exits viaensure, and is thread-local — overrides set in one thread do not affect other threads, and child threads do not inherit them. Fibers within a thread still share the thread's active override. Nestedwith_overridecalls correctly restore the outer override on inner exit. See the README anddocs/testing.mdfor migration and testing patterns. This replaces the override API introduced in 3.5.0.v3.5.1Compare Source
triesmust now be a positive integer unless a customintervalsarray is provided.v3.5.0Compare Source
max_elapsed_timewhensleep_disabledis true.overrideandreset_overrideAPIs to force retry settings over local call options when needed (for example, test short-circuiting).v3.4.1Compare Source
Process.clock_gettime(CLOCK_MONOTONIC)for elapsed time tracking so retry timing is immune to wall-clock adjustments (NTP, manual changes).max_elapsed_time: nilgracefully instead of raisingNoMethodError.* 1.0float coercion inExponentialBackoff#randomize.v3.4.0Compare Source
retry_ifoption to support custom retry predicates, including checks against wrappedexception.causevalues.v3.3.0Compare Source
Retriable.retriableinternals into focused private helpers to improve readability while preserving behavior..rubocop.ymlwith explicit modern defaults to enable new cops while preserving existing project style policies.v3.2.1Compare Source
v3.2.0Compare Source
triesvalue is overridden byintervalsparameter if both are provided and add a test for this. This is always what the README stated but the code didn't actually do it.Configuration
📅 Schedule: (UTC)
🚦 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.
This PR was generated by Mend Renovate. View the repository job log.