Skip to content

Conversation

@msclock-bot
Copy link
Contributor

@msclock-bot msclock-bot bot commented Jul 2, 2025

This PR contains the following updates:

Package Type Update Change
ghcr.io/renovatebot/renovate (source) container major 40.45.2 -> 43.0.7
renovatebot/pre-commit-hooks repository major 40.45.1 -> 43.0.6

Note: The pre-commit manager in Renovate is not supported by the pre-commit maintainers or community. Please do not report any problems there, instead create a Discussion in the Renovate repository if you have any questions.


Release Notes

renovatebot/renovate (ghcr.io/renovatebot/renovate)

v43.0.7

Compare Source

Code Refactoring
Build System

v43.0.6

Compare Source

Miscellaneous Chores
Build System

v43.0.5

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.1.8 (main) (#​40803) (a73b6e1)

v43.0.4

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.1.7 (main) (#​40801) (2b958f3)

v43.0.3

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.1.6 (main) (#​40795) (7394478)
Miscellaneous Chores

v43.0.2

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.1.5 (main) (#​40793) (00a1006)
Documentation

v43.0.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.1.4 (main) (#​40788) (1e4f4d3)
Documentation

v43.0.0

Compare Source

Breaking changes for 43

Allowlisting required for "unsafe commands" #​40684

[!NOTE]
This should only affect you if you work with repositories that have a Gradle Wrapper.

Prior to Renovate 43, when performing updates in a repository that used Gradle, Renovate would execute the Gradle Wrapper (./gradlew or gradlew.bat).

This is a well-documented "insider attack" risk that could lead to remote code execution in the context of the Renovate process, as execution of the Gradle buildscript:

  • is controlled by the anyone with write access to the repository being processed
  • can look for specific tasks to execute specific code
  • can execute code from source-tracked scripts
  • can execute code from third-party libraries

This can occur during updates to the Gradle wrapper or using Gradle's Dependency Verification Metadata when updating Gradle dependencies.

As of Renovate 43, this long-standing risk is disabled by default to make Renovate more "secure by default".

Self-hosted administrators can re-enable this using the global self-hosted configuration allowedUnsafeExecutions.

postUpgradeTasks will no longer run with shell mode by default #​40230

As noted in #​40403 and GHSA-pfq2-hh62-7m96, existing access to a repository could lead to remote code execution due to incorrectly quoted shell commands.

The fix for GHSA-pfq2-hh62-7m96 applied to commands invoked by Renovate, but did not cover postUpgradeTasks, which are allowlisted by a self-hosted administrator.

To provide a safer default, commands that run through postUpgradeTasks will no longer run inside a shell.

Self-hosted administrators can re-enable this using the global self-hosted configuration allowShellExecutorForPostUpgradeCommands=true.

binarySource=docker is officially deprecated #​40735

As noted in #​40747, we have now officially deprecated the binarySource=docker option.

There is no timeline decided on the removal of the functionality.

For more details and/or to provide feedback on your use case and why binarySource=install does not work for you, please see #​40747.

Renovate now ships as ESM (ECMAScript Modules) #​9890 / #​40756

This should not affect users, only cases where Renovate is imported as a library. Given our previous support of Node 22, ESM can still be imported from Common JS (CJS) files.

Out of caution and for visibility, this is part of the major release.

config:best-practices will now perform weekly lockfile maintenance #​40735

As part of the Renovate maintainers' opinionated "best practices" configuration, Renovate will now perform a weekly lockfile maintenance task, keeping your lockfiles updated.

This is due to an increase in package managers using lock files, but users not necessarily being aware of the need to enable this explicitly.

If this is not applicable to you, you can use ignorePresets, i.e.

{
  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
  "extends": [
    "config:best-practices"
  ],
  "ignorePresets": [
    ":maintainLockFilesWeekly"
  ]
}
JSON Schema split for repo or global configuration #​38619

Renovate now has separate JSON Schemas for repository configuration, repository configuration (and inherit config) for writing org-inherited-config.json, and global self-hosted configuration:

This provides better validation for your editor/agent, as you now only see documentation for the relevant configuration type you're writing.

You can read more in the Renovate JSON Schema documentation.

This does not affect renovate-config-validator.

Replacements cannot be grouped with other updates #​40758

To prevent replacements being grouped in with other updates, which can sometimes lead to them failing to correctly replace a package, they will no longer be grouped.

This may lead to some PRs being modified/created when you upgrade to this version of Renovate.

Lock file maintenance cannot be grouped with other updates #​40781

To prevent lock file maintenance being grouped in with other updates, which can sometimes lead to them failing to perform the lock file maintenance.

This may lead to some PRs being modified/created when you upgrade to this version of Renovate.

Use wasm-java build of Bouncy Castle #​40678

To improve performance for encryption/decryption of secrets, as well as supporting AEAD, we have moved the default Bouncy Castle build to use wasm-java.

Renovate now requires a minimum of Node 24 #​40675

The existing requirements of Node 24.11.0 has not changed.

This only drops support for Node 22.x.

Package name for Node.JS in Mise has changed to node #​40466

To be more consistent with other package managers, the Node.JS package has been renamed to node.

This ensures that updates to NodeJS (when using Mise) are grouped with other package updates.

The useCloudMetadataServices configuration is now environment variable only #​40638

As a first step towards solving #​38604, we have migrated this configuration option to being environment variable configuration only.

Note that technically Renovate will still detect it if it's set in a config.js, but with changes in #​38604 it will not affect the execution.

Default tool version updates #​39100

For users of the upstream Renovate container images, the following tools have been updated to new major versions:

Tool Version
Bundler 4.0.4
Dotnet 10.0.102
Helm v4.1.0
PHP 8.5.2
Pipenv 2026.0.3
Ruby 4.0.1

Commentary for 43

There aren't any big changes as part of this release to call out - this is a fairly "routine" major version, where we're doing a little cleanup, making some improvements to be "secure by default", and updating our default tool versions.

Deprecations

As part of this release, we want to make you aware of deprecated features which will be removed as of Renovate 44:

⚠ BREAKING CHANGES
  • deps: Update ghcr.io/renovatebot/base-image Docker tag to v13 (main) (#​40730)
  • prevent grouping of lockfile maintenance updates (#​40781)
  • Switch to ESM modules (#​40756)
  • prevent grouping of replacement updates (#​40758)
  • config: deprecate binarySource=docker (#​40754)
  • presets: add maintainLockFilesWeekly to best-practices preset (#​40735)
  • config: make useCloudMetadataServices environment-only (#​40638)
  • self-hosted: don't allow any unsafe commands by default (#​40684)
  • self-hosted: don't use shell: true for postUpgradeTasks (#​40230)
  • json-schema: forbid global-only options in repo configuration (#​38619)
  • presets: add hostType=github to :githubComToken (#​38975)
  • use wasm-java build of Bouncy Castle (#​40678)
  • mise: rename packageName from nodejs to node (#​40466)
  • require node v24 (#​40675)
Features
Bug Fixes
Documentation
  • add announcement bar for v43 (93423cf)
Miscellaneous Chores

v42.95.2

Compare Source

Bug Fixes
  • onboardingAutoCloseAge: don't allow higher inherited value than global (#​40810) (ffb95ed)
Build System
  • trim channel for docker builds (cd27b1d)

v42.95.1

Compare Source

Bug Fixes
Miscellaneous Chores
  • deps: update containerbase/internal-tools action to v4.0.3 (main) (#​40783) (b2e1382)
Continuous Integration

v42.95.0

Compare Source

Features
  • sidecar: use renovatebot/base-image instead of containerbase/sidecar (#​40772) (cd0426b)
Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v12.31.2 (main) (#​40776) (dbe0cf7)
Build System

v42.94.7

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v12.31.2 (main) (#​40773) (f1790af)

v42.94.6

Compare Source

Bug Fixes

v42.94.5

Compare Source

Bug Fixes

v42.94.4

Compare Source

Build System

v42.94.3

Compare Source

Bug Fixes
Miscellaneous Chores
Code Refactoring

v42.94.2

Compare Source

Bug Fixes
  • config/validation: show deprecationMsg as a warning if present (#​40753) (e049e56)
Miscellaneous Chores
  • deps: update containerbase/internal-tools action to v4 (main) (#​40750) (60d733a)
Code Refactoring
Tests

v42.94.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v12.31.1 (main) (#​40749) (fa7e075)
Code Refactoring

v42.94.0

Compare Source

Features
  • deps: update ghcr.io/renovatebot/base-image docker tag to v12.31.0 (main) (#​40746) (ebfbcfd)
Bug Fixes
  • deps: update ghcr.io/containerbase/sidecar docker tag to v13.26.7 (main) (#​40745) (592bf20)
Documentation
  • correct references to binarySource=install for Mend-hosted (#​40740) (783002c)
Miscellaneous Chores
  • deps: update containerbase/internal-tools action to v3.15.0 (main) (#​40732) (b0f4ec3)
  • deps: update dependency tar to v7.5.6 (main) (#​40739) (f29e971)
  • deps: update ghcr.io/containerbase/devcontainer docker tag to v14.0.1 (main) (#​40741) (67964c8)

v42.93.1

Compare Source

Bug Fixes
  • datasource/docker: treat empty string as no architecture (#​40715) (1db6be0)

v42.93.0

Compare Source

Features
Documentation
Miscellaneous Chores

v42.92.14

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v12.30.4 (main) (#​40721) (33b0fcd)
Code Refactoring

v42.92.13

Compare Source

Bug Fixes
  • gradle-wrapper: don't execute when allowedUnsafeExecutions (#​40719) (3e70904)

v42.92.12

Compare Source

Bug Fixes

v42.92.11

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v12.30.3 (main) (#​40711) (c72d818)
Miscellaneous Chores
  • deps: update dependency eslint-plugin-oxlint to v1.41.0 (main) (#​40707) (4d8e18a)
Code Refactoring

v42.92.10

Compare Source

Bug Fixes
Documentation
Miscellaneous Chores

v42.92.9

Compare Source

Bug Fixes
  • sbt: consider html hrefs in absolute and root-relative format (#​39464) (e5c2caa)

v42.92.8

Compare Source

Miscellaneous Chores
  • deps: update dependency typescript-eslint to v8.53.1 (main) (#​40698) (3106c46)
Code Refactoring
Build System

v42.92.7

Compare Source

Bug Fixes

v42.92.6

Compare Source

Bug Fixes
Miscellaneous Chores
Build System

v42.92.5

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v12.30.2 (main) (#​40687) (dfa3798)
Documentation
Miscellaneous Chores

v42.92.4

Compare Source

Miscellaneous Chores
Build System

v42.92.3

Compare Source

Tests
Build System
  • deps: update dependency better-sqlite3 to v12.6.2 (main) (#​40648) (da9b543)

v42.92.2

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v12.30.1 (main) (#​40644) (9a81b2c)
Documentation
  • bot-comparison: drop the "monthly" qualifier for the GitHub Pulse (#​40265) (7063c1a)
  • config-validation: clarify reconfigure branch works only on base repo (#​40452) (89db243)
Miscellaneous Chores
Code Refactoring
Build System
Continuous Integration

v42.92.1

Compare Source

Bug Fixes
Miscellaneous Chores
  • deps: update github/codeql-action action to v4.31.11 (main) (#​40634) (53eece5)
Tests

v42.92.0

Compare Source

Features
Bug Fixes
  • datasource/cpan: Handle modules with missing version (#​40430) (b40c8f3)
  • manager/mise: expand file patterns to match mise's config search (#​40094) (ace27f8)
Code Refactoring
Continuous Integration

v42.91.0

Compare Source

Features
  • deps: update ghcr.io/renovatebot/base-image docker tag to v12.30.0 (main) (#​40622) (6b82b4d)
  • flux: map Helm sourceRef names via registryAliases (#​40158) (2b6dbf4)
Bug Fixes
Tests
Continuous Integration

v42.90.2

Compare Source

Bug Fixes
Documentation
  • onboarding: mention what happens when closing the onboarding PR (#​40624) (3110c83)

v42.90.1

Compare Source

Bug Fixes
Miscellaneous Chores

v42.90.0

Compare Source

Features
  • renovate-config-validator: detect global environment options (#​40534) (239b94f)
Miscellaneous Chores

v42.89.4

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v12.28.2 (main) (#​40618) (157018e)
Miscellaneous Chores
  • deps: update containerbase/internal-tools action to v3.14.54 (main) (#​40617) (ae93155)

v42.89.3

Compare Source

Bug Fixes
Miscellaneous Chores

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.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


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

This PR has been generated by Renovate Bot.

@msclock-bot msclock-bot bot added the renovate label Jul 2, 2025
@codecov
Copy link

codecov bot commented Jul 2, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 100.00%. Comparing base (6115724) to head (7eaeb60).

Additional details and impacted files
@@            Coverage Diff            @@
##            master       #97   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files            3         3           
  Lines           99        99           
=========================================
  Hits            99        99           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@msclock-bot msclock-bot bot force-pushed the renovate-github/major-renovate-group branch 7 times, most recently from cf71bfb to d85de39 Compare July 7, 2025 00:54
@msclock-bot msclock-bot bot force-pushed the renovate-github/major-renovate-group branch 6 times, most recently from efc082e to ea5090d Compare August 7, 2025 00:55
@msclock-bot msclock-bot bot force-pushed the renovate-github/major-renovate-group branch 8 times, most recently from 01a4e42 to 128dee3 Compare September 6, 2025 00:43
@msclock-bot msclock-bot bot force-pushed the renovate-github/major-renovate-group branch 4 times, most recently from acd2636 to 5c448d5 Compare October 7, 2025 00:44
@msclock-bot msclock-bot bot force-pushed the renovate-github/major-renovate-group branch 3 times, most recently from a9420ee to bcf372a Compare November 2, 2025 00:52
@msclock-bot msclock-bot bot force-pushed the renovate-github/major-renovate-group branch 7 times, most recently from 0946b99 to dc066d5 Compare November 7, 2025 00:47
@msclock-bot msclock-bot bot changed the title chore(deps): update renovate group to v41 (major) chore(deps): update renovate group to v42 (major) Nov 7, 2025
@msclock-bot msclock-bot bot force-pushed the renovate-github/major-renovate-group branch 8 times, most recently from 0e58302 to f08bb83 Compare December 7, 2025 00:56
@msclock-bot msclock-bot bot force-pushed the renovate-github/major-renovate-group branch 7 times, most recently from 2caf1f4 to cc64ac9 Compare January 7, 2026 00:54
@msclock-bot msclock-bot bot force-pushed the renovate-github/major-renovate-group branch from cc64ac9 to 7eaeb60 Compare February 1, 2026 01:13
@msclock-bot msclock-bot bot changed the title chore(deps): update renovate group to v42 (major) chore(deps): update renovate group to v43 (major) Feb 1, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants