Skip to content

chore: update all non-major dependencies#17

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

chore: update all non-major dependencies#17
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Apr 12, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@changesets/cli (source) 2.30.02.31.0 age confidence devDependencies minor
eslint (source) 10.2.010.4.0 age confidence devDependencies minor
eslint-plugin-prettier 5.5.55.5.6 age confidence devDependencies patch
globals 17.4.017.6.0 age confidence devDependencies minor
jest (source) 30.3.030.4.2 age confidence devDependencies minor
jiti 2.6.12.7.0 age confidence devDependencies minor
prettier (source) 3.8.23.8.3 age confidence devDependencies patch
renovatebot/github-action v46.1.8v46.1.14 age confidence action patch
ts-jest (source) 29.4.929.4.11 age confidence devDependencies patch
typescript (source) 6.0.26.0.3 age confidence devDependencies patch
typescript-eslint (source) 8.58.18.60.0 age confidence devDependencies minor

Release Notes

changesets/changesets (@​changesets/cli)

v2.31.0

Compare Source

Minor Changes
  • #​1889 96ca062 Thanks @​mixelburg! - Error on unsupported flags for individual CLI commands and print the matching command usage to make mistakes easier to spot.

  • #​1873 42943b7 Thanks @​mixelburg! - Respond to --help on all subcommands. Previously, --help was only handled when it was the sole argument; passing it alongside a subcommand (e.g. changeset version --help) would silently execute the command instead. Now --help always exits early and prints per-command usage when a known subcommand is provided, or the general help text otherwise.

Patch Changes
eslint/eslint (eslint)

v10.4.0

Compare Source

v10.3.0

Compare Source

v10.2.1

Compare Source

prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.5.6

Compare Source

Patch Changes
sindresorhus/globals (globals)

v17.6.0

Compare Source

v17.5.0

Compare Source

jestjs/jest (jest)

v30.4.2

Compare Source

Fixes
  • [jest-runtime] Fix named imports from CJS modules whose module.exports is a function with own-property exports (#​16150)

v30.4.1

Compare Source

Features
  • [jest-config, jest-core, jest-runner, jest-schemas, jest-types] Allow custom runner configuration options via tuple format ['runner-path', {options}] (#​16141)
Fixes
  • [jest-runtime] Align CJS-from-ESM default export with Node: module.exports is always the ESM default, __esModule unwrapping is no longer applied (#​16143)

v30.4.0

Compare Source

Features
  • [babel-jest] Support collecting coverage from .mts, .cts (and other) files (#​15994)
  • [jest-circus, jest-cli, jest-config, jest-core, jest-jasmine2, jest-types] Add --collect-tests flag to discover and list tests without executing them (#​16006)
  • [jest-config, jest-runner, jest-worker] Add workerGracefulExitTimeout config option to control how long workers are given to exit before being force-killed (#​15984)
  • [jest-config] Add support for jest.config.mts as a valid configuration file (#​16005)
  • [jest-config, jest-core, jest-reporters, jest-runner] verbose and silent can now be set per-project; the project-level value overrides the global value for that project's tests (#​16133)
  • [@jest/fake-timers] Accept Temporal.Duration in jest.advanceTimersByTime() and jest.advanceTimersByTimeAsync() (#​16128)
  • [@jest/fake-timers] Accept Temporal.Instant and Temporal.ZonedDateTime in jest.setSystemTime() and useFakeTimers({now}) (#​16128)
  • [@jest/fake-timers] Support faking Temporal.Now.* (#​16131)
  • [jest-mock] Add clearMocksOnScope(scope) on ModuleMocker for clearing every mock function exposed on a scope object (#​16088)
  • [jest-resolve] Add canResolveSync() on Resolver so callers can detect when a user-configured resolver only exports an async hook (#​16064)
  • [jest-runtime] Use synchronous evaluate() for ES modules without top-level await on Node versions that support it (v24.9+), and prefer the synchronous transform path when a sync transformer is configured (#​16062)
  • [jest-runtime] Support require() of ES modules on Node v24.9+ (#​16074)
  • [jest-runtime] Validate TC39 import attributes (with { type: 'json' }) on ESM imports (#​16127)
  • [@jest/transform] Add canTransformSync(filename) on ScriptTransformer so callers can pick the sync vs async transform path (#​16062)
  • [jest-util] Add isError helper (#​16076)
  • [pretty-format] Support React 19 (#​16123)
Fixes
  • [expect-utils] Fix toStrictEqual failing on structuredClone results due to cross-realm constructor mismatch (#​15959)
  • [@jest/expect-utils] Prevent toMatchObject/subset matching from throwing when encountering exotic iterables (#​15952)
  • [fake-timers] Convert Date to milliseconds before passing to @sinonjs/fake-timers (#​16029)
  • [jest] Export GlobalConfig and ProjectConfig TypeScript types (#​16132)
  • [jest-circus] Prevent crash when asyncError is undefined for non-Error throws (#​16003)
  • [jest-circus, jest-jasmine2] Include Error.cause in JSON failureMessages output (#​15967)
  • [jest-config] Fix preset path resolution on Windows when the preset uses subpath exports (#​15961)
  • [jest-config] Allow collectCoverage and coverageProvider in project config without a validation warning (#​16132)
  • [jest-config] Project config validator now emits "is not supported in an individual project configuration" instead of "probably a typing mistake" for known global-only options (#​16132)
  • [jest-environment-node] Fix --localstorage-file warning on Node 25+ (#​16086)
  • [jest-reporters] Apply global coverage threshold to unmatched pattern files in addition to glob/path thresholds (#​16137)
  • [jest-reporters, jest-runner, jest-runtime, jest-transform] Fix coverage report not showing correct code coverage when using projects config option (#​16140)
  • [jest-runtime] Resolve expect and @jest/expect from the internal module registry so test-file imports share the same JestAssertionError as the global expect (#​16130)
  • [jest-runtime] Improve CJS-from-ESM interop: __esModule/Babel default unwrap, broader named-export coverage, and shared CJS singleton across importers (#​16050)
  • [jest-runtime] Load .js files with ESM syntax but no "type":"module" marker as native ESM (#​16050)
  • [jest-runtime] Extend the .js-with-ESM-syntax fallback to require() on Node v24.9+ - falls back to require(esm) when the CJS parser rejects ESM syntax (#​16078)
  • [jest-runtime] Fix deadlocks and double-evaluation in concurrent ESM and wasm imports (#​16050)
  • [jest-runtime] Fix error when require() is called after the Jest environment has been torn down (#​15951)
  • [jest-runtime] Fix missing error when import() is called after the Jest environment has been torn down (#​16080)
  • [jest-runtime] Fix virtual unstable_mockModule registrations not respected in ESM (#​16081)
  • [jest-runtime] Apply moduleNameMapper when resolving modules with require.resolve() and the paths option (#​16135)
Chore & Maintenance
  • [@jest/fake-timers] Upgrade @sinonjs/fake-timers (#​16139)
  • [jest-runtime] Use synchronous linkRequests / instantiate for ESM linking on Node v24.9+ (#​16063)
unjs/jiti (jiti)

v2.7.0

Compare Source

compare changes

🚀 Enhancements
  • Add explicit resource management (using/await using) support (#​422)
  • Support opt-in tsconfigPaths (#​427)
  • Support virtual modules option (#​428)
  • Add jiti/static export (#​430)
🔥 Performance
  • interopDefault: Add caching to reduce proxy overhead by ~2x (#​421)
🩹 Fixes
  • require: Passthrough resolve options (#​412)
  • ci: Skip --coverage flag for node 18 (fe264b4)
  • require: Fallback to transpilation when tryNative fails (#​413)
  • Fallback for ENAMETOOLONG when evaluating esm (#​429)
📦 Build
🏡 Chore
✅ Tests
🤖 CI
  • Update node test matrix (0abda72)
❤️ Contributors
prettier/prettier (prettier)

v3.8.3

Compare Source

renovatebot/github-action (renovatebot/github-action)

v46.1.14

Compare Source

Documentation
  • Revise Fine-grained Personal Access Tokens section (#​1030) (fef7882)
  • set RENOVATE_PLATFORM_COMMIT to enabled (#​1029) (9d07dfa)
  • update references to renovatebot/github-action to v46.1.13 (9a41b99)
Miscellaneous Chores
  • cleanup (8abcd0e)
  • deps: update commitlint monorepo to v20.5.3 (a4e124d)
  • deps: update dependency globals to v17.6.0 (d5ca6d4)
  • deps: update dependency typescript-eslint to v8.59.1 (1dd2319)
  • enable pnpm minimumReleaseAge (00a8327)
Build System
  • deps: lock file maintenance (f6821a2)
Continuous Integration
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.160.7 (1189f69)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.162.0 (43d0a48)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.163.0 (61a1654)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.163.1 (4226876)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.163.2 (b3318e0)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.163.4 (09fe3e9)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.164.0 (5736585)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.164.1 (8b164cc)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.164.2 (44728cc)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.165.0 (bde1da1)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.166.0 (#​1031) (4b957d1)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.166.2 (499cfeb)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.166.3 (fe8a943)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.167.0 (f8ca6db)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.168.4 (2e15d66)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.168.5 (a87ee3d)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.168.6 (683e7dd)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.169.0 (f6166e7)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.169.4 (f1f81f9)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.170.0 (5473f54)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.170.12 (b47aa13)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.170.13 (7e8834d)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.170.14 (9b5f9e6)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.170.15 (98631e8)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.170.16 (ab997a9)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.170.17 (24a51e0)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.170.18 (f82d2cd)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.170.19 (3d684f2)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.170.20 (d7afc6b)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.170.3 (306f0c9)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.170.8 (f0eea19)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.170.9 (f3af74e)

v46.1.13

Compare Source

Documentation
  • update references to renovatebot/github-action to v46.1.12 (a871d4d)
Miscellaneous Chores
Build System
  • deps: lock file maintenance (d044e7d)
Continuous Integration
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.159.1 (a7db9c3)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.159.2 (f9133ef)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.160.0 (212d525)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.160.1 (e3443ce)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.160.2 (833041b)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.160.4 (60cc865)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.160.5 (2c7567a)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.160.6 (35caad2)

v46.1.12

Compare Source

Bug Fixes
Documentation
  • update references to renovatebot/github-action to v46.1.11 (317011a)
Miscellaneous Chores
  • deps: update dependency typescript-eslint to v8.59.0 (8e3560a)
Continuous Integration
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.142.0 (0fee00d)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.142.1 (c7cfc88)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.144.0 (39e7d09)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.145.0 (0bbd415)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.146.0 (889c739)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.147.0 (7addce6)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.150.0 (804ce16)

v46.1.11

Compare Source

Documentation
  • update references to renovatebot/github-action to v46.1.10 (0b264d2)
Miscellaneous Chores
  • deps: update actions/setup-node action to v6.4.0 (951a814)
  • deps: update dependency prettier to v3.8.3 (a763833)
  • deps: update dependency typescript-eslint to v8.58.2 (119d68e)
Build System
  • deps: lock file maintenance (f82feed)
Continuous Integration
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.132.3 (99cc805)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.133.0 (a63d39b)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.135.0 (955b000)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.136.0 (65167cd)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.136.1 (7b21b86)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.136.3 (28a2dc0)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.137.0 (b0cf2a4)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.138.0 (3700882)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.138.1 (f516ce2)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.138.3 (3411548)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.139.0 (5201886)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.139.1 (5856263)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.139.4 (999691d)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.139.5 (f703a54)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.139.6 (3ba85c2)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.139.7 (96f2f09)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.139.8 (5af45e5)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.140.0 (01e9139)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.141.0 (814a2a4)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.141.1 (fb3abdf)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.141.2 (e3a9af5)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.141.5 (4f14b2f)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.141.6 (2357784)

v46.1.10

Compare Source

Documentation
  • update references to renovatebot/github-action to v46.1.9 (ed96e8a)
Miscellaneous Chores
  • deps: update actions/cache action to v5.0.5 (0b43175)
  • deps: update dependency globals to v17.5.0 (429b645)
  • deps: update dependency prettier to v3.8.2 (8bfc8a3)
  • deps: update dependency typescript-eslint to v8.58.1 (#​1026) (f0c5d61)
  • deps: update node.js to v24.15.0 (c493ede)
Build System
  • deps: lock file maintenance (5f318b8)
Continuous Integration
  • add Zizmor for GitHub Actions linting (#​1025) (3ce6ef9)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.111.1 (77016cf)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.111.2 (d4ee47a)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.111.3 (9533edc)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.113.0 (7028a3e)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.115.1 (00ae40b)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.123.0 (4d39d22)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.123.3 (06b71b8)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.123.4 (bd145c9)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.123.5 (59cbcc3)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.123.6 (195ddbe)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.123.8 (9286cb7)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.124.1 (dbcd02c)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.125.0 (754b499)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.125.1 (5ee1022)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.126.0 (a4188be)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.127.2 (#​1027) (b962e40)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.127.3 (6e1df28)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.128.1 (5429eaa)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.129.0 (9f025e5)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.130.1 (#​1028) (0f49bd4)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.131.0 (8c3b0ff)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.132.0 (81c8ffb)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.132.1 (f84cc28)

v46.1.9

Compare Source

Documentation
  • update references to renovatebot/github-action to v46.1.8 (65fadb1)
Miscellaneous Chores
Build System
  • deps: lock file maintenance (646e9b0)
Continuous Integration
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.104.6 (e6e6157)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.104.7 (38c3a5d)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.104.8 (34a118b)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.108.1 (d946ea8)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.109.0 (16020af)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.109.1 (22a6725)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.109.3 (f9ce60c)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.110.10 (8e63580)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.110.12 (4700a42)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.110.13 (2155516)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.110.14 (747253b)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.110.16 (84e3bcc)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.110.17 (b649498)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.110.2 (c149fdf)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.110.4 (9deca28)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.110.7 (eb7409a)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.110.8 (2e39b3e)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.110.9 (b45c6e7)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.111.0 (9feb404)
kulshekhar/ts-jest (ts-jest)

v29.4.11

Compare Source

Bug Fixes
  • preserve Bundler on the CJS path under TypeScript >= 6 (3941818), closes #​4198

v29.4.10

Compare Source

Bug Fixes
  • pass resolutionMode to ts.resolveModuleName for hybrid module support (b557a85)
  • rebuild Program when consecutive compiles need different module kinds (a82a2b3), closes #​4774
  • respect tsconfig moduleResolution instead of forcing Node10 (1bffffc)
  • transformer: transpile mjs files from node_modules for CJS mode (96d025d)
  • transformer: use a consistent comparator in hoist-jest sortStatements (8a8fd2f)
microsoft/TypeScript (typescript)

v6.0.3

Compare Source

typescript-eslint/typescript-eslint (typescript-eslint)

v8.60.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.59.4

Compare Source

🩹 Fixes
  • typescript-eslint: export Compatible* types from typescript-eslint to resolve pnpm TS error (#​12340)
❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.59.3

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.59.2

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.59.1

[Compare

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • 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 force-pushed the renovate/all-minor-patch branch from 8a0cad4 to bc2d55a Compare April 13, 2026 05:48
@renovate renovate Bot changed the title chore: update globals to 17.5.0 chore: update all non-major dependencies Apr 13, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 9582c66 to aef24be Compare April 20, 2026 05:40
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 4c6f8d7 to a8adbf4 Compare April 27, 2026 18:42
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 2d1287a to 6953a9c Compare May 4, 2026 18:02
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from ad89bf9 to 75edf32 Compare May 12, 2026 11:53
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from c1b3854 to bd0b712 Compare May 21, 2026 15:33
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 33f66ea to ebbe41f Compare May 25, 2026 18:06
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from ebbe41f to 67fcf07 Compare May 28, 2026 16:10
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