Skip to content

feat(osv): mark malicious packages with skipReasons - #42510

Merged
jamietanna merged 12 commits into
mainfrom
feat/malicious-detection-osv
Apr 14, 2026
Merged

feat(osv): mark malicious packages with skipReasons#42510
jamietanna merged 12 commits into
mainfrom
feat/malicious-detection-osv

Conversation

@jamietanna

@jamietanna jamietanna commented Apr 9, 2026

Copy link
Copy Markdown
Contributor

Changes

As part of current ongoing supply chain attacks, there have been cases
where Renovate updates packages to a malicious version.

We'll be introducing a more in-depth means to surface these, including
from different API sources, as part of the Enrichment functionality,
but in the short-term we can utilise osv.dev's ingestion of OpenSSF's
Malicious Packages data.

To do this, we need to:

  • look for any MAL- advisories
  • match it against the current dependency's version, and if affected, mark it
    as skipReason: malicious-version-in-use (which will be unset in
    the lookup() function, so we still perform updates
  • match it against the dependency's available updates, and if any are
    affected, mark the dependency
    as skipReason: malicious-update-proposed

Context

Please select one of the following:

  • This closes an existing Issue, Closes: #
  • This doesn't close an Issue, but I accept the risk that this PR may be closed if maintainers disagree with its opening or implementation

AI assistance disclosure

Did you use AI tools to create any part of this pull request?

Please select one option and, if yes, briefly describe how AI was used (e.g., code, tests, docs) and which tool(s) you used.

  • No — I did not use AI for this contribution.
  • Yes — minimal assistance (e.g., IDE autocomplete, small code completions, grammar fixes).
  • Yes — substantive assistance (AI-generated non‑trivial portions of code, tests, or documentation).
  • Yes — other (please describe):

Documentation (please check one with an [x])

  • I have updated the documentation, or
  • No documentation update is required

How I've tested my work (please select one)

I have verified these changes via:

  • Code inspection only, or
  • Newly added/modified unit tests, or
  • No unit tests, but ran on a real repository, or
  • Both unit tests + ran on a real repository

The public repository: https://github.com/JamieTanna-Mend-testing/react-dom-VULNERABLE-CODE-DO-NOT-USE

DEBUG: fetchVulnerabilities() - osvVulnerabilityAlerts=true (repository=local)
(node:71346) MetadataLookupWarning: received unexpected error = All promises were rejected code = UNKNOWN
    at Object.isAvailable (/Users/jamietanna/workspaces/renovatebot/renovate/node_modules/.pnpm/gcp-metadata@8.1.2/node_modules/gcp-metadata/src/index.ts:402:17)
    at processTicksAndRejections (node:internal/process/task_queues:104:5)
    at runNextTicks (node:internal/process/task_queues:69:3)
    at listOnTimeout (node:internal/timers:567:9)
    at processTimers (node:internal/timers:541:7)
    at detect (/Users/jamietanna/workspaces/renovatebot/renovate/node_modules/.pnpm/@opentelemetry+resource-detector-gcp@0.49.0_@opentelemetry+api@1.9.1/node_modules/@opentelemetry/resource-detector-gcp/src/detectors/GcpDetector.ts:78:9)
    at GcpDetector._asyncAttributes (/Users/jamietanna/workspaces/renovatebot/renovate/node_modules/.pnpm/@opentelemetry+resource-detector-gcp@0.49.0_@opentelemetry+api@1.9.1/node_modules/@opentelemetry/resource-detector-gcp/src/detectors/GcpDetector.ts:212:22)
DEBUG: Marking axios as skipReason=malicious-version-in-use, as it is affected by MAL-2026-2307 (repository=local, packageFile=package.json)
       "depName": "axios",
       "packageName": undefined,
       "manager": "npm",
       "datasource": "npm",
       "currentVersion": "1.14.1"
DEBUG: Vulnerability MAL-2026-2307 affects axios 1.14.1 (repository=local)
DEBUG: No fixed version available for vulnerability MAL-2026-2307 in axios 1.14.1 (repository=local)
...
DEBUG: config.repoIsOnboarded=true (repository=local)
 WARN: Dependency axios is currently using a malicious version (repository=local, packageFile=package.json)
       "depName": "axios",
       "packageName": "axios",
       "manager": "npm",
       "datasource": "npm"
DEBUG: packageFiles with updates (repository=local)
       "config": {
         "npm": [
           {
             "deps": [
               {
                 "depType": "devDependencies",
                 "depName": "axios",
                 "currentValue": "1.14.1",
                 "datasource": "npm",
                 "prettyDepType": "devDependency",
                 "lockedVersion": "1.14.1",
                 "updates": [],
                 "packageName": "axios"
               }
             ],
             "extractedConstraints": {},
             "packageFileVersion": "17.0.2-fix.0",
             "managerData": {
               "packageJsonName": "@esm-bundle/react-dom",
               "hasPackageManager": false,
               "pnpmShrinkwrap": "pnpm-lock.yaml",
               "yarnZeroInstall": false,
               "npmrcFileName": null
             },
             "skipInstalls": true,
             "packageFile": "package.json",
             "lockFiles": ["pnpm-lock.yaml"]
           }
         ]
       }

@jamietanna
jamietanna force-pushed the feat/malicious-detection-osv branch from 9d3cea6 to 77a05e8 Compare April 9, 2026 14:53
@jamietanna jamietanna changed the title feat(osv): mark malicious packages as skipReason=malicious feat(osv): mark malicious packages with skipReasons Apr 9, 2026
@jamietanna
jamietanna requested a review from a team April 9, 2026 14:54
Base automatically changed from chore/types to main April 9, 2026 19:13
@jamietanna
jamietanna force-pushed the feat/malicious-detection-osv branch from a61b91b to 6c945e0 Compare April 13, 2026 10:33
@jamietanna
jamietanna marked this pull request as ready for review April 13, 2026 10:33
@jamietanna
jamietanna force-pushed the feat/malicious-detection-osv branch from 6c945e0 to e2b1922 Compare April 13, 2026 10:34

@viceice viceice left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

otherwise lgtm

Comment thread lib/workers/repository/process/vulnerabilities.ts Outdated
@jamietanna
jamietanna requested a review from viceice April 13, 2026 12:30
@jamietanna
jamietanna enabled auto-merge April 13, 2026 12:30
@Shegox

Shegox commented Apr 13, 2026

Copy link
Copy Markdown
Contributor

As we had a (rather) targeted attack over the last weekend via dependency confusion on some of our internal packages I wanted to test that and noticed that while it correctly detected the malicious version correcty, it still proposed the update:

DEBUG: Marking @sap-px/pxapi's update to 99.9.1 as skipReason=malicious-update-proposed, as it is affected by MAL-2026-2545 (repository=gh-testing/osta-core-ui-local, packageFile=package.json)
       "depName": "@sap-px/pxapi",
       "packageName": "@sap-px/pxapi",
       "manager": "npm",
       "datasource": "npm",
       "currentVersion": "3.5.3",
       "newVersion": "99.9.1"
....
          {
           "branchName": "renovate/sap-px-pxapi-99.x",
           "prNo": 4,
           "prTitle": "fix(deps): update dependency @sap-px/pxapi to v99",
           "result": "pr-created",
           "upgrades": [
             {
               "datasource": "npm",
               "depName": "@sap-px/pxapi",
               "displayPending": "",
               "fixedVersion": "3.5.3",
               "currentVersion": "3.5.3",
               "currentValue": "^3.3.0",
               "newValue": "^99.0.0",
               "newVersion": "99.9.1",
               "packageFile": "package.json",
               "updateType": "major",
               "packageName": "@sap-px/pxapi"
             }
           ]
         },      
       

I'm not sure/clear if this PR already intends to block the proposal of malicious packages, or just the flagging if a malicious version is used?


Edit: I tested a few things and it seems that currently first it is checked if it malicious via

export function reportMaliciousSkippedDependencies(
allPackageFiles: Record<string, PackageFile<Record<string, any>>[]>,
): void {
if (allPackageFiles === undefined) {
return;
}
for (const [manager, packageFiles] of Object.entries(allPackageFiles)) {
for (const packageFile of packageFiles) {
for (const dep of packageFile.deps) {
if (dep.skipReason === 'malicious-version-in-use') {
logger.warn(
{
packageFile: packageFile.packageFile,
depName: dep.depName,
packageName: dep.packageName,
manager: manager,
datasource: dep.datasource,
},
`Dependency ${dep.depName} is currently using a malicious version`,
);
// and make sure that it then gets updates proposed in the update phase
delete dep.skipReason;
delete dep.skipStage;
} else if (dep.skipReason === 'malicious-update-proposed') {
const newVersions = dep.updates
?.map((u) => u.newVersion ?? u.newValue)
.filter(isNotNullOrUndefined);
logger.warn(
{
packageFile: packageFile.packageFile,
depName: dep.depName,
packageName: dep.packageName,
manager: manager,
datasource: dep.datasource,
newVersions,
},
`Dependency ${dep.depName} has update(s) proposed which would update you to a malicious version - skipping`,
);
}
}
}
}
}
and then only the data is enriched with the malicious information. I think the intention would be to first enrich the extracted/looked up data and then check if there are any malicious updates?

@jamietanna
jamietanna disabled auto-merge April 13, 2026 13:21
@jamietanna

Copy link
Copy Markdown
Contributor Author

Interesting, thanks! Will take a look, we shouldn't be proposing that update 🤔

(If you're able to share more info on Slack, that'd be appreciated)

viceice
viceice previously approved these changes Apr 13, 2026
… flattened updates

When we're preparing the final, flattened, list of branches to prepare
updates for, we're not filtering out any dependencies that have a
`skipReason` in them.

In the case that, as part of future changes like #42510, a `skipReason`
may be added after the `lookup` phase, we can still get PRs raised even
when they shouldn't be.

We already filter out `enabled=false`, so we should make sure to also
filter anything with a `skipReason`.
@jamietanna

Copy link
Copy Markdown
Contributor Author

Confirmed that this doesn't block updates - #42595 will be needed first, and then I've got some other changes I'm preparing locally

jamietanna and others added 6 commits April 13, 2026 17:10
As part of current ongoing supply chain attacks, there have been cases
where Renovate updates packages to a malicious version.

We'll be introducing a more in-depth means to surface these, including
from different API sources, as part of the Enrichment functionality,
but in the short-term we can utilise osv.dev's ingestion of OpenSSF's
Malicious Packages data.

To do this, we need to:

- look for any `MAL-` advisories
- match it against the current dependency's version, and if affected, mark it
  as `skipReason: malicious-version-in-use` (which will be unset in
  the `lookup()` function, so we still perform updates
- match it against the dependency's available updates, and if any are
  affected, mark the dependency
  as `skipReason: malicious-update-proposed`
Co-authored-by: Claude Opus 4.6 <jamie.tanna+claude-code@mend.io>

@jamietanna jamietanna left a comment

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not really sure I like this suggestion from Opus - but what are your thoughts?

As @shegox flags, we've got an ordering problem:

  1. Fetch vulnerabilities
    • As updates need vulnerability alerts
  2. Fetch updates
    • as malicious packages need updates
  3. Flag malicious packages

@jamietanna
jamietanna requested a review from viceice April 13, 2026 16:17
@Shegox

Shegox commented Apr 13, 2026

Copy link
Copy Markdown
Contributor

I think a good place to perform the malicious check would be within the "postprocess-release.ts". There is as well datasource specific postprocessing called which could block/reject releases if theys are yanked or so.

So blocking releases there for being malicious might be reasonable as well

@jamietanna

Copy link
Copy Markdown
Contributor Author

If you've not seen, we've got #40048 coming, which will be a more generic means for blocking/skipping/annotating updates - for OSV alerts in particular, this is where we'll be moving to

But agreed that having Datasource specific handling for i.e. yanked packages makes sense!

@Shegox

Shegox commented Apr 13, 2026

Copy link
Copy Markdown
Contributor

I tested another approach and this seems to be working. Rather than just using skip reasons, we acutally just remove the update from the list using a filter.

diff --git a/lib/workers/repository/process/extract-update.ts b/lib/workers/repository/process/extract-update.ts
index 1203acb903..e839d7044a 100644
--- a/lib/workers/repository/process/extract-update.ts
+++ b/lib/workers/repository/process/extract-update.ts
@@ -231,6 +231,8 @@ export async function lookup(
 ): Promise<ExtractResult> {
   await fetchVulnerabilities(config, packageFiles);
   await fetchUpdates(config, packageFiles);
+  await fetchVulnerabilities(config, packageFiles);
+  
   memCache.cleanDatasourceKeys();
   calculateLibYears(config, packageFiles);
   const { branches, branchList } = await branchifyUpgrades(
diff --git a/lib/workers/repository/process/vulnerabilities.ts b/lib/workers/repository/process/vulnerabilities.ts
index ec153b0ddf..0e0f9afb16 100644
--- a/lib/workers/repository/process/vulnerabilities.ts
+++ b/lib/workers/repository/process/vulnerabilities.ts
@@ -312,7 +312,7 @@ export class Vulnerabilities {
         }
 
         // or are any of the updates vulnerable?
-        for (const update of dep.updates ?? []) {
+        dep.updates = (dep.updates ?? []).filter(update => {
           const newVersion = update.newVersion ?? update.newValue!;
 
           const isUpdateVulnerable = this.isPackageVulnerable(
@@ -338,8 +338,10 @@ export class Vulnerabilities {
             );
             dep.skipReason = 'malicious-update-proposed';
             dep.skipStage = 'lookup';
+            return false;
           }
-        }
+          return true;
+        });
       }
     }
   }

Comment thread lib/workers/repository/process/extract-update.spec.ts
viceice
viceice previously approved these changes Apr 14, 2026
Co-authored-by: Claude Opus 4.6 <jamie.tanna+claude-code@mend.io>
@jamietanna
jamietanna added this pull request to the merge queue Apr 14, 2026
Merged via the queue into main with commit 01f2479 Apr 14, 2026
46 checks passed
@jamietanna
jamietanna deleted the feat/malicious-detection-osv branch April 14, 2026 13:16
szeidler pushed a commit to szeidler/renovate that referenced this pull request Apr 14, 2026
… flattened updates (renovatebot#42595)

When we're preparing the final, flattened, list of branches to prepare
updates for, we're not filtering out any dependencies that have a
`skipReason` in them.

In the case that, as part of future changes like renovatebot#42510, a `skipReason`
may be added after the `lookup` phase, we can still get PRs raised even
when they shouldn't be.

We already filter out `enabled=false`, so we should make sure to also
filter anything with a `skipReason`.
szeidler pushed a commit to szeidler/renovate that referenced this pull request Apr 14, 2026
)

* fix(workers/repository): don't include `skipReason`'d dependencies in flattened updates

When we're preparing the final, flattened, list of branches to prepare
updates for, we're not filtering out any dependencies that have a
`skipReason` in them.

In the case that, as part of future changes like renovatebot#42510, a `skipReason`
may be added after the `lookup` phase, we can still get PRs raised even
when they shouldn't be.

We already filter out `enabled=false`, so we should make sure to also
filter anything with a `skipReason`.

* feat(osv): mark malicious packages with `skipReason`s

As part of current ongoing supply chain attacks, there have been cases
where Renovate updates packages to a malicious version.

We'll be introducing a more in-depth means to surface these, including
from different API sources, as part of the Enrichment functionality,
but in the short-term we can utilise osv.dev's ingestion of OpenSSF's
Malicious Packages data.

To do this, we need to:

- look for any `MAL-` advisories
- match it against the current dependency's version, and if affected, mark it
  as `skipReason: malicious-version-in-use` (which will be unset in
  the `lookup()` function, so we still perform updates
- match it against the dependency's available updates, and if any are
  affected, mark the dependency
  as `skipReason: malicious-update-proposed`

* fixup! feat(osv): mark malicious packages with `skipReason`s

* fixup! feat(osv): mark malicious packages with `skipReason`s

* test(workers/repository): add missing coverage

Co-authored-by: Claude Opus 4.6 <jamie.tanna+claude-code@mend.io>

* chore: simplify type

* wip-opus

* Revert "wip-opus"

This reverts commit e7b5f29.

* simplify

* sq

* sq

* fixup

Co-authored-by: Claude Opus 4.6 <jamie.tanna+claude-code@mend.io>

---------

Co-authored-by: Claude Opus 4.6 <jamie.tanna+claude-code@mend.io>
renovate Bot added a commit to sdwilsh/ansible-playbooks that referenced this pull request Apr 16, 2026
##### [\`43.123.5\`](https://github.com/renovatebot/renovate/releases/tag/43.123.5)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.33 (main) ([#42673](renovatebot/renovate#42673)) ([d33efe2](renovatebot/renovate@d33efe2))

---
##### [\`43.123.4\`](https://github.com/renovatebot/renovate/releases/tag/43.123.4)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.32 (main) ([#42669](renovatebot/renovate#42669)) ([a14d85b](renovatebot/renovate@a14d85b))

---
##### [\`43.123.3\`](https://github.com/renovatebot/renovate/releases/tag/43.123.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.31 (main) ([#42668](renovatebot/renovate#42668)) ([7d2c1ac](renovatebot/renovate@7d2c1ac))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.21 (main) ([#42667](renovatebot/renovate#42667)) ([f891066](renovatebot/renovate@f891066))

---
##### [\`43.123.2\`](renovatebot/renovate@43.123.1...43.123.2)


---
##### [\`43.123.1\`](https://github.com/renovatebot/renovate/releases/tag/43.123.1)

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.22 (main) ([#42658](renovatebot/renovate#42658)) ([9e33c20](renovatebot/renovate@9e33c20))

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.6 (main) ([#42657](renovatebot/renovate#42657)) ([80146b2](renovatebot/renovate@80146b2))

##### Continuous Integration

- auto-label `needs-discussion` on externally-raised Issues ([#42656](renovatebot/renovate#42656)) ([6a0e718](renovatebot/renovate@6a0e718))

---
##### [\`43.123.0\`](https://github.com/renovatebot/renovate/releases/tag/43.123.0)

##### Features

- add XcodeGen manager for Swift package dependencies in project.yml files ([#41889](renovatebot/renovate#41889)) ([0ff55d2](renovatebot/renovate@0ff55d2))
- **presets:** add `BUN_CONFIG_MAX_HTTP_REQUESTS` to safe global env ([#41350](renovatebot/renovate#41350)) ([1316fd7](renovatebot/renovate@1316fd7))
- **presets:** add changelogUrl link for Forgejo and Gitea digest updates ([#41786](renovatebot/renovate#41786)) ([0f9a516](renovatebot/renovate@0f9a516))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.21 (main) ([#42654](renovatebot/renovate#42654)) ([3891a11](renovatebot/renovate@3891a11))

##### Code Refactoring

- **terraform-module:** replace interfaces with zod schemas and inline fixtures ([#42399](renovatebot/renovate#42399)) ([914c55b](renovatebot/renovate@914c55b))

---
##### [\`43.122.0\`](https://github.com/renovatebot/renovate/releases/tag/43.122.0)

##### Features

- **manager/ant:** support custom `registryUrls` ([#42641](renovatebot/renovate#42641)) ([28ab04b](renovatebot/renovate@28ab04b))

##### Documentation

- use single quotes ([#42648](renovatebot/renovate#42648)) ([3c8521e](renovatebot/renovate@3c8521e))

##### Miscellaneous Chores

- **deps:** update github/codeql-action action to v4.35.2 (main) ([#42650](renovatebot/renovate#42650)) ([40100d0](renovatebot/renovate@40100d0))

---
##### [\`43.121.0\`](https://github.com/renovatebot/renovate/releases/tag/43.121.0)

##### Features

- **manager/ant:** add `coords=` attribute syntax support ([#42635](renovatebot/renovate#42635)) ([15c8ab5](renovatebot/renovate@15c8ab5))
- **terraform-provider:** use registry v2 API for release timestamps ([#42340](renovatebot/renovate#42340)) ([f421075](renovatebot/renovate@f421075))

##### Bug Fixes

- **git:** don't pass extraCloneOpts to ls-remote when local clone exists ([#42491](renovatebot/renovate#42491)) ([70fa962](renovatebot/renovate@70fa962))
- **gitlab:** loosen re-approve constraints during updatePr ([#42528](renovatebot/renovate#42528)) ([7b4f75b](renovatebot/renovate@7b4f75b))

##### Documentation

- correct name of `osv-offline` ([#42486](renovatebot/renovate#42486)) ([0fbc124](renovatebot/renovate@0fbc124))
- **minimum-release-age:** add reference to cooldowns ([#42640](renovatebot/renovate#42640)) ([25e47df](renovatebot/renovate@25e47df))

##### Miscellaneous Chores

- **deps:** update ghcr.io/zizmorcore/zizmor docker tag to v1.24.1 (main) ([#42642](renovatebot/renovate#42642)) ([61947e2](renovatebot/renovate@61947e2))

##### Code Refactoring

- **cache:** Remove obsolete compress flag ([#42563](renovatebot/renovate#42563)) ([f49de7a](renovatebot/renovate@f49de7a))

##### Build System

- **deps:** update dependency [@renovatebot/osv-offline](https://github.com/renovatebot/osv-offline) to v2.5.0 (main) ([#42645](renovatebot/renovate#42645)) ([4cb4030](renovatebot/renovate@4cb4030))

---
##### [\`43.120.2\`](https://github.com/renovatebot/renovate/releases/tag/43.120.2)

##### Bug Fixes

- **vulnerability:** remove matchFileNames restriction from GitHub vulnerability alerts ([#42636](renovatebot/renovate#42636)) ([593a2b1](renovatebot/renovate@593a2b1))

---
##### [\`43.120.1\`](https://github.com/renovatebot/renovate/releases/tag/43.120.1)

##### Bug Fixes

- **logger:** log file using pretty format not working ([#42319](renovatebot/renovate#42319)) ([1c886e0](renovatebot/renovate@1c886e0))

---
##### [\`43.120.0\`](https://github.com/renovatebot/renovate/releases/tag/43.120.0)

##### Features

- **vulnerability:** add severity and CVSS details to GitHub Dependabot alerts ([#42568](renovatebot/renovate#42568)) ([1e906e8](renovatebot/renovate@1e906e8))

##### Miscellaneous Chores

- **instrumentation:** add timing statistics for `getReleases` ([#42523](renovatebot/renovate#42523)) ([f635ae2](renovatebot/renovate@f635ae2))

---
##### [\`43.119.0\`](https://github.com/renovatebot/renovate/releases/tag/43.119.0)

##### Features

- **manager/ant:** add <import> file traversal ([#42631](renovatebot/renovate#42631)) ([76dcc66](renovatebot/renovate@76dcc66))

---
##### [\`43.118.2\`](https://github.com/renovatebot/renovate/releases/tag/43.118.2)

##### Bug Fixes

- **util/git:** allow setting `config.hooksPath` ([#42630](renovatebot/renovate#42630)) ([33c1bf5](renovatebot/renovate@33c1bf5)), closes [#42588](renovatebot/renovate#42588) [#42628](https://github.com/renovatebot/renovate/issues/42628)

---
##### [\`43.118.1\`](https://github.com/renovatebot/renovate/releases/tag/43.118.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.30 (main) ([#42629](renovatebot/renovate#42629)) ([015264e](renovatebot/renovate@015264e))

##### Miscellaneous Chores

- expose known environment variables ([#42201](renovatebot/renovate#42201)) ([b39b50f](renovatebot/renovate@b39b50f))

---
##### [\`43.118.0\`](https://github.com/renovatebot/renovate/releases/tag/43.118.0)

##### Features

- **manager/ant:** add property resolution and .properties file support ([#42175](renovatebot/renovate#42175)) ([ef8e6c8](renovatebot/renovate@ef8e6c8))

---
##### [\`43.117.0\`](https://github.com/renovatebot/renovate/releases/tag/43.117.0)

##### Features

- **bitbucket-pipelines:** update file patterns to support shared configs ([#41704](renovatebot/renovate#41704)) ([53bd796](renovatebot/renovate@53bd796))
- **cache:** add a in-memory expiry map to package file cache ([#42531](renovatebot/renovate#42531)) ([5184761](renovatebot/renovate@5184761))

---
##### [\`43.116.1\`](https://github.com/renovatebot/renovate/releases/tag/43.116.1)

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.5 (main) ([#42626](renovatebot/renovate#42626)) ([7363aee](renovatebot/renovate@7363aee))

---
##### [\`43.116.0\`](https://github.com/renovatebot/renovate/releases/tag/43.116.0)

##### Features

- **osv:** mark malicious packages with `skipReason`s ([#42510](renovatebot/renovate#42510)) ([01f2479](renovatebot/renovate@01f2479))

##### Miscellaneous Chores

- **deps:** update dependency typescript to v6 (main) ([#42615](renovatebot/renovate#42615)) ([d9417b0](renovatebot/renovate@d9417b0))

##### Code Refactoring

- move `requireConfig` to `InheritConfig` ([#41385](renovatebot/renovate#41385)) ([36f9d4a](renovatebot/renovate@36f9d4a))

---
##### [\`43.115.1\`](https://github.com/renovatebot/renovate/releases/tag/43.115.1)

##### Miscellaneous Chores

- **deps:** update actions/github-script action to v9 (main) ([#42613](renovatebot/renovate#42613)) ([1fac64b](renovatebot/renovate@1fac64b))
- **deps:** update actions/upload-pages-artifact action to v5 (main) ([#42614](renovatebot/renovate#42614)) ([cf79688](renovatebot/renovate@cf79688))
- **deps:** update dependency vitest-mock-extended to v4 (main) ([#42616](renovatebot/renovate#42616)) ([1afe9a7](renovatebot/renovate@1afe9a7))
- **deps:** update nick-fields/retry action to v4 (main) ([#42617](renovatebot/renovate#42617)) ([7eee338](renovatebot/renovate@7eee338))
- **deps:** update slackapi/slack-github-action action to v3 (main) ([#42619](renovatebot/renovate#42619)) ([d2d8297](renovatebot/renovate@d2d8297))
- **deps:** update vitest monorepo to v4.1.3 (main) ([#42623](renovatebot/renovate#42623)) ([6cf2410](renovatebot/renovate@6cf2410))
- drop obsolete tsconfig ([#42622](renovatebot/renovate#42622)) ([fcf1e20](renovatebot/renovate@fcf1e20))
- **renovate:** disable next branch ([#42620](renovatebot/renovate#42620)) ([d2abeb4](renovatebot/renovate@d2abeb4))
- **tsdown:** migrate config ([#42621](renovatebot/renovate#42621)) ([32964bd](renovatebot/renovate@32964bd))
- **types:** add `skipStage=enrichment` ([#42585](renovatebot/renovate#42585)) ([4faa847](renovatebot/renovate@4faa847))

##### Build System

- **deps:** update dependency p-queue to v9.1.2 (main) ([#42624](renovatebot/renovate#42624)) ([19baa76](renovatebot/renovate@19baa76))
- **deps:** update dependency simple-git to v3.35.2 (main) ([#42588](renovatebot/renovate#42588)) ([a7b5b48](renovatebot/renovate@a7b5b48))

---
##### [\`43.115.0\`](https://github.com/renovatebot/renovate/releases/tag/43.115.0)

##### Features

- **packageRules:** bumpVersions.type sync ([#42540](renovatebot/renovate#42540)) ([0389869](renovatebot/renovate@0389869))

---
##### [\`43.114.0\`](https://github.com/renovatebot/renovate/releases/tag/43.114.0)

##### Features

- **manager/mise:** add support for openfga ([#42611](renovatebot/renovate#42611)) ([203c5fe](renovatebot/renovate@203c5fe))

##### Miscellaneous Chores

- **deps:** update zizmorcore/zizmor-action action to v0.5.3 (main) ([#42607](renovatebot/renovate#42607)) ([c815d30](renovatebot/renovate@c815d30))
- **types:** add a strong type for `ToolName` and `ConstraintName` ([#42589](renovatebot/renovate#42589)) ([1044a80](renovatebot/renovate@1044a80)), closes [#41849](renovatebot/renovate#41849)

---
##### [\`43.113.0\`](https://github.com/renovatebot/renovate/releases/tag/43.113.0)

##### Features

- **sbt:** support anonymous objects and dotted symbols for version declaration ([#40699](renovatebot/renovate#40699)) ([ef3c964](renovatebot/renovate@ef3c964))

##### Bug Fixes

- **workers/repository:** don't include `skipReason`'d dependencies in flattened updates ([#42595](renovatebot/renovate#42595)) ([f8b4477](renovatebot/renovate@f8b4477)), closes [#42510](renovatebot/renovate#42510)

##### Miscellaneous Chores

- **deps:** update actions/cache action to v5.0.5 (main) ([#42598](renovatebot/renovate#42598)) ([a808338](renovatebot/renovate@a808338))
- **deps:** update containerbase/internal-tools action to v4.5.20 (main) ([#42602](renovatebot/renovate#42602)) ([d2131a7](renovatebot/renovate@d2131a7))
- **deps:** update dependency [@smithy/util-stream](https://github.com/smithy/util-stream) to v4.5.22 (main) ([#42603](renovatebot/renovate#42603)) ([81e51cb](renovatebot/renovate@81e51cb))

---
##### [\`43.112.1\`](https://github.com/renovatebot/renovate/releases/tag/43.112.1)

##### Bug Fixes

- **cache:** Improve SQLite cache error handling ([#42557](renovatebot/renovate#42557)) ([50a2bac](renovatebot/renovate@50a2bac))

##### Code Refactoring

- **dashboard:** align terminology with other sections ([#42354](renovatebot/renovate#42354)) ([27f0797](renovatebot/renovate@27f0797))

---
##### [\`43.112.0\`](https://github.com/renovatebot/renovate/releases/tag/43.112.0)

##### Features

- **cache:** Add `writeSchema` to Maven cache provider ([#42570](renovatebot/renovate#42570)) ([e33aa4c](renovatebot/renovate@e33aa4c))

##### Miscellaneous Chores

- **deps:** update dependency oxlint-tsgolint to v0.20.0 (main) ([#42593](renovatebot/renovate#42593)) ([d80881e](renovatebot/renovate@d80881e))

---
##### [\`43.111.3\`](https://github.com/renovatebot/renovate/releases/tag/43.111.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.29 (main) ([#42592](renovatebot/renovate#42592)) ([edc474a](renovatebot/renovate@edc474a))

##### Documentation

- add Renovate Operator as Kubernetes-native option ([#42506](renovatebot/renovate#42506)) ([91a7213](renovatebot/renovate@91a7213))

---
##### [\`43.111.2\`](https://github.com/renovatebot/renovate/releases/tag/43.111.2)

##### Bug Fixes

- **github-actions:** use correct datasource for Zizmor version ([#42587](renovatebot/renovate#42587)) ([ea1e60e](renovatebot/renovate@ea1e60e))

---
##### [\`43.111.1\`](https://github.com/renovatebot/renovate/releases/tag/43.111.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.28 (main) ([#42580](renovatebot/renovate#42580)) ([216fc99](renovatebot/renovate@216fc99))

##### Documentation

- update references to python to [`8428c32`](renovatebot/renovate@8428c32) (main) ([#42572](renovatebot/renovate#42572)) ([c549ff7](renovatebot/renovate@c549ff7))
- update references to renovatebot/github-action to v46.1.8 (main) ([#42573](renovatebot/renovate#42573)) ([da4e84e](renovatebot/renovate@da4e84e))
- update references to renovatebot/github-action to v46.1.9 (main) ([#42577](renovatebot/renovate#42577)) ([2870abe](renovatebot/renovate@2870abe))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.19 (main) ([#42574](renovatebot/renovate#42574)) ([f31e3d4](renovatebot/renovate@f31e3d4))
- **deps:** update dependency [@containerbase/istanbul-reports-html](https://github.com/containerbase/istanbul-reports-html) to v1.1.43 (main) ([#42575](renovatebot/renovate#42575)) ([7af9aed](renovatebot/renovate@7af9aed))
- **deps:** update dependency [@containerbase/semantic-release-pnpm](https://github.com/containerbase/semantic-release-pnpm) to v1.3.33 (main) ([#42576](renovatebot/renovate#42576)) ([3870e76](renovatebot/renovate@3870e76))
- **deps:** update dependency nock to v14.0.12 (main) ([#42571](renovatebot/renovate#42571)) ([81791bd](renovatebot/renovate@81791bd))
- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.20 (main) ([#42579](renovatebot/renovate#42579)) ([90a2429](renovatebot/renovate@90a2429))

---
##### [\`43.111.0\`](https://github.com/renovatebot/renovate/releases/tag/43.111.0)

##### Features

- **npm:** Trim response data before caching ([#42559](renovatebot/renovate#42559)) ([b359a1d](renovatebot/renovate@b359a1d))

##### Miscellaneous Chores

- **types:** allow `constraints` to be passed through to `getReleases` ([#42564](renovatebot/renovate#42564)) ([6238715](renovatebot/renovate@6238715))

---
##### [\`43.110.18\`](https://github.com/renovatebot/renovate/releases/tag/43.110.18)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.27 (main) ([#42565](renovatebot/renovate#42565)) ([bc406d4](renovatebot/renovate@bc406d4))

---
##### [\`43.110.17\`](https://github.com/renovatebot/renovate/releases/tag/43.110.17)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.26 (main) ([#42562](renovatebot/renovate#42562)) ([970b676](renovatebot/renovate@970b676))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.15 (main) ([#42551](renovatebot/renovate#42551)) ([87cbb93](renovatebot/renovate@87cbb93))
- **deps:** update containerbase/internal-tools action to v4.5.17 (main) ([#42560](renovatebot/renovate#42560)) ([dc158ab](renovatebot/renovate@dc158ab))
- **lint:** replace `vite-tsconfig-paths` with natively supported tsconfig paths resolution ([#42553](renovatebot/renovate#42553)) ([a5c1174](renovatebot/renovate@a5c1174))

##### Code Refactoring

- **cache:** Add `writeSchema` transform to package cache ([#42558](renovatebot/renovate#42558)) ([a0d6ac4](renovatebot/renovate@a0d6ac4))

---
##### [\`43.110.16\`](https://github.com/renovatebot/renovate/releases/tag/43.110.16)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.25 (main) ([#42536](renovatebot/renovate#42536)) ([be183fb](renovatebot/renovate@be183fb))

---
##### [\`43.110.15\`](https://github.com/renovatebot/renovate/releases/tag/43.110.15)

##### Miscellaneous Chores

- **deps:** update actions/upload-artifact action to v7.0.1 (main) ([#42538](renovatebot/renovate#42538)) ([501e7b9](renovatebot/renovate@501e7b9))
- **deps:** update dependency [@types/node](https://github.com/types/node) to v24.12.1 (main) ([#42530](renovatebot/renovate#42530)) ([249107c](renovatebot/renovate@249107c))
- **deps:** update dependency [@types/node](https://github.com/types/node) to v24.12.2 (main) ([#42532](renovatebot/renovate#42532)) ([84aa574](renovatebot/renovate@84aa574))
- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.19 (main) ([#42550](renovatebot/renovate#42550)) ([ec13e38](renovatebot/renovate@ec13e38))
- **deps:** update peter-evans/create-pull-request action to v8.1.1 (main) ([#42539](renovatebot/renovate#42539)) ([3e1524a](renovatebot/renovate@3e1524a))

##### Build System

- **deps:** update dependency protobufjs to v8.0.1 (main) ([#42549](renovatebot/renovate#42549)) ([cc28824](renovatebot/renovate@cc28824))
renovate Bot added a commit to sdwilsh/ansible-playbooks that referenced this pull request Apr 16, 2026
##### [\`43.123.6\`](https://github.com/renovatebot/renovate/releases/tag/43.123.6)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.34 (main) ([#42675](renovatebot/renovate#42675)) ([5251496](renovatebot/renovate@5251496))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.22 (main) ([#42674](renovatebot/renovate#42674)) ([f69abc5](renovatebot/renovate@f69abc5))

---
##### [\`43.123.5\`](https://github.com/renovatebot/renovate/releases/tag/43.123.5)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.33 (main) ([#42673](renovatebot/renovate#42673)) ([d33efe2](renovatebot/renovate@d33efe2))

---
##### [\`43.123.4\`](https://github.com/renovatebot/renovate/releases/tag/43.123.4)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.32 (main) ([#42669](renovatebot/renovate#42669)) ([a14d85b](renovatebot/renovate@a14d85b))

---
##### [\`43.123.3\`](https://github.com/renovatebot/renovate/releases/tag/43.123.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.31 (main) ([#42668](renovatebot/renovate#42668)) ([7d2c1ac](renovatebot/renovate@7d2c1ac))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.21 (main) ([#42667](renovatebot/renovate#42667)) ([f891066](renovatebot/renovate@f891066))

---
##### [\`43.123.2\`](renovatebot/renovate@43.123.1...43.123.2)


---
##### [\`43.123.1\`](https://github.com/renovatebot/renovate/releases/tag/43.123.1)

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.22 (main) ([#42658](renovatebot/renovate#42658)) ([9e33c20](renovatebot/renovate@9e33c20))

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.6 (main) ([#42657](renovatebot/renovate#42657)) ([80146b2](renovatebot/renovate@80146b2))

##### Continuous Integration

- auto-label `needs-discussion` on externally-raised Issues ([#42656](renovatebot/renovate#42656)) ([6a0e718](renovatebot/renovate@6a0e718))

---
##### [\`43.123.0\`](https://github.com/renovatebot/renovate/releases/tag/43.123.0)

##### Features

- add XcodeGen manager for Swift package dependencies in project.yml files ([#41889](renovatebot/renovate#41889)) ([0ff55d2](renovatebot/renovate@0ff55d2))
- **presets:** add `BUN_CONFIG_MAX_HTTP_REQUESTS` to safe global env ([#41350](renovatebot/renovate#41350)) ([1316fd7](renovatebot/renovate@1316fd7))
- **presets:** add changelogUrl link for Forgejo and Gitea digest updates ([#41786](renovatebot/renovate#41786)) ([0f9a516](renovatebot/renovate@0f9a516))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.21 (main) ([#42654](renovatebot/renovate#42654)) ([3891a11](renovatebot/renovate@3891a11))

##### Code Refactoring

- **terraform-module:** replace interfaces with zod schemas and inline fixtures ([#42399](renovatebot/renovate#42399)) ([914c55b](renovatebot/renovate@914c55b))

---
##### [\`43.122.0\`](https://github.com/renovatebot/renovate/releases/tag/43.122.0)

##### Features

- **manager/ant:** support custom `registryUrls` ([#42641](renovatebot/renovate#42641)) ([28ab04b](renovatebot/renovate@28ab04b))

##### Documentation

- use single quotes ([#42648](renovatebot/renovate#42648)) ([3c8521e](renovatebot/renovate@3c8521e))

##### Miscellaneous Chores

- **deps:** update github/codeql-action action to v4.35.2 (main) ([#42650](renovatebot/renovate#42650)) ([40100d0](renovatebot/renovate@40100d0))

---
##### [\`43.121.0\`](https://github.com/renovatebot/renovate/releases/tag/43.121.0)

##### Features

- **manager/ant:** add `coords=` attribute syntax support ([#42635](renovatebot/renovate#42635)) ([15c8ab5](renovatebot/renovate@15c8ab5))
- **terraform-provider:** use registry v2 API for release timestamps ([#42340](renovatebot/renovate#42340)) ([f421075](renovatebot/renovate@f421075))

##### Bug Fixes

- **git:** don't pass extraCloneOpts to ls-remote when local clone exists ([#42491](renovatebot/renovate#42491)) ([70fa962](renovatebot/renovate@70fa962))
- **gitlab:** loosen re-approve constraints during updatePr ([#42528](renovatebot/renovate#42528)) ([7b4f75b](renovatebot/renovate@7b4f75b))

##### Documentation

- correct name of `osv-offline` ([#42486](renovatebot/renovate#42486)) ([0fbc124](renovatebot/renovate@0fbc124))
- **minimum-release-age:** add reference to cooldowns ([#42640](renovatebot/renovate#42640)) ([25e47df](renovatebot/renovate@25e47df))

##### Miscellaneous Chores

- **deps:** update ghcr.io/zizmorcore/zizmor docker tag to v1.24.1 (main) ([#42642](renovatebot/renovate#42642)) ([61947e2](renovatebot/renovate@61947e2))

##### Code Refactoring

- **cache:** Remove obsolete compress flag ([#42563](renovatebot/renovate#42563)) ([f49de7a](renovatebot/renovate@f49de7a))

##### Build System

- **deps:** update dependency [@renovatebot/osv-offline](https://github.com/renovatebot/osv-offline) to v2.5.0 (main) ([#42645](renovatebot/renovate#42645)) ([4cb4030](renovatebot/renovate@4cb4030))

---
##### [\`43.120.2\`](https://github.com/renovatebot/renovate/releases/tag/43.120.2)

##### Bug Fixes

- **vulnerability:** remove matchFileNames restriction from GitHub vulnerability alerts ([#42636](renovatebot/renovate#42636)) ([593a2b1](renovatebot/renovate@593a2b1))

---
##### [\`43.120.1\`](https://github.com/renovatebot/renovate/releases/tag/43.120.1)

##### Bug Fixes

- **logger:** log file using pretty format not working ([#42319](renovatebot/renovate#42319)) ([1c886e0](renovatebot/renovate@1c886e0))

---
##### [\`43.120.0\`](https://github.com/renovatebot/renovate/releases/tag/43.120.0)

##### Features

- **vulnerability:** add severity and CVSS details to GitHub Dependabot alerts ([#42568](renovatebot/renovate#42568)) ([1e906e8](renovatebot/renovate@1e906e8))

##### Miscellaneous Chores

- **instrumentation:** add timing statistics for `getReleases` ([#42523](renovatebot/renovate#42523)) ([f635ae2](renovatebot/renovate@f635ae2))

---
##### [\`43.119.0\`](https://github.com/renovatebot/renovate/releases/tag/43.119.0)

##### Features

- **manager/ant:** add <import> file traversal ([#42631](renovatebot/renovate#42631)) ([76dcc66](renovatebot/renovate@76dcc66))

---
##### [\`43.118.2\`](https://github.com/renovatebot/renovate/releases/tag/43.118.2)

##### Bug Fixes

- **util/git:** allow setting `config.hooksPath` ([#42630](renovatebot/renovate#42630)) ([33c1bf5](renovatebot/renovate@33c1bf5)), closes [#42588](renovatebot/renovate#42588) [#42628](https://github.com/renovatebot/renovate/issues/42628)

---
##### [\`43.118.1\`](https://github.com/renovatebot/renovate/releases/tag/43.118.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.30 (main) ([#42629](renovatebot/renovate#42629)) ([015264e](renovatebot/renovate@015264e))

##### Miscellaneous Chores

- expose known environment variables ([#42201](renovatebot/renovate#42201)) ([b39b50f](renovatebot/renovate@b39b50f))

---
##### [\`43.118.0\`](https://github.com/renovatebot/renovate/releases/tag/43.118.0)

##### Features

- **manager/ant:** add property resolution and .properties file support ([#42175](renovatebot/renovate#42175)) ([ef8e6c8](renovatebot/renovate@ef8e6c8))

---
##### [\`43.117.0\`](https://github.com/renovatebot/renovate/releases/tag/43.117.0)

##### Features

- **bitbucket-pipelines:** update file patterns to support shared configs ([#41704](renovatebot/renovate#41704)) ([53bd796](renovatebot/renovate@53bd796))
- **cache:** add a in-memory expiry map to package file cache ([#42531](renovatebot/renovate#42531)) ([5184761](renovatebot/renovate@5184761))

---
##### [\`43.116.1\`](https://github.com/renovatebot/renovate/releases/tag/43.116.1)

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.5 (main) ([#42626](renovatebot/renovate#42626)) ([7363aee](renovatebot/renovate@7363aee))

---
##### [\`43.116.0\`](https://github.com/renovatebot/renovate/releases/tag/43.116.0)

##### Features

- **osv:** mark malicious packages with `skipReason`s ([#42510](renovatebot/renovate#42510)) ([01f2479](renovatebot/renovate@01f2479))

##### Miscellaneous Chores

- **deps:** update dependency typescript to v6 (main) ([#42615](renovatebot/renovate#42615)) ([d9417b0](renovatebot/renovate@d9417b0))

##### Code Refactoring

- move `requireConfig` to `InheritConfig` ([#41385](renovatebot/renovate#41385)) ([36f9d4a](renovatebot/renovate@36f9d4a))

---
##### [\`43.115.1\`](https://github.com/renovatebot/renovate/releases/tag/43.115.1)

##### Miscellaneous Chores

- **deps:** update actions/github-script action to v9 (main) ([#42613](renovatebot/renovate#42613)) ([1fac64b](renovatebot/renovate@1fac64b))
- **deps:** update actions/upload-pages-artifact action to v5 (main) ([#42614](renovatebot/renovate#42614)) ([cf79688](renovatebot/renovate@cf79688))
- **deps:** update dependency vitest-mock-extended to v4 (main) ([#42616](renovatebot/renovate#42616)) ([1afe9a7](renovatebot/renovate@1afe9a7))
- **deps:** update nick-fields/retry action to v4 (main) ([#42617](renovatebot/renovate#42617)) ([7eee338](renovatebot/renovate@7eee338))
- **deps:** update slackapi/slack-github-action action to v3 (main) ([#42619](renovatebot/renovate#42619)) ([d2d8297](renovatebot/renovate@d2d8297))
- **deps:** update vitest monorepo to v4.1.3 (main) ([#42623](renovatebot/renovate#42623)) ([6cf2410](renovatebot/renovate@6cf2410))
- drop obsolete tsconfig ([#42622](renovatebot/renovate#42622)) ([fcf1e20](renovatebot/renovate@fcf1e20))
- **renovate:** disable next branch ([#42620](renovatebot/renovate#42620)) ([d2abeb4](renovatebot/renovate@d2abeb4))
- **tsdown:** migrate config ([#42621](renovatebot/renovate#42621)) ([32964bd](renovatebot/renovate@32964bd))
- **types:** add `skipStage=enrichment` ([#42585](renovatebot/renovate#42585)) ([4faa847](renovatebot/renovate@4faa847))

##### Build System

- **deps:** update dependency p-queue to v9.1.2 (main) ([#42624](renovatebot/renovate#42624)) ([19baa76](renovatebot/renovate@19baa76))
- **deps:** update dependency simple-git to v3.35.2 (main) ([#42588](renovatebot/renovate#42588)) ([a7b5b48](renovatebot/renovate@a7b5b48))

---
##### [\`43.115.0\`](https://github.com/renovatebot/renovate/releases/tag/43.115.0)

##### Features

- **packageRules:** bumpVersions.type sync ([#42540](renovatebot/renovate#42540)) ([0389869](renovatebot/renovate@0389869))

---
##### [\`43.114.0\`](https://github.com/renovatebot/renovate/releases/tag/43.114.0)

##### Features

- **manager/mise:** add support for openfga ([#42611](renovatebot/renovate#42611)) ([203c5fe](renovatebot/renovate@203c5fe))

##### Miscellaneous Chores

- **deps:** update zizmorcore/zizmor-action action to v0.5.3 (main) ([#42607](renovatebot/renovate#42607)) ([c815d30](renovatebot/renovate@c815d30))
- **types:** add a strong type for `ToolName` and `ConstraintName` ([#42589](renovatebot/renovate#42589)) ([1044a80](renovatebot/renovate@1044a80)), closes [#41849](renovatebot/renovate#41849)

---
##### [\`43.113.0\`](https://github.com/renovatebot/renovate/releases/tag/43.113.0)

##### Features

- **sbt:** support anonymous objects and dotted symbols for version declaration ([#40699](renovatebot/renovate#40699)) ([ef3c964](renovatebot/renovate@ef3c964))

##### Bug Fixes

- **workers/repository:** don't include `skipReason`'d dependencies in flattened updates ([#42595](renovatebot/renovate#42595)) ([f8b4477](renovatebot/renovate@f8b4477)), closes [#42510](renovatebot/renovate#42510)

##### Miscellaneous Chores

- **deps:** update actions/cache action to v5.0.5 (main) ([#42598](renovatebot/renovate#42598)) ([a808338](renovatebot/renovate@a808338))
- **deps:** update containerbase/internal-tools action to v4.5.20 (main) ([#42602](renovatebot/renovate#42602)) ([d2131a7](renovatebot/renovate@d2131a7))
- **deps:** update dependency [@smithy/util-stream](https://github.com/smithy/util-stream) to v4.5.22 (main) ([#42603](renovatebot/renovate#42603)) ([81e51cb](renovatebot/renovate@81e51cb))

---
##### [\`43.112.1\`](https://github.com/renovatebot/renovate/releases/tag/43.112.1)

##### Bug Fixes

- **cache:** Improve SQLite cache error handling ([#42557](renovatebot/renovate#42557)) ([50a2bac](renovatebot/renovate@50a2bac))

##### Code Refactoring

- **dashboard:** align terminology with other sections ([#42354](renovatebot/renovate#42354)) ([27f0797](renovatebot/renovate@27f0797))

---
##### [\`43.112.0\`](https://github.com/renovatebot/renovate/releases/tag/43.112.0)

##### Features

- **cache:** Add `writeSchema` to Maven cache provider ([#42570](renovatebot/renovate#42570)) ([e33aa4c](renovatebot/renovate@e33aa4c))

##### Miscellaneous Chores

- **deps:** update dependency oxlint-tsgolint to v0.20.0 (main) ([#42593](renovatebot/renovate#42593)) ([d80881e](renovatebot/renovate@d80881e))

---
##### [\`43.111.3\`](https://github.com/renovatebot/renovate/releases/tag/43.111.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.29 (main) ([#42592](renovatebot/renovate#42592)) ([edc474a](renovatebot/renovate@edc474a))

##### Documentation

- add Renovate Operator as Kubernetes-native option ([#42506](renovatebot/renovate#42506)) ([91a7213](renovatebot/renovate@91a7213))

---
##### [\`43.111.2\`](https://github.com/renovatebot/renovate/releases/tag/43.111.2)

##### Bug Fixes

- **github-actions:** use correct datasource for Zizmor version ([#42587](renovatebot/renovate#42587)) ([ea1e60e](renovatebot/renovate@ea1e60e))

---
##### [\`43.111.1\`](https://github.com/renovatebot/renovate/releases/tag/43.111.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.28 (main) ([#42580](renovatebot/renovate#42580)) ([216fc99](renovatebot/renovate@216fc99))

##### Documentation

- update references to python to [`8428c32`](renovatebot/renovate@8428c32) (main) ([#42572](renovatebot/renovate#42572)) ([c549ff7](renovatebot/renovate@c549ff7))
- update references to renovatebot/github-action to v46.1.8 (main) ([#42573](renovatebot/renovate#42573)) ([da4e84e](renovatebot/renovate@da4e84e))
- update references to renovatebot/github-action to v46.1.9 (main) ([#42577](renovatebot/renovate#42577)) ([2870abe](renovatebot/renovate@2870abe))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.19 (main) ([#42574](renovatebot/renovate#42574)) ([f31e3d4](renovatebot/renovate@f31e3d4))
- **deps:** update dependency [@containerbase/istanbul-reports-html](https://github.com/containerbase/istanbul-reports-html) to v1.1.43 (main) ([#42575](renovatebot/renovate#42575)) ([7af9aed](renovatebot/renovate@7af9aed))
- **deps:** update dependency [@containerbase/semantic-release-pnpm](https://github.com/containerbase/semantic-release-pnpm) to v1.3.33 (main) ([#42576](renovatebot/renovate#42576)) ([3870e76](renovatebot/renovate@3870e76))
- **deps:** update dependency nock to v14.0.12 (main) ([#42571](renovatebot/renovate#42571)) ([81791bd](renovatebot/renovate@81791bd))
- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.20 (main) ([#42579](renovatebot/renovate#42579)) ([90a2429](renovatebot/renovate@90a2429))

---
##### [\`43.111.0\`](https://github.com/renovatebot/renovate/releases/tag/43.111.0)

##### Features

- **npm:** Trim response data before caching ([#42559](renovatebot/renovate#42559)) ([b359a1d](renovatebot/renovate@b359a1d))

##### Miscellaneous Chores

- **types:** allow `constraints` to be passed through to `getReleases` ([#42564](renovatebot/renovate#42564)) ([6238715](renovatebot/renovate@6238715))

---
##### [\`43.110.18\`](https://github.com/renovatebot/renovate/releases/tag/43.110.18)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.27 (main) ([#42565](renovatebot/renovate#42565)) ([bc406d4](renovatebot/renovate@bc406d4))

---
##### [\`43.110.17\`](https://github.com/renovatebot/renovate/releases/tag/43.110.17)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.26 (main) ([#42562](renovatebot/renovate#42562)) ([970b676](renovatebot/renovate@970b676))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.15 (main) ([#42551](renovatebot/renovate#42551)) ([87cbb93](renovatebot/renovate@87cbb93))
- **deps:** update containerbase/internal-tools action to v4.5.17 (main) ([#42560](renovatebot/renovate#42560)) ([dc158ab](renovatebot/renovate@dc158ab))
- **lint:** replace `vite-tsconfig-paths` with natively supported tsconfig paths resolution ([#42553](renovatebot/renovate#42553)) ([a5c1174](renovatebot/renovate@a5c1174))

##### Code Refactoring

- **cache:** Add `writeSchema` transform to package cache ([#42558](renovatebot/renovate#42558)) ([a0d6ac4](renovatebot/renovate@a0d6ac4))

---
##### [\`43.110.16\`](https://github.com/renovatebot/renovate/releases/tag/43.110.16)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.25 (main) ([#42536](renovatebot/renovate#42536)) ([be183fb](renovatebot/renovate@be183fb))

---
##### [\`43.110.15\`](https://github.com/renovatebot/renovate/releases/tag/43.110.15)

##### Miscellaneous Chores

- **deps:** update actions/upload-artifact action to v7.0.1 (main) ([#42538](renovatebot/renovate#42538)) ([501e7b9](renovatebot/renovate@501e7b9))
- **deps:** update dependency [@types/node](https://github.com/types/node) to v24.12.1 (main) ([#42530](renovatebot/renovate#42530)) ([249107c](renovatebot/renovate@249107c))
- **deps:** update dependency [@types/node](https://github.com/types/node) to v24.12.2 (main) ([#42532](renovatebot/renovate#42532)) ([84aa574](renovatebot/renovate@84aa574))
- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.19 (main) ([#42550](renovatebot/renovate#42550)) ([ec13e38](renovatebot/renovate@ec13e38))
- **deps:** update peter-evans/create-pull-request action to v8.1.1 (main) ([#42539](renovatebot/renovate#42539)) ([3e1524a](renovatebot/renovate@3e1524a))

##### Build System

- **deps:** update dependency protobufjs to v8.0.1 (main) ([#42549](renovatebot/renovate#42549)) ([cc28824](renovatebot/renovate@cc28824))
renovate Bot added a commit to sdwilsh/ansible-playbooks that referenced this pull request Apr 16, 2026
##### [\`43.123.6\`](https://github.com/renovatebot/renovate/releases/tag/43.123.6)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.34 (main) ([#42675](renovatebot/renovate#42675)) ([5251496](renovatebot/renovate@5251496))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.22 (main) ([#42674](renovatebot/renovate#42674)) ([f69abc5](renovatebot/renovate@f69abc5))

---
##### [\`43.123.5\`](https://github.com/renovatebot/renovate/releases/tag/43.123.5)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.33 (main) ([#42673](renovatebot/renovate#42673)) ([d33efe2](renovatebot/renovate@d33efe2))

---
##### [\`43.123.4\`](https://github.com/renovatebot/renovate/releases/tag/43.123.4)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.32 (main) ([#42669](renovatebot/renovate#42669)) ([a14d85b](renovatebot/renovate@a14d85b))

---
##### [\`43.123.3\`](https://github.com/renovatebot/renovate/releases/tag/43.123.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.31 (main) ([#42668](renovatebot/renovate#42668)) ([7d2c1ac](renovatebot/renovate@7d2c1ac))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.21 (main) ([#42667](renovatebot/renovate#42667)) ([f891066](renovatebot/renovate@f891066))

---
##### [\`43.123.2\`](renovatebot/renovate@43.123.1...43.123.2)


---
##### [\`43.123.1\`](https://github.com/renovatebot/renovate/releases/tag/43.123.1)

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.22 (main) ([#42658](renovatebot/renovate#42658)) ([9e33c20](renovatebot/renovate@9e33c20))

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.6 (main) ([#42657](renovatebot/renovate#42657)) ([80146b2](renovatebot/renovate@80146b2))

##### Continuous Integration

- auto-label `needs-discussion` on externally-raised Issues ([#42656](renovatebot/renovate#42656)) ([6a0e718](renovatebot/renovate@6a0e718))

---
##### [\`43.123.0\`](https://github.com/renovatebot/renovate/releases/tag/43.123.0)

##### Features

- add XcodeGen manager for Swift package dependencies in project.yml files ([#41889](renovatebot/renovate#41889)) ([0ff55d2](renovatebot/renovate@0ff55d2))
- **presets:** add `BUN_CONFIG_MAX_HTTP_REQUESTS` to safe global env ([#41350](renovatebot/renovate#41350)) ([1316fd7](renovatebot/renovate@1316fd7))
- **presets:** add changelogUrl link for Forgejo and Gitea digest updates ([#41786](renovatebot/renovate#41786)) ([0f9a516](renovatebot/renovate@0f9a516))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.21 (main) ([#42654](renovatebot/renovate#42654)) ([3891a11](renovatebot/renovate@3891a11))

##### Code Refactoring

- **terraform-module:** replace interfaces with zod schemas and inline fixtures ([#42399](renovatebot/renovate#42399)) ([914c55b](renovatebot/renovate@914c55b))

---
##### [\`43.122.0\`](https://github.com/renovatebot/renovate/releases/tag/43.122.0)

##### Features

- **manager/ant:** support custom `registryUrls` ([#42641](renovatebot/renovate#42641)) ([28ab04b](renovatebot/renovate@28ab04b))

##### Documentation

- use single quotes ([#42648](renovatebot/renovate#42648)) ([3c8521e](renovatebot/renovate@3c8521e))

##### Miscellaneous Chores

- **deps:** update github/codeql-action action to v4.35.2 (main) ([#42650](renovatebot/renovate#42650)) ([40100d0](renovatebot/renovate@40100d0))

---
##### [\`43.121.0\`](https://github.com/renovatebot/renovate/releases/tag/43.121.0)

##### Features

- **manager/ant:** add `coords=` attribute syntax support ([#42635](renovatebot/renovate#42635)) ([15c8ab5](renovatebot/renovate@15c8ab5))
- **terraform-provider:** use registry v2 API for release timestamps ([#42340](renovatebot/renovate#42340)) ([f421075](renovatebot/renovate@f421075))

##### Bug Fixes

- **git:** don't pass extraCloneOpts to ls-remote when local clone exists ([#42491](renovatebot/renovate#42491)) ([70fa962](renovatebot/renovate@70fa962))
- **gitlab:** loosen re-approve constraints during updatePr ([#42528](renovatebot/renovate#42528)) ([7b4f75b](renovatebot/renovate@7b4f75b))

##### Documentation

- correct name of `osv-offline` ([#42486](renovatebot/renovate#42486)) ([0fbc124](renovatebot/renovate@0fbc124))
- **minimum-release-age:** add reference to cooldowns ([#42640](renovatebot/renovate#42640)) ([25e47df](renovatebot/renovate@25e47df))

##### Miscellaneous Chores

- **deps:** update ghcr.io/zizmorcore/zizmor docker tag to v1.24.1 (main) ([#42642](renovatebot/renovate#42642)) ([61947e2](renovatebot/renovate@61947e2))

##### Code Refactoring

- **cache:** Remove obsolete compress flag ([#42563](renovatebot/renovate#42563)) ([f49de7a](renovatebot/renovate@f49de7a))

##### Build System

- **deps:** update dependency [@renovatebot/osv-offline](https://github.com/renovatebot/osv-offline) to v2.5.0 (main) ([#42645](renovatebot/renovate#42645)) ([4cb4030](renovatebot/renovate@4cb4030))

---
##### [\`43.120.2\`](https://github.com/renovatebot/renovate/releases/tag/43.120.2)

##### Bug Fixes

- **vulnerability:** remove matchFileNames restriction from GitHub vulnerability alerts ([#42636](renovatebot/renovate#42636)) ([593a2b1](renovatebot/renovate@593a2b1))

---
##### [\`43.120.1\`](https://github.com/renovatebot/renovate/releases/tag/43.120.1)

##### Bug Fixes

- **logger:** log file using pretty format not working ([#42319](renovatebot/renovate#42319)) ([1c886e0](renovatebot/renovate@1c886e0))

---
##### [\`43.120.0\`](https://github.com/renovatebot/renovate/releases/tag/43.120.0)

##### Features

- **vulnerability:** add severity and CVSS details to GitHub Dependabot alerts ([#42568](renovatebot/renovate#42568)) ([1e906e8](renovatebot/renovate@1e906e8))

##### Miscellaneous Chores

- **instrumentation:** add timing statistics for `getReleases` ([#42523](renovatebot/renovate#42523)) ([f635ae2](renovatebot/renovate@f635ae2))

---
##### [\`43.119.0\`](https://github.com/renovatebot/renovate/releases/tag/43.119.0)

##### Features

- **manager/ant:** add <import> file traversal ([#42631](renovatebot/renovate#42631)) ([76dcc66](renovatebot/renovate@76dcc66))

---
##### [\`43.118.2\`](https://github.com/renovatebot/renovate/releases/tag/43.118.2)

##### Bug Fixes

- **util/git:** allow setting `config.hooksPath` ([#42630](renovatebot/renovate#42630)) ([33c1bf5](renovatebot/renovate@33c1bf5)), closes [#42588](renovatebot/renovate#42588) [#42628](https://github.com/renovatebot/renovate/issues/42628)

---
##### [\`43.118.1\`](https://github.com/renovatebot/renovate/releases/tag/43.118.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.30 (main) ([#42629](renovatebot/renovate#42629)) ([015264e](renovatebot/renovate@015264e))

##### Miscellaneous Chores

- expose known environment variables ([#42201](renovatebot/renovate#42201)) ([b39b50f](renovatebot/renovate@b39b50f))

---
##### [\`43.118.0\`](https://github.com/renovatebot/renovate/releases/tag/43.118.0)

##### Features

- **manager/ant:** add property resolution and .properties file support ([#42175](renovatebot/renovate#42175)) ([ef8e6c8](renovatebot/renovate@ef8e6c8))

---
##### [\`43.117.0\`](https://github.com/renovatebot/renovate/releases/tag/43.117.0)

##### Features

- **bitbucket-pipelines:** update file patterns to support shared configs ([#41704](renovatebot/renovate#41704)) ([53bd796](renovatebot/renovate@53bd796))
- **cache:** add a in-memory expiry map to package file cache ([#42531](renovatebot/renovate#42531)) ([5184761](renovatebot/renovate@5184761))

---
##### [\`43.116.1\`](https://github.com/renovatebot/renovate/releases/tag/43.116.1)

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.5 (main) ([#42626](renovatebot/renovate#42626)) ([7363aee](renovatebot/renovate@7363aee))

---
##### [\`43.116.0\`](https://github.com/renovatebot/renovate/releases/tag/43.116.0)

##### Features

- **osv:** mark malicious packages with `skipReason`s ([#42510](renovatebot/renovate#42510)) ([01f2479](renovatebot/renovate@01f2479))

##### Miscellaneous Chores

- **deps:** update dependency typescript to v6 (main) ([#42615](renovatebot/renovate#42615)) ([d9417b0](renovatebot/renovate@d9417b0))

##### Code Refactoring

- move `requireConfig` to `InheritConfig` ([#41385](renovatebot/renovate#41385)) ([36f9d4a](renovatebot/renovate@36f9d4a))

---
##### [\`43.115.1\`](https://github.com/renovatebot/renovate/releases/tag/43.115.1)

##### Miscellaneous Chores

- **deps:** update actions/github-script action to v9 (main) ([#42613](renovatebot/renovate#42613)) ([1fac64b](renovatebot/renovate@1fac64b))
- **deps:** update actions/upload-pages-artifact action to v5 (main) ([#42614](renovatebot/renovate#42614)) ([cf79688](renovatebot/renovate@cf79688))
- **deps:** update dependency vitest-mock-extended to v4 (main) ([#42616](renovatebot/renovate#42616)) ([1afe9a7](renovatebot/renovate@1afe9a7))
- **deps:** update nick-fields/retry action to v4 (main) ([#42617](renovatebot/renovate#42617)) ([7eee338](renovatebot/renovate@7eee338))
- **deps:** update slackapi/slack-github-action action to v3 (main) ([#42619](renovatebot/renovate#42619)) ([d2d8297](renovatebot/renovate@d2d8297))
- **deps:** update vitest monorepo to v4.1.3 (main) ([#42623](renovatebot/renovate#42623)) ([6cf2410](renovatebot/renovate@6cf2410))
- drop obsolete tsconfig ([#42622](renovatebot/renovate#42622)) ([fcf1e20](renovatebot/renovate@fcf1e20))
- **renovate:** disable next branch ([#42620](renovatebot/renovate#42620)) ([d2abeb4](renovatebot/renovate@d2abeb4))
- **tsdown:** migrate config ([#42621](renovatebot/renovate#42621)) ([32964bd](renovatebot/renovate@32964bd))
- **types:** add `skipStage=enrichment` ([#42585](renovatebot/renovate#42585)) ([4faa847](renovatebot/renovate@4faa847))

##### Build System

- **deps:** update dependency p-queue to v9.1.2 (main) ([#42624](renovatebot/renovate#42624)) ([19baa76](renovatebot/renovate@19baa76))
- **deps:** update dependency simple-git to v3.35.2 (main) ([#42588](renovatebot/renovate#42588)) ([a7b5b48](renovatebot/renovate@a7b5b48))

---
##### [\`43.115.0\`](https://github.com/renovatebot/renovate/releases/tag/43.115.0)

##### Features

- **packageRules:** bumpVersions.type sync ([#42540](renovatebot/renovate#42540)) ([0389869](renovatebot/renovate@0389869))

---
##### [\`43.114.0\`](https://github.com/renovatebot/renovate/releases/tag/43.114.0)

##### Features

- **manager/mise:** add support for openfga ([#42611](renovatebot/renovate#42611)) ([203c5fe](renovatebot/renovate@203c5fe))

##### Miscellaneous Chores

- **deps:** update zizmorcore/zizmor-action action to v0.5.3 (main) ([#42607](renovatebot/renovate#42607)) ([c815d30](renovatebot/renovate@c815d30))
- **types:** add a strong type for `ToolName` and `ConstraintName` ([#42589](renovatebot/renovate#42589)) ([1044a80](renovatebot/renovate@1044a80)), closes [#41849](renovatebot/renovate#41849)

---
##### [\`43.113.0\`](https://github.com/renovatebot/renovate/releases/tag/43.113.0)

##### Features

- **sbt:** support anonymous objects and dotted symbols for version declaration ([#40699](renovatebot/renovate#40699)) ([ef3c964](renovatebot/renovate@ef3c964))

##### Bug Fixes

- **workers/repository:** don't include `skipReason`'d dependencies in flattened updates ([#42595](renovatebot/renovate#42595)) ([f8b4477](renovatebot/renovate@f8b4477)), closes [#42510](renovatebot/renovate#42510)

##### Miscellaneous Chores

- **deps:** update actions/cache action to v5.0.5 (main) ([#42598](renovatebot/renovate#42598)) ([a808338](renovatebot/renovate@a808338))
- **deps:** update containerbase/internal-tools action to v4.5.20 (main) ([#42602](renovatebot/renovate#42602)) ([d2131a7](renovatebot/renovate@d2131a7))
- **deps:** update dependency [@smithy/util-stream](https://github.com/smithy/util-stream) to v4.5.22 (main) ([#42603](renovatebot/renovate#42603)) ([81e51cb](renovatebot/renovate@81e51cb))

---
##### [\`43.112.1\`](https://github.com/renovatebot/renovate/releases/tag/43.112.1)

##### Bug Fixes

- **cache:** Improve SQLite cache error handling ([#42557](renovatebot/renovate#42557)) ([50a2bac](renovatebot/renovate@50a2bac))

##### Code Refactoring

- **dashboard:** align terminology with other sections ([#42354](renovatebot/renovate#42354)) ([27f0797](renovatebot/renovate@27f0797))

---
##### [\`43.112.0\`](https://github.com/renovatebot/renovate/releases/tag/43.112.0)

##### Features

- **cache:** Add `writeSchema` to Maven cache provider ([#42570](renovatebot/renovate#42570)) ([e33aa4c](renovatebot/renovate@e33aa4c))

##### Miscellaneous Chores

- **deps:** update dependency oxlint-tsgolint to v0.20.0 (main) ([#42593](renovatebot/renovate#42593)) ([d80881e](renovatebot/renovate@d80881e))

---
##### [\`43.111.3\`](https://github.com/renovatebot/renovate/releases/tag/43.111.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.29 (main) ([#42592](renovatebot/renovate#42592)) ([edc474a](renovatebot/renovate@edc474a))

##### Documentation

- add Renovate Operator as Kubernetes-native option ([#42506](renovatebot/renovate#42506)) ([91a7213](renovatebot/renovate@91a7213))

---
##### [\`43.111.2\`](https://github.com/renovatebot/renovate/releases/tag/43.111.2)

##### Bug Fixes

- **github-actions:** use correct datasource for Zizmor version ([#42587](renovatebot/renovate#42587)) ([ea1e60e](renovatebot/renovate@ea1e60e))

---
##### [\`43.111.1\`](https://github.com/renovatebot/renovate/releases/tag/43.111.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.28 (main) ([#42580](renovatebot/renovate#42580)) ([216fc99](renovatebot/renovate@216fc99))

##### Documentation

- update references to python to [`8428c32`](renovatebot/renovate@8428c32) (main) ([#42572](renovatebot/renovate#42572)) ([c549ff7](renovatebot/renovate@c549ff7))
- update references to renovatebot/github-action to v46.1.8 (main) ([#42573](renovatebot/renovate#42573)) ([da4e84e](renovatebot/renovate@da4e84e))
- update references to renovatebot/github-action to v46.1.9 (main) ([#42577](renovatebot/renovate#42577)) ([2870abe](renovatebot/renovate@2870abe))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.19 (main) ([#42574](renovatebot/renovate#42574)) ([f31e3d4](renovatebot/renovate@f31e3d4))
- **deps:** update dependency [@containerbase/istanbul-reports-html](https://github.com/containerbase/istanbul-reports-html) to v1.1.43 (main) ([#42575](renovatebot/renovate#42575)) ([7af9aed](renovatebot/renovate@7af9aed))
- **deps:** update dependency [@containerbase/semantic-release-pnpm](https://github.com/containerbase/semantic-release-pnpm) to v1.3.33 (main) ([#42576](renovatebot/renovate#42576)) ([3870e76](renovatebot/renovate@3870e76))
- **deps:** update dependency nock to v14.0.12 (main) ([#42571](renovatebot/renovate#42571)) ([81791bd](renovatebot/renovate@81791bd))
- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.20 (main) ([#42579](renovatebot/renovate#42579)) ([90a2429](renovatebot/renovate@90a2429))

---
##### [\`43.111.0\`](https://github.com/renovatebot/renovate/releases/tag/43.111.0)

##### Features

- **npm:** Trim response data before caching ([#42559](renovatebot/renovate#42559)) ([b359a1d](renovatebot/renovate@b359a1d))

##### Miscellaneous Chores

- **types:** allow `constraints` to be passed through to `getReleases` ([#42564](renovatebot/renovate#42564)) ([6238715](renovatebot/renovate@6238715))

---
##### [\`43.110.18\`](https://github.com/renovatebot/renovate/releases/tag/43.110.18)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.27 (main) ([#42565](renovatebot/renovate#42565)) ([bc406d4](renovatebot/renovate@bc406d4))

---
##### [\`43.110.17\`](https://github.com/renovatebot/renovate/releases/tag/43.110.17)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.26 (main) ([#42562](renovatebot/renovate#42562)) ([970b676](renovatebot/renovate@970b676))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.15 (main) ([#42551](renovatebot/renovate#42551)) ([87cbb93](renovatebot/renovate@87cbb93))
- **deps:** update containerbase/internal-tools action to v4.5.17 (main) ([#42560](renovatebot/renovate#42560)) ([dc158ab](renovatebot/renovate@dc158ab))
- **lint:** replace `vite-tsconfig-paths` with natively supported tsconfig paths resolution ([#42553](renovatebot/renovate#42553)) ([a5c1174](renovatebot/renovate@a5c1174))

##### Code Refactoring

- **cache:** Add `writeSchema` transform to package cache ([#42558](renovatebot/renovate#42558)) ([a0d6ac4](renovatebot/renovate@a0d6ac4))

---
##### [\`43.110.16\`](https://github.com/renovatebot/renovate/releases/tag/43.110.16)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.25 (main) ([#42536](renovatebot/renovate#42536)) ([be183fb](renovatebot/renovate@be183fb))

---
##### [\`43.110.15\`](https://github.com/renovatebot/renovate/releases/tag/43.110.15)

##### Miscellaneous Chores

- **deps:** update actions/upload-artifact action to v7.0.1 (main) ([#42538](renovatebot/renovate#42538)) ([501e7b9](renovatebot/renovate@501e7b9))
- **deps:** update dependency [@types/node](https://github.com/types/node) to v24.12.1 (main) ([#42530](renovatebot/renovate#42530)) ([249107c](renovatebot/renovate@249107c))
- **deps:** update dependency [@types/node](https://github.com/types/node) to v24.12.2 (main) ([#42532](renovatebot/renovate#42532)) ([84aa574](renovatebot/renovate@84aa574))
- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.19 (main) ([#42550](renovatebot/renovate#42550)) ([ec13e38](renovatebot/renovate@ec13e38))
- **deps:** update peter-evans/create-pull-request action to v8.1.1 (main) ([#42539](renovatebot/renovate#42539)) ([3e1524a](renovatebot/renovate@3e1524a))

##### Build System

- **deps:** update dependency protobufjs to v8.0.1 (main) ([#42549](renovatebot/renovate#42549)) ([cc28824](renovatebot/renovate@cc28824))
renovate Bot added a commit to sdwilsh/ansible-playbooks that referenced this pull request Apr 16, 2026
##### [\`43.124.0\`](https://github.com/renovatebot/renovate/releases/tag/43.124.0)

##### Features

- **manager/github-actions:** use `semver-partial` as default versioning ([#42685](renovatebot/renovate#42685)) ([da04b8e](renovatebot/renovate@da04b8e)), closes [#42331](renovatebot/renovate#42331)

##### Documentation

- fix link in vulnerabilityAlerts docs ([#42680](renovatebot/renovate#42680)) ([b0fd397](renovatebot/renovate@b0fd397))

##### Continuous Integration

- **auto-prs:** handle draft PRs better ([#42686](renovatebot/renovate#42686)) ([0a86cc5](renovatebot/renovate@0a86cc5))

---
##### [\`43.123.8\`](https://github.com/renovatebot/renovate/releases/tag/43.123.8)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.35 (main) ([#42681](renovatebot/renovate#42681)) ([4b597ec](renovatebot/renovate@4b597ec))
- **package-rules:** correctly merge `force.enabled` ([#42679](renovatebot/renovate#42679)) ([ae22250](renovatebot/renovate@ae22250)), closes [#42666](renovatebot/renovate#42666)

##### Tests

- **git:** test failing when no git author is configured ([#42676](renovatebot/renovate#42676)) ([f9bddb9](renovatebot/renovate@f9bddb9))

---
##### [\`43.123.7\`](https://github.com/renovatebot/renovate/releases/tag/43.123.7)

##### Miscellaneous Chores

- **deps:** update vitest monorepo to v4.1.4 (main) ([#42677](renovatebot/renovate#42677)) ([7907192](renovatebot/renovate@7907192))

##### Build System

- **deps:** update node.js to v24.15.0 (main) ([#42678](renovatebot/renovate#42678)) ([a40a0f0](renovatebot/renovate@a40a0f0))

---
##### [\`43.123.6\`](https://github.com/renovatebot/renovate/releases/tag/43.123.6)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.34 (main) ([#42675](renovatebot/renovate#42675)) ([5251496](renovatebot/renovate@5251496))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.22 (main) ([#42674](renovatebot/renovate#42674)) ([f69abc5](renovatebot/renovate@f69abc5))

---
##### [\`43.123.5\`](https://github.com/renovatebot/renovate/releases/tag/43.123.5)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.33 (main) ([#42673](renovatebot/renovate#42673)) ([d33efe2](renovatebot/renovate@d33efe2))

---
##### [\`43.123.4\`](https://github.com/renovatebot/renovate/releases/tag/43.123.4)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.32 (main) ([#42669](renovatebot/renovate#42669)) ([a14d85b](renovatebot/renovate@a14d85b))

---
##### [\`43.123.3\`](https://github.com/renovatebot/renovate/releases/tag/43.123.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.31 (main) ([#42668](renovatebot/renovate#42668)) ([7d2c1ac](renovatebot/renovate@7d2c1ac))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.21 (main) ([#42667](renovatebot/renovate#42667)) ([f891066](renovatebot/renovate@f891066))

---
##### [\`43.123.2\`](renovatebot/renovate@43.123.1...43.123.2)


---
##### [\`43.123.1\`](https://github.com/renovatebot/renovate/releases/tag/43.123.1)

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.22 (main) ([#42658](renovatebot/renovate#42658)) ([9e33c20](renovatebot/renovate@9e33c20))

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.6 (main) ([#42657](renovatebot/renovate#42657)) ([80146b2](renovatebot/renovate@80146b2))

##### Continuous Integration

- auto-label `needs-discussion` on externally-raised Issues ([#42656](renovatebot/renovate#42656)) ([6a0e718](renovatebot/renovate@6a0e718))

---
##### [\`43.123.0\`](https://github.com/renovatebot/renovate/releases/tag/43.123.0)

##### Features

- add XcodeGen manager for Swift package dependencies in project.yml files ([#41889](renovatebot/renovate#41889)) ([0ff55d2](renovatebot/renovate@0ff55d2))
- **presets:** add `BUN_CONFIG_MAX_HTTP_REQUESTS` to safe global env ([#41350](renovatebot/renovate#41350)) ([1316fd7](renovatebot/renovate@1316fd7))
- **presets:** add changelogUrl link for Forgejo and Gitea digest updates ([#41786](renovatebot/renovate#41786)) ([0f9a516](renovatebot/renovate@0f9a516))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.21 (main) ([#42654](renovatebot/renovate#42654)) ([3891a11](renovatebot/renovate@3891a11))

##### Code Refactoring

- **terraform-module:** replace interfaces with zod schemas and inline fixtures ([#42399](renovatebot/renovate#42399)) ([914c55b](renovatebot/renovate@914c55b))

---
##### [\`43.122.0\`](https://github.com/renovatebot/renovate/releases/tag/43.122.0)

##### Features

- **manager/ant:** support custom `registryUrls` ([#42641](renovatebot/renovate#42641)) ([28ab04b](renovatebot/renovate@28ab04b))

##### Documentation

- use single quotes ([#42648](renovatebot/renovate#42648)) ([3c8521e](renovatebot/renovate@3c8521e))

##### Miscellaneous Chores

- **deps:** update github/codeql-action action to v4.35.2 (main) ([#42650](renovatebot/renovate#42650)) ([40100d0](renovatebot/renovate@40100d0))

---
##### [\`43.121.0\`](https://github.com/renovatebot/renovate/releases/tag/43.121.0)

##### Features

- **manager/ant:** add `coords=` attribute syntax support ([#42635](renovatebot/renovate#42635)) ([15c8ab5](renovatebot/renovate@15c8ab5))
- **terraform-provider:** use registry v2 API for release timestamps ([#42340](renovatebot/renovate#42340)) ([f421075](renovatebot/renovate@f421075))

##### Bug Fixes

- **git:** don't pass extraCloneOpts to ls-remote when local clone exists ([#42491](renovatebot/renovate#42491)) ([70fa962](renovatebot/renovate@70fa962))
- **gitlab:** loosen re-approve constraints during updatePr ([#42528](renovatebot/renovate#42528)) ([7b4f75b](renovatebot/renovate@7b4f75b))

##### Documentation

- correct name of `osv-offline` ([#42486](renovatebot/renovate#42486)) ([0fbc124](renovatebot/renovate@0fbc124))
- **minimum-release-age:** add reference to cooldowns ([#42640](renovatebot/renovate#42640)) ([25e47df](renovatebot/renovate@25e47df))

##### Miscellaneous Chores

- **deps:** update ghcr.io/zizmorcore/zizmor docker tag to v1.24.1 (main) ([#42642](renovatebot/renovate#42642)) ([61947e2](renovatebot/renovate@61947e2))

##### Code Refactoring

- **cache:** Remove obsolete compress flag ([#42563](renovatebot/renovate#42563)) ([f49de7a](renovatebot/renovate@f49de7a))

##### Build System

- **deps:** update dependency [@renovatebot/osv-offline](https://github.com/renovatebot/osv-offline) to v2.5.0 (main) ([#42645](renovatebot/renovate#42645)) ([4cb4030](renovatebot/renovate@4cb4030))

---
##### [\`43.120.2\`](https://github.com/renovatebot/renovate/releases/tag/43.120.2)

##### Bug Fixes

- **vulnerability:** remove matchFileNames restriction from GitHub vulnerability alerts ([#42636](renovatebot/renovate#42636)) ([593a2b1](renovatebot/renovate@593a2b1))

---
##### [\`43.120.1\`](https://github.com/renovatebot/renovate/releases/tag/43.120.1)

##### Bug Fixes

- **logger:** log file using pretty format not working ([#42319](renovatebot/renovate#42319)) ([1c886e0](renovatebot/renovate@1c886e0))

---
##### [\`43.120.0\`](https://github.com/renovatebot/renovate/releases/tag/43.120.0)

##### Features

- **vulnerability:** add severity and CVSS details to GitHub Dependabot alerts ([#42568](renovatebot/renovate#42568)) ([1e906e8](renovatebot/renovate@1e906e8))

##### Miscellaneous Chores

- **instrumentation:** add timing statistics for `getReleases` ([#42523](renovatebot/renovate#42523)) ([f635ae2](renovatebot/renovate@f635ae2))

---
##### [\`43.119.0\`](https://github.com/renovatebot/renovate/releases/tag/43.119.0)

##### Features

- **manager/ant:** add <import> file traversal ([#42631](renovatebot/renovate#42631)) ([76dcc66](renovatebot/renovate@76dcc66))

---
##### [\`43.118.2\`](https://github.com/renovatebot/renovate/releases/tag/43.118.2)

##### Bug Fixes

- **util/git:** allow setting `config.hooksPath` ([#42630](renovatebot/renovate#42630)) ([33c1bf5](renovatebot/renovate@33c1bf5)), closes [#42588](renovatebot/renovate#42588) [#42628](https://github.com/renovatebot/renovate/issues/42628)

---
##### [\`43.118.1\`](https://github.com/renovatebot/renovate/releases/tag/43.118.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.30 (main) ([#42629](renovatebot/renovate#42629)) ([015264e](renovatebot/renovate@015264e))

##### Miscellaneous Chores

- expose known environment variables ([#42201](renovatebot/renovate#42201)) ([b39b50f](renovatebot/renovate@b39b50f))

---
##### [\`43.118.0\`](https://github.com/renovatebot/renovate/releases/tag/43.118.0)

##### Features

- **manager/ant:** add property resolution and .properties file support ([#42175](renovatebot/renovate#42175)) ([ef8e6c8](renovatebot/renovate@ef8e6c8))

---
##### [\`43.117.0\`](https://github.com/renovatebot/renovate/releases/tag/43.117.0)

##### Features

- **bitbucket-pipelines:** update file patterns to support shared configs ([#41704](renovatebot/renovate#41704)) ([53bd796](renovatebot/renovate@53bd796))
- **cache:** add a in-memory expiry map to package file cache ([#42531](renovatebot/renovate#42531)) ([5184761](renovatebot/renovate@5184761))

---
##### [\`43.116.1\`](https://github.com/renovatebot/renovate/releases/tag/43.116.1)

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.5 (main) ([#42626](renovatebot/renovate#42626)) ([7363aee](renovatebot/renovate@7363aee))

---
##### [\`43.116.0\`](https://github.com/renovatebot/renovate/releases/tag/43.116.0)

##### Features

- **osv:** mark malicious packages with `skipReason`s ([#42510](renovatebot/renovate#42510)) ([01f2479](renovatebot/renovate@01f2479))

##### Miscellaneous Chores

- **deps:** update dependency typescript to v6 (main) ([#42615](renovatebot/renovate#42615)) ([d9417b0](renovatebot/renovate@d9417b0))

##### Code Refactoring

- move `requireConfig` to `InheritConfig` ([#41385](renovatebot/renovate#41385)) ([36f9d4a](renovatebot/renovate@36f9d4a))

---
##### [\`43.115.1\`](https://github.com/renovatebot/renovate/releases/tag/43.115.1)

##### Miscellaneous Chores

- **deps:** update actions/github-script action to v9 (main) ([#42613](renovatebot/renovate#42613)) ([1fac64b](renovatebot/renovate@1fac64b))
- **deps:** update actions/upload-pages-artifact action to v5 (main) ([#42614](renovatebot/renovate#42614)) ([cf79688](renovatebot/renovate@cf79688))
- **deps:** update dependency vitest-mock-extended to v4 (main) ([#42616](renovatebot/renovate#42616)) ([1afe9a7](renovatebot/renovate@1afe9a7))
- **deps:** update nick-fields/retry action to v4 (main) ([#42617](renovatebot/renovate#42617)) ([7eee338](renovatebot/renovate@7eee338))
- **deps:** update slackapi/slack-github-action action to v3 (main) ([#42619](renovatebot/renovate#42619)) ([d2d8297](renovatebot/renovate@d2d8297))
- **deps:** update vitest monorepo to v4.1.3 (main) ([#42623](renovatebot/renovate#42623)) ([6cf2410](renovatebot/renovate@6cf2410))
- drop obsolete tsconfig ([#42622](renovatebot/renovate#42622)) ([fcf1e20](renovatebot/renovate@fcf1e20))
- **renovate:** disable next branch ([#42620](renovatebot/renovate#42620)) ([d2abeb4](renovatebot/renovate@d2abeb4))
- **tsdown:** migrate config ([#42621](renovatebot/renovate#42621)) ([32964bd](renovatebot/renovate@32964bd))
- **types:** add `skipStage=enrichment` ([#42585](renovatebot/renovate#42585)) ([4faa847](renovatebot/renovate@4faa847))

##### Build System

- **deps:** update dependency p-queue to v9.1.2 (main) ([#42624](renovatebot/renovate#42624)) ([19baa76](renovatebot/renovate@19baa76))
- **deps:** update dependency simple-git to v3.35.2 (main) ([#42588](renovatebot/renovate#42588)) ([a7b5b48](renovatebot/renovate@a7b5b48))

---
##### [\`43.115.0\`](https://github.com/renovatebot/renovate/releases/tag/43.115.0)

##### Features

- **packageRules:** bumpVersions.type sync ([#42540](renovatebot/renovate#42540)) ([0389869](renovatebot/renovate@0389869))

---
##### [\`43.114.0\`](https://github.com/renovatebot/renovate/releases/tag/43.114.0)

##### Features

- **manager/mise:** add support for openfga ([#42611](renovatebot/renovate#42611)) ([203c5fe](renovatebot/renovate@203c5fe))

##### Miscellaneous Chores

- **deps:** update zizmorcore/zizmor-action action to v0.5.3 (main) ([#42607](renovatebot/renovate#42607)) ([c815d30](renovatebot/renovate@c815d30))
- **types:** add a strong type for `ToolName` and `ConstraintName` ([#42589](renovatebot/renovate#42589)) ([1044a80](renovatebot/renovate@1044a80)), closes [#41849](renovatebot/renovate#41849)

---
##### [\`43.113.0\`](https://github.com/renovatebot/renovate/releases/tag/43.113.0)

##### Features

- **sbt:** support anonymous objects and dotted symbols for version declaration ([#40699](renovatebot/renovate#40699)) ([ef3c964](renovatebot/renovate@ef3c964))

##### Bug Fixes

- **workers/repository:** don't include `skipReason`'d dependencies in flattened updates ([#42595](renovatebot/renovate#42595)) ([f8b4477](renovatebot/renovate@f8b4477)), closes [#42510](renovatebot/renovate#42510)

##### Miscellaneous Chores

- **deps:** update actions/cache action to v5.0.5 (main) ([#42598](renovatebot/renovate#42598)) ([a808338](renovatebot/renovate@a808338))
- **deps:** update containerbase/internal-tools action to v4.5.20 (main) ([#42602](renovatebot/renovate#42602)) ([d2131a7](renovatebot/renovate@d2131a7))
- **deps:** update dependency [@smithy/util-stream](https://github.com/smithy/util-stream) to v4.5.22 (main) ([#42603](renovatebot/renovate#42603)) ([81e51cb](renovatebot/renovate@81e51cb))

---
##### [\`43.112.1\`](https://github.com/renovatebot/renovate/releases/tag/43.112.1)

##### Bug Fixes

- **cache:** Improve SQLite cache error handling ([#42557](renovatebot/renovate#42557)) ([50a2bac](renovatebot/renovate@50a2bac))

##### Code Refactoring

- **dashboard:** align terminology with other sections ([#42354](renovatebot/renovate#42354)) ([27f0797](renovatebot/renovate@27f0797))

---
##### [\`43.112.0\`](https://github.com/renovatebot/renovate/releases/tag/43.112.0)

##### Features

- **cache:** Add `writeSchema` to Maven cache provider ([#42570](renovatebot/renovate#42570)) ([e33aa4c](renovatebot/renovate@e33aa4c))

##### Miscellaneous Chores

- **deps:** update dependency oxlint-tsgolint to v0.20.0 (main) ([#42593](renovatebot/renovate#42593)) ([d80881e](renovatebot/renovate@d80881e))

---
##### [\`43.111.3\`](https://github.com/renovatebot/renovate/releases/tag/43.111.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.29 (main) ([#42592](renovatebot/renovate#42592)) ([edc474a](renovatebot/renovate@edc474a))

##### Documentation

- add Renovate Operator as Kubernetes-native option ([#42506](renovatebot/renovate#42506)) ([91a7213](renovatebot/renovate@91a7213))

---
##### [\`43.111.2\`](https://github.com/renovatebot/renovate/releases/tag/43.111.2)

##### Bug Fixes

- **github-actions:** use correct datasource for Zizmor version ([#42587](renovatebot/renovate#42587)) ([ea1e60e](renovatebot/renovate@ea1e60e))

---
##### [\`43.111.1\`](https://github.com/renovatebot/renovate/releases/tag/43.111.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.28 (main) ([#42580](renovatebot/renovate#42580)) ([216fc99](renovatebot/renovate@216fc99))

##### Documentation

- update references to python to [`8428c32`](renovatebot/renovate@8428c32) (main) ([#42572](renovatebot/renovate#42572)) ([c549ff7](renovatebot/renovate@c549ff7))
- update references to renovatebot/github-action to v46.1.8 (main) ([#42573](renovatebot/renovate#42573)) ([da4e84e](renovatebot/renovate@da4e84e))
- update references to renovatebot/github-action to v46.1.9 (main) ([#42577](renovatebot/renovate#42577)) ([2870abe](renovatebot/renovate@2870abe))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.19 (main) ([#42574](renovatebot/renovate#42574)) ([f31e3d4](renovatebot/renovate@f31e3d4))
- **deps:** update dependency [@containerbase/istanbul-reports-html](https://github.com/containerbase/istanbul-reports-html) to v1.1.43 (main) ([#42575](renovatebot/renovate#42575)) ([7af9aed](renovatebot/renovate@7af9aed))
- **deps:** update dependency [@containerbase/semantic-release-pnpm](https://github.com/containerbase/semantic-release-pnpm) to v1.3.33 (main) ([#42576](renovatebot/renovate#42576)) ([3870e76](renovatebot/renovate@3870e76))
- **deps:** update dependency nock to v14.0.12 (main) ([#42571](renovatebot/renovate#42571)) ([81791bd](renovatebot/renovate@81791bd))
- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.20 (main) ([#42579](renovatebot/renovate#42579)) ([90a2429](renovatebot/renovate@90a2429))

---
##### [\`43.111.0\`](https://github.com/renovatebot/renovate/releases/tag/43.111.0)

##### Features

- **npm:** Trim response data before caching ([#42559](renovatebot/renovate#42559)) ([b359a1d](renovatebot/renovate@b359a1d))

##### Miscellaneous Chores

- **types:** allow `constraints` to be passed through to `getReleases` ([#42564](renovatebot/renovate#42564)) ([6238715](renovatebot/renovate@6238715))
renovate Bot added a commit to sdwilsh/ansible-playbooks that referenced this pull request Apr 16, 2026
##### [\`43.125.0\`](https://github.com/renovatebot/renovate/releases/tag/43.125.0)

##### Features

- **replacements:** migrate users to astral/setup-uv v8 ([#42683](renovatebot/renovate#42683)) ([f5859c2](renovatebot/renovate@f5859c2))

---
##### [\`43.124.1\`](https://github.com/renovatebot/renovate/releases/tag/43.124.1)

##### Bug Fixes

- **docker:** only set `replaceString` if requested ([#42649](renovatebot/renovate#42649)) ([f6d4106](renovatebot/renovate@f6d4106))

---
##### [\`43.124.0\`](https://github.com/renovatebot/renovate/releases/tag/43.124.0)

##### Features

- **manager/github-actions:** use `semver-partial` as default versioning ([#42685](renovatebot/renovate#42685)) ([da04b8e](renovatebot/renovate@da04b8e)), closes [#42331](renovatebot/renovate#42331)

##### Documentation

- fix link in vulnerabilityAlerts docs ([#42680](renovatebot/renovate#42680)) ([b0fd397](renovatebot/renovate@b0fd397))

##### Continuous Integration

- **auto-prs:** handle draft PRs better ([#42686](renovatebot/renovate#42686)) ([0a86cc5](renovatebot/renovate@0a86cc5))

---
##### [\`43.123.8\`](https://github.com/renovatebot/renovate/releases/tag/43.123.8)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.35 (main) ([#42681](renovatebot/renovate#42681)) ([4b597ec](renovatebot/renovate@4b597ec))
- **package-rules:** correctly merge `force.enabled` ([#42679](renovatebot/renovate#42679)) ([ae22250](renovatebot/renovate@ae22250)), closes [#42666](renovatebot/renovate#42666)

##### Tests

- **git:** test failing when no git author is configured ([#42676](renovatebot/renovate#42676)) ([f9bddb9](renovatebot/renovate@f9bddb9))

---
##### [\`43.123.7\`](https://github.com/renovatebot/renovate/releases/tag/43.123.7)

##### Miscellaneous Chores

- **deps:** update vitest monorepo to v4.1.4 (main) ([#42677](renovatebot/renovate#42677)) ([7907192](renovatebot/renovate@7907192))

##### Build System

- **deps:** update node.js to v24.15.0 (main) ([#42678](renovatebot/renovate#42678)) ([a40a0f0](renovatebot/renovate@a40a0f0))

---
##### [\`43.123.6\`](https://github.com/renovatebot/renovate/releases/tag/43.123.6)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.34 (main) ([#42675](renovatebot/renovate#42675)) ([5251496](renovatebot/renovate@5251496))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.22 (main) ([#42674](renovatebot/renovate#42674)) ([f69abc5](renovatebot/renovate@f69abc5))

---
##### [\`43.123.5\`](https://github.com/renovatebot/renovate/releases/tag/43.123.5)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.33 (main) ([#42673](renovatebot/renovate#42673)) ([d33efe2](renovatebot/renovate@d33efe2))

---
##### [\`43.123.4\`](https://github.com/renovatebot/renovate/releases/tag/43.123.4)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.32 (main) ([#42669](renovatebot/renovate#42669)) ([a14d85b](renovatebot/renovate@a14d85b))

---
##### [\`43.123.3\`](https://github.com/renovatebot/renovate/releases/tag/43.123.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.31 (main) ([#42668](renovatebot/renovate#42668)) ([7d2c1ac](renovatebot/renovate@7d2c1ac))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.21 (main) ([#42667](renovatebot/renovate#42667)) ([f891066](renovatebot/renovate@f891066))

---
##### [\`43.123.2\`](renovatebot/renovate@43.123.1...43.123.2)


---
##### [\`43.123.1\`](https://github.com/renovatebot/renovate/releases/tag/43.123.1)

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.22 (main) ([#42658](renovatebot/renovate#42658)) ([9e33c20](renovatebot/renovate@9e33c20))

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.6 (main) ([#42657](renovatebot/renovate#42657)) ([80146b2](renovatebot/renovate@80146b2))

##### Continuous Integration

- auto-label `needs-discussion` on externally-raised Issues ([#42656](renovatebot/renovate#42656)) ([6a0e718](renovatebot/renovate@6a0e718))

---
##### [\`43.123.0\`](https://github.com/renovatebot/renovate/releases/tag/43.123.0)

##### Features

- add XcodeGen manager for Swift package dependencies in project.yml files ([#41889](renovatebot/renovate#41889)) ([0ff55d2](renovatebot/renovate@0ff55d2))
- **presets:** add `BUN_CONFIG_MAX_HTTP_REQUESTS` to safe global env ([#41350](renovatebot/renovate#41350)) ([1316fd7](renovatebot/renovate@1316fd7))
- **presets:** add changelogUrl link for Forgejo and Gitea digest updates ([#41786](renovatebot/renovate#41786)) ([0f9a516](renovatebot/renovate@0f9a516))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.21 (main) ([#42654](renovatebot/renovate#42654)) ([3891a11](renovatebot/renovate@3891a11))

##### Code Refactoring

- **terraform-module:** replace interfaces with zod schemas and inline fixtures ([#42399](renovatebot/renovate#42399)) ([914c55b](renovatebot/renovate@914c55b))

---
##### [\`43.122.0\`](https://github.com/renovatebot/renovate/releases/tag/43.122.0)

##### Features

- **manager/ant:** support custom `registryUrls` ([#42641](renovatebot/renovate#42641)) ([28ab04b](renovatebot/renovate@28ab04b))

##### Documentation

- use single quotes ([#42648](renovatebot/renovate#42648)) ([3c8521e](renovatebot/renovate@3c8521e))

##### Miscellaneous Chores

- **deps:** update github/codeql-action action to v4.35.2 (main) ([#42650](renovatebot/renovate#42650)) ([40100d0](renovatebot/renovate@40100d0))

---
##### [\`43.121.0\`](https://github.com/renovatebot/renovate/releases/tag/43.121.0)

##### Features

- **manager/ant:** add `coords=` attribute syntax support ([#42635](renovatebot/renovate#42635)) ([15c8ab5](renovatebot/renovate@15c8ab5))
- **terraform-provider:** use registry v2 API for release timestamps ([#42340](renovatebot/renovate#42340)) ([f421075](renovatebot/renovate@f421075))

##### Bug Fixes

- **git:** don't pass extraCloneOpts to ls-remote when local clone exists ([#42491](renovatebot/renovate#42491)) ([70fa962](renovatebot/renovate@70fa962))
- **gitlab:** loosen re-approve constraints during updatePr ([#42528](renovatebot/renovate#42528)) ([7b4f75b](renovatebot/renovate@7b4f75b))

##### Documentation

- correct name of `osv-offline` ([#42486](renovatebot/renovate#42486)) ([0fbc124](renovatebot/renovate@0fbc124))
- **minimum-release-age:** add reference to cooldowns ([#42640](renovatebot/renovate#42640)) ([25e47df](renovatebot/renovate@25e47df))

##### Miscellaneous Chores

- **deps:** update ghcr.io/zizmorcore/zizmor docker tag to v1.24.1 (main) ([#42642](renovatebot/renovate#42642)) ([61947e2](renovatebot/renovate@61947e2))

##### Code Refactoring

- **cache:** Remove obsolete compress flag ([#42563](renovatebot/renovate#42563)) ([f49de7a](renovatebot/renovate@f49de7a))

##### Build System

- **deps:** update dependency [@renovatebot/osv-offline](https://github.com/renovatebot/osv-offline) to v2.5.0 (main) ([#42645](renovatebot/renovate#42645)) ([4cb4030](renovatebot/renovate@4cb4030))

---
##### [\`43.120.2\`](https://github.com/renovatebot/renovate/releases/tag/43.120.2)

##### Bug Fixes

- **vulnerability:** remove matchFileNames restriction from GitHub vulnerability alerts ([#42636](renovatebot/renovate#42636)) ([593a2b1](renovatebot/renovate@593a2b1))

---
##### [\`43.120.1\`](https://github.com/renovatebot/renovate/releases/tag/43.120.1)

##### Bug Fixes

- **logger:** log file using pretty format not working ([#42319](renovatebot/renovate#42319)) ([1c886e0](renovatebot/renovate@1c886e0))

---
##### [\`43.120.0\`](https://github.com/renovatebot/renovate/releases/tag/43.120.0)

##### Features

- **vulnerability:** add severity and CVSS details to GitHub Dependabot alerts ([#42568](renovatebot/renovate#42568)) ([1e906e8](renovatebot/renovate@1e906e8))

##### Miscellaneous Chores

- **instrumentation:** add timing statistics for `getReleases` ([#42523](renovatebot/renovate#42523)) ([f635ae2](renovatebot/renovate@f635ae2))

---
##### [\`43.119.0\`](https://github.com/renovatebot/renovate/releases/tag/43.119.0)

##### Features

- **manager/ant:** add <import> file traversal ([#42631](renovatebot/renovate#42631)) ([76dcc66](renovatebot/renovate@76dcc66))

---
##### [\`43.118.2\`](https://github.com/renovatebot/renovate/releases/tag/43.118.2)

##### Bug Fixes

- **util/git:** allow setting `config.hooksPath` ([#42630](renovatebot/renovate#42630)) ([33c1bf5](renovatebot/renovate@33c1bf5)), closes [#42588](renovatebot/renovate#42588) [#42628](https://github.com/renovatebot/renovate/issues/42628)

---
##### [\`43.118.1\`](https://github.com/renovatebot/renovate/releases/tag/43.118.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.30 (main) ([#42629](renovatebot/renovate#42629)) ([015264e](renovatebot/renovate@015264e))

##### Miscellaneous Chores

- expose known environment variables ([#42201](renovatebot/renovate#42201)) ([b39b50f](renovatebot/renovate@b39b50f))

---
##### [\`43.118.0\`](https://github.com/renovatebot/renovate/releases/tag/43.118.0)

##### Features

- **manager/ant:** add property resolution and .properties file support ([#42175](renovatebot/renovate#42175)) ([ef8e6c8](renovatebot/renovate@ef8e6c8))

---
##### [\`43.117.0\`](https://github.com/renovatebot/renovate/releases/tag/43.117.0)

##### Features

- **bitbucket-pipelines:** update file patterns to support shared configs ([#41704](renovatebot/renovate#41704)) ([53bd796](renovatebot/renovate@53bd796))
- **cache:** add a in-memory expiry map to package file cache ([#42531](renovatebot/renovate#42531)) ([5184761](renovatebot/renovate@5184761))

---
##### [\`43.116.1\`](https://github.com/renovatebot/renovate/releases/tag/43.116.1)

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.5 (main) ([#42626](renovatebot/renovate#42626)) ([7363aee](renovatebot/renovate@7363aee))

---
##### [\`43.116.0\`](https://github.com/renovatebot/renovate/releases/tag/43.116.0)

##### Features

- **osv:** mark malicious packages with `skipReason`s ([#42510](renovatebot/renovate#42510)) ([01f2479](renovatebot/renovate@01f2479))

##### Miscellaneous Chores

- **deps:** update dependency typescript to v6 (main) ([#42615](renovatebot/renovate#42615)) ([d9417b0](renovatebot/renovate@d9417b0))

##### Code Refactoring

- move `requireConfig` to `InheritConfig` ([#41385](renovatebot/renovate#41385)) ([36f9d4a](renovatebot/renovate@36f9d4a))

---
##### [\`43.115.1\`](https://github.com/renovatebot/renovate/releases/tag/43.115.1)

##### Miscellaneous Chores

- **deps:** update actions/github-script action to v9 (main) ([#42613](renovatebot/renovate#42613)) ([1fac64b](renovatebot/renovate@1fac64b))
- **deps:** update actions/upload-pages-artifact action to v5 (main) ([#42614](renovatebot/renovate#42614)) ([cf79688](renovatebot/renovate@cf79688))
- **deps:** update dependency vitest-mock-extended to v4 (main) ([#42616](renovatebot/renovate#42616)) ([1afe9a7](renovatebot/renovate@1afe9a7))
- **deps:** update nick-fields/retry action to v4 (main) ([#42617](renovatebot/renovate#42617)) ([7eee338](renovatebot/renovate@7eee338))
- **deps:** update slackapi/slack-github-action action to v3 (main) ([#42619](renovatebot/renovate#42619)) ([d2d8297](renovatebot/renovate@d2d8297))
- **deps:** update vitest monorepo to v4.1.3 (main) ([#42623](renovatebot/renovate#42623)) ([6cf2410](renovatebot/renovate@6cf2410))
- drop obsolete tsconfig ([#42622](renovatebot/renovate#42622)) ([fcf1e20](renovatebot/renovate@fcf1e20))
- **renovate:** disable next branch ([#42620](renovatebot/renovate#42620)) ([d2abeb4](renovatebot/renovate@d2abeb4))
- **tsdown:** migrate config ([#42621](renovatebot/renovate#42621)) ([32964bd](renovatebot/renovate@32964bd))
- **types:** add `skipStage=enrichment` ([#42585](renovatebot/renovate#42585)) ([4faa847](renovatebot/renovate@4faa847))

##### Build System

- **deps:** update dependency p-queue to v9.1.2 (main) ([#42624](renovatebot/renovate#42624)) ([19baa76](renovatebot/renovate@19baa76))
- **deps:** update dependency simple-git to v3.35.2 (main) ([#42588](renovatebot/renovate#42588)) ([a7b5b48](renovatebot/renovate@a7b5b48))

---
##### [\`43.115.0\`](https://github.com/renovatebot/renovate/releases/tag/43.115.0)

##### Features

- **packageRules:** bumpVersions.type sync ([#42540](renovatebot/renovate#42540)) ([0389869](renovatebot/renovate@0389869))

---
##### [\`43.114.0\`](https://github.com/renovatebot/renovate/releases/tag/43.114.0)

##### Features

- **manager/mise:** add support for openfga ([#42611](renovatebot/renovate#42611)) ([203c5fe](renovatebot/renovate@203c5fe))

##### Miscellaneous Chores

- **deps:** update zizmorcore/zizmor-action action to v0.5.3 (main) ([#42607](renovatebot/renovate#42607)) ([c815d30](renovatebot/renovate@c815d30))
- **types:** add a strong type for `ToolName` and `ConstraintName` ([#42589](renovatebot/renovate#42589)) ([1044a80](renovatebot/renovate@1044a80)), closes [#41849](renovatebot/renovate#41849)

---
##### [\`43.113.0\`](https://github.com/renovatebot/renovate/releases/tag/43.113.0)

##### Features

- **sbt:** support anonymous objects and dotted symbols for version declaration ([#40699](renovatebot/renovate#40699)) ([ef3c964](renovatebot/renovate@ef3c964))

##### Bug Fixes

- **workers/repository:** don't include `skipReason`'d dependencies in flattened updates ([#42595](renovatebot/renovate#42595)) ([f8b4477](renovatebot/renovate@f8b4477)), closes [#42510](renovatebot/renovate#42510)

##### Miscellaneous Chores

- **deps:** update actions/cache action to v5.0.5 (main) ([#42598](renovatebot/renovate#42598)) ([a808338](renovatebot/renovate@a808338))
- **deps:** update containerbase/internal-tools action to v4.5.20 (main) ([#42602](renovatebot/renovate#42602)) ([d2131a7](renovatebot/renovate@d2131a7))
- **deps:** update dependency [@smithy/util-stream](https://github.com/smithy/util-stream) to v4.5.22 (main) ([#42603](renovatebot/renovate#42603)) ([81e51cb](renovatebot/renovate@81e51cb))

---
##### [\`43.112.1\`](https://github.com/renovatebot/renovate/releases/tag/43.112.1)

##### Bug Fixes

- **cache:** Improve SQLite cache error handling ([#42557](renovatebot/renovate#42557)) ([50a2bac](renovatebot/renovate@50a2bac))

##### Code Refactoring

- **dashboard:** align terminology with other sections ([#42354](renovatebot/renovate#42354)) ([27f0797](renovatebot/renovate@27f0797))

---
##### [\`43.112.0\`](https://github.com/renovatebot/renovate/releases/tag/43.112.0)

##### Features

- **cache:** Add `writeSchema` to Maven cache provider ([#42570](renovatebot/renovate#42570)) ([e33aa4c](renovatebot/renovate@e33aa4c))

##### Miscellaneous Chores

- **deps:** update dependency oxlint-tsgolint to v0.20.0 (main) ([#42593](renovatebot/renovate#42593)) ([d80881e](renovatebot/renovate@d80881e))

---
##### [\`43.111.3\`](https://github.com/renovatebot/renovate/releases/tag/43.111.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.29 (main) ([#42592](renovatebot/renovate#42592)) ([edc474a](renovatebot/renovate@edc474a))

##### Documentation

- add Renovate Operator as Kubernetes-native option ([#42506](renovatebot/renovate#42506)) ([91a7213](renovatebot/renovate@91a7213))

---
##### [\`43.111.2\`](https://github.com/renovatebot/renovate/releases/tag/43.111.2)

##### Bug Fixes

- **github-actions:** use correct datasource for Zizmor version ([#42587](renovatebot/renovate#42587)) ([ea1e60e](renovatebot/renovate@ea1e60e))

---
##### [\`43.111.1\`](https://github.com/renovatebot/renovate/releases/tag/43.111.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.28 (main) ([#42580](renovatebot/renovate#42580)) ([216fc99](renovatebot/renovate@216fc99))

##### Documentation

- update references to python to [`8428c32`](renovatebot/renovate@8428c32) (main) ([#42572](renovatebot/renovate#42572)) ([c549ff7](renovatebot/renovate@c549ff7))
- update references to renovatebot/github-action to v46.1.8 (main) ([#42573](renovatebot/renovate#42573)) ([da4e84e](renovatebot/renovate@da4e84e))
- update references to renovatebot/github-action to v46.1.9 (main) ([#42577](renovatebot/renovate#42577)) ([2870abe](renovatebot/renovate@2870abe))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.19 (main) ([#42574](renovatebot/renovate#42574)) ([f31e3d4](renovatebot/renovate@f31e3d4))
- **deps:** update dependency [@containerbase/istanbul-reports-html](https://github.com/containerbase/istanbul-reports-html) to v1.1.43 (main) ([#42575](renovatebot/renovate#42575)) ([7af9aed](renovatebot/renovate@7af9aed))
- **deps:** update dependency [@containerbase/semantic-release-pnpm](https://github.com/containerbase/semantic-release-pnpm) to v1.3.33 (main) ([#42576](renovatebot/renovate#42576)) ([3870e76](renovatebot/renovate@3870e76))
- **deps:** update dependency nock to v14.0.12 (main) ([#42571](renovatebot/renovate#42571)) ([81791bd](renovatebot/renovate@81791bd))
- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.20 (main) ([#42579](renovatebot/renovate#42579)) ([90a2429](renovatebot/renovate@90a2429))

---
##### [\`43.111.0\`](https://github.com/renovatebot/renovate/releases/tag/43.111.0)

##### Features

- **npm:** Trim response data before caching ([#42559](renovatebot/renovate#42559)) ([b359a1d](renovatebot/renovate@b359a1d))

##### Miscellaneous Chores

- **types:** allow `constraints` to be passed through to `getReleases` ([#42564](renovatebot/renovate#42564)) ([6238715](renovatebot/renovate@6238715))
renovate Bot added a commit to sdwilsh/ansible-playbooks that referenced this pull request Apr 16, 2026
##### [\`43.126.0\`](https://github.com/renovatebot/renovate/releases/tag/43.126.0)

##### Features

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.34.0 (main) ([#42697](renovatebot/renovate#42697)) ([4b61c70](renovatebot/renovate@4b61c70))

##### Miscellaneous Chores

- **deps:** update dependency node to v24.15.0 (main) ([#42695](renovatebot/renovate#42695)) ([dc90208](renovatebot/renovate@dc90208))

---
##### [\`43.125.1\`](https://github.com/renovatebot/renovate/releases/tag/43.125.1)

##### Bug Fixes

- **manager/github-actions:** override `versioning` for Actions with Immutable Tags ([#42690](renovatebot/renovate#42690)) ([1b0785b](renovatebot/renovate@1b0785b))

---
##### [\`43.125.0\`](https://github.com/renovatebot/renovate/releases/tag/43.125.0)

##### Features

- **replacements:** migrate users to astral/setup-uv v8 ([#42683](renovatebot/renovate#42683)) ([f5859c2](renovatebot/renovate@f5859c2))

---
##### [\`43.124.1\`](https://github.com/renovatebot/renovate/releases/tag/43.124.1)

##### Bug Fixes

- **docker:** only set `replaceString` if requested ([#42649](renovatebot/renovate#42649)) ([f6d4106](renovatebot/renovate@f6d4106))

---
##### [\`43.124.0\`](https://github.com/renovatebot/renovate/releases/tag/43.124.0)

##### Features

- **manager/github-actions:** use `semver-partial` as default versioning ([#42685](renovatebot/renovate#42685)) ([da04b8e](renovatebot/renovate@da04b8e)), closes [#42331](renovatebot/renovate#42331)

##### Documentation

- fix link in vulnerabilityAlerts docs ([#42680](renovatebot/renovate#42680)) ([b0fd397](renovatebot/renovate@b0fd397))

##### Continuous Integration

- **auto-prs:** handle draft PRs better ([#42686](renovatebot/renovate#42686)) ([0a86cc5](renovatebot/renovate@0a86cc5))

---
##### [\`43.123.8\`](https://github.com/renovatebot/renovate/releases/tag/43.123.8)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.35 (main) ([#42681](renovatebot/renovate#42681)) ([4b597ec](renovatebot/renovate@4b597ec))
- **package-rules:** correctly merge `force.enabled` ([#42679](renovatebot/renovate#42679)) ([ae22250](renovatebot/renovate@ae22250)), closes [#42666](renovatebot/renovate#42666)

##### Tests

- **git:** test failing when no git author is configured ([#42676](renovatebot/renovate#42676)) ([f9bddb9](renovatebot/renovate@f9bddb9))

---
##### [\`43.123.7\`](https://github.com/renovatebot/renovate/releases/tag/43.123.7)

##### Miscellaneous Chores

- **deps:** update vitest monorepo to v4.1.4 (main) ([#42677](renovatebot/renovate#42677)) ([7907192](renovatebot/renovate@7907192))

##### Build System

- **deps:** update node.js to v24.15.0 (main) ([#42678](renovatebot/renovate#42678)) ([a40a0f0](renovatebot/renovate@a40a0f0))

---
##### [\`43.123.6\`](https://github.com/renovatebot/renovate/releases/tag/43.123.6)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.34 (main) ([#42675](renovatebot/renovate#42675)) ([5251496](renovatebot/renovate@5251496))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.22 (main) ([#42674](renovatebot/renovate#42674)) ([f69abc5](renovatebot/renovate@f69abc5))

---
##### [\`43.123.5\`](https://github.com/renovatebot/renovate/releases/tag/43.123.5)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.33 (main) ([#42673](renovatebot/renovate#42673)) ([d33efe2](renovatebot/renovate@d33efe2))

---
##### [\`43.123.4\`](https://github.com/renovatebot/renovate/releases/tag/43.123.4)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.32 (main) ([#42669](renovatebot/renovate#42669)) ([a14d85b](renovatebot/renovate@a14d85b))

---
##### [\`43.123.3\`](https://github.com/renovatebot/renovate/releases/tag/43.123.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.31 (main) ([#42668](renovatebot/renovate#42668)) ([7d2c1ac](renovatebot/renovate@7d2c1ac))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.21 (main) ([#42667](renovatebot/renovate#42667)) ([f891066](renovatebot/renovate@f891066))

---
##### [\`43.123.2\`](renovatebot/renovate@43.123.1...43.123.2)


---
##### [\`43.123.1\`](https://github.com/renovatebot/renovate/releases/tag/43.123.1)

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.22 (main) ([#42658](renovatebot/renovate#42658)) ([9e33c20](renovatebot/renovate@9e33c20))

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.6 (main) ([#42657](renovatebot/renovate#42657)) ([80146b2](renovatebot/renovate@80146b2))

##### Continuous Integration

- auto-label `needs-discussion` on externally-raised Issues ([#42656](renovatebot/renovate#42656)) ([6a0e718](renovatebot/renovate@6a0e718))

---
##### [\`43.123.0\`](https://github.com/renovatebot/renovate/releases/tag/43.123.0)

##### Features

- add XcodeGen manager for Swift package dependencies in project.yml files ([#41889](renovatebot/renovate#41889)) ([0ff55d2](renovatebot/renovate@0ff55d2))
- **presets:** add `BUN_CONFIG_MAX_HTTP_REQUESTS` to safe global env ([#41350](renovatebot/renovate#41350)) ([1316fd7](renovatebot/renovate@1316fd7))
- **presets:** add changelogUrl link for Forgejo and Gitea digest updates ([#41786](renovatebot/renovate#41786)) ([0f9a516](renovatebot/renovate@0f9a516))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.21 (main) ([#42654](renovatebot/renovate#42654)) ([3891a11](renovatebot/renovate@3891a11))

##### Code Refactoring

- **terraform-module:** replace interfaces with zod schemas and inline fixtures ([#42399](renovatebot/renovate#42399)) ([914c55b](renovatebot/renovate@914c55b))

---
##### [\`43.122.0\`](https://github.com/renovatebot/renovate/releases/tag/43.122.0)

##### Features

- **manager/ant:** support custom `registryUrls` ([#42641](renovatebot/renovate#42641)) ([28ab04b](renovatebot/renovate@28ab04b))

##### Documentation

- use single quotes ([#42648](renovatebot/renovate#42648)) ([3c8521e](renovatebot/renovate@3c8521e))

##### Miscellaneous Chores

- **deps:** update github/codeql-action action to v4.35.2 (main) ([#42650](renovatebot/renovate#42650)) ([40100d0](renovatebot/renovate@40100d0))

---
##### [\`43.121.0\`](https://github.com/renovatebot/renovate/releases/tag/43.121.0)

##### Features

- **manager/ant:** add `coords=` attribute syntax support ([#42635](renovatebot/renovate#42635)) ([15c8ab5](renovatebot/renovate@15c8ab5))
- **terraform-provider:** use registry v2 API for release timestamps ([#42340](renovatebot/renovate#42340)) ([f421075](renovatebot/renovate@f421075))

##### Bug Fixes

- **git:** don't pass extraCloneOpts to ls-remote when local clone exists ([#42491](renovatebot/renovate#42491)) ([70fa962](renovatebot/renovate@70fa962))
- **gitlab:** loosen re-approve constraints during updatePr ([#42528](renovatebot/renovate#42528)) ([7b4f75b](renovatebot/renovate@7b4f75b))

##### Documentation

- correct name of `osv-offline` ([#42486](renovatebot/renovate#42486)) ([0fbc124](renovatebot/renovate@0fbc124))
- **minimum-release-age:** add reference to cooldowns ([#42640](renovatebot/renovate#42640)) ([25e47df](renovatebot/renovate@25e47df))

##### Miscellaneous Chores

- **deps:** update ghcr.io/zizmorcore/zizmor docker tag to v1.24.1 (main) ([#42642](renovatebot/renovate#42642)) ([61947e2](renovatebot/renovate@61947e2))

##### Code Refactoring

- **cache:** Remove obsolete compress flag ([#42563](renovatebot/renovate#42563)) ([f49de7a](renovatebot/renovate@f49de7a))

##### Build System

- **deps:** update dependency [@renovatebot/osv-offline](https://github.com/renovatebot/osv-offline) to v2.5.0 (main) ([#42645](renovatebot/renovate#42645)) ([4cb4030](renovatebot/renovate@4cb4030))

---
##### [\`43.120.2\`](https://github.com/renovatebot/renovate/releases/tag/43.120.2)

##### Bug Fixes

- **vulnerability:** remove matchFileNames restriction from GitHub vulnerability alerts ([#42636](renovatebot/renovate#42636)) ([593a2b1](renovatebot/renovate@593a2b1))

---
##### [\`43.120.1\`](https://github.com/renovatebot/renovate/releases/tag/43.120.1)

##### Bug Fixes

- **logger:** log file using pretty format not working ([#42319](renovatebot/renovate#42319)) ([1c886e0](renovatebot/renovate@1c886e0))

---
##### [\`43.120.0\`](https://github.com/renovatebot/renovate/releases/tag/43.120.0)

##### Features

- **vulnerability:** add severity and CVSS details to GitHub Dependabot alerts ([#42568](renovatebot/renovate#42568)) ([1e906e8](renovatebot/renovate@1e906e8))

##### Miscellaneous Chores

- **instrumentation:** add timing statistics for `getReleases` ([#42523](renovatebot/renovate#42523)) ([f635ae2](renovatebot/renovate@f635ae2))

---
##### [\`43.119.0\`](https://github.com/renovatebot/renovate/releases/tag/43.119.0)

##### Features

- **manager/ant:** add <import> file traversal ([#42631](renovatebot/renovate#42631)) ([76dcc66](renovatebot/renovate@76dcc66))

---
##### [\`43.118.2\`](https://github.com/renovatebot/renovate/releases/tag/43.118.2)

##### Bug Fixes

- **util/git:** allow setting `config.hooksPath` ([#42630](renovatebot/renovate#42630)) ([33c1bf5](renovatebot/renovate@33c1bf5)), closes [#42588](renovatebot/renovate#42588) [#42628](https://github.com/renovatebot/renovate/issues/42628)

---
##### [\`43.118.1\`](https://github.com/renovatebot/renovate/releases/tag/43.118.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.30 (main) ([#42629](renovatebot/renovate#42629)) ([015264e](renovatebot/renovate@015264e))

##### Miscellaneous Chores

- expose known environment variables ([#42201](renovatebot/renovate#42201)) ([b39b50f](renovatebot/renovate@b39b50f))

---
##### [\`43.118.0\`](https://github.com/renovatebot/renovate/releases/tag/43.118.0)

##### Features

- **manager/ant:** add property resolution and .properties file support ([#42175](renovatebot/renovate#42175)) ([ef8e6c8](renovatebot/renovate@ef8e6c8))

---
##### [\`43.117.0\`](https://github.com/renovatebot/renovate/releases/tag/43.117.0)

##### Features

- **bitbucket-pipelines:** update file patterns to support shared configs ([#41704](renovatebot/renovate#41704)) ([53bd796](renovatebot/renovate@53bd796))
- **cache:** add a in-memory expiry map to package file cache ([#42531](renovatebot/renovate#42531)) ([5184761](renovatebot/renovate@5184761))

---
##### [\`43.116.1\`](https://github.com/renovatebot/renovate/releases/tag/43.116.1)

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.5 (main) ([#42626](renovatebot/renovate#42626)) ([7363aee](renovatebot/renovate@7363aee))

---
##### [\`43.116.0\`](https://github.com/renovatebot/renovate/releases/tag/43.116.0)

##### Features

- **osv:** mark malicious packages with `skipReason`s ([#42510](renovatebot/renovate#42510)) ([01f2479](renovatebot/renovate@01f2479))

##### Miscellaneous Chores

- **deps:** update dependency typescript to v6 (main) ([#42615](renovatebot/renovate#42615)) ([d9417b0](renovatebot/renovate@d9417b0))

##### Code Refactoring

- move `requireConfig` to `InheritConfig` ([#41385](renovatebot/renovate#41385)) ([36f9d4a](renovatebot/renovate@36f9d4a))

---
##### [\`43.115.1\`](https://github.com/renovatebot/renovate/releases/tag/43.115.1)

##### Miscellaneous Chores

- **deps:** update actions/github-script action to v9 (main) ([#42613](renovatebot/renovate#42613)) ([1fac64b](renovatebot/renovate@1fac64b))
- **deps:** update actions/upload-pages-artifact action to v5 (main) ([#42614](renovatebot/renovate#42614)) ([cf79688](renovatebot/renovate@cf79688))
- **deps:** update dependency vitest-mock-extended to v4 (main) ([#42616](renovatebot/renovate#42616)) ([1afe9a7](renovatebot/renovate@1afe9a7))
- **deps:** update nick-fields/retry action to v4 (main) ([#42617](renovatebot/renovate#42617)) ([7eee338](renovatebot/renovate@7eee338))
- **deps:** update slackapi/slack-github-action action to v3 (main) ([#42619](renovatebot/renovate#42619)) ([d2d8297](renovatebot/renovate@d2d8297))
- **deps:** update vitest monorepo to v4.1.3 (main) ([#42623](renovatebot/renovate#42623)) ([6cf2410](renovatebot/renovate@6cf2410))
- drop obsolete tsconfig ([#42622](renovatebot/renovate#42622)) ([fcf1e20](renovatebot/renovate@fcf1e20))
- **renovate:** disable next branch ([#42620](renovatebot/renovate#42620)) ([d2abeb4](renovatebot/renovate@d2abeb4))
- **tsdown:** migrate config ([#42621](renovatebot/renovate#42621)) ([32964bd](renovatebot/renovate@32964bd))
- **types:** add `skipStage=enrichment` ([#42585](renovatebot/renovate#42585)) ([4faa847](renovatebot/renovate@4faa847))

##### Build System

- **deps:** update dependency p-queue to v9.1.2 (main) ([#42624](renovatebot/renovate#42624)) ([19baa76](renovatebot/renovate@19baa76))
- **deps:** update dependency simple-git to v3.35.2 (main) ([#42588](renovatebot/renovate#42588)) ([a7b5b48](renovatebot/renovate@a7b5b48))

---
##### [\`43.115.0\`](https://github.com/renovatebot/renovate/releases/tag/43.115.0)

##### Features

- **packageRules:** bumpVersions.type sync ([#42540](renovatebot/renovate#42540)) ([0389869](renovatebot/renovate@0389869))

---
##### [\`43.114.0\`](https://github.com/renovatebot/renovate/releases/tag/43.114.0)

##### Features

- **manager/mise:** add support for openfga ([#42611](renovatebot/renovate#42611)) ([203c5fe](renovatebot/renovate@203c5fe))

##### Miscellaneous Chores

- **deps:** update zizmorcore/zizmor-action action to v0.5.3 (main) ([#42607](renovatebot/renovate#42607)) ([c815d30](renovatebot/renovate@c815d30))
- **types:** add a strong type for `ToolName` and `ConstraintName` ([#42589](renovatebot/renovate#42589)) ([1044a80](renovatebot/renovate@1044a80)), closes [#41849](renovatebot/renovate#41849)

---
##### [\`43.113.0\`](https://github.com/renovatebot/renovate/releases/tag/43.113.0)

##### Features

- **sbt:** support anonymous objects and dotted symbols for version declaration ([#40699](renovatebot/renovate#40699)) ([ef3c964](renovatebot/renovate@ef3c964))

##### Bug Fixes

- **workers/repository:** don't include `skipReason`'d dependencies in flattened updates ([#42595](renovatebot/renovate#42595)) ([f8b4477](renovatebot/renovate@f8b4477)), closes [#42510](renovatebot/renovate#42510)

##### Miscellaneous Chores

- **deps:** update actions/cache action to v5.0.5 (main) ([#42598](renovatebot/renovate#42598)) ([a808338](renovatebot/renovate@a808338))
- **deps:** update containerbase/internal-tools action to v4.5.20 (main) ([#42602](renovatebot/renovate#42602)) ([d2131a7](renovatebot/renovate@d2131a7))
- **deps:** update dependency [@smithy/util-stream](https://github.com/smithy/util-stream) to v4.5.22 (main) ([#42603](renovatebot/renovate#42603)) ([81e51cb](renovatebot/renovate@81e51cb))

---
##### [\`43.112.1\`](https://github.com/renovatebot/renovate/releases/tag/43.112.1)

##### Bug Fixes

- **cache:** Improve SQLite cache error handling ([#42557](renovatebot/renovate#42557)) ([50a2bac](renovatebot/renovate@50a2bac))

##### Code Refactoring

- **dashboard:** align terminology with other sections ([#42354](renovatebot/renovate#42354)) ([27f0797](renovatebot/renovate@27f0797))

---
##### [\`43.112.0\`](https://github.com/renovatebot/renovate/releases/tag/43.112.0)

##### Features

- **cache:** Add `writeSchema` to Maven cache provider ([#42570](renovatebot/renovate#42570)) ([e33aa4c](renovatebot/renovate@e33aa4c))

##### Miscellaneous Chores

- **deps:** update dependency oxlint-tsgolint to v0.20.0 (main) ([#42593](renovatebot/renovate#42593)) ([d80881e](renovatebot/renovate@d80881e))

---
##### [\`43.111.3\`](https://github.com/renovatebot/renovate/releases/tag/43.111.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.29 (main) ([#42592](renovatebot/renovate#42592)) ([edc474a](renovatebot/renovate@edc474a))

##### Documentation

- add Renovate Operator as Kubernetes-native option ([#42506](renovatebot/renovate#42506)) ([91a7213](renovatebot/renovate@91a7213))

---
##### [\`43.111.2\`](https://github.com/renovatebot/renovate/releases/tag/43.111.2)

##### Bug Fixes

- **github-actions:** use correct datasource for Zizmor version ([#42587](renovatebot/renovate#42587)) ([ea1e60e](renovatebot/renovate@ea1e60e))

---
##### [\`43.111.1\`](https://github.com/renovatebot/renovate/releases/tag/43.111.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.28 (main) ([#42580](renovatebot/renovate#42580)) ([216fc99](renovatebot/renovate@216fc99))

##### Documentation

- update references to python to [`8428c32`](renovatebot/renovate@8428c32) (main) ([#42572](renovatebot/renovate#42572)) ([c549ff7](renovatebot/renovate@c549ff7))
- update references to renovatebot/github-action to v46.1.8 (main) ([#42573](renovatebot/renovate#42573)) ([da4e84e](renovatebot/renovate@da4e84e))
- update references to renovatebot/github-action to v46.1.9 (main) ([#42577](renovatebot/renovate#42577)) ([2870abe](renovatebot/renovate@2870abe))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.19 (main) ([#42574](renovatebot/renovate#42574)) ([f31e3d4](renovatebot/renovate@f31e3d4))
- **deps:** update dependency [@containerbase/istanbul-reports-html](https://github.com/containerbase/istanbul-reports-html) to v1.1.43 (main) ([#42575](renovatebot/renovate#42575)) ([7af9aed](renovatebot/renovate@7af9aed))
- **deps:** update dependency [@containerbase/semantic-release-pnpm](https://github.com/containerbase/semantic-release-pnpm) to v1.3.33 (main) ([#42576](renovatebot/renovate#42576)) ([3870e76](renovatebot/renovate@3870e76))
- **deps:** update dependency nock to v14.0.12 (main) ([#42571](renovatebot/renovate#42571)) ([81791bd](renovatebot/renovate@81791bd))
- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.20 (main) ([#42579](renovatebot/renovate#42579)) ([90a2429](renovatebot/renovate@90a2429))

---
##### [\`43.111.0\`](https://github.com/renovatebot/renovate/releases/tag/43.111.0)

##### Features

- **npm:** Trim response data before caching ([#42559](renovatebot/renovate#42559)) ([b359a1d](renovatebot/renovate@b359a1d))

##### Miscellaneous Chores

- **types:** allow `constraints` to be passed through to `getReleases` ([#42564](renovatebot/renovate#42564)) ([6238715](renovatebot/renovate@6238715))
renovate Bot added a commit to sdwilsh/ansible-playbooks that referenced this pull request Apr 17, 2026
##### [\`43.126.0\`](https://github.com/renovatebot/renovate/releases/tag/43.126.0)

##### Features

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.34.0 (main) ([#42697](renovatebot/renovate#42697)) ([4b61c70](renovatebot/renovate@4b61c70))

##### Miscellaneous Chores

- **deps:** update dependency node to v24.15.0 (main) ([#42695](renovatebot/renovate#42695)) ([dc90208](renovatebot/renovate@dc90208))

---
##### [\`43.125.1\`](https://github.com/renovatebot/renovate/releases/tag/43.125.1)

##### Bug Fixes

- **manager/github-actions:** override `versioning` for Actions with Immutable Tags ([#42690](renovatebot/renovate#42690)) ([1b0785b](renovatebot/renovate@1b0785b))

---
##### [\`43.125.0\`](https://github.com/renovatebot/renovate/releases/tag/43.125.0)

##### Features

- **replacements:** migrate users to astral/setup-uv v8 ([#42683](renovatebot/renovate#42683)) ([f5859c2](renovatebot/renovate@f5859c2))

---
##### [\`43.124.1\`](https://github.com/renovatebot/renovate/releases/tag/43.124.1)

##### Bug Fixes

- **docker:** only set `replaceString` if requested ([#42649](renovatebot/renovate#42649)) ([f6d4106](renovatebot/renovate@f6d4106))

---
##### [\`43.124.0\`](https://github.com/renovatebot/renovate/releases/tag/43.124.0)

##### Features

- **manager/github-actions:** use `semver-partial` as default versioning ([#42685](renovatebot/renovate#42685)) ([da04b8e](renovatebot/renovate@da04b8e)), closes [#42331](renovatebot/renovate#42331)

##### Documentation

- fix link in vulnerabilityAlerts docs ([#42680](renovatebot/renovate#42680)) ([b0fd397](renovatebot/renovate@b0fd397))

##### Continuous Integration

- **auto-prs:** handle draft PRs better ([#42686](renovatebot/renovate#42686)) ([0a86cc5](renovatebot/renovate@0a86cc5))

---
##### [\`43.123.8\`](https://github.com/renovatebot/renovate/releases/tag/43.123.8)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.35 (main) ([#42681](renovatebot/renovate#42681)) ([4b597ec](renovatebot/renovate@4b597ec))
- **package-rules:** correctly merge `force.enabled` ([#42679](renovatebot/renovate#42679)) ([ae22250](renovatebot/renovate@ae22250)), closes [#42666](renovatebot/renovate#42666)

##### Tests

- **git:** test failing when no git author is configured ([#42676](renovatebot/renovate#42676)) ([f9bddb9](renovatebot/renovate@f9bddb9))

---
##### [\`43.123.7\`](https://github.com/renovatebot/renovate/releases/tag/43.123.7)

##### Miscellaneous Chores

- **deps:** update vitest monorepo to v4.1.4 (main) ([#42677](renovatebot/renovate#42677)) ([7907192](renovatebot/renovate@7907192))

##### Build System

- **deps:** update node.js to v24.15.0 (main) ([#42678](renovatebot/renovate#42678)) ([a40a0f0](renovatebot/renovate@a40a0f0))

---
##### [\`43.123.6\`](https://github.com/renovatebot/renovate/releases/tag/43.123.6)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.34 (main) ([#42675](renovatebot/renovate#42675)) ([5251496](renovatebot/renovate@5251496))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.22 (main) ([#42674](renovatebot/renovate#42674)) ([f69abc5](renovatebot/renovate@f69abc5))

---
##### [\`43.123.5\`](https://github.com/renovatebot/renovate/releases/tag/43.123.5)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.33 (main) ([#42673](renovatebot/renovate#42673)) ([d33efe2](renovatebot/renovate@d33efe2))

---
##### [\`43.123.4\`](https://github.com/renovatebot/renovate/releases/tag/43.123.4)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.32 (main) ([#42669](renovatebot/renovate#42669)) ([a14d85b](renovatebot/renovate@a14d85b))

---
##### [\`43.123.3\`](https://github.com/renovatebot/renovate/releases/tag/43.123.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.31 (main) ([#42668](renovatebot/renovate#42668)) ([7d2c1ac](renovatebot/renovate@7d2c1ac))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.21 (main) ([#42667](renovatebot/renovate#42667)) ([f891066](renovatebot/renovate@f891066))

---
##### [\`43.123.2\`](renovatebot/renovate@43.123.1...43.123.2)


---
##### [\`43.123.1\`](https://github.com/renovatebot/renovate/releases/tag/43.123.1)

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.22 (main) ([#42658](renovatebot/renovate#42658)) ([9e33c20](renovatebot/renovate@9e33c20))

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.6 (main) ([#42657](renovatebot/renovate#42657)) ([80146b2](renovatebot/renovate@80146b2))

##### Continuous Integration

- auto-label `needs-discussion` on externally-raised Issues ([#42656](renovatebot/renovate#42656)) ([6a0e718](renovatebot/renovate@6a0e718))

---
##### [\`43.123.0\`](https://github.com/renovatebot/renovate/releases/tag/43.123.0)

##### Features

- add XcodeGen manager for Swift package dependencies in project.yml files ([#41889](renovatebot/renovate#41889)) ([0ff55d2](renovatebot/renovate@0ff55d2))
- **presets:** add `BUN_CONFIG_MAX_HTTP_REQUESTS` to safe global env ([#41350](renovatebot/renovate#41350)) ([1316fd7](renovatebot/renovate@1316fd7))
- **presets:** add changelogUrl link for Forgejo and Gitea digest updates ([#41786](renovatebot/renovate#41786)) ([0f9a516](renovatebot/renovate@0f9a516))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.21 (main) ([#42654](renovatebot/renovate#42654)) ([3891a11](renovatebot/renovate@3891a11))

##### Code Refactoring

- **terraform-module:** replace interfaces with zod schemas and inline fixtures ([#42399](renovatebot/renovate#42399)) ([914c55b](renovatebot/renovate@914c55b))

---
##### [\`43.122.0\`](https://github.com/renovatebot/renovate/releases/tag/43.122.0)

##### Features

- **manager/ant:** support custom `registryUrls` ([#42641](renovatebot/renovate#42641)) ([28ab04b](renovatebot/renovate@28ab04b))

##### Documentation

- use single quotes ([#42648](renovatebot/renovate#42648)) ([3c8521e](renovatebot/renovate@3c8521e))

##### Miscellaneous Chores

- **deps:** update github/codeql-action action to v4.35.2 (main) ([#42650](renovatebot/renovate#42650)) ([40100d0](renovatebot/renovate@40100d0))

---
##### [\`43.121.0\`](https://github.com/renovatebot/renovate/releases/tag/43.121.0)

##### Features

- **manager/ant:** add `coords=` attribute syntax support ([#42635](renovatebot/renovate#42635)) ([15c8ab5](renovatebot/renovate@15c8ab5))
- **terraform-provider:** use registry v2 API for release timestamps ([#42340](renovatebot/renovate#42340)) ([f421075](renovatebot/renovate@f421075))

##### Bug Fixes

- **git:** don't pass extraCloneOpts to ls-remote when local clone exists ([#42491](renovatebot/renovate#42491)) ([70fa962](renovatebot/renovate@70fa962))
- **gitlab:** loosen re-approve constraints during updatePr ([#42528](renovatebot/renovate#42528)) ([7b4f75b](renovatebot/renovate@7b4f75b))

##### Documentation

- correct name of `osv-offline` ([#42486](renovatebot/renovate#42486)) ([0fbc124](renovatebot/renovate@0fbc124))
- **minimum-release-age:** add reference to cooldowns ([#42640](renovatebot/renovate#42640)) ([25e47df](renovatebot/renovate@25e47df))

##### Miscellaneous Chores

- **deps:** update ghcr.io/zizmorcore/zizmor docker tag to v1.24.1 (main) ([#42642](renovatebot/renovate#42642)) ([61947e2](renovatebot/renovate@61947e2))

##### Code Refactoring

- **cache:** Remove obsolete compress flag ([#42563](renovatebot/renovate#42563)) ([f49de7a](renovatebot/renovate@f49de7a))

##### Build System

- **deps:** update dependency [@renovatebot/osv-offline](https://github.com/renovatebot/osv-offline) to v2.5.0 (main) ([#42645](renovatebot/renovate#42645)) ([4cb4030](renovatebot/renovate@4cb4030))

---
##### [\`43.120.2\`](https://github.com/renovatebot/renovate/releases/tag/43.120.2)

##### Bug Fixes

- **vulnerability:** remove matchFileNames restriction from GitHub vulnerability alerts ([#42636](renovatebot/renovate#42636)) ([593a2b1](renovatebot/renovate@593a2b1))

---
##### [\`43.120.1\`](https://github.com/renovatebot/renovate/releases/tag/43.120.1)

##### Bug Fixes

- **logger:** log file using pretty format not working ([#42319](renovatebot/renovate#42319)) ([1c886e0](renovatebot/renovate@1c886e0))

---
##### [\`43.120.0\`](https://github.com/renovatebot/renovate/releases/tag/43.120.0)

##### Features

- **vulnerability:** add severity and CVSS details to GitHub Dependabot alerts ([#42568](renovatebot/renovate#42568)) ([1e906e8](renovatebot/renovate@1e906e8))

##### Miscellaneous Chores

- **instrumentation:** add timing statistics for `getReleases` ([#42523](renovatebot/renovate#42523)) ([f635ae2](renovatebot/renovate@f635ae2))

---
##### [\`43.119.0\`](https://github.com/renovatebot/renovate/releases/tag/43.119.0)

##### Features

- **manager/ant:** add <import> file traversal ([#42631](renovatebot/renovate#42631)) ([76dcc66](renovatebot/renovate@76dcc66))

---
##### [\`43.118.2\`](https://github.com/renovatebot/renovate/releases/tag/43.118.2)

##### Bug Fixes

- **util/git:** allow setting `config.hooksPath` ([#42630](renovatebot/renovate#42630)) ([33c1bf5](renovatebot/renovate@33c1bf5)), closes [#42588](renovatebot/renovate#42588) [#42628](https://github.com/renovatebot/renovate/issues/42628)

---
##### [\`43.118.1\`](https://github.com/renovatebot/renovate/releases/tag/43.118.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.30 (main) ([#42629](renovatebot/renovate#42629)) ([015264e](renovatebot/renovate@015264e))

##### Miscellaneous Chores

- expose known environment variables ([#42201](renovatebot/renovate#42201)) ([b39b50f](renovatebot/renovate@b39b50f))

---
##### [\`43.118.0\`](https://github.com/renovatebot/renovate/releases/tag/43.118.0)

##### Features

- **manager/ant:** add property resolution and .properties file support ([#42175](renovatebot/renovate#42175)) ([ef8e6c8](renovatebot/renovate@ef8e6c8))

---
##### [\`43.117.0\`](https://github.com/renovatebot/renovate/releases/tag/43.117.0)

##### Features

- **bitbucket-pipelines:** update file patterns to support shared configs ([#41704](renovatebot/renovate#41704)) ([53bd796](renovatebot/renovate@53bd796))
- **cache:** add a in-memory expiry map to package file cache ([#42531](renovatebot/renovate#42531)) ([5184761](renovatebot/renovate@5184761))

---
##### [\`43.116.1\`](https://github.com/renovatebot/renovate/releases/tag/43.116.1)

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.5 (main) ([#42626](renovatebot/renovate#42626)) ([7363aee](renovatebot/renovate@7363aee))

---
##### [\`43.116.0\`](https://github.com/renovatebot/renovate/releases/tag/43.116.0)

##### Features

- **osv:** mark malicious packages with `skipReason`s ([#42510](renovatebot/renovate#42510)) ([01f2479](renovatebot/renovate@01f2479))

##### Miscellaneous Chores

- **deps:** update dependency typescript to v6 (main) ([#42615](renovatebot/renovate#42615)) ([d9417b0](renovatebot/renovate@d9417b0))

##### Code Refactoring

- move `requireConfig` to `InheritConfig` ([#41385](renovatebot/renovate#41385)) ([36f9d4a](renovatebot/renovate@36f9d4a))

---
##### [\`43.115.1\`](https://github.com/renovatebot/renovate/releases/tag/43.115.1)

##### Miscellaneous Chores

- **deps:** update actions/github-script action to v9 (main) ([#42613](renovatebot/renovate#42613)) ([1fac64b](renovatebot/renovate@1fac64b))
- **deps:** update actions/upload-pages-artifact action to v5 (main) ([#42614](renovatebot/renovate#42614)) ([cf79688](renovatebot/renovate@cf79688))
- **deps:** update dependency vitest-mock-extended to v4 (main) ([#42616](renovatebot/renovate#42616)) ([1afe9a7](renovatebot/renovate@1afe9a7))
- **deps:** update nick-fields/retry action to v4 (main) ([#42617](renovatebot/renovate#42617)) ([7eee338](renovatebot/renovate@7eee338))
- **deps:** update slackapi/slack-github-action action to v3 (main) ([#42619](renovatebot/renovate#42619)) ([d2d8297](renovatebot/renovate@d2d8297))
- **deps:** update vitest monorepo to v4.1.3 (main) ([#42623](renovatebot/renovate#42623)) ([6cf2410](renovatebot/renovate@6cf2410))
- drop obsolete tsconfig ([#42622](renovatebot/renovate#42622)) ([fcf1e20](renovatebot/renovate@fcf1e20))
- **renovate:** disable next branch ([#42620](renovatebot/renovate#42620)) ([d2abeb4](renovatebot/renovate@d2abeb4))
- **tsdown:** migrate config ([#42621](renovatebot/renovate#42621)) ([32964bd](renovatebot/renovate@32964bd))
- **types:** add `skipStage=enrichment` ([#42585](renovatebot/renovate#42585)) ([4faa847](renovatebot/renovate@4faa847))

##### Build System

- **deps:** update dependency p-queue to v9.1.2 (main) ([#42624](renovatebot/renovate#42624)) ([19baa76](renovatebot/renovate@19baa76))
- **deps:** update dependency simple-git to v3.35.2 (main) ([#42588](renovatebot/renovate#42588)) ([a7b5b48](renovatebot/renovate@a7b5b48))

---
##### [\`43.115.0\`](https://github.com/renovatebot/renovate/releases/tag/43.115.0)

##### Features

- **packageRules:** bumpVersions.type sync ([#42540](renovatebot/renovate#42540)) ([0389869](renovatebot/renovate@0389869))

---
##### [\`43.114.0\`](https://github.com/renovatebot/renovate/releases/tag/43.114.0)

##### Features

- **manager/mise:** add support for openfga ([#42611](renovatebot/renovate#42611)) ([203c5fe](renovatebot/renovate@203c5fe))

##### Miscellaneous Chores

- **deps:** update zizmorcore/zizmor-action action to v0.5.3 (main) ([#42607](renovatebot/renovate#42607)) ([c815d30](renovatebot/renovate@c815d30))
- **types:** add a strong type for `ToolName` and `ConstraintName` ([#42589](renovatebot/renovate#42589)) ([1044a80](renovatebot/renovate@1044a80)), closes [#41849](renovatebot/renovate#41849)

---
##### [\`43.113.0\`](https://github.com/renovatebot/renovate/releases/tag/43.113.0)

##### Features

- **sbt:** support anonymous objects and dotted symbols for version declaration ([#40699](renovatebot/renovate#40699)) ([ef3c964](renovatebot/renovate@ef3c964))

##### Bug Fixes

- **workers/repository:** don't include `skipReason`'d dependencies in flattened updates ([#42595](renovatebot/renovate#42595)) ([f8b4477](renovatebot/renovate@f8b4477)), closes [#42510](renovatebot/renovate#42510)

##### Miscellaneous Chores

- **deps:** update actions/cache action to v5.0.5 (main) ([#42598](renovatebot/renovate#42598)) ([a808338](renovatebot/renovate@a808338))
- **deps:** update containerbase/internal-tools action to v4.5.20 (main) ([#42602](renovatebot/renovate#42602)) ([d2131a7](renovatebot/renovate@d2131a7))
- **deps:** update dependency [@smithy/util-stream](https://github.com/smithy/util-stream) to v4.5.22 (main) ([#42603](renovatebot/renovate#42603)) ([81e51cb](renovatebot/renovate@81e51cb))

---
##### [\`43.112.1\`](https://github.com/renovatebot/renovate/releases/tag/43.112.1)

##### Bug Fixes

- **cache:** Improve SQLite cache error handling ([#42557](renovatebot/renovate#42557)) ([50a2bac](renovatebot/renovate@50a2bac))

##### Code Refactoring

- **dashboard:** align terminology with other sections ([#42354](renovatebot/renovate#42354)) ([27f0797](renovatebot/renovate@27f0797))

---
##### [\`43.112.0\`](https://github.com/renovatebot/renovate/releases/tag/43.112.0)

##### Features

- **cache:** Add `writeSchema` to Maven cache provider ([#42570](renovatebot/renovate#42570)) ([e33aa4c](renovatebot/renovate@e33aa4c))

##### Miscellaneous Chores

- **deps:** update dependency oxlint-tsgolint to v0.20.0 (main) ([#42593](renovatebot/renovate#42593)) ([d80881e](renovatebot/renovate@d80881e))

---
##### [\`43.111.3\`](https://github.com/renovatebot/renovate/releases/tag/43.111.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.29 (main) ([#42592](renovatebot/renovate#42592)) ([edc474a](renovatebot/renovate@edc474a))

##### Documentation

- add Renovate Operator as Kubernetes-native option ([#42506](renovatebot/renovate#42506)) ([91a7213](renovatebot/renovate@91a7213))

---
##### [\`43.111.2\`](https://github.com/renovatebot/renovate/releases/tag/43.111.2)

##### Bug Fixes

- **github-actions:** use correct datasource for Zizmor version ([#42587](renovatebot/renovate#42587)) ([ea1e60e](renovatebot/renovate@ea1e60e))

---
##### [\`43.111.1\`](https://github.com/renovatebot/renovate/releases/tag/43.111.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.28 (main) ([#42580](renovatebot/renovate#42580)) ([216fc99](renovatebot/renovate@216fc99))

##### Documentation

- update references to python to [`8428c32`](renovatebot/renovate@8428c32) (main) ([#42572](renovatebot/renovate#42572)) ([c549ff7](renovatebot/renovate@c549ff7))
- update references to renovatebot/github-action to v46.1.8 (main) ([#42573](renovatebot/renovate#42573)) ([da4e84e](renovatebot/renovate@da4e84e))
- update references to renovatebot/github-action to v46.1.9 (main) ([#42577](renovatebot/renovate#42577)) ([2870abe](renovatebot/renovate@2870abe))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.19 (main) ([#42574](renovatebot/renovate#42574)) ([f31e3d4](renovatebot/renovate@f31e3d4))
- **deps:** update dependency [@containerbase/istanbul-reports-html](https://github.com/containerbase/istanbul-reports-html) to v1.1.43 (main) ([#42575](renovatebot/renovate#42575)) ([7af9aed](renovatebot/renovate@7af9aed))
- **deps:** update dependency [@containerbase/semantic-release-pnpm](https://github.com/containerbase/semantic-release-pnpm) to v1.3.33 (main) ([#42576](renovatebot/renovate#42576)) ([3870e76](renovatebot/renovate@3870e76))
- **deps:** update dependency nock to v14.0.12 (main) ([#42571](renovatebot/renovate#42571)) ([81791bd](renovatebot/renovate@81791bd))
- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.20 (main) ([#42579](renovatebot/renovate#42579)) ([90a2429](renovatebot/renovate@90a2429))

---
##### [\`43.111.0\`](https://github.com/renovatebot/renovate/releases/tag/43.111.0)

##### Features

- **npm:** Trim response data before caching ([#42559](renovatebot/renovate#42559)) ([b359a1d](renovatebot/renovate@b359a1d))

##### Miscellaneous Chores

- **types:** allow `constraints` to be passed through to `getReleases` ([#42564](renovatebot/renovate#42564)) ([6238715](renovatebot/renovate@6238715))
renovate Bot added a commit to sdwilsh/ansible-playbooks that referenced this pull request Apr 17, 2026
##### [\`43.126.0\`](https://github.com/renovatebot/renovate/releases/tag/43.126.0)

##### Features

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.34.0 (main) ([#42697](renovatebot/renovate#42697)) ([4b61c70](renovatebot/renovate@4b61c70))

##### Miscellaneous Chores

- **deps:** update dependency node to v24.15.0 (main) ([#42695](renovatebot/renovate#42695)) ([dc90208](renovatebot/renovate@dc90208))

---
##### [\`43.125.1\`](https://github.com/renovatebot/renovate/releases/tag/43.125.1)

##### Bug Fixes

- **manager/github-actions:** override `versioning` for Actions with Immutable Tags ([#42690](renovatebot/renovate#42690)) ([1b0785b](renovatebot/renovate@1b0785b))

---
##### [\`43.125.0\`](https://github.com/renovatebot/renovate/releases/tag/43.125.0)

##### Features

- **replacements:** migrate users to astral/setup-uv v8 ([#42683](renovatebot/renovate#42683)) ([f5859c2](renovatebot/renovate@f5859c2))

---
##### [\`43.124.1\`](https://github.com/renovatebot/renovate/releases/tag/43.124.1)

##### Bug Fixes

- **docker:** only set `replaceString` if requested ([#42649](renovatebot/renovate#42649)) ([f6d4106](renovatebot/renovate@f6d4106))

---
##### [\`43.124.0\`](https://github.com/renovatebot/renovate/releases/tag/43.124.0)

##### Features

- **manager/github-actions:** use `semver-partial` as default versioning ([#42685](renovatebot/renovate#42685)) ([da04b8e](renovatebot/renovate@da04b8e)), closes [#42331](renovatebot/renovate#42331)

##### Documentation

- fix link in vulnerabilityAlerts docs ([#42680](renovatebot/renovate#42680)) ([b0fd397](renovatebot/renovate@b0fd397))

##### Continuous Integration

- **auto-prs:** handle draft PRs better ([#42686](renovatebot/renovate#42686)) ([0a86cc5](renovatebot/renovate@0a86cc5))

---
##### [\`43.123.8\`](https://github.com/renovatebot/renovate/releases/tag/43.123.8)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.35 (main) ([#42681](renovatebot/renovate#42681)) ([4b597ec](renovatebot/renovate@4b597ec))
- **package-rules:** correctly merge `force.enabled` ([#42679](renovatebot/renovate#42679)) ([ae22250](renovatebot/renovate@ae22250)), closes [#42666](renovatebot/renovate#42666)

##### Tests

- **git:** test failing when no git author is configured ([#42676](renovatebot/renovate#42676)) ([f9bddb9](renovatebot/renovate@f9bddb9))

---
##### [\`43.123.7\`](https://github.com/renovatebot/renovate/releases/tag/43.123.7)

##### Miscellaneous Chores

- **deps:** update vitest monorepo to v4.1.4 (main) ([#42677](renovatebot/renovate#42677)) ([7907192](renovatebot/renovate@7907192))

##### Build System

- **deps:** update node.js to v24.15.0 (main) ([#42678](renovatebot/renovate#42678)) ([a40a0f0](renovatebot/renovate@a40a0f0))

---
##### [\`43.123.6\`](https://github.com/renovatebot/renovate/releases/tag/43.123.6)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.34 (main) ([#42675](renovatebot/renovate#42675)) ([5251496](renovatebot/renovate@5251496))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.22 (main) ([#42674](renovatebot/renovate#42674)) ([f69abc5](renovatebot/renovate@f69abc5))

---
##### [\`43.123.5\`](https://github.com/renovatebot/renovate/releases/tag/43.123.5)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.33 (main) ([#42673](renovatebot/renovate#42673)) ([d33efe2](renovatebot/renovate@d33efe2))

---
##### [\`43.123.4\`](https://github.com/renovatebot/renovate/releases/tag/43.123.4)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.32 (main) ([#42669](renovatebot/renovate#42669)) ([a14d85b](renovatebot/renovate@a14d85b))

---
##### [\`43.123.3\`](https://github.com/renovatebot/renovate/releases/tag/43.123.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.31 (main) ([#42668](renovatebot/renovate#42668)) ([7d2c1ac](renovatebot/renovate@7d2c1ac))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.21 (main) ([#42667](renovatebot/renovate#42667)) ([f891066](renovatebot/renovate@f891066))

---
##### [\`43.123.2\`](renovatebot/renovate@43.123.1...43.123.2)


---
##### [\`43.123.1\`](https://github.com/renovatebot/renovate/releases/tag/43.123.1)

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.22 (main) ([#42658](renovatebot/renovate#42658)) ([9e33c20](renovatebot/renovate@9e33c20))

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.6 (main) ([#42657](renovatebot/renovate#42657)) ([80146b2](renovatebot/renovate@80146b2))

##### Continuous Integration

- auto-label `needs-discussion` on externally-raised Issues ([#42656](renovatebot/renovate#42656)) ([6a0e718](renovatebot/renovate@6a0e718))

---
##### [\`43.123.0\`](https://github.com/renovatebot/renovate/releases/tag/43.123.0)

##### Features

- add XcodeGen manager for Swift package dependencies in project.yml files ([#41889](renovatebot/renovate#41889)) ([0ff55d2](renovatebot/renovate@0ff55d2))
- **presets:** add `BUN_CONFIG_MAX_HTTP_REQUESTS` to safe global env ([#41350](renovatebot/renovate#41350)) ([1316fd7](renovatebot/renovate@1316fd7))
- **presets:** add changelogUrl link for Forgejo and Gitea digest updates ([#41786](renovatebot/renovate#41786)) ([0f9a516](renovatebot/renovate@0f9a516))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.21 (main) ([#42654](renovatebot/renovate#42654)) ([3891a11](renovatebot/renovate@3891a11))

##### Code Refactoring

- **terraform-module:** replace interfaces with zod schemas and inline fixtures ([#42399](renovatebot/renovate#42399)) ([914c55b](renovatebot/renovate@914c55b))

---
##### [\`43.122.0\`](https://github.com/renovatebot/renovate/releases/tag/43.122.0)

##### Features

- **manager/ant:** support custom `registryUrls` ([#42641](renovatebot/renovate#42641)) ([28ab04b](renovatebot/renovate@28ab04b))

##### Documentation

- use single quotes ([#42648](renovatebot/renovate#42648)) ([3c8521e](renovatebot/renovate@3c8521e))

##### Miscellaneous Chores

- **deps:** update github/codeql-action action to v4.35.2 (main) ([#42650](renovatebot/renovate#42650)) ([40100d0](renovatebot/renovate@40100d0))

---
##### [\`43.121.0\`](https://github.com/renovatebot/renovate/releases/tag/43.121.0)

##### Features

- **manager/ant:** add `coords=` attribute syntax support ([#42635](renovatebot/renovate#42635)) ([15c8ab5](renovatebot/renovate@15c8ab5))
- **terraform-provider:** use registry v2 API for release timestamps ([#42340](renovatebot/renovate#42340)) ([f421075](renovatebot/renovate@f421075))

##### Bug Fixes

- **git:** don't pass extraCloneOpts to ls-remote when local clone exists ([#42491](renovatebot/renovate#42491)) ([70fa962](renovatebot/renovate@70fa962))
- **gitlab:** loosen re-approve constraints during updatePr ([#42528](renovatebot/renovate#42528)) ([7b4f75b](renovatebot/renovate@7b4f75b))

##### Documentation

- correct name of `osv-offline` ([#42486](renovatebot/renovate#42486)) ([0fbc124](renovatebot/renovate@0fbc124))
- **minimum-release-age:** add reference to cooldowns ([#42640](renovatebot/renovate#42640)) ([25e47df](renovatebot/renovate@25e47df))

##### Miscellaneous Chores

- **deps:** update ghcr.io/zizmorcore/zizmor docker tag to v1.24.1 (main) ([#42642](renovatebot/renovate#42642)) ([61947e2](renovatebot/renovate@61947e2))

##### Code Refactoring

- **cache:** Remove obsolete compress flag ([#42563](renovatebot/renovate#42563)) ([f49de7a](renovatebot/renovate@f49de7a))

##### Build System

- **deps:** update dependency [@renovatebot/osv-offline](https://github.com/renovatebot/osv-offline) to v2.5.0 (main) ([#42645](renovatebot/renovate#42645)) ([4cb4030](renovatebot/renovate@4cb4030))

---
##### [\`43.120.2\`](https://github.com/renovatebot/renovate/releases/tag/43.120.2)

##### Bug Fixes

- **vulnerability:** remove matchFileNames restriction from GitHub vulnerability alerts ([#42636](renovatebot/renovate#42636)) ([593a2b1](renovatebot/renovate@593a2b1))

---
##### [\`43.120.1\`](https://github.com/renovatebot/renovate/releases/tag/43.120.1)

##### Bug Fixes

- **logger:** log file using pretty format not working ([#42319](renovatebot/renovate#42319)) ([1c886e0](renovatebot/renovate@1c886e0))

---
##### [\`43.120.0\`](https://github.com/renovatebot/renovate/releases/tag/43.120.0)

##### Features

- **vulnerability:** add severity and CVSS details to GitHub Dependabot alerts ([#42568](renovatebot/renovate#42568)) ([1e906e8](renovatebot/renovate@1e906e8))

##### Miscellaneous Chores

- **instrumentation:** add timing statistics for `getReleases` ([#42523](renovatebot/renovate#42523)) ([f635ae2](renovatebot/renovate@f635ae2))

---
##### [\`43.119.0\`](https://github.com/renovatebot/renovate/releases/tag/43.119.0)

##### Features

- **manager/ant:** add <import> file traversal ([#42631](renovatebot/renovate#42631)) ([76dcc66](renovatebot/renovate@76dcc66))

---
##### [\`43.118.2\`](https://github.com/renovatebot/renovate/releases/tag/43.118.2)

##### Bug Fixes

- **util/git:** allow setting `config.hooksPath` ([#42630](renovatebot/renovate#42630)) ([33c1bf5](renovatebot/renovate@33c1bf5)), closes [#42588](renovatebot/renovate#42588) [#42628](https://github.com/renovatebot/renovate/issues/42628)

---
##### [\`43.118.1\`](https://github.com/renovatebot/renovate/releases/tag/43.118.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.30 (main) ([#42629](renovatebot/renovate#42629)) ([015264e](renovatebot/renovate@015264e))

##### Miscellaneous Chores

- expose known environment variables ([#42201](renovatebot/renovate#42201)) ([b39b50f](renovatebot/renovate@b39b50f))

---
##### [\`43.118.0\`](https://github.com/renovatebot/renovate/releases/tag/43.118.0)

##### Features

- **manager/ant:** add property resolution and .properties file support ([#42175](renovatebot/renovate#42175)) ([ef8e6c8](renovatebot/renovate@ef8e6c8))

---
##### [\`43.117.0\`](https://github.com/renovatebot/renovate/releases/tag/43.117.0)

##### Features

- **bitbucket-pipelines:** update file patterns to support shared configs ([#41704](renovatebot/renovate#41704)) ([53bd796](renovatebot/renovate@53bd796))
- **cache:** add a in-memory expiry map to package file cache ([#42531](renovatebot/renovate#42531)) ([5184761](renovatebot/renovate@5184761))

---
##### [\`43.116.1\`](https://github.com/renovatebot/renovate/releases/tag/43.116.1)

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.5 (main) ([#42626](renovatebot/renovate#42626)) ([7363aee](renovatebot/renovate@7363aee))

---
##### [\`43.116.0\`](https://github.com/renovatebot/renovate/releases/tag/43.116.0)

##### Features

- **osv:** mark malicious packages with `skipReason`s ([#42510](renovatebot/renovate#42510)) ([01f2479](renovatebot/renovate@01f2479))

##### Miscellaneous Chores

- **deps:** update dependency typescript to v6 (main) ([#42615](renovatebot/renovate#42615)) ([d9417b0](renovatebot/renovate@d9417b0))

##### Code Refactoring

- move `requireConfig` to `InheritConfig` ([#41385](renovatebot/renovate#41385)) ([36f9d4a](renovatebot/renovate@36f9d4a))

---
##### [\`43.115.1\`](https://github.com/renovatebot/renovate/releases/tag/43.115.1)

##### Miscellaneous Chores

- **deps:** update actions/github-script action to v9 (main) ([#42613](renovatebot/renovate#42613)) ([1fac64b](renovatebot/renovate@1fac64b))
- **deps:** update actions/upload-pages-artifact action to v5 (main) ([#42614](renovatebot/renovate#42614)) ([cf79688](renovatebot/renovate@cf79688))
- **deps:** update dependency vitest-mock-extended to v4 (main) ([#42616](renovatebot/renovate#42616)) ([1afe9a7](renovatebot/renovate@1afe9a7))
- **deps:** update nick-fields/retry action to v4 (main) ([#42617](renovatebot/renovate#42617)) ([7eee338](renovatebot/renovate@7eee338))
- **deps:** update slackapi/slack-github-action action to v3 (main) ([#42619](renovatebot/renovate#42619)) ([d2d8297](renovatebot/renovate@d2d8297))
- **deps:** update vitest monorepo to v4.1.3 (main) ([#42623](renovatebot/renovate#42623)) ([6cf2410](renovatebot/renovate@6cf2410))
- drop obsolete tsconfig ([#42622](renovatebot/renovate#42622)) ([fcf1e20](renovatebot/renovate@fcf1e20))
- **renovate:** disable next branch ([#42620](renovatebot/renovate#42620)) ([d2abeb4](renovatebot/renovate@d2abeb4))
- **tsdown:** migrate config ([#42621](renovatebot/renovate#42621)) ([32964bd](renovatebot/renovate@32964bd))
- **types:** add `skipStage=enrichment` ([#42585](renovatebot/renovate#42585)) ([4faa847](renovatebot/renovate@4faa847))

##### Build System

- **deps:** update dependency p-queue to v9.1.2 (main) ([#42624](renovatebot/renovate#42624)) ([19baa76](renovatebot/renovate@19baa76))
- **deps:** update dependency simple-git to v3.35.2 (main) ([#42588](renovatebot/renovate#42588)) ([a7b5b48](renovatebot/renovate@a7b5b48))

---
##### [\`43.115.0\`](https://github.com/renovatebot/renovate/releases/tag/43.115.0)

##### Features

- **packageRules:** bumpVersions.type sync ([#42540](renovatebot/renovate#42540)) ([0389869](renovatebot/renovate@0389869))

---
##### [\`43.114.0\`](https://github.com/renovatebot/renovate/releases/tag/43.114.0)

##### Features

- **manager/mise:** add support for openfga ([#42611](renovatebot/renovate#42611)) ([203c5fe](renovatebot/renovate@203c5fe))

##### Miscellaneous Chores

- **deps:** update zizmorcore/zizmor-action action to v0.5.3 (main) ([#42607](renovatebot/renovate#42607)) ([c815d30](renovatebot/renovate@c815d30))
- **types:** add a strong type for `ToolName` and `ConstraintName` ([#42589](renovatebot/renovate#42589)) ([1044a80](renovatebot/renovate@1044a80)), closes [#41849](renovatebot/renovate#41849)

---
##### [\`43.113.0\`](https://github.com/renovatebot/renovate/releases/tag/43.113.0)

##### Features

- **sbt:** support anonymous objects and dotted symbols for version declaration ([#40699](renovatebot/renovate#40699)) ([ef3c964](renovatebot/renovate@ef3c964))

##### Bug Fixes

- **workers/repository:** don't include `skipReason`'d dependencies in flattened updates ([#42595](renovatebot/renovate#42595)) ([f8b4477](renovatebot/renovate@f8b4477)), closes [#42510](renovatebot/renovate#42510)

##### Miscellaneous Chores

- **deps:** update actions/cache action to v5.0.5 (main) ([#42598](renovatebot/renovate#42598)) ([a808338](renovatebot/renovate@a808338))
- **deps:** update containerbase/internal-tools action to v4.5.20 (main) ([#42602](renovatebot/renovate#42602)) ([d2131a7](renovatebot/renovate@d2131a7))
- **deps:** update dependency [@smithy/util-stream](https://github.com/smithy/util-stream) to v4.5.22 (main) ([#42603](renovatebot/renovate#42603)) ([81e51cb](renovatebot/renovate@81e51cb))

---
##### [\`43.112.1\`](https://github.com/renovatebot/renovate/releases/tag/43.112.1)

##### Bug Fixes

- **cache:** Improve SQLite cache error handling ([#42557](renovatebot/renovate#42557)) ([50a2bac](renovatebot/renovate@50a2bac))

##### Code Refactoring

- **dashboard:** align terminology with other sections ([#42354](renovatebot/renovate#42354)) ([27f0797](renovatebot/renovate@27f0797))

---
##### [\`43.112.0\`](https://github.com/renovatebot/renovate/releases/tag/43.112.0)

##### Features

- **cache:** Add `writeSchema` to Maven cache provider ([#42570](renovatebot/renovate#42570)) ([e33aa4c](renovatebot/renovate@e33aa4c))

##### Miscellaneous Chores

- **deps:** update dependency oxlint-tsgolint to v0.20.0 (main) ([#42593](renovatebot/renovate#42593)) ([d80881e](renovatebot/renovate@d80881e))

---
##### [\`43.111.3\`](https://github.com/renovatebot/renovate/releases/tag/43.111.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.29 (main) ([#42592](renovatebot/renovate#42592)) ([edc474a](renovatebot/renovate@edc474a))

##### Documentation

- add Renovate Operator as Kubernetes-native option ([#42506](renovatebot/renovate#42506)) ([91a7213](renovatebot/renovate@91a7213))

---
##### [\`43.111.2\`](https://github.com/renovatebot/renovate/releases/tag/43.111.2)

##### Bug Fixes

- **github-actions:** use correct datasource for Zizmor version ([#42587](renovatebot/renovate#42587)) ([ea1e60e](renovatebot/renovate@ea1e60e))

---
##### [\`43.111.1\`](https://github.com/renovatebot/renovate/releases/tag/43.111.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.28 (main) ([#42580](renovatebot/renovate#42580)) ([216fc99](renovatebot/renovate@216fc99))

##### Documentation

- update references to python to [`8428c32`](renovatebot/renovate@8428c32) (main) ([#42572](renovatebot/renovate#42572)) ([c549ff7](renovatebot/renovate@c549ff7))
- update references to renovatebot/github-action to v46.1.8 (main) ([#42573](renovatebot/renovate#42573)) ([da4e84e](renovatebot/renovate@da4e84e))
- update references to renovatebot/github-action to v46.1.9 (main) ([#42577](renovatebot/renovate#42577)) ([2870abe](renovatebot/renovate@2870abe))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.19 (main) ([#42574](renovatebot/renovate#42574)) ([f31e3d4](renovatebot/renovate@f31e3d4))
- **deps:** update dependency [@containerbase/istanbul-reports-html](https://github.com/containerbase/istanbul-reports-html) to v1.1.43 (main) ([#42575](renovatebot/renovate#42575)) ([7af9aed](renovatebot/renovate@7af9aed))
- **deps:** update dependency [@containerbase/semantic-release-pnpm](https://github.com/containerbase/semantic-release-pnpm) to v1.3.33 (main) ([#42576](renovatebot/renovate#42576)) ([3870e76](renovatebot/renovate@3870e76))
- **deps:** update dependency nock to v14.0.12 (main) ([#42571](renovatebot/renovate#42571)) ([81791bd](renovatebot/renovate@81791bd))
- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.20 (main) ([#42579](renovatebot/renovate#42579)) ([90a2429](renovatebot/renovate@90a2429))

---
##### [\`43.111.0\`](https://github.com/renovatebot/renovate/releases/tag/43.111.0)

##### Features

- **npm:** Trim response data before caching ([#42559](renovatebot/renovate#42559)) ([b359a1d](renovatebot/renovate@b359a1d))

##### Miscellaneous Chores

- **types:** allow `constraints` to be passed through to `getReleases` ([#42564](renovatebot/renovate#42564)) ([6238715](renovatebot/renovate@6238715))
renovate Bot added a commit to sdwilsh/ansible-playbooks that referenced this pull request Apr 17, 2026
##### [\`43.126.0\`](https://github.com/renovatebot/renovate/releases/tag/43.126.0)

##### Features

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.34.0 (main) ([#42697](renovatebot/renovate#42697)) ([4b61c70](renovatebot/renovate@4b61c70))

##### Miscellaneous Chores

- **deps:** update dependency node to v24.15.0 (main) ([#42695](renovatebot/renovate#42695)) ([dc90208](renovatebot/renovate@dc90208))

---
##### [\`43.125.1\`](https://github.com/renovatebot/renovate/releases/tag/43.125.1)

##### Bug Fixes

- **manager/github-actions:** override `versioning` for Actions with Immutable Tags ([#42690](renovatebot/renovate#42690)) ([1b0785b](renovatebot/renovate@1b0785b))

---
##### [\`43.125.0\`](https://github.com/renovatebot/renovate/releases/tag/43.125.0)

##### Features

- **replacements:** migrate users to astral/setup-uv v8 ([#42683](renovatebot/renovate#42683)) ([f5859c2](renovatebot/renovate@f5859c2))

---
##### [\`43.124.1\`](https://github.com/renovatebot/renovate/releases/tag/43.124.1)

##### Bug Fixes

- **docker:** only set `replaceString` if requested ([#42649](renovatebot/renovate#42649)) ([f6d4106](renovatebot/renovate@f6d4106))

---
##### [\`43.124.0\`](https://github.com/renovatebot/renovate/releases/tag/43.124.0)

##### Features

- **manager/github-actions:** use `semver-partial` as default versioning ([#42685](renovatebot/renovate#42685)) ([da04b8e](renovatebot/renovate@da04b8e)), closes [#42331](renovatebot/renovate#42331)

##### Documentation

- fix link in vulnerabilityAlerts docs ([#42680](renovatebot/renovate#42680)) ([b0fd397](renovatebot/renovate@b0fd397))

##### Continuous Integration

- **auto-prs:** handle draft PRs better ([#42686](renovatebot/renovate#42686)) ([0a86cc5](renovatebot/renovate@0a86cc5))

---
##### [\`43.123.8\`](https://github.com/renovatebot/renovate/releases/tag/43.123.8)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.35 (main) ([#42681](renovatebot/renovate#42681)) ([4b597ec](renovatebot/renovate@4b597ec))
- **package-rules:** correctly merge `force.enabled` ([#42679](renovatebot/renovate#42679)) ([ae22250](renovatebot/renovate@ae22250)), closes [#42666](renovatebot/renovate#42666)

##### Tests

- **git:** test failing when no git author is configured ([#42676](renovatebot/renovate#42676)) ([f9bddb9](renovatebot/renovate@f9bddb9))

---
##### [\`43.123.7\`](https://github.com/renovatebot/renovate/releases/tag/43.123.7)

##### Miscellaneous Chores

- **deps:** update vitest monorepo to v4.1.4 (main) ([#42677](renovatebot/renovate#42677)) ([7907192](renovatebot/renovate@7907192))

##### Build System

- **deps:** update node.js to v24.15.0 (main) ([#42678](renovatebot/renovate#42678)) ([a40a0f0](renovatebot/renovate@a40a0f0))

---
##### [\`43.123.6\`](https://github.com/renovatebot/renovate/releases/tag/43.123.6)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.34 (main) ([#42675](renovatebot/renovate#42675)) ([5251496](renovatebot/renovate@5251496))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.22 (main) ([#42674](renovatebot/renovate#42674)) ([f69abc5](renovatebot/renovate@f69abc5))

---
##### [\`43.123.5\`](https://github.com/renovatebot/renovate/releases/tag/43.123.5)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.33 (main) ([#42673](renovatebot/renovate#42673)) ([d33efe2](renovatebot/renovate@d33efe2))

---
##### [\`43.123.4\`](https://github.com/renovatebot/renovate/releases/tag/43.123.4)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.32 (main) ([#42669](renovatebot/renovate#42669)) ([a14d85b](renovatebot/renovate@a14d85b))

---
##### [\`43.123.3\`](https://github.com/renovatebot/renovate/releases/tag/43.123.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.31 (main) ([#42668](renovatebot/renovate#42668)) ([7d2c1ac](renovatebot/renovate@7d2c1ac))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.21 (main) ([#42667](renovatebot/renovate#42667)) ([f891066](renovatebot/renovate@f891066))

---
##### [\`43.123.2\`](renovatebot/renovate@43.123.1...43.123.2)


---
##### [\`43.123.1\`](https://github.com/renovatebot/renovate/releases/tag/43.123.1)

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.22 (main) ([#42658](renovatebot/renovate#42658)) ([9e33c20](renovatebot/renovate@9e33c20))

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.6 (main) ([#42657](renovatebot/renovate#42657)) ([80146b2](renovatebot/renovate@80146b2))

##### Continuous Integration

- auto-label `needs-discussion` on externally-raised Issues ([#42656](renovatebot/renovate#42656)) ([6a0e718](renovatebot/renovate@6a0e718))

---
##### [\`43.123.0\`](https://github.com/renovatebot/renovate/releases/tag/43.123.0)

##### Features

- add XcodeGen manager for Swift package dependencies in project.yml files ([#41889](renovatebot/renovate#41889)) ([0ff55d2](renovatebot/renovate@0ff55d2))
- **presets:** add `BUN_CONFIG_MAX_HTTP_REQUESTS` to safe global env ([#41350](renovatebot/renovate#41350)) ([1316fd7](renovatebot/renovate@1316fd7))
- **presets:** add changelogUrl link for Forgejo and Gitea digest updates ([#41786](renovatebot/renovate#41786)) ([0f9a516](renovatebot/renovate@0f9a516))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.21 (main) ([#42654](renovatebot/renovate#42654)) ([3891a11](renovatebot/renovate@3891a11))

##### Code Refactoring

- **terraform-module:** replace interfaces with zod schemas and inline fixtures ([#42399](renovatebot/renovate#42399)) ([914c55b](renovatebot/renovate@914c55b))

---
##### [\`43.122.0\`](https://github.com/renovatebot/renovate/releases/tag/43.122.0)

##### Features

- **manager/ant:** support custom `registryUrls` ([#42641](renovatebot/renovate#42641)) ([28ab04b](renovatebot/renovate@28ab04b))

##### Documentation

- use single quotes ([#42648](renovatebot/renovate#42648)) ([3c8521e](renovatebot/renovate@3c8521e))

##### Miscellaneous Chores

- **deps:** update github/codeql-action action to v4.35.2 (main) ([#42650](renovatebot/renovate#42650)) ([40100d0](renovatebot/renovate@40100d0))

---
##### [\`43.121.0\`](https://github.com/renovatebot/renovate/releases/tag/43.121.0)

##### Features

- **manager/ant:** add `coords=` attribute syntax support ([#42635](renovatebot/renovate#42635)) ([15c8ab5](renovatebot/renovate@15c8ab5))
- **terraform-provider:** use registry v2 API for release timestamps ([#42340](renovatebot/renovate#42340)) ([f421075](renovatebot/renovate@f421075))

##### Bug Fixes

- **git:** don't pass extraCloneOpts to ls-remote when local clone exists ([#42491](renovatebot/renovate#42491)) ([70fa962](renovatebot/renovate@70fa962))
- **gitlab:** loosen re-approve constraints during updatePr ([#42528](renovatebot/renovate#42528)) ([7b4f75b](renovatebot/renovate@7b4f75b))

##### Documentation

- correct name of `osv-offline` ([#42486](renovatebot/renovate#42486)) ([0fbc124](renovatebot/renovate@0fbc124))
- **minimum-release-age:** add reference to cooldowns ([#42640](renovatebot/renovate#42640)) ([25e47df](renovatebot/renovate@25e47df))

##### Miscellaneous Chores

- **deps:** update ghcr.io/zizmorcore/zizmor docker tag to v1.24.1 (main) ([#42642](renovatebot/renovate#42642)) ([61947e2](renovatebot/renovate@61947e2))

##### Code Refactoring

- **cache:** Remove obsolete compress flag ([#42563](renovatebot/renovate#42563)) ([f49de7a](renovatebot/renovate@f49de7a))

##### Build System

- **deps:** update dependency [@renovatebot/osv-offline](https://github.com/renovatebot/osv-offline) to v2.5.0 (main) ([#42645](renovatebot/renovate#42645)) ([4cb4030](renovatebot/renovate@4cb4030))

---
##### [\`43.120.2\`](https://github.com/renovatebot/renovate/releases/tag/43.120.2)

##### Bug Fixes

- **vulnerability:** remove matchFileNames restriction from GitHub vulnerability alerts ([#42636](renovatebot/renovate#42636)) ([593a2b1](renovatebot/renovate@593a2b1))

---
##### [\`43.120.1\`](https://github.com/renovatebot/renovate/releases/tag/43.120.1)

##### Bug Fixes

- **logger:** log file using pretty format not working ([#42319](renovatebot/renovate#42319)) ([1c886e0](renovatebot/renovate@1c886e0))

---
##### [\`43.120.0\`](https://github.com/renovatebot/renovate/releases/tag/43.120.0)

##### Features

- **vulnerability:** add severity and CVSS details to GitHub Dependabot alerts ([#42568](renovatebot/renovate#42568)) ([1e906e8](renovatebot/renovate@1e906e8))

##### Miscellaneous Chores

- **instrumentation:** add timing statistics for `getReleases` ([#42523](renovatebot/renovate#42523)) ([f635ae2](renovatebot/renovate@f635ae2))

---
##### [\`43.119.0\`](https://github.com/renovatebot/renovate/releases/tag/43.119.0)

##### Features

- **manager/ant:** add <import> file traversal ([#42631](renovatebot/renovate#42631)) ([76dcc66](renovatebot/renovate@76dcc66))

---
##### [\`43.118.2\`](https://github.com/renovatebot/renovate/releases/tag/43.118.2)

##### Bug Fixes

- **util/git:** allow setting `config.hooksPath` ([#42630](renovatebot/renovate#42630)) ([33c1bf5](renovatebot/renovate@33c1bf5)), closes [#42588](renovatebot/renovate#42588) [#42628](https://github.com/renovatebot/renovate/issues/42628)

---
##### [\`43.118.1\`](https://github.com/renovatebot/renovate/releases/tag/43.118.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.30 (main) ([#42629](renovatebot/renovate#42629)) ([015264e](renovatebot/renovate@015264e))

##### Miscellaneous Chores

- expose known environment variables ([#42201](renovatebot/renovate#42201)) ([b39b50f](renovatebot/renovate@b39b50f))

---
##### [\`43.118.0\`](https://github.com/renovatebot/renovate/releases/tag/43.118.0)

##### Features

- **manager/ant:** add property resolution and .properties file support ([#42175](renovatebot/renovate#42175)) ([ef8e6c8](renovatebot/renovate@ef8e6c8))

---
##### [\`43.117.0\`](https://github.com/renovatebot/renovate/releases/tag/43.117.0)

##### Features

- **bitbucket-pipelines:** update file patterns to support shared configs ([#41704](renovatebot/renovate#41704)) ([53bd796](renovatebot/renovate@53bd796))
- **cache:** add a in-memory expiry map to package file cache ([#42531](renovatebot/renovate#42531)) ([5184761](renovatebot/renovate@5184761))

---
##### [\`43.116.1\`](https://github.com/renovatebot/renovate/releases/tag/43.116.1)

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.5 (main) ([#42626](renovatebot/renovate#42626)) ([7363aee](renovatebot/renovate@7363aee))

---
##### [\`43.116.0\`](https://github.com/renovatebot/renovate/releases/tag/43.116.0)

##### Features

- **osv:** mark malicious packages with `skipReason`s ([#42510](renovatebot/renovate#42510)) ([01f2479](renovatebot/renovate@01f2479))

##### Miscellaneous Chores

- **deps:** update dependency typescript to v6 (main) ([#42615](renovatebot/renovate#42615)) ([d9417b0](renovatebot/renovate@d9417b0))

##### Code Refactoring

- move `requireConfig` to `InheritConfig` ([#41385](renovatebot/renovate#41385)) ([36f9d4a](renovatebot/renovate@36f9d4a))

---
##### [\`43.115.1\`](https://github.com/renovatebot/renovate/releases/tag/43.115.1)

##### Miscellaneous Chores

- **deps:** update actions/github-script action to v9 (main) ([#42613](renovatebot/renovate#42613)) ([1fac64b](renovatebot/renovate@1fac64b))
- **deps:** update actions/upload-pages-artifact action to v5 (main) ([#42614](renovatebot/renovate#42614)) ([cf79688](renovatebot/renovate@cf79688))
- **deps:** update dependency vitest-mock-extended to v4 (main) ([#42616](renovatebot/renovate#42616)) ([1afe9a7](renovatebot/renovate@1afe9a7))
- **deps:** update nick-fields/retry action to v4 (main) ([#42617](renovatebot/renovate#42617)) ([7eee338](renovatebot/renovate@7eee338))
- **deps:** update slackapi/slack-github-action action to v3 (main) ([#42619](renovatebot/renovate#42619)) ([d2d8297](renovatebot/renovate@d2d8297))
- **deps:** update vitest monorepo to v4.1.3 (main) ([#42623](renovatebot/renovate#42623)) ([6cf2410](renovatebot/renovate@6cf2410))
- drop obsolete tsconfig ([#42622](renovatebot/renovate#42622)) ([fcf1e20](renovatebot/renovate@fcf1e20))
- **renovate:** disable next branch ([#42620](renovatebot/renovate#42620)) ([d2abeb4](renovatebot/renovate@d2abeb4))
- **tsdown:** migrate config ([#42621](renovatebot/renovate#42621)) ([32964bd](renovatebot/renovate@32964bd))
- **types:** add `skipStage=enrichment` ([#42585](renovatebot/renovate#42585)) ([4faa847](renovatebot/renovate@4faa847))

##### Build System

- **deps:** update dependency p-queue to v9.1.2 (main) ([#42624](renovatebot/renovate#42624)) ([19baa76](renovatebot/renovate@19baa76))
- **deps:** update dependency simple-git to v3.35.2 (main) ([#42588](renovatebot/renovate#42588)) ([a7b5b48](renovatebot/renovate@a7b5b48))

---
##### [\`43.115.0\`](https://github.com/renovatebot/renovate/releases/tag/43.115.0)

##### Features

- **packageRules:** bumpVersions.type sync ([#42540](renovatebot/renovate#42540)) ([0389869](renovatebot/renovate@0389869))

---
##### [\`43.114.0\`](https://github.com/renovatebot/renovate/releases/tag/43.114.0)

##### Features

- **manager/mise:** add support for openfga ([#42611](renovatebot/renovate#42611)) ([203c5fe](renovatebot/renovate@203c5fe))

##### Miscellaneous Chores

- **deps:** update zizmorcore/zizmor-action action to v0.5.3 (main) ([#42607](renovatebot/renovate#42607)) ([c815d30](renovatebot/renovate@c815d30))
- **types:** add a strong type for `ToolName` and `ConstraintName` ([#42589](renovatebot/renovate#42589)) ([1044a80](renovatebot/renovate@1044a80)), closes [#41849](renovatebot/renovate#41849)

---
##### [\`43.113.0\`](https://github.com/renovatebot/renovate/releases/tag/43.113.0)

##### Features

- **sbt:** support anonymous objects and dotted symbols for version declaration ([#40699](renovatebot/renovate#40699)) ([ef3c964](renovatebot/renovate@ef3c964))

##### Bug Fixes

- **workers/repository:** don't include `skipReason`'d dependencies in flattened updates ([#42595](renovatebot/renovate#42595)) ([f8b4477](renovatebot/renovate@f8b4477)), closes [#42510](renovatebot/renovate#42510)

##### Miscellaneous Chores

- **deps:** update actions/cache action to v5.0.5 (main) ([#42598](renovatebot/renovate#42598)) ([a808338](renovatebot/renovate@a808338))
- **deps:** update containerbase/internal-tools action to v4.5.20 (main) ([#42602](renovatebot/renovate#42602)) ([d2131a7](renovatebot/renovate@d2131a7))
- **deps:** update dependency [@smithy/util-stream](https://github.com/smithy/util-stream) to v4.5.22 (main) ([#42603](renovatebot/renovate#42603)) ([81e51cb](renovatebot/renovate@81e51cb))

---
##### [\`43.112.1\`](https://github.com/renovatebot/renovate/releases/tag/43.112.1)

##### Bug Fixes

- **cache:** Improve SQLite cache error handling ([#42557](renovatebot/renovate#42557)) ([50a2bac](renovatebot/renovate@50a2bac))

##### Code Refactoring

- **dashboard:** align terminology with other sections ([#42354](renovatebot/renovate#42354)) ([27f0797](renovatebot/renovate@27f0797))

---
##### [\`43.112.0\`](https://github.com/renovatebot/renovate/releases/tag/43.112.0)

##### Features

- **cache:** Add `writeSchema` to Maven cache provider ([#42570](renovatebot/renovate#42570)) ([e33aa4c](renovatebot/renovate@e33aa4c))

##### Miscellaneous Chores

- **deps:** update dependency oxlint-tsgolint to v0.20.0 (main) ([#42593](renovatebot/renovate#42593)) ([d80881e](renovatebot/renovate@d80881e))

---
##### [\`43.111.3\`](https://github.com/renovatebot/renovate/releases/tag/43.111.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.29 (main) ([#42592](renovatebot/renovate#42592)) ([edc474a](renovatebot/renovate@edc474a))

##### Documentation

- add Renovate Operator as Kubernetes-native option ([#42506](renovatebot/renovate#42506)) ([91a7213](renovatebot/renovate@91a7213))

---
##### [\`43.111.2\`](https://github.com/renovatebot/renovate/releases/tag/43.111.2)

##### Bug Fixes

- **github-actions:** use correct datasource for Zizmor version ([#42587](renovatebot/renovate#42587)) ([ea1e60e](renovatebot/renovate@ea1e60e))

---
##### [\`43.111.1\`](https://github.com/renovatebot/renovate/releases/tag/43.111.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.28 (main) ([#42580](renovatebot/renovate#42580)) ([216fc99](renovatebot/renovate@216fc99))

##### Documentation

- update references to python to [`8428c32`](renovatebot/renovate@8428c32) (main) ([#42572](renovatebot/renovate#42572)) ([c549ff7](renovatebot/renovate@c549ff7))
- update references to renovatebot/github-action to v46.1.8 (main) ([#42573](renovatebot/renovate#42573)) ([da4e84e](renovatebot/renovate@da4e84e))
- update references to renovatebot/github-action to v46.1.9 (main) ([#42577](renovatebot/renovate#42577)) ([2870abe](renovatebot/renovate@2870abe))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.19 (main) ([#42574](renovatebot/renovate#42574)) ([f31e3d4](renovatebot/renovate@f31e3d4))
- **deps:** update dependency [@containerbase/istanbul-reports-html](https://github.com/containerbase/istanbul-reports-html) to v1.1.43 (main) ([#42575](renovatebot/renovate#42575)) ([7af9aed](renovatebot/renovate@7af9aed))
- **deps:** update dependency [@containerbase/semantic-release-pnpm](https://github.com/containerbase/semantic-release-pnpm) to v1.3.33 (main) ([#42576](renovatebot/renovate#42576)) ([3870e76](renovatebot/renovate@3870e76))
- **deps:** update dependency nock to v14.0.12 (main) ([#42571](renovatebot/renovate#42571)) ([81791bd](renovatebot/renovate@81791bd))
- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.20 (main) ([#42579](renovatebot/renovate#42579)) ([90a2429](renovatebot/renovate@90a2429))

---
##### [\`43.111.0\`](https://github.com/renovatebot/renovate/releases/tag/43.111.0)

##### Features

- **npm:** Trim response data before caching ([#42559](renovatebot/renovate#42559)) ([b359a1d](renovatebot/renovate@b359a1d))

##### Miscellaneous Chores

- **types:** allow `constraints` to be passed through to `getReleases` ([#42564](renovatebot/renovate#42564)) ([6238715](renovatebot/renovate@6238715))
renovate Bot added a commit to sdwilsh/ansible-playbooks that referenced this pull request Apr 17, 2026
##### [\`43.126.0\`](https://github.com/renovatebot/renovate/releases/tag/43.126.0)

##### Features

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.34.0 (main) ([#42697](renovatebot/renovate#42697)) ([4b61c70](renovatebot/renovate@4b61c70))

##### Miscellaneous Chores

- **deps:** update dependency node to v24.15.0 (main) ([#42695](renovatebot/renovate#42695)) ([dc90208](renovatebot/renovate@dc90208))

---
##### [\`43.125.1\`](https://github.com/renovatebot/renovate/releases/tag/43.125.1)

##### Bug Fixes

- **manager/github-actions:** override `versioning` for Actions with Immutable Tags ([#42690](renovatebot/renovate#42690)) ([1b0785b](renovatebot/renovate@1b0785b))

---
##### [\`43.125.0\`](https://github.com/renovatebot/renovate/releases/tag/43.125.0)

##### Features

- **replacements:** migrate users to astral/setup-uv v8 ([#42683](renovatebot/renovate#42683)) ([f5859c2](renovatebot/renovate@f5859c2))

---
##### [\`43.124.1\`](https://github.com/renovatebot/renovate/releases/tag/43.124.1)

##### Bug Fixes

- **docker:** only set `replaceString` if requested ([#42649](renovatebot/renovate#42649)) ([f6d4106](renovatebot/renovate@f6d4106))

---
##### [\`43.124.0\`](https://github.com/renovatebot/renovate/releases/tag/43.124.0)

##### Features

- **manager/github-actions:** use `semver-partial` as default versioning ([#42685](renovatebot/renovate#42685)) ([da04b8e](renovatebot/renovate@da04b8e)), closes [#42331](renovatebot/renovate#42331)

##### Documentation

- fix link in vulnerabilityAlerts docs ([#42680](renovatebot/renovate#42680)) ([b0fd397](renovatebot/renovate@b0fd397))

##### Continuous Integration

- **auto-prs:** handle draft PRs better ([#42686](renovatebot/renovate#42686)) ([0a86cc5](renovatebot/renovate@0a86cc5))

---
##### [\`43.123.8\`](https://github.com/renovatebot/renovate/releases/tag/43.123.8)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.35 (main) ([#42681](renovatebot/renovate#42681)) ([4b597ec](renovatebot/renovate@4b597ec))
- **package-rules:** correctly merge `force.enabled` ([#42679](renovatebot/renovate#42679)) ([ae22250](renovatebot/renovate@ae22250)), closes [#42666](renovatebot/renovate#42666)

##### Tests

- **git:** test failing when no git author is configured ([#42676](renovatebot/renovate#42676)) ([f9bddb9](renovatebot/renovate@f9bddb9))

---
##### [\`43.123.7\`](https://github.com/renovatebot/renovate/releases/tag/43.123.7)

##### Miscellaneous Chores

- **deps:** update vitest monorepo to v4.1.4 (main) ([#42677](renovatebot/renovate#42677)) ([7907192](renovatebot/renovate@7907192))

##### Build System

- **deps:** update node.js to v24.15.0 (main) ([#42678](renovatebot/renovate#42678)) ([a40a0f0](renovatebot/renovate@a40a0f0))

---
##### [\`43.123.6\`](https://github.com/renovatebot/renovate/releases/tag/43.123.6)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.34 (main) ([#42675](renovatebot/renovate#42675)) ([5251496](renovatebot/renovate@5251496))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.22 (main) ([#42674](renovatebot/renovate#42674)) ([f69abc5](renovatebot/renovate@f69abc5))

---
##### [\`43.123.5\`](https://github.com/renovatebot/renovate/releases/tag/43.123.5)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.33 (main) ([#42673](renovatebot/renovate#42673)) ([d33efe2](renovatebot/renovate@d33efe2))

---
##### [\`43.123.4\`](https://github.com/renovatebot/renovate/releases/tag/43.123.4)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.32 (main) ([#42669](renovatebot/renovate#42669)) ([a14d85b](renovatebot/renovate@a14d85b))

---
##### [\`43.123.3\`](https://github.com/renovatebot/renovate/releases/tag/43.123.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.31 (main) ([#42668](renovatebot/renovate#42668)) ([7d2c1ac](renovatebot/renovate@7d2c1ac))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.21 (main) ([#42667](renovatebot/renovate#42667)) ([f891066](renovatebot/renovate@f891066))

---
##### [\`43.123.2\`](renovatebot/renovate@43.123.1...43.123.2)


---
##### [\`43.123.1\`](https://github.com/renovatebot/renovate/releases/tag/43.123.1)

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.22 (main) ([#42658](renovatebot/renovate#42658)) ([9e33c20](renovatebot/renovate@9e33c20))

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.6 (main) ([#42657](renovatebot/renovate#42657)) ([80146b2](renovatebot/renovate@80146b2))

##### Continuous Integration

- auto-label `needs-discussion` on externally-raised Issues ([#42656](renovatebot/renovate#42656)) ([6a0e718](renovatebot/renovate@6a0e718))

---
##### [\`43.123.0\`](https://github.com/renovatebot/renovate/releases/tag/43.123.0)

##### Features

- add XcodeGen manager for Swift package dependencies in project.yml files ([#41889](renovatebot/renovate#41889)) ([0ff55d2](renovatebot/renovate@0ff55d2))
- **presets:** add `BUN_CONFIG_MAX_HTTP_REQUESTS` to safe global env ([#41350](renovatebot/renovate#41350)) ([1316fd7](renovatebot/renovate@1316fd7))
- **presets:** add changelogUrl link for Forgejo and Gitea digest updates ([#41786](renovatebot/renovate#41786)) ([0f9a516](renovatebot/renovate@0f9a516))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.21 (main) ([#42654](renovatebot/renovate#42654)) ([3891a11](renovatebot/renovate@3891a11))

##### Code Refactoring

- **terraform-module:** replace interfaces with zod schemas and inline fixtures ([#42399](renovatebot/renovate#42399)) ([914c55b](renovatebot/renovate@914c55b))

---
##### [\`43.122.0\`](https://github.com/renovatebot/renovate/releases/tag/43.122.0)

##### Features

- **manager/ant:** support custom `registryUrls` ([#42641](renovatebot/renovate#42641)) ([28ab04b](renovatebot/renovate@28ab04b))

##### Documentation

- use single quotes ([#42648](renovatebot/renovate#42648)) ([3c8521e](renovatebot/renovate@3c8521e))

##### Miscellaneous Chores

- **deps:** update github/codeql-action action to v4.35.2 (main) ([#42650](renovatebot/renovate#42650)) ([40100d0](renovatebot/renovate@40100d0))

---
##### [\`43.121.0\`](https://github.com/renovatebot/renovate/releases/tag/43.121.0)

##### Features

- **manager/ant:** add `coords=` attribute syntax support ([#42635](renovatebot/renovate#42635)) ([15c8ab5](renovatebot/renovate@15c8ab5))
- **terraform-provider:** use registry v2 API for release timestamps ([#42340](renovatebot/renovate#42340)) ([f421075](renovatebot/renovate@f421075))

##### Bug Fixes

- **git:** don't pass extraCloneOpts to ls-remote when local clone exists ([#42491](renovatebot/renovate#42491)) ([70fa962](renovatebot/renovate@70fa962))
- **gitlab:** loosen re-approve constraints during updatePr ([#42528](renovatebot/renovate#42528)) ([7b4f75b](renovatebot/renovate@7b4f75b))

##### Documentation

- correct name of `osv-offline` ([#42486](renovatebot/renovate#42486)) ([0fbc124](renovatebot/renovate@0fbc124))
- **minimum-release-age:** add reference to cooldowns ([#42640](renovatebot/renovate#42640)) ([25e47df](renovatebot/renovate@25e47df))

##### Miscellaneous Chores

- **deps:** update ghcr.io/zizmorcore/zizmor docker tag to v1.24.1 (main) ([#42642](renovatebot/renovate#42642)) ([61947e2](renovatebot/renovate@61947e2))

##### Code Refactoring

- **cache:** Remove obsolete compress flag ([#42563](renovatebot/renovate#42563)) ([f49de7a](renovatebot/renovate@f49de7a))

##### Build System

- **deps:** update dependency [@renovatebot/osv-offline](https://github.com/renovatebot/osv-offline) to v2.5.0 (main) ([#42645](renovatebot/renovate#42645)) ([4cb4030](renovatebot/renovate@4cb4030))

---
##### [\`43.120.2\`](https://github.com/renovatebot/renovate/releases/tag/43.120.2)

##### Bug Fixes

- **vulnerability:** remove matchFileNames restriction from GitHub vulnerability alerts ([#42636](renovatebot/renovate#42636)) ([593a2b1](renovatebot/renovate@593a2b1))

---
##### [\`43.120.1\`](https://github.com/renovatebot/renovate/releases/tag/43.120.1)

##### Bug Fixes

- **logger:** log file using pretty format not working ([#42319](renovatebot/renovate#42319)) ([1c886e0](renovatebot/renovate@1c886e0))

---
##### [\`43.120.0\`](https://github.com/renovatebot/renovate/releases/tag/43.120.0)

##### Features

- **vulnerability:** add severity and CVSS details to GitHub Dependabot alerts ([#42568](renovatebot/renovate#42568)) ([1e906e8](renovatebot/renovate@1e906e8))

##### Miscellaneous Chores

- **instrumentation:** add timing statistics for `getReleases` ([#42523](renovatebot/renovate#42523)) ([f635ae2](renovatebot/renovate@f635ae2))

---
##### [\`43.119.0\`](https://github.com/renovatebot/renovate/releases/tag/43.119.0)

##### Features

- **manager/ant:** add <import> file traversal ([#42631](renovatebot/renovate#42631)) ([76dcc66](renovatebot/renovate@76dcc66))

---
##### [\`43.118.2\`](https://github.com/renovatebot/renovate/releases/tag/43.118.2)

##### Bug Fixes

- **util/git:** allow setting `config.hooksPath` ([#42630](renovatebot/renovate#42630)) ([33c1bf5](renovatebot/renovate@33c1bf5)), closes [#42588](renovatebot/renovate#42588) [#42628](https://github.com/renovatebot/renovate/issues/42628)

---
##### [\`43.118.1\`](https://github.com/renovatebot/renovate/releases/tag/43.118.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.30 (main) ([#42629](renovatebot/renovate#42629)) ([015264e](renovatebot/renovate@015264e))

##### Miscellaneous Chores

- expose known environment variables ([#42201](renovatebot/renovate#42201)) ([b39b50f](renovatebot/renovate@b39b50f))

---
##### [\`43.118.0\`](https://github.com/renovatebot/renovate/releases/tag/43.118.0)

##### Features

- **manager/ant:** add property resolution and .properties file support ([#42175](renovatebot/renovate#42175)) ([ef8e6c8](renovatebot/renovate@ef8e6c8))

---
##### [\`43.117.0\`](https://github.com/renovatebot/renovate/releases/tag/43.117.0)

##### Features

- **bitbucket-pipelines:** update file patterns to support shared configs ([#41704](renovatebot/renovate#41704)) ([53bd796](renovatebot/renovate@53bd796))
- **cache:** add a in-memory expiry map to package file cache ([#42531](renovatebot/renovate#42531)) ([5184761](renovatebot/renovate@5184761))

---
##### [\`43.116.1\`](https://github.com/renovatebot/renovate/releases/tag/43.116.1)

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.5 (main) ([#42626](renovatebot/renovate#42626)) ([7363aee](renovatebot/renovate@7363aee))

---
##### [\`43.116.0\`](https://github.com/renovatebot/renovate/releases/tag/43.116.0)

##### Features

- **osv:** mark malicious packages with `skipReason`s ([#42510](renovatebot/renovate#42510)) ([01f2479](renovatebot/renovate@01f2479))

##### Miscellaneous Chores

- **deps:** update dependency typescript to v6 (main) ([#42615](renovatebot/renovate#42615)) ([d9417b0](renovatebot/renovate@d9417b0))

##### Code Refactoring

- move `requireConfig` to `InheritConfig` ([#41385](renovatebot/renovate#41385)) ([36f9d4a](renovatebot/renovate@36f9d4a))

---
##### [\`43.115.1\`](https://github.com/renovatebot/renovate/releases/tag/43.115.1)

##### Miscellaneous Chores

- **deps:** update actions/github-script action to v9 (main) ([#42613](renovatebot/renovate#42613)) ([1fac64b](renovatebot/renovate@1fac64b))
- **deps:** update actions/upload-pages-artifact action to v5 (main) ([#42614](renovatebot/renovate#42614)) ([cf79688](renovatebot/renovate@cf79688))
- **deps:** update dependency vitest-mock-extended to v4 (main) ([#42616](renovatebot/renovate#42616)) ([1afe9a7](renovatebot/renovate@1afe9a7))
- **deps:** update nick-fields/retry action to v4 (main) ([#42617](renovatebot/renovate#42617)) ([7eee338](renovatebot/renovate@7eee338))
- **deps:** update slackapi/slack-github-action action to v3 (main) ([#42619](renovatebot/renovate#42619)) ([d2d8297](renovatebot/renovate@d2d8297))
- **deps:** update vitest monorepo to v4.1.3 (main) ([#42623](renovatebot/renovate#42623)) ([6cf2410](renovatebot/renovate@6cf2410))
- drop obsolete tsconfig ([#42622](renovatebot/renovate#42622)) ([fcf1e20](renovatebot/renovate@fcf1e20))
- **renovate:** disable next branch ([#42620](renovatebot/renovate#42620)) ([d2abeb4](renovatebot/renovate@d2abeb4))
- **tsdown:** migrate config ([#42621](renovatebot/renovate#42621)) ([32964bd](renovatebot/renovate@32964bd))
- **types:** add `skipStage=enrichment` ([#42585](renovatebot/renovate#42585)) ([4faa847](renovatebot/renovate@4faa847))

##### Build System

- **deps:** update dependency p-queue to v9.1.2 (main) ([#42624](renovatebot/renovate#42624)) ([19baa76](renovatebot/renovate@19baa76))
- **deps:** update dependency simple-git to v3.35.2 (main) ([#42588](renovatebot/renovate#42588)) ([a7b5b48](renovatebot/renovate@a7b5b48))

---
##### [\`43.115.0\`](https://github.com/renovatebot/renovate/releases/tag/43.115.0)

##### Features

- **packageRules:** bumpVersions.type sync ([#42540](renovatebot/renovate#42540)) ([0389869](renovatebot/renovate@0389869))

---
##### [\`43.114.0\`](https://github.com/renovatebot/renovate/releases/tag/43.114.0)

##### Features

- **manager/mise:** add support for openfga ([#42611](renovatebot/renovate#42611)) ([203c5fe](renovatebot/renovate@203c5fe))

##### Miscellaneous Chores

- **deps:** update zizmorcore/zizmor-action action to v0.5.3 (main) ([#42607](renovatebot/renovate#42607)) ([c815d30](renovatebot/renovate@c815d30))
- **types:** add a strong type for `ToolName` and `ConstraintName` ([#42589](renovatebot/renovate#42589)) ([1044a80](renovatebot/renovate@1044a80)), closes [#41849](renovatebot/renovate#41849)

---
##### [\`43.113.0\`](https://github.com/renovatebot/renovate/releases/tag/43.113.0)

##### Features

- **sbt:** support anonymous objects and dotted symbols for version declaration ([#40699](renovatebot/renovate#40699)) ([ef3c964](renovatebot/renovate@ef3c964))

##### Bug Fixes

- **workers/repository:** don't include `skipReason`'d dependencies in flattened updates ([#42595](renovatebot/renovate#42595)) ([f8b4477](renovatebot/renovate@f8b4477)), closes [#42510](renovatebot/renovate#42510)

##### Miscellaneous Chores

- **deps:** update actions/cache action to v5.0.5 (main) ([#42598](renovatebot/renovate#42598)) ([a808338](renovatebot/renovate@a808338))
- **deps:** update containerbase/internal-tools action to v4.5.20 (main) ([#42602](renovatebot/renovate#42602)) ([d2131a7](renovatebot/renovate@d2131a7))
- **deps:** update dependency [@smithy/util-stream](https://github.com/smithy/util-stream) to v4.5.22 (main) ([#42603](renovatebot/renovate#42603)) ([81e51cb](renovatebot/renovate@81e51cb))

---
##### [\`43.112.1\`](https://github.com/renovatebot/renovate/releases/tag/43.112.1)

##### Bug Fixes

- **cache:** Improve SQLite cache error handling ([#42557](renovatebot/renovate#42557)) ([50a2bac](renovatebot/renovate@50a2bac))

##### Code Refactoring

- **dashboard:** align terminology with other sections ([#42354](renovatebot/renovate#42354)) ([27f0797](renovatebot/renovate@27f0797))

---
##### [\`43.112.0\`](https://github.com/renovatebot/renovate/releases/tag/43.112.0)

##### Features

- **cache:** Add `writeSchema` to Maven cache provider ([#42570](renovatebot/renovate#42570)) ([e33aa4c](renovatebot/renovate@e33aa4c))

##### Miscellaneous Chores

- **deps:** update dependency oxlint-tsgolint to v0.20.0 (main) ([#42593](renovatebot/renovate#42593)) ([d80881e](renovatebot/renovate@d80881e))

---
##### [\`43.111.3\`](https://github.com/renovatebot/renovate/releases/tag/43.111.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.29 (main) ([#42592](renovatebot/renovate#42592)) ([edc474a](renovatebot/renovate@edc474a))

##### Documentation

- add Renovate Operator as Kubernetes-native option ([#42506](renovatebot/renovate#42506)) ([91a7213](renovatebot/renovate@91a7213))

---
##### [\`43.111.2\`](https://github.com/renovatebot/renovate/releases/tag/43.111.2)

##### Bug Fixes

- **github-actions:** use correct datasource for Zizmor version ([#42587](renovatebot/renovate#42587)) ([ea1e60e](renovatebot/renovate@ea1e60e))

---
##### [\`43.111.1\`](https://github.com/renovatebot/renovate/releases/tag/43.111.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.28 (main) ([#42580](renovatebot/renovate#42580)) ([216fc99](renovatebot/renovate@216fc99))

##### Documentation

- update references to python to [`8428c32`](renovatebot/renovate@8428c32) (main) ([#42572](renovatebot/renovate#42572)) ([c549ff7](renovatebot/renovate@c549ff7))
- update references to renovatebot/github-action to v46.1.8 (main) ([#42573](renovatebot/renovate#42573)) ([da4e84e](renovatebot/renovate@da4e84e))
- update references to renovatebot/github-action to v46.1.9 (main) ([#42577](renovatebot/renovate#42577)) ([2870abe](renovatebot/renovate@2870abe))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.19 (main) ([#42574](renovatebot/renovate#42574)) ([f31e3d4](renovatebot/renovate@f31e3d4))
- **deps:** update dependency [@containerbase/istanbul-reports-html](https://github.com/containerbase/istanbul-reports-html) to v1.1.43 (main) ([#42575](renovatebot/renovate#42575)) ([7af9aed](renovatebot/renovate@7af9aed))
- **deps:** update dependency [@containerbase/semantic-release-pnpm](https://github.com/containerbase/semantic-release-pnpm) to v1.3.33 (main) ([#42576](renovatebot/renovate#42576)) ([3870e76](renovatebot/renovate@3870e76))
- **deps:** update dependency nock to v14.0.12 (main) ([#42571](renovatebot/renovate#42571)) ([81791bd](renovatebot/renovate@81791bd))
- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.20 (main) ([#42579](renovatebot/renovate#42579)) ([90a2429](renovatebot/renovate@90a2429))

---
##### [\`43.111.0\`](https://github.com/renovatebot/renovate/releases/tag/43.111.0)

##### Features

- **npm:** Trim response data before caching ([#42559](renovatebot/renovate#42559)) ([b359a1d](renovatebot/renovate@b359a1d))

##### Miscellaneous Chores

- **types:** allow `constraints` to be passed through to `getReleases` ([#42564](renovatebot/renovate#42564)) ([6238715](renovatebot/renovate@6238715))
renovate Bot added a commit to sdwilsh/ansible-playbooks that referenced this pull request Apr 17, 2026
##### [\`43.126.0\`](https://github.com/renovatebot/renovate/releases/tag/43.126.0)

##### Features

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.34.0 (main) ([#42697](renovatebot/renovate#42697)) ([4b61c70](renovatebot/renovate@4b61c70))

##### Miscellaneous Chores

- **deps:** update dependency node to v24.15.0 (main) ([#42695](renovatebot/renovate#42695)) ([dc90208](renovatebot/renovate@dc90208))

---
##### [\`43.125.1\`](https://github.com/renovatebot/renovate/releases/tag/43.125.1)

##### Bug Fixes

- **manager/github-actions:** override `versioning` for Actions with Immutable Tags ([#42690](renovatebot/renovate#42690)) ([1b0785b](renovatebot/renovate@1b0785b))

---
##### [\`43.125.0\`](https://github.com/renovatebot/renovate/releases/tag/43.125.0)

##### Features

- **replacements:** migrate users to astral/setup-uv v8 ([#42683](renovatebot/renovate#42683)) ([f5859c2](renovatebot/renovate@f5859c2))

---
##### [\`43.124.1\`](https://github.com/renovatebot/renovate/releases/tag/43.124.1)

##### Bug Fixes

- **docker:** only set `replaceString` if requested ([#42649](renovatebot/renovate#42649)) ([f6d4106](renovatebot/renovate@f6d4106))

---
##### [\`43.124.0\`](https://github.com/renovatebot/renovate/releases/tag/43.124.0)

##### Features

- **manager/github-actions:** use `semver-partial` as default versioning ([#42685](renovatebot/renovate#42685)) ([da04b8e](renovatebot/renovate@da04b8e)), closes [#42331](renovatebot/renovate#42331)

##### Documentation

- fix link in vulnerabilityAlerts docs ([#42680](renovatebot/renovate#42680)) ([b0fd397](renovatebot/renovate@b0fd397))

##### Continuous Integration

- **auto-prs:** handle draft PRs better ([#42686](renovatebot/renovate#42686)) ([0a86cc5](renovatebot/renovate@0a86cc5))

---
##### [\`43.123.8\`](https://github.com/renovatebot/renovate/releases/tag/43.123.8)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.35 (main) ([#42681](renovatebot/renovate#42681)) ([4b597ec](renovatebot/renovate@4b597ec))
- **package-rules:** correctly merge `force.enabled` ([#42679](renovatebot/renovate#42679)) ([ae22250](renovatebot/renovate@ae22250)), closes [#42666](renovatebot/renovate#42666)

##### Tests

- **git:** test failing when no git author is configured ([#42676](renovatebot/renovate#42676)) ([f9bddb9](renovatebot/renovate@f9bddb9))

---
##### [\`43.123.7\`](https://github.com/renovatebot/renovate/releases/tag/43.123.7)

##### Miscellaneous Chores

- **deps:** update vitest monorepo to v4.1.4 (main) ([#42677](renovatebot/renovate#42677)) ([7907192](renovatebot/renovate@7907192))

##### Build System

- **deps:** update node.js to v24.15.0 (main) ([#42678](renovatebot/renovate#42678)) ([a40a0f0](renovatebot/renovate@a40a0f0))

---
##### [\`43.123.6\`](https://github.com/renovatebot/renovate/releases/tag/43.123.6)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.34 (main) ([#42675](renovatebot/renovate#42675)) ([5251496](renovatebot/renovate@5251496))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.22 (main) ([#42674](renovatebot/renovate#42674)) ([f69abc5](renovatebot/renovate@f69abc5))

---
##### [\`43.123.5\`](https://github.com/renovatebot/renovate/releases/tag/43.123.5)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.33 (main) ([#42673](renovatebot/renovate#42673)) ([d33efe2](renovatebot/renovate@d33efe2))

---
##### [\`43.123.4\`](https://github.com/renovatebot/renovate/releases/tag/43.123.4)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.32 (main) ([#42669](renovatebot/renovate#42669)) ([a14d85b](renovatebot/renovate@a14d85b))

---
##### [\`43.123.3\`](https://github.com/renovatebot/renovate/releases/tag/43.123.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.31 (main) ([#42668](renovatebot/renovate#42668)) ([7d2c1ac](renovatebot/renovate@7d2c1ac))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.21 (main) ([#42667](renovatebot/renovate#42667)) ([f891066](renovatebot/renovate@f891066))

---
##### [\`43.123.2\`](renovatebot/renovate@43.123.1...43.123.2)


---
##### [\`43.123.1\`](https://github.com/renovatebot/renovate/releases/tag/43.123.1)

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.22 (main) ([#42658](renovatebot/renovate#42658)) ([9e33c20](renovatebot/renovate@9e33c20))

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.6 (main) ([#42657](renovatebot/renovate#42657)) ([80146b2](renovatebot/renovate@80146b2))

##### Continuous Integration

- auto-label `needs-discussion` on externally-raised Issues ([#42656](renovatebot/renovate#42656)) ([6a0e718](renovatebot/renovate@6a0e718))

---
##### [\`43.123.0\`](https://github.com/renovatebot/renovate/releases/tag/43.123.0)

##### Features

- add XcodeGen manager for Swift package dependencies in project.yml files ([#41889](renovatebot/renovate#41889)) ([0ff55d2](renovatebot/renovate@0ff55d2))
- **presets:** add `BUN_CONFIG_MAX_HTTP_REQUESTS` to safe global env ([#41350](renovatebot/renovate#41350)) ([1316fd7](renovatebot/renovate@1316fd7))
- **presets:** add changelogUrl link for Forgejo and Gitea digest updates ([#41786](renovatebot/renovate#41786)) ([0f9a516](renovatebot/renovate@0f9a516))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.21 (main) ([#42654](renovatebot/renovate#42654)) ([3891a11](renovatebot/renovate@3891a11))

##### Code Refactoring

- **terraform-module:** replace interfaces with zod schemas and inline fixtures ([#42399](renovatebot/renovate#42399)) ([914c55b](renovatebot/renovate@914c55b))

---
##### [\`43.122.0\`](https://github.com/renovatebot/renovate/releases/tag/43.122.0)

##### Features

- **manager/ant:** support custom `registryUrls` ([#42641](renovatebot/renovate#42641)) ([28ab04b](renovatebot/renovate@28ab04b))

##### Documentation

- use single quotes ([#42648](renovatebot/renovate#42648)) ([3c8521e](renovatebot/renovate@3c8521e))

##### Miscellaneous Chores

- **deps:** update github/codeql-action action to v4.35.2 (main) ([#42650](renovatebot/renovate#42650)) ([40100d0](renovatebot/renovate@40100d0))

---
##### [\`43.121.0\`](https://github.com/renovatebot/renovate/releases/tag/43.121.0)

##### Features

- **manager/ant:** add `coords=` attribute syntax support ([#42635](renovatebot/renovate#42635)) ([15c8ab5](renovatebot/renovate@15c8ab5))
- **terraform-provider:** use registry v2 API for release timestamps ([#42340](renovatebot/renovate#42340)) ([f421075](renovatebot/renovate@f421075))

##### Bug Fixes

- **git:** don't pass extraCloneOpts to ls-remote when local clone exists ([#42491](renovatebot/renovate#42491)) ([70fa962](renovatebot/renovate@70fa962))
- **gitlab:** loosen re-approve constraints during updatePr ([#42528](renovatebot/renovate#42528)) ([7b4f75b](renovatebot/renovate@7b4f75b))

##### Documentation

- correct name of `osv-offline` ([#42486](renovatebot/renovate#42486)) ([0fbc124](renovatebot/renovate@0fbc124))
- **minimum-release-age:** add reference to cooldowns ([#42640](renovatebot/renovate#42640)) ([25e47df](renovatebot/renovate@25e47df))

##### Miscellaneous Chores

- **deps:** update ghcr.io/zizmorcore/zizmor docker tag to v1.24.1 (main) ([#42642](renovatebot/renovate#42642)) ([61947e2](renovatebot/renovate@61947e2))

##### Code Refactoring

- **cache:** Remove obsolete compress flag ([#42563](renovatebot/renovate#42563)) ([f49de7a](renovatebot/renovate@f49de7a))

##### Build System

- **deps:** update dependency [@renovatebot/osv-offline](https://github.com/renovatebot/osv-offline) to v2.5.0 (main) ([#42645](renovatebot/renovate#42645)) ([4cb4030](renovatebot/renovate@4cb4030))

---
##### [\`43.120.2\`](https://github.com/renovatebot/renovate/releases/tag/43.120.2)

##### Bug Fixes

- **vulnerability:** remove matchFileNames restriction from GitHub vulnerability alerts ([#42636](renovatebot/renovate#42636)) ([593a2b1](renovatebot/renovate@593a2b1))

---
##### [\`43.120.1\`](https://github.com/renovatebot/renovate/releases/tag/43.120.1)

##### Bug Fixes

- **logger:** log file using pretty format not working ([#42319](renovatebot/renovate#42319)) ([1c886e0](renovatebot/renovate@1c886e0))

---
##### [\`43.120.0\`](https://github.com/renovatebot/renovate/releases/tag/43.120.0)

##### Features

- **vulnerability:** add severity and CVSS details to GitHub Dependabot alerts ([#42568](renovatebot/renovate#42568)) ([1e906e8](renovatebot/renovate@1e906e8))

##### Miscellaneous Chores

- **instrumentation:** add timing statistics for `getReleases` ([#42523](renovatebot/renovate#42523)) ([f635ae2](renovatebot/renovate@f635ae2))

---
##### [\`43.119.0\`](https://github.com/renovatebot/renovate/releases/tag/43.119.0)

##### Features

- **manager/ant:** add <import> file traversal ([#42631](renovatebot/renovate#42631)) ([76dcc66](renovatebot/renovate@76dcc66))

---
##### [\`43.118.2\`](https://github.com/renovatebot/renovate/releases/tag/43.118.2)

##### Bug Fixes

- **util/git:** allow setting `config.hooksPath` ([#42630](renovatebot/renovate#42630)) ([33c1bf5](renovatebot/renovate@33c1bf5)), closes [#42588](renovatebot/renovate#42588) [#42628](https://github.com/renovatebot/renovate/issues/42628)

---
##### [\`43.118.1\`](https://github.com/renovatebot/renovate/releases/tag/43.118.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.30 (main) ([#42629](renovatebot/renovate#42629)) ([015264e](renovatebot/renovate@015264e))

##### Miscellaneous Chores

- expose known environment variables ([#42201](renovatebot/renovate#42201)) ([b39b50f](renovatebot/renovate@b39b50f))

---
##### [\`43.118.0\`](https://github.com/renovatebot/renovate/releases/tag/43.118.0)

##### Features

- **manager/ant:** add property resolution and .properties file support ([#42175](renovatebot/renovate#42175)) ([ef8e6c8](renovatebot/renovate@ef8e6c8))

---
##### [\`43.117.0\`](https://github.com/renovatebot/renovate/releases/tag/43.117.0)

##### Features

- **bitbucket-pipelines:** update file patterns to support shared configs ([#41704](renovatebot/renovate#41704)) ([53bd796](renovatebot/renovate@53bd796))
- **cache:** add a in-memory expiry map to package file cache ([#42531](renovatebot/renovate#42531)) ([5184761](renovatebot/renovate@5184761))

---
##### [\`43.116.1\`](https://github.com/renovatebot/renovate/releases/tag/43.116.1)

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.5 (main) ([#42626](renovatebot/renovate#42626)) ([7363aee](renovatebot/renovate@7363aee))

---
##### [\`43.116.0\`](https://github.com/renovatebot/renovate/releases/tag/43.116.0)

##### Features

- **osv:** mark malicious packages with `skipReason`s ([#42510](renovatebot/renovate#42510)) ([01f2479](renovatebot/renovate@01f2479))

##### Miscellaneous Chores

- **deps:** update dependency typescript to v6 (main) ([#42615](renovatebot/renovate#42615)) ([d9417b0](renovatebot/renovate@d9417b0))

##### Code Refactoring

- move `requireConfig` to `InheritConfig` ([#41385](renovatebot/renovate#41385)) ([36f9d4a](renovatebot/renovate@36f9d4a))

---
##### [\`43.115.1\`](https://github.com/renovatebot/renovate/releases/tag/43.115.1)

##### Miscellaneous Chores

- **deps:** update actions/github-script action to v9 (main) ([#42613](renovatebot/renovate#42613)) ([1fac64b](renovatebot/renovate@1fac64b))
- **deps:** update actions/upload-pages-artifact action to v5 (main) ([#42614](renovatebot/renovate#42614)) ([cf79688](renovatebot/renovate@cf79688))
- **deps:** update dependency vitest-mock-extended to v4 (main) ([#42616](renovatebot/renovate#42616)) ([1afe9a7](renovatebot/renovate@1afe9a7))
- **deps:** update nick-fields/retry action to v4 (main) ([#42617](renovatebot/renovate#42617)) ([7eee338](renovatebot/renovate@7eee338))
- **deps:** update slackapi/slack-github-action action to v3 (main) ([#42619](renovatebot/renovate#42619)) ([d2d8297](renovatebot/renovate@d2d8297))
- **deps:** update vitest monorepo to v4.1.3 (main) ([#42623](renovatebot/renovate#42623)) ([6cf2410](renovatebot/renovate@6cf2410))
- drop obsolete tsconfig ([#42622](renovatebot/renovate#42622)) ([fcf1e20](renovatebot/renovate@fcf1e20))
- **renovate:** disable next branch ([#42620](renovatebot/renovate#42620)) ([d2abeb4](renovatebot/renovate@d2abeb4))
- **tsdown:** migrate config ([#42621](renovatebot/renovate#42621)) ([32964bd](renovatebot/renovate@32964bd))
- **types:** add `skipStage=enrichment` ([#42585](renovatebot/renovate#42585)) ([4faa847](renovatebot/renovate@4faa847))

##### Build System

- **deps:** update dependency p-queue to v9.1.2 (main) ([#42624](renovatebot/renovate#42624)) ([19baa76](renovatebot/renovate@19baa76))
- **deps:** update dependency simple-git to v3.35.2 (main) ([#42588](renovatebot/renovate#42588)) ([a7b5b48](renovatebot/renovate@a7b5b48))

---
##### [\`43.115.0\`](https://github.com/renovatebot/renovate/releases/tag/43.115.0)

##### Features

- **packageRules:** bumpVersions.type sync ([#42540](renovatebot/renovate#42540)) ([0389869](renovatebot/renovate@0389869))

---
##### [\`43.114.0\`](https://github.com/renovatebot/renovate/releases/tag/43.114.0)

##### Features

- **manager/mise:** add support for openfga ([#42611](renovatebot/renovate#42611)) ([203c5fe](renovatebot/renovate@203c5fe))

##### Miscellaneous Chores

- **deps:** update zizmorcore/zizmor-action action to v0.5.3 (main) ([#42607](renovatebot/renovate#42607)) ([c815d30](renovatebot/renovate@c815d30))
- **types:** add a strong type for `ToolName` and `ConstraintName` ([#42589](renovatebot/renovate#42589)) ([1044a80](renovatebot/renovate@1044a80)), closes [#41849](renovatebot/renovate#41849)

---
##### [\`43.113.0\`](https://github.com/renovatebot/renovate/releases/tag/43.113.0)

##### Features

- **sbt:** support anonymous objects and dotted symbols for version declaration ([#40699](renovatebot/renovate#40699)) ([ef3c964](renovatebot/renovate@ef3c964))

##### Bug Fixes

- **workers/repository:** don't include `skipReason`'d dependencies in flattened updates ([#42595](renovatebot/renovate#42595)) ([f8b4477](renovatebot/renovate@f8b4477)), closes [#42510](renovatebot/renovate#42510)

##### Miscellaneous Chores

- **deps:** update actions/cache action to v5.0.5 (main) ([#42598](renovatebot/renovate#42598)) ([a808338](renovatebot/renovate@a808338))
- **deps:** update containerbase/internal-tools action to v4.5.20 (main) ([#42602](renovatebot/renovate#42602)) ([d2131a7](renovatebot/renovate@d2131a7))
- **deps:** update dependency [@smithy/util-stream](https://github.com/smithy/util-stream) to v4.5.22 (main) ([#42603](renovatebot/renovate#42603)) ([81e51cb](renovatebot/renovate@81e51cb))

---
##### [\`43.112.1\`](https://github.com/renovatebot/renovate/releases/tag/43.112.1)

##### Bug Fixes

- **cache:** Improve SQLite cache error handling ([#42557](renovatebot/renovate#42557)) ([50a2bac](renovatebot/renovate@50a2bac))

##### Code Refactoring

- **dashboard:** align terminology with other sections ([#42354](renovatebot/renovate#42354)) ([27f0797](renovatebot/renovate@27f0797))

---
##### [\`43.112.0\`](https://github.com/renovatebot/renovate/releases/tag/43.112.0)

##### Features

- **cache:** Add `writeSchema` to Maven cache provider ([#42570](renovatebot/renovate#42570)) ([e33aa4c](renovatebot/renovate@e33aa4c))

##### Miscellaneous Chores

- **deps:** update dependency oxlint-tsgolint to v0.20.0 (main) ([#42593](renovatebot/renovate#42593)) ([d80881e](renovatebot/renovate@d80881e))

---
##### [\`43.111.3\`](https://github.com/renovatebot/renovate/releases/tag/43.111.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.29 (main) ([#42592](renovatebot/renovate#42592)) ([edc474a](renovatebot/renovate@edc474a))

##### Documentation

- add Renovate Operator as Kubernetes-native option ([#42506](renovatebot/renovate#42506)) ([91a7213](renovatebot/renovate@91a7213))

---
##### [\`43.111.2\`](https://github.com/renovatebot/renovate/releases/tag/43.111.2)

##### Bug Fixes

- **github-actions:** use correct datasource for Zizmor version ([#42587](renovatebot/renovate#42587)) ([ea1e60e](renovatebot/renovate@ea1e60e))

---
##### [\`43.111.1\`](https://github.com/renovatebot/renovate/releases/tag/43.111.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.28 (main) ([#42580](renovatebot/renovate#42580)) ([216fc99](renovatebot/renovate@216fc99))

##### Documentation

- update references to python to [`8428c32`](renovatebot/renovate@8428c32) (main) ([#42572](renovatebot/renovate#42572)) ([c549ff7](renovatebot/renovate@c549ff7))
- update references to renovatebot/github-action to v46.1.8 (main) ([#42573](renovatebot/renovate#42573)) ([da4e84e](renovatebot/renovate@da4e84e))
- update references to renovatebot/github-action to v46.1.9 (main) ([#42577](renovatebot/renovate#42577)) ([2870abe](renovatebot/renovate@2870abe))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.19 (main) ([#42574](renovatebot/renovate#42574)) ([f31e3d4](renovatebot/renovate@f31e3d4))
- **deps:** update dependency [@containerbase/istanbul-reports-html](https://github.com/containerbase/istanbul-reports-html) to v1.1.43 (main) ([#42575](renovatebot/renovate#42575)) ([7af9aed](renovatebot/renovate@7af9aed))
- **deps:** update dependency [@containerbase/semantic-release-pnpm](https://github.com/containerbase/semantic-release-pnpm) to v1.3.33 (main) ([#42576](renovatebot/renovate#42576)) ([3870e76](renovatebot/renovate@3870e76))
- **deps:** update dependency nock to v14.0.12 (main) ([#42571](renovatebot/renovate#42571)) ([81791bd](renovatebot/renovate@81791bd))
- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.20 (main) ([#42579](renovatebot/renovate#42579)) ([90a2429](renovatebot/renovate@90a2429))

---
##### [\`43.111.0\`](https://github.com/renovatebot/renovate/releases/tag/43.111.0)

##### Features

- **npm:** Trim response data before caching ([#42559](renovatebot/renovate#42559)) ([b359a1d](renovatebot/renovate@b359a1d))

##### Miscellaneous Chores

- **types:** allow `constraints` to be passed through to `getReleases` ([#42564](renovatebot/renovate#42564)) ([6238715](renovatebot/renovate@6238715))
renovate Bot added a commit to sdwilsh/ansible-playbooks that referenced this pull request Apr 17, 2026
##### [\`43.126.0\`](https://github.com/renovatebot/renovate/releases/tag/43.126.0)

##### Features

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.34.0 (main) ([#42697](renovatebot/renovate#42697)) ([4b61c70](renovatebot/renovate@4b61c70))

##### Miscellaneous Chores

- **deps:** update dependency node to v24.15.0 (main) ([#42695](renovatebot/renovate#42695)) ([dc90208](renovatebot/renovate@dc90208))

---
##### [\`43.125.1\`](https://github.com/renovatebot/renovate/releases/tag/43.125.1)

##### Bug Fixes

- **manager/github-actions:** override `versioning` for Actions with Immutable Tags ([#42690](renovatebot/renovate#42690)) ([1b0785b](renovatebot/renovate@1b0785b))

---
##### [\`43.125.0\`](https://github.com/renovatebot/renovate/releases/tag/43.125.0)

##### Features

- **replacements:** migrate users to astral/setup-uv v8 ([#42683](renovatebot/renovate#42683)) ([f5859c2](renovatebot/renovate@f5859c2))

---
##### [\`43.124.1\`](https://github.com/renovatebot/renovate/releases/tag/43.124.1)

##### Bug Fixes

- **docker:** only set `replaceString` if requested ([#42649](renovatebot/renovate#42649)) ([f6d4106](renovatebot/renovate@f6d4106))

---
##### [\`43.124.0\`](https://github.com/renovatebot/renovate/releases/tag/43.124.0)

##### Features

- **manager/github-actions:** use `semver-partial` as default versioning ([#42685](renovatebot/renovate#42685)) ([da04b8e](renovatebot/renovate@da04b8e)), closes [#42331](renovatebot/renovate#42331)

##### Documentation

- fix link in vulnerabilityAlerts docs ([#42680](renovatebot/renovate#42680)) ([b0fd397](renovatebot/renovate@b0fd397))

##### Continuous Integration

- **auto-prs:** handle draft PRs better ([#42686](renovatebot/renovate#42686)) ([0a86cc5](renovatebot/renovate@0a86cc5))

---
##### [\`43.123.8\`](https://github.com/renovatebot/renovate/releases/tag/43.123.8)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.35 (main) ([#42681](renovatebot/renovate#42681)) ([4b597ec](renovatebot/renovate@4b597ec))
- **package-rules:** correctly merge `force.enabled` ([#42679](renovatebot/renovate#42679)) ([ae22250](renovatebot/renovate@ae22250)), closes [#42666](renovatebot/renovate#42666)

##### Tests

- **git:** test failing when no git author is configured ([#42676](renovatebot/renovate#42676)) ([f9bddb9](renovatebot/renovate@f9bddb9))

---
##### [\`43.123.7\`](https://github.com/renovatebot/renovate/releases/tag/43.123.7)

##### Miscellaneous Chores

- **deps:** update vitest monorepo to v4.1.4 (main) ([#42677](renovatebot/renovate#42677)) ([7907192](renovatebot/renovate@7907192))

##### Build System

- **deps:** update node.js to v24.15.0 (main) ([#42678](renovatebot/renovate#42678)) ([a40a0f0](renovatebot/renovate@a40a0f0))

---
##### [\`43.123.6\`](https://github.com/renovatebot/renovate/releases/tag/43.123.6)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.34 (main) ([#42675](renovatebot/renovate#42675)) ([5251496](renovatebot/renovate@5251496))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.22 (main) ([#42674](renovatebot/renovate#42674)) ([f69abc5](renovatebot/renovate@f69abc5))

---
##### [\`43.123.5\`](https://github.com/renovatebot/renovate/releases/tag/43.123.5)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.33 (main) ([#42673](renovatebot/renovate#42673)) ([d33efe2](renovatebot/renovate@d33efe2))

---
##### [\`43.123.4\`](https://github.com/renovatebot/renovate/releases/tag/43.123.4)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.32 (main) ([#42669](renovatebot/renovate#42669)) ([a14d85b](renovatebot/renovate@a14d85b))

---
##### [\`43.123.3\`](https://github.com/renovatebot/renovate/releases/tag/43.123.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.31 (main) ([#42668](renovatebot/renovate#42668)) ([7d2c1ac](renovatebot/renovate@7d2c1ac))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.21 (main) ([#42667](renovatebot/renovate#42667)) ([f891066](renovatebot/renovate@f891066))

---
##### [\`43.123.2\`](renovatebot/renovate@43.123.1...43.123.2)


---
##### [\`43.123.1\`](https://github.com/renovatebot/renovate/releases/tag/43.123.1)

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.22 (main) ([#42658](renovatebot/renovate#42658)) ([9e33c20](renovatebot/renovate@9e33c20))

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.6 (main) ([#42657](renovatebot/renovate#42657)) ([80146b2](renovatebot/renovate@80146b2))

##### Continuous Integration

- auto-label `needs-discussion` on externally-raised Issues ([#42656](renovatebot/renovate#42656)) ([6a0e718](renovatebot/renovate@6a0e718))

---
##### [\`43.123.0\`](https://github.com/renovatebot/renovate/releases/tag/43.123.0)

##### Features

- add XcodeGen manager for Swift package dependencies in project.yml files ([#41889](renovatebot/renovate#41889)) ([0ff55d2](renovatebot/renovate@0ff55d2))
- **presets:** add `BUN_CONFIG_MAX_HTTP_REQUESTS` to safe global env ([#41350](renovatebot/renovate#41350)) ([1316fd7](renovatebot/renovate@1316fd7))
- **presets:** add changelogUrl link for Forgejo and Gitea digest updates ([#41786](renovatebot/renovate#41786)) ([0f9a516](renovatebot/renovate@0f9a516))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.21 (main) ([#42654](renovatebot/renovate#42654)) ([3891a11](renovatebot/renovate@3891a11))

##### Code Refactoring

- **terraform-module:** replace interfaces with zod schemas and inline fixtures ([#42399](renovatebot/renovate#42399)) ([914c55b](renovatebot/renovate@914c55b))

---
##### [\`43.122.0\`](https://github.com/renovatebot/renovate/releases/tag/43.122.0)

##### Features

- **manager/ant:** support custom `registryUrls` ([#42641](renovatebot/renovate#42641)) ([28ab04b](renovatebot/renovate@28ab04b))

##### Documentation

- use single quotes ([#42648](renovatebot/renovate#42648)) ([3c8521e](renovatebot/renovate@3c8521e))

##### Miscellaneous Chores

- **deps:** update github/codeql-action action to v4.35.2 (main) ([#42650](renovatebot/renovate#42650)) ([40100d0](renovatebot/renovate@40100d0))

---
##### [\`43.121.0\`](https://github.com/renovatebot/renovate/releases/tag/43.121.0)

##### Features

- **manager/ant:** add `coords=` attribute syntax support ([#42635](renovatebot/renovate#42635)) ([15c8ab5](renovatebot/renovate@15c8ab5))
- **terraform-provider:** use registry v2 API for release timestamps ([#42340](renovatebot/renovate#42340)) ([f421075](renovatebot/renovate@f421075))

##### Bug Fixes

- **git:** don't pass extraCloneOpts to ls-remote when local clone exists ([#42491](renovatebot/renovate#42491)) ([70fa962](renovatebot/renovate@70fa962))
- **gitlab:** loosen re-approve constraints during updatePr ([#42528](renovatebot/renovate#42528)) ([7b4f75b](renovatebot/renovate@7b4f75b))

##### Documentation

- correct name of `osv-offline` ([#42486](renovatebot/renovate#42486)) ([0fbc124](renovatebot/renovate@0fbc124))
- **minimum-release-age:** add reference to cooldowns ([#42640](renovatebot/renovate#42640)) ([25e47df](renovatebot/renovate@25e47df))

##### Miscellaneous Chores

- **deps:** update ghcr.io/zizmorcore/zizmor docker tag to v1.24.1 (main) ([#42642](renovatebot/renovate#42642)) ([61947e2](renovatebot/renovate@61947e2))

##### Code Refactoring

- **cache:** Remove obsolete compress flag ([#42563](renovatebot/renovate#42563)) ([f49de7a](renovatebot/renovate@f49de7a))

##### Build System

- **deps:** update dependency [@renovatebot/osv-offline](https://github.com/renovatebot/osv-offline) to v2.5.0 (main) ([#42645](renovatebot/renovate#42645)) ([4cb4030](renovatebot/renovate@4cb4030))

---
##### [\`43.120.2\`](https://github.com/renovatebot/renovate/releases/tag/43.120.2)

##### Bug Fixes

- **vulnerability:** remove matchFileNames restriction from GitHub vulnerability alerts ([#42636](renovatebot/renovate#42636)) ([593a2b1](renovatebot/renovate@593a2b1))

---
##### [\`43.120.1\`](https://github.com/renovatebot/renovate/releases/tag/43.120.1)

##### Bug Fixes

- **logger:** log file using pretty format not working ([#42319](renovatebot/renovate#42319)) ([1c886e0](renovatebot/renovate@1c886e0))

---
##### [\`43.120.0\`](https://github.com/renovatebot/renovate/releases/tag/43.120.0)

##### Features

- **vulnerability:** add severity and CVSS details to GitHub Dependabot alerts ([#42568](renovatebot/renovate#42568)) ([1e906e8](renovatebot/renovate@1e906e8))

##### Miscellaneous Chores

- **instrumentation:** add timing statistics for `getReleases` ([#42523](renovatebot/renovate#42523)) ([f635ae2](renovatebot/renovate@f635ae2))

---
##### [\`43.119.0\`](https://github.com/renovatebot/renovate/releases/tag/43.119.0)

##### Features

- **manager/ant:** add <import> file traversal ([#42631](renovatebot/renovate#42631)) ([76dcc66](renovatebot/renovate@76dcc66))

---
##### [\`43.118.2\`](https://github.com/renovatebot/renovate/releases/tag/43.118.2)

##### Bug Fixes

- **util/git:** allow setting `config.hooksPath` ([#42630](renovatebot/renovate#42630)) ([33c1bf5](renovatebot/renovate@33c1bf5)), closes [#42588](renovatebot/renovate#42588) [#42628](https://github.com/renovatebot/renovate/issues/42628)

---
##### [\`43.118.1\`](https://github.com/renovatebot/renovate/releases/tag/43.118.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.30 (main) ([#42629](renovatebot/renovate#42629)) ([015264e](renovatebot/renovate@015264e))

##### Miscellaneous Chores

- expose known environment variables ([#42201](renovatebot/renovate#42201)) ([b39b50f](renovatebot/renovate@b39b50f))

---
##### [\`43.118.0\`](https://github.com/renovatebot/renovate/releases/tag/43.118.0)

##### Features

- **manager/ant:** add property resolution and .properties file support ([#42175](renovatebot/renovate#42175)) ([ef8e6c8](renovatebot/renovate@ef8e6c8))

---
##### [\`43.117.0\`](https://github.com/renovatebot/renovate/releases/tag/43.117.0)

##### Features

- **bitbucket-pipelines:** update file patterns to support shared configs ([#41704](renovatebot/renovate#41704)) ([53bd796](renovatebot/renovate@53bd796))
- **cache:** add a in-memory expiry map to package file cache ([#42531](renovatebot/renovate#42531)) ([5184761](renovatebot/renovate@5184761))

---
##### [\`43.116.1\`](https://github.com/renovatebot/renovate/releases/tag/43.116.1)

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.5 (main) ([#42626](renovatebot/renovate#42626)) ([7363aee](renovatebot/renovate@7363aee))

---
##### [\`43.116.0\`](https://github.com/renovatebot/renovate/releases/tag/43.116.0)

##### Features

- **osv:** mark malicious packages with `skipReason`s ([#42510](renovatebot/renovate#42510)) ([01f2479](renovatebot/renovate@01f2479))

##### Miscellaneous Chores

- **deps:** update dependency typescript to v6 (main) ([#42615](renovatebot/renovate#42615)) ([d9417b0](renovatebot/renovate@d9417b0))

##### Code Refactoring

- move `requireConfig` to `InheritConfig` ([#41385](renovatebot/renovate#41385)) ([36f9d4a](renovatebot/renovate@36f9d4a))

---
##### [\`43.115.1\`](https://github.com/renovatebot/renovate/releases/tag/43.115.1)

##### Miscellaneous Chores

- **deps:** update actions/github-script action to v9 (main) ([#42613](renovatebot/renovate#42613)) ([1fac64b](renovatebot/renovate@1fac64b))
- **deps:** update actions/upload-pages-artifact action to v5 (main) ([#42614](renovatebot/renovate#42614)) ([cf79688](renovatebot/renovate@cf79688))
- **deps:** update dependency vitest-mock-extended to v4 (main) ([#42616](renovatebot/renovate#42616)) ([1afe9a7](renovatebot/renovate@1afe9a7))
- **deps:** update nick-fields/retry action to v4 (main) ([#42617](renovatebot/renovate#42617)) ([7eee338](renovatebot/renovate@7eee338))
- **deps:** update slackapi/slack-github-action action to v3 (main) ([#42619](renovatebot/renovate#42619)) ([d2d8297](renovatebot/renovate@d2d8297))
- **deps:** update vitest monorepo to v4.1.3 (main) ([#42623](renovatebot/renovate#42623)) ([6cf2410](renovatebot/renovate@6cf2410))
- drop obsolete tsconfig ([#42622](renovatebot/renovate#42622)) ([fcf1e20](renovatebot/renovate@fcf1e20))
- **renovate:** disable next branch ([#42620](renovatebot/renovate#42620)) ([d2abeb4](renovatebot/renovate@d2abeb4))
- **tsdown:** migrate config ([#42621](renovatebot/renovate#42621)) ([32964bd](renovatebot/renovate@32964bd))
- **types:** add `skipStage=enrichment` ([#42585](renovatebot/renovate#42585)) ([4faa847](renovatebot/renovate@4faa847))

##### Build System

- **deps:** update dependency p-queue to v9.1.2 (main) ([#42624](renovatebot/renovate#42624)) ([19baa76](renovatebot/renovate@19baa76))
- **deps:** update dependency simple-git to v3.35.2 (main) ([#42588](renovatebot/renovate#42588)) ([a7b5b48](renovatebot/renovate@a7b5b48))

---
##### [\`43.115.0\`](https://github.com/renovatebot/renovate/releases/tag/43.115.0)

##### Features

- **packageRules:** bumpVersions.type sync ([#42540](renovatebot/renovate#42540)) ([0389869](renovatebot/renovate@0389869))

---
##### [\`43.114.0\`](https://github.com/renovatebot/renovate/releases/tag/43.114.0)

##### Features

- **manager/mise:** add support for openfga ([#42611](renovatebot/renovate#42611)) ([203c5fe](renovatebot/renovate@203c5fe))

##### Miscellaneous Chores

- **deps:** update zizmorcore/zizmor-action action to v0.5.3 (main) ([#42607](renovatebot/renovate#42607)) ([c815d30](renovatebot/renovate@c815d30))
- **types:** add a strong type for `ToolName` and `ConstraintName` ([#42589](renovatebot/renovate#42589)) ([1044a80](renovatebot/renovate@1044a80)), closes [#41849](renovatebot/renovate#41849)

---
##### [\`43.113.0\`](https://github.com/renovatebot/renovate/releases/tag/43.113.0)

##### Features

- **sbt:** support anonymous objects and dotted symbols for version declaration ([#40699](renovatebot/renovate#40699)) ([ef3c964](renovatebot/renovate@ef3c964))

##### Bug Fixes

- **workers/repository:** don't include `skipReason`'d dependencies in flattened updates ([#42595](renovatebot/renovate#42595)) ([f8b4477](renovatebot/renovate@f8b4477)), closes [#42510](renovatebot/renovate#42510)

##### Miscellaneous Chores

- **deps:** update actions/cache action to v5.0.5 (main) ([#42598](renovatebot/renovate#42598)) ([a808338](renovatebot/renovate@a808338))
- **deps:** update containerbase/internal-tools action to v4.5.20 (main) ([#42602](renovatebot/renovate#42602)) ([d2131a7](renovatebot/renovate@d2131a7))
- **deps:** update dependency [@smithy/util-stream](https://github.com/smithy/util-stream) to v4.5.22 (main) ([#42603](renovatebot/renovate#42603)) ([81e51cb](renovatebot/renovate@81e51cb))

---
##### [\`43.112.1\`](https://github.com/renovatebot/renovate/releases/tag/43.112.1)

##### Bug Fixes

- **cache:** Improve SQLite cache error handling ([#42557](renovatebot/renovate#42557)) ([50a2bac](renovatebot/renovate@50a2bac))

##### Code Refactoring

- **dashboard:** align terminology with other sections ([#42354](renovatebot/renovate#42354)) ([27f0797](renovatebot/renovate@27f0797))

---
##### [\`43.112.0\`](https://github.com/renovatebot/renovate/releases/tag/43.112.0)

##### Features

- **cache:** Add `writeSchema` to Maven cache provider ([#42570](renovatebot/renovate#42570)) ([e33aa4c](renovatebot/renovate@e33aa4c))

##### Miscellaneous Chores

- **deps:** update dependency oxlint-tsgolint to v0.20.0 (main) ([#42593](renovatebot/renovate#42593)) ([d80881e](renovatebot/renovate@d80881e))

---
##### [\`43.111.3\`](https://github.com/renovatebot/renovate/releases/tag/43.111.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.29 (main) ([#42592](renovatebot/renovate#42592)) ([edc474a](renovatebot/renovate@edc474a))

##### Documentation

- add Renovate Operator as Kubernetes-native option ([#42506](renovatebot/renovate#42506)) ([91a7213](renovatebot/renovate@91a7213))

---
##### [\`43.111.2\`](https://github.com/renovatebot/renovate/releases/tag/43.111.2)

##### Bug Fixes

- **github-actions:** use correct datasource for Zizmor version ([#42587](renovatebot/renovate#42587)) ([ea1e60e](renovatebot/renovate@ea1e60e))

---
##### [\`43.111.1\`](https://github.com/renovatebot/renovate/releases/tag/43.111.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.28 (main) ([#42580](renovatebot/renovate#42580)) ([216fc99](renovatebot/renovate@216fc99))

##### Documentation

- update references to python to [`8428c32`](renovatebot/renovate@8428c32) (main) ([#42572](renovatebot/renovate#42572)) ([c549ff7](renovatebot/renovate@c549ff7))
- update references to renovatebot/github-action to v46.1.8 (main) ([#42573](renovatebot/renovate#42573)) ([da4e84e](renovatebot/renovate@da4e84e))
- update references to renovatebot/github-action to v46.1.9 (main) ([#42577](renovatebot/renovate#42577)) ([2870abe](renovatebot/renovate@2870abe))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.19 (main) ([#42574](renovatebot/renovate#42574)) ([f31e3d4](renovatebot/renovate@f31e3d4))
- **deps:** update dependency [@containerbase/istanbul-reports-html](https://github.com/containerbase/istanbul-reports-html) to v1.1.43 (main) ([#42575](renovatebot/renovate#42575)) ([7af9aed](renovatebot/renovate@7af9aed))
- **deps:** update dependency [@containerbase/semantic-release-pnpm](https://github.com/containerbase/semantic-release-pnpm) to v1.3.33 (main) ([#42576](renovatebot/renovate#42576)) ([3870e76](renovatebot/renovate@3870e76))
- **deps:** update dependency nock to v14.0.12 (main) ([#42571](renovatebot/renovate#42571)) ([81791bd](renovatebot/renovate@81791bd))
- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.20 (main) ([#42579](renovatebot/renovate#42579)) ([90a2429](renovatebot/renovate@90a2429))

---
##### [\`43.111.0\`](https://github.com/renovatebot/renovate/releases/tag/43.111.0)

##### Features

- **npm:** Trim response data before caching ([#42559](renovatebot/renovate#42559)) ([b359a1d](renovatebot/renovate@b359a1d))

##### Miscellaneous Chores

- **types:** allow `constraints` to be passed through to `getReleases` ([#42564](renovatebot/renovate#42564)) ([6238715](renovatebot/renovate@6238715))
renovate Bot added a commit to sdwilsh/ansible-playbooks that referenced this pull request Apr 17, 2026
##### [\`43.127.0\`](renovatebot/renovate@43.126.0...43.127.0)


---
##### [\`43.126.0\`](https://github.com/renovatebot/renovate/releases/tag/43.126.0)

##### Features

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.34.0 (main) ([#42697](renovatebot/renovate#42697)) ([4b61c70](renovatebot/renovate@4b61c70))

##### Miscellaneous Chores

- **deps:** update dependency node to v24.15.0 (main) ([#42695](renovatebot/renovate#42695)) ([dc90208](renovatebot/renovate@dc90208))

---
##### [\`43.125.1\`](https://github.com/renovatebot/renovate/releases/tag/43.125.1)

##### Bug Fixes

- **manager/github-actions:** override `versioning` for Actions with Immutable Tags ([#42690](renovatebot/renovate#42690)) ([1b0785b](renovatebot/renovate@1b0785b))

---
##### [\`43.125.0\`](https://github.com/renovatebot/renovate/releases/tag/43.125.0)

##### Features

- **replacements:** migrate users to astral/setup-uv v8 ([#42683](renovatebot/renovate#42683)) ([f5859c2](renovatebot/renovate@f5859c2))

---
##### [\`43.124.1\`](https://github.com/renovatebot/renovate/releases/tag/43.124.1)

##### Bug Fixes

- **docker:** only set `replaceString` if requested ([#42649](renovatebot/renovate#42649)) ([f6d4106](renovatebot/renovate@f6d4106))

---
##### [\`43.124.0\`](https://github.com/renovatebot/renovate/releases/tag/43.124.0)

##### Features

- **manager/github-actions:** use `semver-partial` as default versioning ([#42685](renovatebot/renovate#42685)) ([da04b8e](renovatebot/renovate@da04b8e)), closes [#42331](renovatebot/renovate#42331)

##### Documentation

- fix link in vulnerabilityAlerts docs ([#42680](renovatebot/renovate#42680)) ([b0fd397](renovatebot/renovate@b0fd397))

##### Continuous Integration

- **auto-prs:** handle draft PRs better ([#42686](renovatebot/renovate#42686)) ([0a86cc5](renovatebot/renovate@0a86cc5))

---
##### [\`43.123.8\`](https://github.com/renovatebot/renovate/releases/tag/43.123.8)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.35 (main) ([#42681](renovatebot/renovate#42681)) ([4b597ec](renovatebot/renovate@4b597ec))
- **package-rules:** correctly merge `force.enabled` ([#42679](renovatebot/renovate#42679)) ([ae22250](renovatebot/renovate@ae22250)), closes [#42666](renovatebot/renovate#42666)

##### Tests

- **git:** test failing when no git author is configured ([#42676](renovatebot/renovate#42676)) ([f9bddb9](renovatebot/renovate@f9bddb9))

---
##### [\`43.123.7\`](https://github.com/renovatebot/renovate/releases/tag/43.123.7)

##### Miscellaneous Chores

- **deps:** update vitest monorepo to v4.1.4 (main) ([#42677](renovatebot/renovate#42677)) ([7907192](renovatebot/renovate@7907192))

##### Build System

- **deps:** update node.js to v24.15.0 (main) ([#42678](renovatebot/renovate#42678)) ([a40a0f0](renovatebot/renovate@a40a0f0))

---
##### [\`43.123.6\`](https://github.com/renovatebot/renovate/releases/tag/43.123.6)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.34 (main) ([#42675](renovatebot/renovate#42675)) ([5251496](renovatebot/renovate@5251496))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.22 (main) ([#42674](renovatebot/renovate#42674)) ([f69abc5](renovatebot/renovate@f69abc5))

---
##### [\`43.123.5\`](https://github.com/renovatebot/renovate/releases/tag/43.123.5)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.33 (main) ([#42673](renovatebot/renovate#42673)) ([d33efe2](renovatebot/renovate@d33efe2))

---
##### [\`43.123.4\`](https://github.com/renovatebot/renovate/releases/tag/43.123.4)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.32 (main) ([#42669](renovatebot/renovate#42669)) ([a14d85b](renovatebot/renovate@a14d85b))

---
##### [\`43.123.3\`](https://github.com/renovatebot/renovate/releases/tag/43.123.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.31 (main) ([#42668](renovatebot/renovate#42668)) ([7d2c1ac](renovatebot/renovate@7d2c1ac))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.21 (main) ([#42667](renovatebot/renovate#42667)) ([f891066](renovatebot/renovate@f891066))

---
##### [\`43.123.2\`](renovatebot/renovate@43.123.1...43.123.2)


---
##### [\`43.123.1\`](https://github.com/renovatebot/renovate/releases/tag/43.123.1)

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.22 (main) ([#42658](renovatebot/renovate#42658)) ([9e33c20](renovatebot/renovate@9e33c20))

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.6 (main) ([#42657](renovatebot/renovate#42657)) ([80146b2](renovatebot/renovate@80146b2))

##### Continuous Integration

- auto-label `needs-discussion` on externally-raised Issues ([#42656](renovatebot/renovate#42656)) ([6a0e718](renovatebot/renovate@6a0e718))

---
##### [\`43.123.0\`](https://github.com/renovatebot/renovate/releases/tag/43.123.0)

##### Features

- add XcodeGen manager for Swift package dependencies in project.yml files ([#41889](renovatebot/renovate#41889)) ([0ff55d2](renovatebot/renovate@0ff55d2))
- **presets:** add `BUN_CONFIG_MAX_HTTP_REQUESTS` to safe global env ([#41350](renovatebot/renovate#41350)) ([1316fd7](renovatebot/renovate@1316fd7))
- **presets:** add changelogUrl link for Forgejo and Gitea digest updates ([#41786](renovatebot/renovate#41786)) ([0f9a516](renovatebot/renovate@0f9a516))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.21 (main) ([#42654](renovatebot/renovate#42654)) ([3891a11](renovatebot/renovate@3891a11))

##### Code Refactoring

- **terraform-module:** replace interfaces with zod schemas and inline fixtures ([#42399](renovatebot/renovate#42399)) ([914c55b](renovatebot/renovate@914c55b))

---
##### [\`43.122.0\`](https://github.com/renovatebot/renovate/releases/tag/43.122.0)

##### Features

- **manager/ant:** support custom `registryUrls` ([#42641](renovatebot/renovate#42641)) ([28ab04b](renovatebot/renovate@28ab04b))

##### Documentation

- use single quotes ([#42648](renovatebot/renovate#42648)) ([3c8521e](renovatebot/renovate@3c8521e))

##### Miscellaneous Chores

- **deps:** update github/codeql-action action to v4.35.2 (main) ([#42650](renovatebot/renovate#42650)) ([40100d0](renovatebot/renovate@40100d0))

---
##### [\`43.121.0\`](https://github.com/renovatebot/renovate/releases/tag/43.121.0)

##### Features

- **manager/ant:** add `coords=` attribute syntax support ([#42635](renovatebot/renovate#42635)) ([15c8ab5](renovatebot/renovate@15c8ab5))
- **terraform-provider:** use registry v2 API for release timestamps ([#42340](renovatebot/renovate#42340)) ([f421075](renovatebot/renovate@f421075))

##### Bug Fixes

- **git:** don't pass extraCloneOpts to ls-remote when local clone exists ([#42491](renovatebot/renovate#42491)) ([70fa962](renovatebot/renovate@70fa962))
- **gitlab:** loosen re-approve constraints during updatePr ([#42528](renovatebot/renovate#42528)) ([7b4f75b](renovatebot/renovate@7b4f75b))

##### Documentation

- correct name of `osv-offline` ([#42486](renovatebot/renovate#42486)) ([0fbc124](renovatebot/renovate@0fbc124))
- **minimum-release-age:** add reference to cooldowns ([#42640](renovatebot/renovate#42640)) ([25e47df](renovatebot/renovate@25e47df))

##### Miscellaneous Chores

- **deps:** update ghcr.io/zizmorcore/zizmor docker tag to v1.24.1 (main) ([#42642](renovatebot/renovate#42642)) ([61947e2](renovatebot/renovate@61947e2))

##### Code Refactoring

- **cache:** Remove obsolete compress flag ([#42563](renovatebot/renovate#42563)) ([f49de7a](renovatebot/renovate@f49de7a))

##### Build System

- **deps:** update dependency [@renovatebot/osv-offline](https://github.com/renovatebot/osv-offline) to v2.5.0 (main) ([#42645](renovatebot/renovate#42645)) ([4cb4030](renovatebot/renovate@4cb4030))

---
##### [\`43.120.2\`](https://github.com/renovatebot/renovate/releases/tag/43.120.2)

##### Bug Fixes

- **vulnerability:** remove matchFileNames restriction from GitHub vulnerability alerts ([#42636](renovatebot/renovate#42636)) ([593a2b1](renovatebot/renovate@593a2b1))

---
##### [\`43.120.1\`](https://github.com/renovatebot/renovate/releases/tag/43.120.1)

##### Bug Fixes

- **logger:** log file using pretty format not working ([#42319](renovatebot/renovate#42319)) ([1c886e0](renovatebot/renovate@1c886e0))

---
##### [\`43.120.0\`](https://github.com/renovatebot/renovate/releases/tag/43.120.0)

##### Features

- **vulnerability:** add severity and CVSS details to GitHub Dependabot alerts ([#42568](renovatebot/renovate#42568)) ([1e906e8](renovatebot/renovate@1e906e8))

##### Miscellaneous Chores

- **instrumentation:** add timing statistics for `getReleases` ([#42523](renovatebot/renovate#42523)) ([f635ae2](renovatebot/renovate@f635ae2))

---
##### [\`43.119.0\`](https://github.com/renovatebot/renovate/releases/tag/43.119.0)

##### Features

- **manager/ant:** add <import> file traversal ([#42631](renovatebot/renovate#42631)) ([76dcc66](renovatebot/renovate@76dcc66))

---
##### [\`43.118.2\`](https://github.com/renovatebot/renovate/releases/tag/43.118.2)

##### Bug Fixes

- **util/git:** allow setting `config.hooksPath` ([#42630](renovatebot/renovate#42630)) ([33c1bf5](renovatebot/renovate@33c1bf5)), closes [#42588](renovatebot/renovate#42588) [#42628](https://github.com/renovatebot/renovate/issues/42628)

---
##### [\`43.118.1\`](https://github.com/renovatebot/renovate/releases/tag/43.118.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.30 (main) ([#42629](renovatebot/renovate#42629)) ([015264e](renovatebot/renovate@015264e))

##### Miscellaneous Chores

- expose known environment variables ([#42201](renovatebot/renovate#42201)) ([b39b50f](renovatebot/renovate@b39b50f))

---
##### [\`43.118.0\`](https://github.com/renovatebot/renovate/releases/tag/43.118.0)

##### Features

- **manager/ant:** add property resolution and .properties file support ([#42175](renovatebot/renovate#42175)) ([ef8e6c8](renovatebot/renovate@ef8e6c8))

---
##### [\`43.117.0\`](https://github.com/renovatebot/renovate/releases/tag/43.117.0)

##### Features

- **bitbucket-pipelines:** update file patterns to support shared configs ([#41704](renovatebot/renovate#41704)) ([53bd796](renovatebot/renovate@53bd796))
- **cache:** add a in-memory expiry map to package file cache ([#42531](renovatebot/renovate#42531)) ([5184761](renovatebot/renovate@5184761))

---
##### [\`43.116.1\`](https://github.com/renovatebot/renovate/releases/tag/43.116.1)

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.5 (main) ([#42626](renovatebot/renovate#42626)) ([7363aee](renovatebot/renovate@7363aee))

---
##### [\`43.116.0\`](https://github.com/renovatebot/renovate/releases/tag/43.116.0)

##### Features

- **osv:** mark malicious packages with `skipReason`s ([#42510](renovatebot/renovate#42510)) ([01f2479](renovatebot/renovate@01f2479))

##### Miscellaneous Chores

- **deps:** update dependency typescript to v6 (main) ([#42615](renovatebot/renovate#42615)) ([d9417b0](renovatebot/renovate@d9417b0))

##### Code Refactoring

- move `requireConfig` to `InheritConfig` ([#41385](renovatebot/renovate#41385)) ([36f9d4a](renovatebot/renovate@36f9d4a))

---
##### [\`43.115.1\`](https://github.com/renovatebot/renovate/releases/tag/43.115.1)

##### Miscellaneous Chores

- **deps:** update actions/github-script action to v9 (main) ([#42613](renovatebot/renovate#42613)) ([1fac64b](renovatebot/renovate@1fac64b))
- **deps:** update actions/upload-pages-artifact action to v5 (main) ([#42614](renovatebot/renovate#42614)) ([cf79688](renovatebot/renovate@cf79688))
- **deps:** update dependency vitest-mock-extended to v4 (main) ([#42616](renovatebot/renovate#42616)) ([1afe9a7](renovatebot/renovate@1afe9a7))
- **deps:** update nick-fields/retry action to v4 (main) ([#42617](renovatebot/renovate#42617)) ([7eee338](renovatebot/renovate@7eee338))
- **deps:** update slackapi/slack-github-action action to v3 (main) ([#42619](renovatebot/renovate#42619)) ([d2d8297](renovatebot/renovate@d2d8297))
- **deps:** update vitest monorepo to v4.1.3 (main) ([#42623](renovatebot/renovate#42623)) ([6cf2410](renovatebot/renovate@6cf2410))
- drop obsolete tsconfig ([#42622](renovatebot/renovate#42622)) ([fcf1e20](renovatebot/renovate@fcf1e20))
- **renovate:** disable next branch ([#42620](renovatebot/renovate#42620)) ([d2abeb4](renovatebot/renovate@d2abeb4))
- **tsdown:** migrate config ([#42621](renovatebot/renovate#42621)) ([32964bd](renovatebot/renovate@32964bd))
- **types:** add `skipStage=enrichment` ([#42585](renovatebot/renovate#42585)) ([4faa847](renovatebot/renovate@4faa847))

##### Build System

- **deps:** update dependency p-queue to v9.1.2 (main) ([#42624](renovatebot/renovate#42624)) ([19baa76](renovatebot/renovate@19baa76))
- **deps:** update dependency simple-git to v3.35.2 (main) ([#42588](renovatebot/renovate#42588)) ([a7b5b48](renovatebot/renovate@a7b5b48))

---
##### [\`43.115.0\`](https://github.com/renovatebot/renovate/releases/tag/43.115.0)

##### Features

- **packageRules:** bumpVersions.type sync ([#42540](renovatebot/renovate#42540)) ([0389869](renovatebot/renovate@0389869))

---
##### [\`43.114.0\`](https://github.com/renovatebot/renovate/releases/tag/43.114.0)

##### Features

- **manager/mise:** add support for openfga ([#42611](renovatebot/renovate#42611)) ([203c5fe](renovatebot/renovate@203c5fe))

##### Miscellaneous Chores

- **deps:** update zizmorcore/zizmor-action action to v0.5.3 (main) ([#42607](renovatebot/renovate#42607)) ([c815d30](renovatebot/renovate@c815d30))
- **types:** add a strong type for `ToolName` and `ConstraintName` ([#42589](renovatebot/renovate#42589)) ([1044a80](renovatebot/renovate@1044a80)), closes [#41849](renovatebot/renovate#41849)

---
##### [\`43.113.0\`](https://github.com/renovatebot/renovate/releases/tag/43.113.0)

##### Features

- **sbt:** support anonymous objects and dotted symbols for version declaration ([#40699](renovatebot/renovate#40699)) ([ef3c964](renovatebot/renovate@ef3c964))

##### Bug Fixes

- **workers/repository:** don't include `skipReason`'d dependencies in flattened updates ([#42595](renovatebot/renovate#42595)) ([f8b4477](renovatebot/renovate@f8b4477)), closes [#42510](renovatebot/renovate#42510)

##### Miscellaneous Chores

- **deps:** update actions/cache action to v5.0.5 (main) ([#42598](renovatebot/renovate#42598)) ([a808338](renovatebot/renovate@a808338))
- **deps:** update containerbase/internal-tools action to v4.5.20 (main) ([#42602](renovatebot/renovate#42602)) ([d2131a7](renovatebot/renovate@d2131a7))
- **deps:** update dependency [@smithy/util-stream](https://github.com/smithy/util-stream) to v4.5.22 (main) ([#42603](renovatebot/renovate#42603)) ([81e51cb](renovatebot/renovate@81e51cb))

---
##### [\`43.112.1\`](https://github.com/renovatebot/renovate/releases/tag/43.112.1)

##### Bug Fixes

- **cache:** Improve SQLite cache error handling ([#42557](renovatebot/renovate#42557)) ([50a2bac](renovatebot/renovate@50a2bac))

##### Code Refactoring

- **dashboard:** align terminology with other sections ([#42354](renovatebot/renovate#42354)) ([27f0797](renovatebot/renovate@27f0797))

---
##### [\`43.112.0\`](https://github.com/renovatebot/renovate/releases/tag/43.112.0)

##### Features

- **cache:** Add `writeSchema` to Maven cache provider ([#42570](renovatebot/renovate#42570)) ([e33aa4c](renovatebot/renovate@e33aa4c))

##### Miscellaneous Chores

- **deps:** update dependency oxlint-tsgolint to v0.20.0 (main) ([#42593](renovatebot/renovate#42593)) ([d80881e](renovatebot/renovate@d80881e))

---
##### [\`43.111.3\`](https://github.com/renovatebot/renovate/releases/tag/43.111.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.29 (main) ([#42592](renovatebot/renovate#42592)) ([edc474a](renovatebot/renovate@edc474a))

##### Documentation

- add Renovate Operator as Kubernetes-native option ([#42506](renovatebot/renovate#42506)) ([91a7213](renovatebot/renovate@91a7213))

---
##### [\`43.111.2\`](https://github.com/renovatebot/renovate/releases/tag/43.111.2)

##### Bug Fixes

- **github-actions:** use correct datasource for Zizmor version ([#42587](renovatebot/renovate#42587)) ([ea1e60e](renovatebot/renovate@ea1e60e))

---
##### [\`43.111.1\`](https://github.com/renovatebot/renovate/releases/tag/43.111.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.28 (main) ([#42580](renovatebot/renovate#42580)) ([216fc99](renovatebot/renovate@216fc99))

##### Documentation

- update references to python to [`8428c32`](renovatebot/renovate@8428c32) (main) ([#42572](renovatebot/renovate#42572)) ([c549ff7](renovatebot/renovate@c549ff7))
- update references to renovatebot/github-action to v46.1.8 (main) ([#42573](renovatebot/renovate#42573)) ([da4e84e](renovatebot/renovate@da4e84e))
- update references to renovatebot/github-action to v46.1.9 (main) ([#42577](renovatebot/renovate#42577)) ([2870abe](renovatebot/renovate@2870abe))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.19 (main) ([#42574](renovatebot/renovate#42574)) ([f31e3d4](renovatebot/renovate@f31e3d4))
- **deps:** update dependency [@containerbase/istanbul-reports-html](https://github.com/containerbase/istanbul-reports-html) to v1.1.43 (main) ([#42575](renovatebot/renovate#42575)) ([7af9aed](renovatebot/renovate@7af9aed))
- **deps:** update dependency [@containerbase/semantic-release-pnpm](https://github.com/containerbase/semantic-release-pnpm) to v1.3.33 (main) ([#42576](renovatebot/renovate#42576)) ([3870e76](renovatebot/renovate@3870e76))
- **deps:** update dependency nock to v14.0.12 (main) ([#42571](renovatebot/renovate#42571)) ([81791bd](renovatebot/renovate@81791bd))
- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.20 (main) ([#42579](renovatebot/renovate#42579)) ([90a2429](renovatebot/renovate@90a2429))

---
##### [\`43.111.0\`](https://github.com/renovatebot/renovate/releases/tag/43.111.0)

##### Features

- **npm:** Trim response data before caching ([#42559](renovatebot/renovate#42559)) ([b359a1d](renovatebot/renovate@b359a1d))

##### Miscellaneous Chores

- **types:** allow `constraints` to be passed through to `getReleases` ([#42564](renovatebot/renovate#42564)) ([6238715](renovatebot/renovate@6238715))
renovate Bot added a commit to sdwilsh/ansible-playbooks that referenced this pull request Apr 17, 2026
##### [\`43.127.2\`](https://github.com/renovatebot/renovate/releases/tag/43.127.2)

##### Bug Fixes

- **manager/github-actions:** revert recent changes ([#42707](renovatebot/renovate#42707)) ([db64cc6](renovatebot/renovate@db64cc6)), closes [#42690](renovatebot/renovate#42690) [#42683](renovatebot/renovate#42683) [#42685](renovatebot/renovate#42685)
- **presets:** restore custom `versioning` ([#42693](renovatebot/renovate#42693)) ([5437860](renovatebot/renovate@5437860))

##### Miscellaneous Chores

- **deps:** update devcontainers/ci action to v0.3.1900000449 (main) ([#42705](renovatebot/renovate#42705)) ([fe10c94](renovatebot/renovate@fe10c94))

---
##### [\`43.127.1\`](renovatebot/renovate@43.127.0...43.127.1)


---
##### [\`43.127.0\`](renovatebot/renovate@43.126.0...43.127.0)


---
##### [\`43.126.0\`](https://github.com/renovatebot/renovate/releases/tag/43.126.0)

##### Features

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.34.0 (main) ([#42697](renovatebot/renovate#42697)) ([4b61c70](renovatebot/renovate@4b61c70))

##### Miscellaneous Chores

- **deps:** update dependency node to v24.15.0 (main) ([#42695](renovatebot/renovate#42695)) ([dc90208](renovatebot/renovate@dc90208))

---
##### [\`43.125.1\`](https://github.com/renovatebot/renovate/releases/tag/43.125.1)

##### Bug Fixes

- **manager/github-actions:** override `versioning` for Actions with Immutable Tags ([#42690](renovatebot/renovate#42690)) ([1b0785b](renovatebot/renovate@1b0785b))

---
##### [\`43.125.0\`](https://github.com/renovatebot/renovate/releases/tag/43.125.0)

##### Features

- **replacements:** migrate users to astral/setup-uv v8 ([#42683](renovatebot/renovate#42683)) ([f5859c2](renovatebot/renovate@f5859c2))

---
##### [\`43.124.1\`](https://github.com/renovatebot/renovate/releases/tag/43.124.1)

##### Bug Fixes

- **docker:** only set `replaceString` if requested ([#42649](renovatebot/renovate#42649)) ([f6d4106](renovatebot/renovate@f6d4106))

---
##### [\`43.124.0\`](https://github.com/renovatebot/renovate/releases/tag/43.124.0)

##### Features

- **manager/github-actions:** use `semver-partial` as default versioning ([#42685](renovatebot/renovate#42685)) ([da04b8e](renovatebot/renovate@da04b8e)), closes [#42331](renovatebot/renovate#42331)

##### Documentation

- fix link in vulnerabilityAlerts docs ([#42680](renovatebot/renovate#42680)) ([b0fd397](renovatebot/renovate@b0fd397))

##### Continuous Integration

- **auto-prs:** handle draft PRs better ([#42686](renovatebot/renovate#42686)) ([0a86cc5](renovatebot/renovate@0a86cc5))

---
##### [\`43.123.8\`](https://github.com/renovatebot/renovate/releases/tag/43.123.8)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.35 (main) ([#42681](renovatebot/renovate#42681)) ([4b597ec](renovatebot/renovate@4b597ec))
- **package-rules:** correctly merge `force.enabled` ([#42679](renovatebot/renovate#42679)) ([ae22250](renovatebot/renovate@ae22250)), closes [#42666](renovatebot/renovate#42666)

##### Tests

- **git:** test failing when no git author is configured ([#42676](renovatebot/renovate#42676)) ([f9bddb9](renovatebot/renovate@f9bddb9))

---
##### [\`43.123.7\`](https://github.com/renovatebot/renovate/releases/tag/43.123.7)

##### Miscellaneous Chores

- **deps:** update vitest monorepo to v4.1.4 (main) ([#42677](renovatebot/renovate#42677)) ([7907192](renovatebot/renovate@7907192))

##### Build System

- **deps:** update node.js to v24.15.0 (main) ([#42678](renovatebot/renovate#42678)) ([a40a0f0](renovatebot/renovate@a40a0f0))

---
##### [\`43.123.6\`](https://github.com/renovatebot/renovate/releases/tag/43.123.6)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.34 (main) ([#42675](renovatebot/renovate#42675)) ([5251496](renovatebot/renovate@5251496))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.22 (main) ([#42674](renovatebot/renovate#42674)) ([f69abc5](renovatebot/renovate@f69abc5))

---
##### [\`43.123.5\`](https://github.com/renovatebot/renovate/releases/tag/43.123.5)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.33 (main) ([#42673](renovatebot/renovate#42673)) ([d33efe2](renovatebot/renovate@d33efe2))

---
##### [\`43.123.4\`](https://github.com/renovatebot/renovate/releases/tag/43.123.4)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.32 (main) ([#42669](renovatebot/renovate#42669)) ([a14d85b](renovatebot/renovate@a14d85b))

---
##### [\`43.123.3\`](https://github.com/renovatebot/renovate/releases/tag/43.123.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.31 (main) ([#42668](renovatebot/renovate#42668)) ([7d2c1ac](renovatebot/renovate@7d2c1ac))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.21 (main) ([#42667](renovatebot/renovate#42667)) ([f891066](renovatebot/renovate@f891066))

---
##### [\`43.123.2\`](renovatebot/renovate@43.123.1...43.123.2)


---
##### [\`43.123.1\`](https://github.com/renovatebot/renovate/releases/tag/43.123.1)

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.22 (main) ([#42658](renovatebot/renovate#42658)) ([9e33c20](renovatebot/renovate@9e33c20))

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.6 (main) ([#42657](renovatebot/renovate#42657)) ([80146b2](renovatebot/renovate@80146b2))

##### Continuous Integration

- auto-label `needs-discussion` on externally-raised Issues ([#42656](renovatebot/renovate#42656)) ([6a0e718](renovatebot/renovate@6a0e718))

---
##### [\`43.123.0\`](https://github.com/renovatebot/renovate/releases/tag/43.123.0)

##### Features

- add XcodeGen manager for Swift package dependencies in project.yml files ([#41889](renovatebot/renovate#41889)) ([0ff55d2](renovatebot/renovate@0ff55d2))
- **presets:** add `BUN_CONFIG_MAX_HTTP_REQUESTS` to safe global env ([#41350](renovatebot/renovate#41350)) ([1316fd7](renovatebot/renovate@1316fd7))
- **presets:** add changelogUrl link for Forgejo and Gitea digest updates ([#41786](renovatebot/renovate#41786)) ([0f9a516](renovatebot/renovate@0f9a516))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.21 (main) ([#42654](renovatebot/renovate#42654)) ([3891a11](renovatebot/renovate@3891a11))

##### Code Refactoring

- **terraform-module:** replace interfaces with zod schemas and inline fixtures ([#42399](renovatebot/renovate#42399)) ([914c55b](renovatebot/renovate@914c55b))

---
##### [\`43.122.0\`](https://github.com/renovatebot/renovate/releases/tag/43.122.0)

##### Features

- **manager/ant:** support custom `registryUrls` ([#42641](renovatebot/renovate#42641)) ([28ab04b](renovatebot/renovate@28ab04b))

##### Documentation

- use single quotes ([#42648](renovatebot/renovate#42648)) ([3c8521e](renovatebot/renovate@3c8521e))

##### Miscellaneous Chores

- **deps:** update github/codeql-action action to v4.35.2 (main) ([#42650](renovatebot/renovate#42650)) ([40100d0](renovatebot/renovate@40100d0))

---
##### [\`43.121.0\`](https://github.com/renovatebot/renovate/releases/tag/43.121.0)

##### Features

- **manager/ant:** add `coords=` attribute syntax support ([#42635](renovatebot/renovate#42635)) ([15c8ab5](renovatebot/renovate@15c8ab5))
- **terraform-provider:** use registry v2 API for release timestamps ([#42340](renovatebot/renovate#42340)) ([f421075](renovatebot/renovate@f421075))

##### Bug Fixes

- **git:** don't pass extraCloneOpts to ls-remote when local clone exists ([#42491](renovatebot/renovate#42491)) ([70fa962](renovatebot/renovate@70fa962))
- **gitlab:** loosen re-approve constraints during updatePr ([#42528](renovatebot/renovate#42528)) ([7b4f75b](renovatebot/renovate@7b4f75b))

##### Documentation

- correct name of `osv-offline` ([#42486](renovatebot/renovate#42486)) ([0fbc124](renovatebot/renovate@0fbc124))
- **minimum-release-age:** add reference to cooldowns ([#42640](renovatebot/renovate#42640)) ([25e47df](renovatebot/renovate@25e47df))

##### Miscellaneous Chores

- **deps:** update ghcr.io/zizmorcore/zizmor docker tag to v1.24.1 (main) ([#42642](renovatebot/renovate#42642)) ([61947e2](renovatebot/renovate@61947e2))

##### Code Refactoring

- **cache:** Remove obsolete compress flag ([#42563](renovatebot/renovate#42563)) ([f49de7a](renovatebot/renovate@f49de7a))

##### Build System

- **deps:** update dependency [@renovatebot/osv-offline](https://github.com/renovatebot/osv-offline) to v2.5.0 (main) ([#42645](renovatebot/renovate#42645)) ([4cb4030](renovatebot/renovate@4cb4030))

---
##### [\`43.120.2\`](https://github.com/renovatebot/renovate/releases/tag/43.120.2)

##### Bug Fixes

- **vulnerability:** remove matchFileNames restriction from GitHub vulnerability alerts ([#42636](renovatebot/renovate#42636)) ([593a2b1](renovatebot/renovate@593a2b1))

---
##### [\`43.120.1\`](https://github.com/renovatebot/renovate/releases/tag/43.120.1)

##### Bug Fixes

- **logger:** log file using pretty format not working ([#42319](renovatebot/renovate#42319)) ([1c886e0](renovatebot/renovate@1c886e0))

---
##### [\`43.120.0\`](https://github.com/renovatebot/renovate/releases/tag/43.120.0)

##### Features

- **vulnerability:** add severity and CVSS details to GitHub Dependabot alerts ([#42568](renovatebot/renovate#42568)) ([1e906e8](renovatebot/renovate@1e906e8))

##### Miscellaneous Chores

- **instrumentation:** add timing statistics for `getReleases` ([#42523](renovatebot/renovate#42523)) ([f635ae2](renovatebot/renovate@f635ae2))

---
##### [\`43.119.0\`](https://github.com/renovatebot/renovate/releases/tag/43.119.0)

##### Features

- **manager/ant:** add <import> file traversal ([#42631](renovatebot/renovate#42631)) ([76dcc66](renovatebot/renovate@76dcc66))

---
##### [\`43.118.2\`](https://github.com/renovatebot/renovate/releases/tag/43.118.2)

##### Bug Fixes

- **util/git:** allow setting `config.hooksPath` ([#42630](renovatebot/renovate#42630)) ([33c1bf5](renovatebot/renovate@33c1bf5)), closes [#42588](renovatebot/renovate#42588) [#42628](https://github.com/renovatebot/renovate/issues/42628)

---
##### [\`43.118.1\`](https://github.com/renovatebot/renovate/releases/tag/43.118.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.30 (main) ([#42629](renovatebot/renovate#42629)) ([015264e](renovatebot/renovate@015264e))

##### Miscellaneous Chores

- expose known environment variables ([#42201](renovatebot/renovate#42201)) ([b39b50f](renovatebot/renovate@b39b50f))

---
##### [\`43.118.0\`](https://github.com/renovatebot/renovate/releases/tag/43.118.0)

##### Features

- **manager/ant:** add property resolution and .properties file support ([#42175](renovatebot/renovate#42175)) ([ef8e6c8](renovatebot/renovate@ef8e6c8))

---
##### [\`43.117.0\`](https://github.com/renovatebot/renovate/releases/tag/43.117.0)

##### Features

- **bitbucket-pipelines:** update file patterns to support shared configs ([#41704](renovatebot/renovate#41704)) ([53bd796](renovatebot/renovate@53bd796))
- **cache:** add a in-memory expiry map to package file cache ([#42531](renovatebot/renovate#42531)) ([5184761](renovatebot/renovate@5184761))

---
##### [\`43.116.1\`](https://github.com/renovatebot/renovate/releases/tag/43.116.1)

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.5 (main) ([#42626](renovatebot/renovate#42626)) ([7363aee](renovatebot/renovate@7363aee))

---
##### [\`43.116.0\`](https://github.com/renovatebot/renovate/releases/tag/43.116.0)

##### Features

- **osv:** mark malicious packages with `skipReason`s ([#42510](renovatebot/renovate#42510)) ([01f2479](renovatebot/renovate@01f2479))

##### Miscellaneous Chores

- **deps:** update dependency typescript to v6 (main) ([#42615](renovatebot/renovate#42615)) ([d9417b0](renovatebot/renovate@d9417b0))

##### Code Refactoring

- move `requireConfig` to `InheritConfig` ([#41385](renovatebot/renovate#41385)) ([36f9d4a](renovatebot/renovate@36f9d4a))

---
##### [\`43.115.1\`](https://github.com/renovatebot/renovate/releases/tag/43.115.1)

##### Miscellaneous Chores

- **deps:** update actions/github-script action to v9 (main) ([#42613](renovatebot/renovate#42613)) ([1fac64b](renovatebot/renovate@1fac64b))
- **deps:** update actions/upload-pages-artifact action to v5 (main) ([#42614](renovatebot/renovate#42614)) ([cf79688](renovatebot/renovate@cf79688))
- **deps:** update dependency vitest-mock-extended to v4 (main) ([#42616](renovatebot/renovate#42616)) ([1afe9a7](renovatebot/renovate@1afe9a7))
- **deps:** update nick-fields/retry action to v4 (main) ([#42617](renovatebot/renovate#42617)) ([7eee338](renovatebot/renovate@7eee338))
- **deps:** update slackapi/slack-github-action action to v3 (main) ([#42619](renovatebot/renovate#42619)) ([d2d8297](renovatebot/renovate@d2d8297))
- **deps:** update vitest monorepo to v4.1.3 (main) ([#42623](renovatebot/renovate#42623)) ([6cf2410](renovatebot/renovate@6cf2410))
- drop obsolete tsconfig ([#42622](renovatebot/renovate#42622)) ([fcf1e20](renovatebot/renovate@fcf1e20))
- **renovate:** disable next branch ([#42620](renovatebot/renovate#42620)) ([d2abeb4](renovatebot/renovate@d2abeb4))
- **tsdown:** migrate config ([#42621](renovatebot/renovate#42621)) ([32964bd](renovatebot/renovate@32964bd))
- **types:** add `skipStage=enrichment` ([#42585](renovatebot/renovate#42585)) ([4faa847](renovatebot/renovate@4faa847))

##### Build System

- **deps:** update dependency p-queue to v9.1.2 (main) ([#42624](renovatebot/renovate#42624)) ([19baa76](renovatebot/renovate@19baa76))
- **deps:** update dependency simple-git to v3.35.2 (main) ([#42588](renovatebot/renovate#42588)) ([a7b5b48](renovatebot/renovate@a7b5b48))

---
##### [\`43.115.0\`](https://github.com/renovatebot/renovate/releases/tag/43.115.0)

##### Features

- **packageRules:** bumpVersions.type sync ([#42540](renovatebot/renovate#42540)) ([0389869](renovatebot/renovate@0389869))

---
##### [\`43.114.0\`](https://github.com/renovatebot/renovate/releases/tag/43.114.0)

##### Features

- **manager/mise:** add support for openfga ([#42611](renovatebot/renovate#42611)) ([203c5fe](renovatebot/renovate@203c5fe))

##### Miscellaneous Chores

- **deps:** update zizmorcore/zizmor-action action to v0.5.3 (main) ([#42607](renovatebot/renovate#42607)) ([c815d30](renovatebot/renovate@c815d30))
- **types:** add a strong type for `ToolName` and `ConstraintName` ([#42589](renovatebot/renovate#42589)) ([1044a80](renovatebot/renovate@1044a80)), closes [#41849](renovatebot/renovate#41849)

---
##### [\`43.113.0\`](https://github.com/renovatebot/renovate/releases/tag/43.113.0)

##### Features

- **sbt:** support anonymous objects and dotted symbols for version declaration ([#40699](renovatebot/renovate#40699)) ([ef3c964](renovatebot/renovate@ef3c964))

##### Bug Fixes

- **workers/repository:** don't include `skipReason`'d dependencies in flattened updates ([#42595](renovatebot/renovate#42595)) ([f8b4477](renovatebot/renovate@f8b4477)), closes [#42510](renovatebot/renovate#42510)

##### Miscellaneous Chores

- **deps:** update actions/cache action to v5.0.5 (main) ([#42598](renovatebot/renovate#42598)) ([a808338](renovatebot/renovate@a808338))
- **deps:** update containerbase/internal-tools action to v4.5.20 (main) ([#42602](renovatebot/renovate#42602)) ([d2131a7](renovatebot/renovate@d2131a7))
- **deps:** update dependency [@smithy/util-stream](https://github.com/smithy/util-stream) to v4.5.22 (main) ([#42603](renovatebot/renovate#42603)) ([81e51cb](renovatebot/renovate@81e51cb))

---
##### [\`43.112.1\`](https://github.com/renovatebot/renovate/releases/tag/43.112.1)

##### Bug Fixes

- **cache:** Improve SQLite cache error handling ([#42557](renovatebot/renovate#42557)) ([50a2bac](renovatebot/renovate@50a2bac))

##### Code Refactoring

- **dashboard:** align terminology with other sections ([#42354](renovatebot/renovate#42354)) ([27f0797](renovatebot/renovate@27f0797))

---
##### [\`43.112.0\`](https://github.com/renovatebot/renovate/releases/tag/43.112.0)

##### Features

- **cache:** Add `writeSchema` to Maven cache provider ([#42570](renovatebot/renovate#42570)) ([e33aa4c](renovatebot/renovate@e33aa4c))

##### Miscellaneous Chores

- **deps:** update dependency oxlint-tsgolint to v0.20.0 (main) ([#42593](renovatebot/renovate#42593)) ([d80881e](renovatebot/renovate@d80881e))

---
##### [\`43.111.3\`](https://github.com/renovatebot/renovate/releases/tag/43.111.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.29 (main) ([#42592](renovatebot/renovate#42592)) ([edc474a](renovatebot/renovate@edc474a))

##### Documentation

- add Renovate Operator as Kubernetes-native option ([#42506](renovatebot/renovate#42506)) ([91a7213](renovatebot/renovate@91a7213))

---
##### [\`43.111.2\`](https://github.com/renovatebot/renovate/releases/tag/43.111.2)

##### Bug Fixes

- **github-actions:** use correct datasource for Zizmor version ([#42587](renovatebot/renovate#42587)) ([ea1e60e](renovatebot/renovate@ea1e60e))

---
##### [\`43.111.1\`](https://github.com/renovatebot/renovate/releases/tag/43.111.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.28 (main) ([#42580](renovatebot/renovate#42580)) ([216fc99](renovatebot/renovate@216fc99))

##### Documentation

- update references to python to [`8428c32`](renovatebot/renovate@8428c32) (main) ([#42572](renovatebot/renovate#42572)) ([c549ff7](renovatebot/renovate@c549ff7))
- update references to renovatebot/github-action to v46.1.8 (main) ([#42573](renovatebot/renovate#42573)) ([da4e84e](renovatebot/renovate@da4e84e))
- update references to renovatebot/github-action to v46.1.9 (main) ([#42577](renovatebot/renovate#42577)) ([2870abe](renovatebot/renovate@2870abe))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.19 (main) ([#42574](renovatebot/renovate#42574)) ([f31e3d4](renovatebot/renovate@f31e3d4))
- **deps:** update dependency [@containerbase/istanbul-reports-html](https://github.com/containerbase/istanbul-reports-html) to v1.1.43 (main) ([#42575](renovatebot/renovate#42575)) ([7af9aed](renovatebot/renovate@7af9aed))
- **deps:** update dependency [@containerbase/semantic-release-pnpm](https://github.com/containerbase/semantic-release-pnpm) to v1.3.33 (main) ([#42576](renovatebot/renovate#42576)) ([3870e76](renovatebot/renovate@3870e76))
- **deps:** update dependency nock to v14.0.12 (main) ([#42571](renovatebot/renovate#42571)) ([81791bd](renovatebot/renovate@81791bd))
- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.20 (main) ([#42579](renovatebot/renovate#42579)) ([90a2429](renovatebot/renovate@90a2429))

---
##### [\`43.111.0\`](https://github.com/renovatebot/renovate/releases/tag/43.111.0)

##### Features

- **npm:** Trim response data before caching ([#42559](renovatebot/renovate#42559)) ([b359a1d](renovatebot/renovate@b359a1d))

##### Miscellaneous Chores

- **types:** allow `constraints` to be passed through to `getReleases` ([#42564](renovatebot/renovate#42564)) ([6238715](renovatebot/renovate@6238715))
renovate Bot added a commit to sdwilsh/ansible-playbooks that referenced this pull request Apr 17, 2026
##### [\`43.127.3\`](https://github.com/renovatebot/renovate/releases/tag/43.127.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.35.2 (main) ([#42717](renovatebot/renovate#42717)) ([a4456c1](renovatebot/renovate@a4456c1))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.24 (main) ([#42665](renovatebot/renovate#42665)) ([19a2409](renovatebot/renovate@19a2409))
- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.23 (main) ([#42715](renovatebot/renovate#42715)) ([1953812](renovatebot/renovate@1953812))

##### Code Refactoring

- **logger:** use expose to load bunyan ([#42714](renovatebot/renovate#42714)) ([954ec4f](renovatebot/renovate@954ec4f))

---
##### [\`43.127.2\`](https://github.com/renovatebot/renovate/releases/tag/43.127.2)

##### Bug Fixes

- **manager/github-actions:** revert recent changes ([#42707](renovatebot/renovate#42707)) ([db64cc6](renovatebot/renovate@db64cc6)), closes [#42690](renovatebot/renovate#42690) [#42683](renovatebot/renovate#42683) [#42685](renovatebot/renovate#42685)
- **presets:** restore custom `versioning` ([#42693](renovatebot/renovate#42693)) ([5437860](renovatebot/renovate@5437860))

##### Miscellaneous Chores

- **deps:** update devcontainers/ci action to v0.3.1900000449 (main) ([#42705](renovatebot/renovate#42705)) ([fe10c94](renovatebot/renovate@fe10c94))

---
##### [\`43.127.1\`](renovatebot/renovate@43.127.0...43.127.1)


---
##### [\`43.127.0\`](renovatebot/renovate@43.126.0...43.127.0)


---
##### [\`43.126.0\`](https://github.com/renovatebot/renovate/releases/tag/43.126.0)

##### Features

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.34.0 (main) ([#42697](renovatebot/renovate#42697)) ([4b61c70](renovatebot/renovate@4b61c70))

##### Miscellaneous Chores

- **deps:** update dependency node to v24.15.0 (main) ([#42695](renovatebot/renovate#42695)) ([dc90208](renovatebot/renovate@dc90208))

---
##### [\`43.125.1\`](https://github.com/renovatebot/renovate/releases/tag/43.125.1)

##### Bug Fixes

- **manager/github-actions:** override `versioning` for Actions with Immutable Tags ([#42690](renovatebot/renovate#42690)) ([1b0785b](renovatebot/renovate@1b0785b))

---
##### [\`43.125.0\`](https://github.com/renovatebot/renovate/releases/tag/43.125.0)

##### Features

- **replacements:** migrate users to astral/setup-uv v8 ([#42683](renovatebot/renovate#42683)) ([f5859c2](renovatebot/renovate@f5859c2))

---
##### [\`43.124.1\`](https://github.com/renovatebot/renovate/releases/tag/43.124.1)

##### Bug Fixes

- **docker:** only set `replaceString` if requested ([#42649](renovatebot/renovate#42649)) ([f6d4106](renovatebot/renovate@f6d4106))

---
##### [\`43.124.0\`](https://github.com/renovatebot/renovate/releases/tag/43.124.0)

##### Features

- **manager/github-actions:** use `semver-partial` as default versioning ([#42685](renovatebot/renovate#42685)) ([da04b8e](renovatebot/renovate@da04b8e)), closes [#42331](renovatebot/renovate#42331)

##### Documentation

- fix link in vulnerabilityAlerts docs ([#42680](renovatebot/renovate#42680)) ([b0fd397](renovatebot/renovate@b0fd397))

##### Continuous Integration

- **auto-prs:** handle draft PRs better ([#42686](renovatebot/renovate#42686)) ([0a86cc5](renovatebot/renovate@0a86cc5))

---
##### [\`43.123.8\`](https://github.com/renovatebot/renovate/releases/tag/43.123.8)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.35 (main) ([#42681](renovatebot/renovate#42681)) ([4b597ec](renovatebot/renovate@4b597ec))
- **package-rules:** correctly merge `force.enabled` ([#42679](renovatebot/renovate#42679)) ([ae22250](renovatebot/renovate@ae22250)), closes [#42666](renovatebot/renovate#42666)

##### Tests

- **git:** test failing when no git author is configured ([#42676](renovatebot/renovate#42676)) ([f9bddb9](renovatebot/renovate@f9bddb9))

---
##### [\`43.123.7\`](https://github.com/renovatebot/renovate/releases/tag/43.123.7)

##### Miscellaneous Chores

- **deps:** update vitest monorepo to v4.1.4 (main) ([#42677](renovatebot/renovate#42677)) ([7907192](renovatebot/renovate@7907192))

##### Build System

- **deps:** update node.js to v24.15.0 (main) ([#42678](renovatebot/renovate#42678)) ([a40a0f0](renovatebot/renovate@a40a0f0))

---
##### [\`43.123.6\`](https://github.com/renovatebot/renovate/releases/tag/43.123.6)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.34 (main) ([#42675](renovatebot/renovate#42675)) ([5251496](renovatebot/renovate@5251496))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.22 (main) ([#42674](renovatebot/renovate#42674)) ([f69abc5](renovatebot/renovate@f69abc5))

---
##### [\`43.123.5\`](https://github.com/renovatebot/renovate/releases/tag/43.123.5)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.33 (main) ([#42673](renovatebot/renovate#42673)) ([d33efe2](renovatebot/renovate@d33efe2))

---
##### [\`43.123.4\`](https://github.com/renovatebot/renovate/releases/tag/43.123.4)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.32 (main) ([#42669](renovatebot/renovate#42669)) ([a14d85b](renovatebot/renovate@a14d85b))

---
##### [\`43.123.3\`](https://github.com/renovatebot/renovate/releases/tag/43.123.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.31 (main) ([#42668](renovatebot/renovate#42668)) ([7d2c1ac](renovatebot/renovate@7d2c1ac))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.21 (main) ([#42667](renovatebot/renovate#42667)) ([f891066](renovatebot/renovate@f891066))

---
##### [\`43.123.2\`](renovatebot/renovate@43.123.1...43.123.2)


---
##### [\`43.123.1\`](https://github.com/renovatebot/renovate/releases/tag/43.123.1)

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.22 (main) ([#42658](renovatebot/renovate#42658)) ([9e33c20](renovatebot/renovate@9e33c20))

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.6 (main) ([#42657](renovatebot/renovate#42657)) ([80146b2](renovatebot/renovate@80146b2))

##### Continuous Integration

- auto-label `needs-discussion` on externally-raised Issues ([#42656](renovatebot/renovate#42656)) ([6a0e718](renovatebot/renovate@6a0e718))

---
##### [\`43.123.0\`](https://github.com/renovatebot/renovate/releases/tag/43.123.0)

##### Features

- add XcodeGen manager for Swift package dependencies in project.yml files ([#41889](renovatebot/renovate#41889)) ([0ff55d2](renovatebot/renovate@0ff55d2))
- **presets:** add `BUN_CONFIG_MAX_HTTP_REQUESTS` to safe global env ([#41350](renovatebot/renovate#41350)) ([1316fd7](renovatebot/renovate@1316fd7))
- **presets:** add changelogUrl link for Forgejo and Gitea digest updates ([#41786](renovatebot/renovate#41786)) ([0f9a516](renovatebot/renovate@0f9a516))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.21 (main) ([#42654](renovatebot/renovate#42654)) ([3891a11](renovatebot/renovate@3891a11))

##### Code Refactoring

- **terraform-module:** replace interfaces with zod schemas and inline fixtures ([#42399](renovatebot/renovate#42399)) ([914c55b](renovatebot/renovate@914c55b))

---
##### [\`43.122.0\`](https://github.com/renovatebot/renovate/releases/tag/43.122.0)

##### Features

- **manager/ant:** support custom `registryUrls` ([#42641](renovatebot/renovate#42641)) ([28ab04b](renovatebot/renovate@28ab04b))

##### Documentation

- use single quotes ([#42648](renovatebot/renovate#42648)) ([3c8521e](renovatebot/renovate@3c8521e))

##### Miscellaneous Chores

- **deps:** update github/codeql-action action to v4.35.2 (main) ([#42650](renovatebot/renovate#42650)) ([40100d0](renovatebot/renovate@40100d0))

---
##### [\`43.121.0\`](https://github.com/renovatebot/renovate/releases/tag/43.121.0)

##### Features

- **manager/ant:** add `coords=` attribute syntax support ([#42635](renovatebot/renovate#42635)) ([15c8ab5](renovatebot/renovate@15c8ab5))
- **terraform-provider:** use registry v2 API for release timestamps ([#42340](renovatebot/renovate#42340)) ([f421075](renovatebot/renovate@f421075))

##### Bug Fixes

- **git:** don't pass extraCloneOpts to ls-remote when local clone exists ([#42491](renovatebot/renovate#42491)) ([70fa962](renovatebot/renovate@70fa962))
- **gitlab:** loosen re-approve constraints during updatePr ([#42528](renovatebot/renovate#42528)) ([7b4f75b](renovatebot/renovate@7b4f75b))

##### Documentation

- correct name of `osv-offline` ([#42486](renovatebot/renovate#42486)) ([0fbc124](renovatebot/renovate@0fbc124))
- **minimum-release-age:** add reference to cooldowns ([#42640](renovatebot/renovate#42640)) ([25e47df](renovatebot/renovate@25e47df))

##### Miscellaneous Chores

- **deps:** update ghcr.io/zizmorcore/zizmor docker tag to v1.24.1 (main) ([#42642](renovatebot/renovate#42642)) ([61947e2](renovatebot/renovate@61947e2))

##### Code Refactoring

- **cache:** Remove obsolete compress flag ([#42563](renovatebot/renovate#42563)) ([f49de7a](renovatebot/renovate@f49de7a))

##### Build System

- **deps:** update dependency [@renovatebot/osv-offline](https://github.com/renovatebot/osv-offline) to v2.5.0 (main) ([#42645](renovatebot/renovate#42645)) ([4cb4030](renovatebot/renovate@4cb4030))

---
##### [\`43.120.2\`](https://github.com/renovatebot/renovate/releases/tag/43.120.2)

##### Bug Fixes

- **vulnerability:** remove matchFileNames restriction from GitHub vulnerability alerts ([#42636](renovatebot/renovate#42636)) ([593a2b1](renovatebot/renovate@593a2b1))

---
##### [\`43.120.1\`](https://github.com/renovatebot/renovate/releases/tag/43.120.1)

##### Bug Fixes

- **logger:** log file using pretty format not working ([#42319](renovatebot/renovate#42319)) ([1c886e0](renovatebot/renovate@1c886e0))

---
##### [\`43.120.0\`](https://github.com/renovatebot/renovate/releases/tag/43.120.0)

##### Features

- **vulnerability:** add severity and CVSS details to GitHub Dependabot alerts ([#42568](renovatebot/renovate#42568)) ([1e906e8](renovatebot/renovate@1e906e8))

##### Miscellaneous Chores

- **instrumentation:** add timing statistics for `getReleases` ([#42523](renovatebot/renovate#42523)) ([f635ae2](renovatebot/renovate@f635ae2))

---
##### [\`43.119.0\`](https://github.com/renovatebot/renovate/releases/tag/43.119.0)

##### Features

- **manager/ant:** add <import> file traversal ([#42631](renovatebot/renovate#42631)) ([76dcc66](renovatebot/renovate@76dcc66))

---
##### [\`43.118.2\`](https://github.com/renovatebot/renovate/releases/tag/43.118.2)

##### Bug Fixes

- **util/git:** allow setting `config.hooksPath` ([#42630](renovatebot/renovate#42630)) ([33c1bf5](renovatebot/renovate@33c1bf5)), closes [#42588](renovatebot/renovate#42588) [#42628](https://github.com/renovatebot/renovate/issues/42628)

---
##### [\`43.118.1\`](https://github.com/renovatebot/renovate/releases/tag/43.118.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.30 (main) ([#42629](renovatebot/renovate#42629)) ([015264e](renovatebot/renovate@015264e))

##### Miscellaneous Chores

- expose known environment variables ([#42201](renovatebot/renovate#42201)) ([b39b50f](renovatebot/renovate@b39b50f))

---
##### [\`43.118.0\`](https://github.com/renovatebot/renovate/releases/tag/43.118.0)

##### Features

- **manager/ant:** add property resolution and .properties file support ([#42175](renovatebot/renovate#42175)) ([ef8e6c8](renovatebot/renovate@ef8e6c8))

---
##### [\`43.117.0\`](https://github.com/renovatebot/renovate/releases/tag/43.117.0)

##### Features

- **bitbucket-pipelines:** update file patterns to support shared configs ([#41704](renovatebot/renovate#41704)) ([53bd796](renovatebot/renovate@53bd796))
- **cache:** add a in-memory expiry map to package file cache ([#42531](renovatebot/renovate#42531)) ([5184761](renovatebot/renovate@5184761))

---
##### [\`43.116.1\`](https://github.com/renovatebot/renovate/releases/tag/43.116.1)

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.5 (main) ([#42626](renovatebot/renovate#42626)) ([7363aee](renovatebot/renovate@7363aee))

---
##### [\`43.116.0\`](https://github.com/renovatebot/renovate/releases/tag/43.116.0)

##### Features

- **osv:** mark malicious packages with `skipReason`s ([#42510](renovatebot/renovate#42510)) ([01f2479](renovatebot/renovate@01f2479))

##### Miscellaneous Chores

- **deps:** update dependency typescript to v6 (main) ([#42615](renovatebot/renovate#42615)) ([d9417b0](renovatebot/renovate@d9417b0))

##### Code Refactoring

- move `requireConfig` to `InheritConfig` ([#41385](renovatebot/renovate#41385)) ([36f9d4a](renovatebot/renovate@36f9d4a))

---
##### [\`43.115.1\`](https://github.com/renovatebot/renovate/releases/tag/43.115.1)

##### Miscellaneous Chores

- **deps:** update actions/github-script action to v9 (main) ([#42613](renovatebot/renovate#42613)) ([1fac64b](renovatebot/renovate@1fac64b))
- **deps:** update actions/upload-pages-artifact action to v5 (main) ([#42614](renovatebot/renovate#42614)) ([cf79688](renovatebot/renovate@cf79688))
- **deps:** update dependency vitest-mock-extended to v4 (main) ([#42616](renovatebot/renovate#42616)) ([1afe9a7](renovatebot/renovate@1afe9a7))
- **deps:** update nick-fields/retry action to v4 (main) ([#42617](renovatebot/renovate#42617)) ([7eee338](renovatebot/renovate@7eee338))
- **deps:** update slackapi/slack-github-action action to v3 (main) ([#42619](renovatebot/renovate#42619)) ([d2d8297](renovatebot/renovate@d2d8297))
- **deps:** update vitest monorepo to v4.1.3 (main) ([#42623](renovatebot/renovate#42623)) ([6cf2410](renovatebot/renovate@6cf2410))
- drop obsolete tsconfig ([#42622](renovatebot/renovate#42622)) ([fcf1e20](renovatebot/renovate@fcf1e20))
- **renovate:** disable next branch ([#42620](renovatebot/renovate#42620)) ([d2abeb4](renovatebot/renovate@d2abeb4))
- **tsdown:** migrate config ([#42621](renovatebot/renovate#42621)) ([32964bd](renovatebot/renovate@32964bd))
- **types:** add `skipStage=enrichment` ([#42585](renovatebot/renovate#42585)) ([4faa847](renovatebot/renovate@4faa847))

##### Build System

- **deps:** update dependency p-queue to v9.1.2 (main) ([#42624](renovatebot/renovate#42624)) ([19baa76](renovatebot/renovate@19baa76))
- **deps:** update dependency simple-git to v3.35.2 (main) ([#42588](renovatebot/renovate#42588)) ([a7b5b48](renovatebot/renovate@a7b5b48))

---
##### [\`43.115.0\`](https://github.com/renovatebot/renovate/releases/tag/43.115.0)

##### Features

- **packageRules:** bumpVersions.type sync ([#42540](renovatebot/renovate#42540)) ([0389869](renovatebot/renovate@0389869))

---
##### [\`43.114.0\`](https://github.com/renovatebot/renovate/releases/tag/43.114.0)

##### Features

- **manager/mise:** add support for openfga ([#42611](renovatebot/renovate#42611)) ([203c5fe](renovatebot/renovate@203c5fe))

##### Miscellaneous Chores

- **deps:** update zizmorcore/zizmor-action action to v0.5.3 (main) ([#42607](renovatebot/renovate#42607)) ([c815d30](renovatebot/renovate@c815d30))
- **types:** add a strong type for `ToolName` and `ConstraintName` ([#42589](renovatebot/renovate#42589)) ([1044a80](renovatebot/renovate@1044a80)), closes [#41849](renovatebot/renovate#41849)

---
##### [\`43.113.0\`](https://github.com/renovatebot/renovate/releases/tag/43.113.0)

##### Features

- **sbt:** support anonymous objects and dotted symbols for version declaration ([#40699](renovatebot/renovate#40699)) ([ef3c964](renovatebot/renovate@ef3c964))

##### Bug Fixes

- **workers/repository:** don't include `skipReason`'d dependencies in flattened updates ([#42595](renovatebot/renovate#42595)) ([f8b4477](renovatebot/renovate@f8b4477)), closes [#42510](renovatebot/renovate#42510)

##### Miscellaneous Chores

- **deps:** update actions/cache action to v5.0.5 (main) ([#42598](renovatebot/renovate#42598)) ([a808338](renovatebot/renovate@a808338))
- **deps:** update containerbase/internal-tools action to v4.5.20 (main) ([#42602](renovatebot/renovate#42602)) ([d2131a7](renovatebot/renovate@d2131a7))
- **deps:** update dependency [@smithy/util-stream](https://github.com/smithy/util-stream) to v4.5.22 (main) ([#42603](renovatebot/renovate#42603)) ([81e51cb](renovatebot/renovate@81e51cb))

---
##### [\`43.112.1\`](https://github.com/renovatebot/renovate/releases/tag/43.112.1)

##### Bug Fixes

- **cache:** Improve SQLite cache error handling ([#42557](renovatebot/renovate#42557)) ([50a2bac](renovatebot/renovate@50a2bac))

##### Code Refactoring

- **dashboard:** align terminology with other sections ([#42354](renovatebot/renovate#42354)) ([27f0797](renovatebot/renovate@27f0797))

---
##### [\`43.112.0\`](https://github.com/renovatebot/renovate/releases/tag/43.112.0)

##### Features

- **cache:** Add `writeSchema` to Maven cache provider ([#42570](renovatebot/renovate#42570)) ([e33aa4c](renovatebot/renovate@e33aa4c))

##### Miscellaneous Chores

- **deps:** update dependency oxlint-tsgolint to v0.20.0 (main) ([#42593](renovatebot/renovate#42593)) ([d80881e](renovatebot/renovate@d80881e))

---
##### [\`43.111.3\`](https://github.com/renovatebot/renovate/releases/tag/43.111.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.29 (main) ([#42592](renovatebot/renovate#42592)) ([edc474a](renovatebot/renovate@edc474a))

##### Documentation

- add Renovate Operator as Kubernetes-native option ([#42506](renovatebot/renovate#42506)) ([91a7213](renovatebot/renovate@91a7213))

---
##### [\`43.111.2\`](https://github.com/renovatebot/renovate/releases/tag/43.111.2)

##### Bug Fixes

- **github-actions:** use correct datasource for Zizmor version ([#42587](renovatebot/renovate#42587)) ([ea1e60e](renovatebot/renovate@ea1e60e))

---
##### [\`43.111.1\`](https://github.com/renovatebot/renovate/releases/tag/43.111.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.28 (main) ([#42580](renovatebot/renovate#42580)) ([216fc99](renovatebot/renovate@216fc99))

##### Documentation

- update references to python to [`8428c32`](renovatebot/renovate@8428c32) (main) ([#42572](renovatebot/renovate#42572)) ([c549ff7](renovatebot/renovate@c549ff7))
- update references to renovatebot/github-action to v46.1.8 (main) ([#42573](renovatebot/renovate#42573)) ([da4e84e](renovatebot/renovate@da4e84e))
- update references to renovatebot/github-action to v46.1.9 (main) ([#42577](renovatebot/renovate#42577)) ([2870abe](renovatebot/renovate@2870abe))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.19 (main) ([#42574](renovatebot/renovate#42574)) ([f31e3d4](renovatebot/renovate@f31e3d4))
- **deps:** update dependency [@containerbase/istanbul-reports-html](https://github.com/containerbase/istanbul-reports-html) to v1.1.43 (main) ([#42575](renovatebot/renovate#42575)) ([7af9aed](renovatebot/renovate@7af9aed))
- **deps:** update dependency [@containerbase/semantic-release-pnpm](https://github.com/containerbase/semantic-release-pnpm) to v1.3.33 (main) ([#42576](renovatebot/renovate#42576)) ([3870e76](renovatebot/renovate@3870e76))
- **deps:** update dependency nock to v14.0.12 (main) ([#42571](renovatebot/renovate#42571)) ([81791bd](renovatebot/renovate@81791bd))
- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.20 (main) ([#42579](renovatebot/renovate#42579)) ([90a2429](renovatebot/renovate@90a2429))

---
##### [\`43.111.0\`](https://github.com/renovatebot/renovate/releases/tag/43.111.0)

##### Features

- **npm:** Trim response data before caching ([#42559](renovatebot/renovate#42559)) ([b359a1d](renovatebot/renovate@b359a1d))

##### Miscellaneous Chores

- **types:** allow `constraints` to be passed through to `getReleases` ([#42564](renovatebot/renovate#42564)) ([6238715](renovatebot/renovate@6238715))
renovate Bot added a commit to sdwilsh/ansible-playbooks that referenced this pull request Apr 17, 2026
##### [\`43.128.1\`](https://github.com/renovatebot/renovate/releases/tag/43.128.1)

##### Bug Fixes

- **datasource/npm:** catch invalid engines ([#42718](renovatebot/renovate#42718)) ([06cf949](renovatebot/renovate@06cf949))

##### Continuous Integration

- add an auto-label for new `monorepo.json` onboarding ([#42660](renovatebot/renovate#42660)) ([5cfb467](renovatebot/renovate@5cfb467))
- **auto-label:** manually comment + close issues ([#42722](renovatebot/renovate#42722)) ([170cf56](renovatebot/renovate@170cf56))

---
##### [\`43.128.0\`](renovatebot/renovate@43.127.3...43.128.0)


---
##### [\`43.127.3\`](https://github.com/renovatebot/renovate/releases/tag/43.127.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.35.2 (main) ([#42717](renovatebot/renovate#42717)) ([a4456c1](renovatebot/renovate@a4456c1))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.24 (main) ([#42665](renovatebot/renovate#42665)) ([19a2409](renovatebot/renovate@19a2409))
- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.23 (main) ([#42715](renovatebot/renovate#42715)) ([1953812](renovatebot/renovate@1953812))

##### Code Refactoring

- **logger:** use expose to load bunyan ([#42714](renovatebot/renovate#42714)) ([954ec4f](renovatebot/renovate@954ec4f))

---
##### [\`43.127.2\`](https://github.com/renovatebot/renovate/releases/tag/43.127.2)

##### Bug Fixes

- **manager/github-actions:** revert recent changes ([#42707](renovatebot/renovate#42707)) ([db64cc6](renovatebot/renovate@db64cc6)), closes [#42690](renovatebot/renovate#42690) [#42683](renovatebot/renovate#42683) [#42685](renovatebot/renovate#42685)
- **presets:** restore custom `versioning` ([#42693](renovatebot/renovate#42693)) ([5437860](renovatebot/renovate@5437860))

##### Miscellaneous Chores

- **deps:** update devcontainers/ci action to v0.3.1900000449 (main) ([#42705](renovatebot/renovate#42705)) ([fe10c94](renovatebot/renovate@fe10c94))

---
##### [\`43.127.1\`](renovatebot/renovate@43.127.0...43.127.1)


---
##### [\`43.127.0\`](renovatebot/renovate@43.126.0...43.127.0)


---
##### [\`43.126.0\`](https://github.com/renovatebot/renovate/releases/tag/43.126.0)

##### Features

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.34.0 (main) ([#42697](renovatebot/renovate#42697)) ([4b61c70](renovatebot/renovate@4b61c70))

##### Miscellaneous Chores

- **deps:** update dependency node to v24.15.0 (main) ([#42695](renovatebot/renovate#42695)) ([dc90208](renovatebot/renovate@dc90208))

---
##### [\`43.125.1\`](https://github.com/renovatebot/renovate/releases/tag/43.125.1)

##### Bug Fixes

- **manager/github-actions:** override `versioning` for Actions with Immutable Tags ([#42690](renovatebot/renovate#42690)) ([1b0785b](renovatebot/renovate@1b0785b))

---
##### [\`43.125.0\`](https://github.com/renovatebot/renovate/releases/tag/43.125.0)

##### Features

- **replacements:** migrate users to astral/setup-uv v8 ([#42683](renovatebot/renovate#42683)) ([f5859c2](renovatebot/renovate@f5859c2))

---
##### [\`43.124.1\`](https://github.com/renovatebot/renovate/releases/tag/43.124.1)

##### Bug Fixes

- **docker:** only set `replaceString` if requested ([#42649](renovatebot/renovate#42649)) ([f6d4106](renovatebot/renovate@f6d4106))

---
##### [\`43.124.0\`](https://github.com/renovatebot/renovate/releases/tag/43.124.0)

##### Features

- **manager/github-actions:** use `semver-partial` as default versioning ([#42685](renovatebot/renovate#42685)) ([da04b8e](renovatebot/renovate@da04b8e)), closes [#42331](renovatebot/renovate#42331)

##### Documentation

- fix link in vulnerabilityAlerts docs ([#42680](renovatebot/renovate#42680)) ([b0fd397](renovatebot/renovate@b0fd397))

##### Continuous Integration

- **auto-prs:** handle draft PRs better ([#42686](renovatebot/renovate#42686)) ([0a86cc5](renovatebot/renovate@0a86cc5))

---
##### [\`43.123.8\`](https://github.com/renovatebot/renovate/releases/tag/43.123.8)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.35 (main) ([#42681](renovatebot/renovate#42681)) ([4b597ec](renovatebot/renovate@4b597ec))
- **package-rules:** correctly merge `force.enabled` ([#42679](renovatebot/renovate#42679)) ([ae22250](renovatebot/renovate@ae22250)), closes [#42666](renovatebot/renovate#42666)

##### Tests

- **git:** test failing when no git author is configured ([#42676](renovatebot/renovate#42676)) ([f9bddb9](renovatebot/renovate@f9bddb9))

---
##### [\`43.123.7\`](https://github.com/renovatebot/renovate/releases/tag/43.123.7)

##### Miscellaneous Chores

- **deps:** update vitest monorepo to v4.1.4 (main) ([#42677](renovatebot/renovate#42677)) ([7907192](renovatebot/renovate@7907192))

##### Build System

- **deps:** update node.js to v24.15.0 (main) ([#42678](renovatebot/renovate#42678)) ([a40a0f0](renovatebot/renovate@a40a0f0))

---
##### [\`43.123.6\`](https://github.com/renovatebot/renovate/releases/tag/43.123.6)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.34 (main) ([#42675](renovatebot/renovate#42675)) ([5251496](renovatebot/renovate@5251496))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.22 (main) ([#42674](renovatebot/renovate#42674)) ([f69abc5](renovatebot/renovate@f69abc5))

---
##### [\`43.123.5\`](https://github.com/renovatebot/renovate/releases/tag/43.123.5)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.33 (main) ([#42673](renovatebot/renovate#42673)) ([d33efe2](renovatebot/renovate@d33efe2))

---
##### [\`43.123.4\`](https://github.com/renovatebot/renovate/releases/tag/43.123.4)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.32 (main) ([#42669](renovatebot/renovate#42669)) ([a14d85b](renovatebot/renovate@a14d85b))

---
##### [\`43.123.3\`](https://github.com/renovatebot/renovate/releases/tag/43.123.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.31 (main) ([#42668](renovatebot/renovate#42668)) ([7d2c1ac](renovatebot/renovate@7d2c1ac))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.21 (main) ([#42667](renovatebot/renovate#42667)) ([f891066](renovatebot/renovate@f891066))

---
##### [\`43.123.2\`](renovatebot/renovate@43.123.1...43.123.2)


---
##### [\`43.123.1\`](https://github.com/renovatebot/renovate/releases/tag/43.123.1)

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.22 (main) ([#42658](renovatebot/renovate#42658)) ([9e33c20](renovatebot/renovate@9e33c20))

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.6 (main) ([#42657](renovatebot/renovate#42657)) ([80146b2](renovatebot/renovate@80146b2))

##### Continuous Integration

- auto-label `needs-discussion` on externally-raised Issues ([#42656](renovatebot/renovate#42656)) ([6a0e718](renovatebot/renovate@6a0e718))

---
##### [\`43.123.0\`](https://github.com/renovatebot/renovate/releases/tag/43.123.0)

##### Features

- add XcodeGen manager for Swift package dependencies in project.yml files ([#41889](renovatebot/renovate#41889)) ([0ff55d2](renovatebot/renovate@0ff55d2))
- **presets:** add `BUN_CONFIG_MAX_HTTP_REQUESTS` to safe global env ([#41350](renovatebot/renovate#41350)) ([1316fd7](renovatebot/renovate@1316fd7))
- **presets:** add changelogUrl link for Forgejo and Gitea digest updates ([#41786](renovatebot/renovate#41786)) ([0f9a516](renovatebot/renovate@0f9a516))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.21 (main) ([#42654](renovatebot/renovate#42654)) ([3891a11](renovatebot/renovate@3891a11))

##### Code Refactoring

- **terraform-module:** replace interfaces with zod schemas and inline fixtures ([#42399](renovatebot/renovate#42399)) ([914c55b](renovatebot/renovate@914c55b))

---
##### [\`43.122.0\`](https://github.com/renovatebot/renovate/releases/tag/43.122.0)

##### Features

- **manager/ant:** support custom `registryUrls` ([#42641](renovatebot/renovate#42641)) ([28ab04b](renovatebot/renovate@28ab04b))

##### Documentation

- use single quotes ([#42648](renovatebot/renovate#42648)) ([3c8521e](renovatebot/renovate@3c8521e))

##### Miscellaneous Chores

- **deps:** update github/codeql-action action to v4.35.2 (main) ([#42650](renovatebot/renovate#42650)) ([40100d0](renovatebot/renovate@40100d0))

---
##### [\`43.121.0\`](https://github.com/renovatebot/renovate/releases/tag/43.121.0)

##### Features

- **manager/ant:** add `coords=` attribute syntax support ([#42635](renovatebot/renovate#42635)) ([15c8ab5](renovatebot/renovate@15c8ab5))
- **terraform-provider:** use registry v2 API for release timestamps ([#42340](renovatebot/renovate#42340)) ([f421075](renovatebot/renovate@f421075))

##### Bug Fixes

- **git:** don't pass extraCloneOpts to ls-remote when local clone exists ([#42491](renovatebot/renovate#42491)) ([70fa962](renovatebot/renovate@70fa962))
- **gitlab:** loosen re-approve constraints during updatePr ([#42528](renovatebot/renovate#42528)) ([7b4f75b](renovatebot/renovate@7b4f75b))

##### Documentation

- correct name of `osv-offline` ([#42486](renovatebot/renovate#42486)) ([0fbc124](renovatebot/renovate@0fbc124))
- **minimum-release-age:** add reference to cooldowns ([#42640](renovatebot/renovate#42640)) ([25e47df](renovatebot/renovate@25e47df))

##### Miscellaneous Chores

- **deps:** update ghcr.io/zizmorcore/zizmor docker tag to v1.24.1 (main) ([#42642](renovatebot/renovate#42642)) ([61947e2](renovatebot/renovate@61947e2))

##### Code Refactoring

- **cache:** Remove obsolete compress flag ([#42563](renovatebot/renovate#42563)) ([f49de7a](renovatebot/renovate@f49de7a))

##### Build System

- **deps:** update dependency [@renovatebot/osv-offline](https://github.com/renovatebot/osv-offline) to v2.5.0 (main) ([#42645](renovatebot/renovate#42645)) ([4cb4030](renovatebot/renovate@4cb4030))

---
##### [\`43.120.2\`](https://github.com/renovatebot/renovate/releases/tag/43.120.2)

##### Bug Fixes

- **vulnerability:** remove matchFileNames restriction from GitHub vulnerability alerts ([#42636](renovatebot/renovate#42636)) ([593a2b1](renovatebot/renovate@593a2b1))

---
##### [\`43.120.1\`](https://github.com/renovatebot/renovate/releases/tag/43.120.1)

##### Bug Fixes

- **logger:** log file using pretty format not working ([#42319](renovatebot/renovate#42319)) ([1c886e0](renovatebot/renovate@1c886e0))

---
##### [\`43.120.0\`](https://github.com/renovatebot/renovate/releases/tag/43.120.0)

##### Features

- **vulnerability:** add severity and CVSS details to GitHub Dependabot alerts ([#42568](renovatebot/renovate#42568)) ([1e906e8](renovatebot/renovate@1e906e8))

##### Miscellaneous Chores

- **instrumentation:** add timing statistics for `getReleases` ([#42523](renovatebot/renovate#42523)) ([f635ae2](renovatebot/renovate@f635ae2))

---
##### [\`43.119.0\`](https://github.com/renovatebot/renovate/releases/tag/43.119.0)

##### Features

- **manager/ant:** add <import> file traversal ([#42631](renovatebot/renovate#42631)) ([76dcc66](renovatebot/renovate@76dcc66))

---
##### [\`43.118.2\`](https://github.com/renovatebot/renovate/releases/tag/43.118.2)

##### Bug Fixes

- **util/git:** allow setting `config.hooksPath` ([#42630](renovatebot/renovate#42630)) ([33c1bf5](renovatebot/renovate@33c1bf5)), closes [#42588](renovatebot/renovate#42588) [#42628](https://github.com/renovatebot/renovate/issues/42628)

---
##### [\`43.118.1\`](https://github.com/renovatebot/renovate/releases/tag/43.118.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.30 (main) ([#42629](renovatebot/renovate#42629)) ([015264e](renovatebot/renovate@015264e))

##### Miscellaneous Chores

- expose known environment variables ([#42201](renovatebot/renovate#42201)) ([b39b50f](renovatebot/renovate@b39b50f))

---
##### [\`43.118.0\`](https://github.com/renovatebot/renovate/releases/tag/43.118.0)

##### Features

- **manager/ant:** add property resolution and .properties file support ([#42175](renovatebot/renovate#42175)) ([ef8e6c8](renovatebot/renovate@ef8e6c8))

---
##### [\`43.117.0\`](https://github.com/renovatebot/renovate/releases/tag/43.117.0)

##### Features

- **bitbucket-pipelines:** update file patterns to support shared configs ([#41704](renovatebot/renovate#41704)) ([53bd796](renovatebot/renovate@53bd796))
- **cache:** add a in-memory expiry map to package file cache ([#42531](renovatebot/renovate#42531)) ([5184761](renovatebot/renovate@5184761))

---
##### [\`43.116.1\`](https://github.com/renovatebot/renovate/releases/tag/43.116.1)

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.5 (main) ([#42626](renovatebot/renovate#42626)) ([7363aee](renovatebot/renovate@7363aee))

---
##### [\`43.116.0\`](https://github.com/renovatebot/renovate/releases/tag/43.116.0)

##### Features

- **osv:** mark malicious packages with `skipReason`s ([#42510](renovatebot/renovate#42510)) ([01f2479](renovatebot/renovate@01f2479))

##### Miscellaneous Chores

- **deps:** update dependency typescript to v6 (main) ([#42615](renovatebot/renovate#42615)) ([d9417b0](renovatebot/renovate@d9417b0))

##### Code Refactoring

- move `requireConfig` to `InheritConfig` ([#41385](renovatebot/renovate#41385)) ([36f9d4a](renovatebot/renovate@36f9d4a))

---
##### [\`43.115.1\`](https://github.com/renovatebot/renovate/releases/tag/43.115.1)

##### Miscellaneous Chores

- **deps:** update actions/github-script action to v9 (main) ([#42613](renovatebot/renovate#42613)) ([1fac64b](renovatebot/renovate@1fac64b))
- **deps:** update actions/upload-pages-artifact action to v5 (main) ([#42614](renovatebot/renovate#42614)) ([cf79688](renovatebot/renovate@cf79688))
- **deps:** update dependency vitest-mock-extended to v4 (main) ([#42616](renovatebot/renovate#42616)) ([1afe9a7](renovatebot/renovate@1afe9a7))
- **deps:** update nick-fields/retry action to v4 (main) ([#42617](renovatebot/renovate#42617)) ([7eee338](renovatebot/renovate@7eee338))
- **deps:** update slackapi/slack-github-action action to v3 (main) ([#42619](renovatebot/renovate#42619)) ([d2d8297](renovatebot/renovate@d2d8297))
- **deps:** update vitest monorepo to v4.1.3 (main) ([#42623](renovatebot/renovate#42623)) ([6cf2410](renovatebot/renovate@6cf2410))
- drop obsolete tsconfig ([#42622](renovatebot/renovate#42622)) ([fcf1e20](renovatebot/renovate@fcf1e20))
- **renovate:** disable next branch ([#42620](renovatebot/renovate#42620)) ([d2abeb4](renovatebot/renovate@d2abeb4))
- **tsdown:** migrate config ([#42621](renovatebot/renovate#42621)) ([32964bd](renovatebot/renovate@32964bd))
- **types:** add `skipStage=enrichment` ([#42585](renovatebot/renovate#42585)) ([4faa847](renovatebot/renovate@4faa847))

##### Build System

- **deps:** update dependency p-queue to v9.1.2 (main) ([#42624](renovatebot/renovate#42624)) ([19baa76](renovatebot/renovate@19baa76))
- **deps:** update dependency simple-git to v3.35.2 (main) ([#42588](renovatebot/renovate#42588)) ([a7b5b48](renovatebot/renovate@a7b5b48))

---
##### [\`43.115.0\`](https://github.com/renovatebot/renovate/releases/tag/43.115.0)

##### Features

- **packageRules:** bumpVersions.type sync ([#42540](renovatebot/renovate#42540)) ([0389869](renovatebot/renovate@0389869))

---
##### [\`43.114.0\`](https://github.com/renovatebot/renovate/releases/tag/43.114.0)

##### Features

- **manager/mise:** add support for openfga ([#42611](renovatebot/renovate#42611)) ([203c5fe](renovatebot/renovate@203c5fe))

##### Miscellaneous Chores

- **deps:** update zizmorcore/zizmor-action action to v0.5.3 (main) ([#42607](renovatebot/renovate#42607)) ([c815d30](renovatebot/renovate@c815d30))
- **types:** add a strong type for `ToolName` and `ConstraintName` ([#42589](renovatebot/renovate#42589)) ([1044a80](renovatebot/renovate@1044a80)), closes [#41849](renovatebot/renovate#41849)

---
##### [\`43.113.0\`](https://github.com/renovatebot/renovate/releases/tag/43.113.0)

##### Features

- **sbt:** support anonymous objects and dotted symbols for version declaration ([#40699](renovatebot/renovate#40699)) ([ef3c964](renovatebot/renovate@ef3c964))

##### Bug Fixes

- **workers/repository:** don't include `skipReason`'d dependencies in flattened updates ([#42595](renovatebot/renovate#42595)) ([f8b4477](renovatebot/renovate@f8b4477)), closes [#42510](renovatebot/renovate#42510)

##### Miscellaneous Chores

- **deps:** update actions/cache action to v5.0.5 (main) ([#42598](renovatebot/renovate#42598)) ([a808338](renovatebot/renovate@a808338))
- **deps:** update containerbase/internal-tools action to v4.5.20 (main) ([#42602](renovatebot/renovate#42602)) ([d2131a7](renovatebot/renovate@d2131a7))
- **deps:** update dependency [@smithy/util-stream](https://github.com/smithy/util-stream) to v4.5.22 (main) ([#42603](renovatebot/renovate#42603)) ([81e51cb](renovatebot/renovate@81e51cb))

---
##### [\`43.112.1\`](https://github.com/renovatebot/renovate/releases/tag/43.112.1)

##### Bug Fixes

- **cache:** Improve SQLite cache error handling ([#42557](renovatebot/renovate#42557)) ([50a2bac](renovatebot/renovate@50a2bac))

##### Code Refactoring

- **dashboard:** align terminology with other sections ([#42354](renovatebot/renovate#42354)) ([27f0797](renovatebot/renovate@27f0797))

---
##### [\`43.112.0\`](https://github.com/renovatebot/renovate/releases/tag/43.112.0)

##### Features

- **cache:** Add `writeSchema` to Maven cache provider ([#42570](renovatebot/renovate#42570)) ([e33aa4c](renovatebot/renovate@e33aa4c))

##### Miscellaneous Chores

- **deps:** update dependency oxlint-tsgolint to v0.20.0 (main) ([#42593](renovatebot/renovate#42593)) ([d80881e](renovatebot/renovate@d80881e))

---
##### [\`43.111.3\`](https://github.com/renovatebot/renovate/releases/tag/43.111.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.29 (main) ([#42592](renovatebot/renovate#42592)) ([edc474a](renovatebot/renovate@edc474a))

##### Documentation

- add Renovate Operator as Kubernetes-native option ([#42506](renovatebot/renovate#42506)) ([91a7213](renovatebot/renovate@91a7213))

---
##### [\`43.111.2\`](https://github.com/renovatebot/renovate/releases/tag/43.111.2)

##### Bug Fixes

- **github-actions:** use correct datasource for Zizmor version ([#42587](renovatebot/renovate#42587)) ([ea1e60e](renovatebot/renovate@ea1e60e))

---
##### [\`43.111.1\`](https://github.com/renovatebot/renovate/releases/tag/43.111.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.28 (main) ([#42580](renovatebot/renovate#42580)) ([216fc99](renovatebot/renovate@216fc99))

##### Documentation

- update references to python to [`8428c32`](renovatebot/renovate@8428c32) (main) ([#42572](renovatebot/renovate#42572)) ([c549ff7](renovatebot/renovate@c549ff7))
- update references to renovatebot/github-action to v46.1.8 (main) ([#42573](renovatebot/renovate#42573)) ([da4e84e](renovatebot/renovate@da4e84e))
- update references to renovatebot/github-action to v46.1.9 (main) ([#42577](renovatebot/renovate#42577)) ([2870abe](renovatebot/renovate@2870abe))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.19 (main) ([#42574](renovatebot/renovate#42574)) ([f31e3d4](renovatebot/renovate@f31e3d4))
- **deps:** update dependency [@containerbase/istanbul-reports-html](https://github.com/containerbase/istanbul-reports-html) to v1.1.43 (main) ([#42575](renovatebot/renovate#42575)) ([7af9aed](renovatebot/renovate@7af9aed))
- **deps:** update dependency [@containerbase/semantic-release-pnpm](https://github.com/containerbase/semantic-release-pnpm) to v1.3.33 (main) ([#42576](renovatebot/renovate#42576)) ([3870e76](renovatebot/renovate@3870e76))
- **deps:** update dependency nock to v14.0.12 (main) ([#42571](renovatebot/renovate#42571)) ([81791bd](renovatebot/renovate@81791bd))
- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.20 (main) ([#42579](renovatebot/renovate#42579)) ([90a2429](renovatebot/renovate@90a2429))

---
##### [\`43.111.0\`](https://github.com/renovatebot/renovate/releases/tag/43.111.0)

##### Features

- **npm:** Trim response data before caching ([#42559](renovatebot/renovate#42559)) ([b359a1d](renovatebot/renovate@b359a1d))

##### Miscellaneous Chores

- **types:** allow `constraints` to be passed through to `getReleases` ([#42564](renovatebot/renovate#42564)) ([6238715](renovatebot/renovate@6238715))
renovate Bot added a commit to sdwilsh/ansible-playbooks that referenced this pull request Apr 17, 2026
##### [\`43.129.0\`](https://github.com/renovatebot/renovate/releases/tag/43.129.0)

##### Features

- **versioning:** add a `github-actions` versioning ([#42712](renovatebot/renovate#42712)) ([d508716](renovatebot/renovate@d508716))

---
##### [\`43.128.1\`](https://github.com/renovatebot/renovate/releases/tag/43.128.1)

##### Bug Fixes

- **datasource/npm:** catch invalid engines ([#42718](renovatebot/renovate#42718)) ([06cf949](renovatebot/renovate@06cf949))

##### Continuous Integration

- add an auto-label for new `monorepo.json` onboarding ([#42660](renovatebot/renovate#42660)) ([5cfb467](renovatebot/renovate@5cfb467))
- **auto-label:** manually comment + close issues ([#42722](renovatebot/renovate#42722)) ([170cf56](renovatebot/renovate@170cf56))

---
##### [\`43.128.0\`](renovatebot/renovate@43.127.3...43.128.0)


---
##### [\`43.127.3\`](https://github.com/renovatebot/renovate/releases/tag/43.127.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.35.2 (main) ([#42717](renovatebot/renovate#42717)) ([a4456c1](renovatebot/renovate@a4456c1))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.24 (main) ([#42665](renovatebot/renovate#42665)) ([19a2409](renovatebot/renovate@19a2409))
- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.23 (main) ([#42715](renovatebot/renovate#42715)) ([1953812](renovatebot/renovate@1953812))

##### Code Refactoring

- **logger:** use expose to load bunyan ([#42714](renovatebot/renovate#42714)) ([954ec4f](renovatebot/renovate@954ec4f))

---
##### [\`43.127.2\`](https://github.com/renovatebot/renovate/releases/tag/43.127.2)

##### Bug Fixes

- **manager/github-actions:** revert recent changes ([#42707](renovatebot/renovate#42707)) ([db64cc6](renovatebot/renovate@db64cc6)), closes [#42690](renovatebot/renovate#42690) [#42683](renovatebot/renovate#42683) [#42685](renovatebot/renovate#42685)
- **presets:** restore custom `versioning` ([#42693](renovatebot/renovate#42693)) ([5437860](renovatebot/renovate@5437860))

##### Miscellaneous Chores

- **deps:** update devcontainers/ci action to v0.3.1900000449 (main) ([#42705](renovatebot/renovate#42705)) ([fe10c94](renovatebot/renovate@fe10c94))

---
##### [\`43.127.1\`](renovatebot/renovate@43.127.0...43.127.1)


---
##### [\`43.127.0\`](renovatebot/renovate@43.126.0...43.127.0)


---
##### [\`43.126.0\`](https://github.com/renovatebot/renovate/releases/tag/43.126.0)

##### Features

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.34.0 (main) ([#42697](renovatebot/renovate#42697)) ([4b61c70](renovatebot/renovate@4b61c70))

##### Miscellaneous Chores

- **deps:** update dependency node to v24.15.0 (main) ([#42695](renovatebot/renovate#42695)) ([dc90208](renovatebot/renovate@dc90208))

---
##### [\`43.125.1\`](https://github.com/renovatebot/renovate/releases/tag/43.125.1)

##### Bug Fixes

- **manager/github-actions:** override `versioning` for Actions with Immutable Tags ([#42690](renovatebot/renovate#42690)) ([1b0785b](renovatebot/renovate@1b0785b))

---
##### [\`43.125.0\`](https://github.com/renovatebot/renovate/releases/tag/43.125.0)

##### Features

- **replacements:** migrate users to astral/setup-uv v8 ([#42683](renovatebot/renovate#42683)) ([f5859c2](renovatebot/renovate@f5859c2))

---
##### [\`43.124.1\`](https://github.com/renovatebot/renovate/releases/tag/43.124.1)

##### Bug Fixes

- **docker:** only set `replaceString` if requested ([#42649](renovatebot/renovate#42649)) ([f6d4106](renovatebot/renovate@f6d4106))

---
##### [\`43.124.0\`](https://github.com/renovatebot/renovate/releases/tag/43.124.0)

##### Features

- **manager/github-actions:** use `semver-partial` as default versioning ([#42685](renovatebot/renovate#42685)) ([da04b8e](renovatebot/renovate@da04b8e)), closes [#42331](renovatebot/renovate#42331)

##### Documentation

- fix link in vulnerabilityAlerts docs ([#42680](renovatebot/renovate#42680)) ([b0fd397](renovatebot/renovate@b0fd397))

##### Continuous Integration

- **auto-prs:** handle draft PRs better ([#42686](renovatebot/renovate#42686)) ([0a86cc5](renovatebot/renovate@0a86cc5))

---
##### [\`43.123.8\`](https://github.com/renovatebot/renovate/releases/tag/43.123.8)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.35 (main) ([#42681](renovatebot/renovate#42681)) ([4b597ec](renovatebot/renovate@4b597ec))
- **package-rules:** correctly merge `force.enabled` ([#42679](renovatebot/renovate#42679)) ([ae22250](renovatebot/renovate@ae22250)), closes [#42666](renovatebot/renovate#42666)

##### Tests

- **git:** test failing when no git author is configured ([#42676](renovatebot/renovate#42676)) ([f9bddb9](renovatebot/renovate@f9bddb9))

---
##### [\`43.123.7\`](https://github.com/renovatebot/renovate/releases/tag/43.123.7)

##### Miscellaneous Chores

- **deps:** update vitest monorepo to v4.1.4 (main) ([#42677](renovatebot/renovate#42677)) ([7907192](renovatebot/renovate@7907192))

##### Build System

- **deps:** update node.js to v24.15.0 (main) ([#42678](renovatebot/renovate#42678)) ([a40a0f0](renovatebot/renovate@a40a0f0))

---
##### [\`43.123.6\`](https://github.com/renovatebot/renovate/releases/tag/43.123.6)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.34 (main) ([#42675](renovatebot/renovate#42675)) ([5251496](renovatebot/renovate@5251496))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.22 (main) ([#42674](renovatebot/renovate#42674)) ([f69abc5](renovatebot/renovate@f69abc5))

---
##### [\`43.123.5\`](https://github.com/renovatebot/renovate/releases/tag/43.123.5)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.33 (main) ([#42673](renovatebot/renovate#42673)) ([d33efe2](renovatebot/renovate@d33efe2))

---
##### [\`43.123.4\`](https://github.com/renovatebot/renovate/releases/tag/43.123.4)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.32 (main) ([#42669](renovatebot/renovate#42669)) ([a14d85b](renovatebot/renovate@a14d85b))

---
##### [\`43.123.3\`](https://github.com/renovatebot/renovate/releases/tag/43.123.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.31 (main) ([#42668](renovatebot/renovate#42668)) ([7d2c1ac](renovatebot/renovate@7d2c1ac))

##### Miscellaneous Chores

- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.21 (main) ([#42667](renovatebot/renovate#42667)) ([f891066](renovatebot/renovate@f891066))

---
##### [\`43.123.2\`](renovatebot/renovate@43.123.1...43.123.2)


---
##### [\`43.123.1\`](https://github.com/renovatebot/renovate/releases/tag/43.123.1)

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.22 (main) ([#42658](renovatebot/renovate#42658)) ([9e33c20](renovatebot/renovate@9e33c20))

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.6 (main) ([#42657](renovatebot/renovate#42657)) ([80146b2](renovatebot/renovate@80146b2))

##### Continuous Integration

- auto-label `needs-discussion` on externally-raised Issues ([#42656](renovatebot/renovate#42656)) ([6a0e718](renovatebot/renovate@6a0e718))

---
##### [\`43.123.0\`](https://github.com/renovatebot/renovate/releases/tag/43.123.0)

##### Features

- add XcodeGen manager for Swift package dependencies in project.yml files ([#41889](renovatebot/renovate#41889)) ([0ff55d2](renovatebot/renovate@0ff55d2))
- **presets:** add `BUN_CONFIG_MAX_HTTP_REQUESTS` to safe global env ([#41350](renovatebot/renovate#41350)) ([1316fd7](renovatebot/renovate@1316fd7))
- **presets:** add changelogUrl link for Forgejo and Gitea digest updates ([#41786](renovatebot/renovate#41786)) ([0f9a516](renovatebot/renovate@0f9a516))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.21 (main) ([#42654](renovatebot/renovate#42654)) ([3891a11](renovatebot/renovate@3891a11))

##### Code Refactoring

- **terraform-module:** replace interfaces with zod schemas and inline fixtures ([#42399](renovatebot/renovate#42399)) ([914c55b](renovatebot/renovate@914c55b))

---
##### [\`43.122.0\`](https://github.com/renovatebot/renovate/releases/tag/43.122.0)

##### Features

- **manager/ant:** support custom `registryUrls` ([#42641](renovatebot/renovate#42641)) ([28ab04b](renovatebot/renovate@28ab04b))

##### Documentation

- use single quotes ([#42648](renovatebot/renovate#42648)) ([3c8521e](renovatebot/renovate@3c8521e))

##### Miscellaneous Chores

- **deps:** update github/codeql-action action to v4.35.2 (main) ([#42650](renovatebot/renovate#42650)) ([40100d0](renovatebot/renovate@40100d0))

---
##### [\`43.121.0\`](https://github.com/renovatebot/renovate/releases/tag/43.121.0)

##### Features

- **manager/ant:** add `coords=` attribute syntax support ([#42635](renovatebot/renovate#42635)) ([15c8ab5](renovatebot/renovate@15c8ab5))
- **terraform-provider:** use registry v2 API for release timestamps ([#42340](renovatebot/renovate#42340)) ([f421075](renovatebot/renovate@f421075))

##### Bug Fixes

- **git:** don't pass extraCloneOpts to ls-remote when local clone exists ([#42491](renovatebot/renovate#42491)) ([70fa962](renovatebot/renovate@70fa962))
- **gitlab:** loosen re-approve constraints during updatePr ([#42528](renovatebot/renovate#42528)) ([7b4f75b](renovatebot/renovate@7b4f75b))

##### Documentation

- correct name of `osv-offline` ([#42486](renovatebot/renovate#42486)) ([0fbc124](renovatebot/renovate@0fbc124))
- **minimum-release-age:** add reference to cooldowns ([#42640](renovatebot/renovate#42640)) ([25e47df](renovatebot/renovate@25e47df))

##### Miscellaneous Chores

- **deps:** update ghcr.io/zizmorcore/zizmor docker tag to v1.24.1 (main) ([#42642](renovatebot/renovate#42642)) ([61947e2](renovatebot/renovate@61947e2))

##### Code Refactoring

- **cache:** Remove obsolete compress flag ([#42563](renovatebot/renovate#42563)) ([f49de7a](renovatebot/renovate@f49de7a))

##### Build System

- **deps:** update dependency [@renovatebot/osv-offline](https://github.com/renovatebot/osv-offline) to v2.5.0 (main) ([#42645](renovatebot/renovate#42645)) ([4cb4030](renovatebot/renovate@4cb4030))

---
##### [\`43.120.2\`](https://github.com/renovatebot/renovate/releases/tag/43.120.2)

##### Bug Fixes

- **vulnerability:** remove matchFileNames restriction from GitHub vulnerability alerts ([#42636](renovatebot/renovate#42636)) ([593a2b1](renovatebot/renovate@593a2b1))

---
##### [\`43.120.1\`](https://github.com/renovatebot/renovate/releases/tag/43.120.1)

##### Bug Fixes

- **logger:** log file using pretty format not working ([#42319](renovatebot/renovate#42319)) ([1c886e0](renovatebot/renovate@1c886e0))

---
##### [\`43.120.0\`](https://github.com/renovatebot/renovate/releases/tag/43.120.0)

##### Features

- **vulnerability:** add severity and CVSS details to GitHub Dependabot alerts ([#42568](renovatebot/renovate#42568)) ([1e906e8](renovatebot/renovate@1e906e8))

##### Miscellaneous Chores

- **instrumentation:** add timing statistics for `getReleases` ([#42523](renovatebot/renovate#42523)) ([f635ae2](renovatebot/renovate@f635ae2))

---
##### [\`43.119.0\`](https://github.com/renovatebot/renovate/releases/tag/43.119.0)

##### Features

- **manager/ant:** add <import> file traversal ([#42631](renovatebot/renovate#42631)) ([76dcc66](renovatebot/renovate@76dcc66))

---
##### [\`43.118.2\`](https://github.com/renovatebot/renovate/releases/tag/43.118.2)

##### Bug Fixes

- **util/git:** allow setting `config.hooksPath` ([#42630](renovatebot/renovate#42630)) ([33c1bf5](renovatebot/renovate@33c1bf5)), closes [#42588](renovatebot/renovate#42588) [#42628](https://github.com/renovatebot/renovate/issues/42628)

---
##### [\`43.118.1\`](https://github.com/renovatebot/renovate/releases/tag/43.118.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.30 (main) ([#42629](renovatebot/renovate#42629)) ([015264e](renovatebot/renovate@015264e))

##### Miscellaneous Chores

- expose known environment variables ([#42201](renovatebot/renovate#42201)) ([b39b50f](renovatebot/renovate@b39b50f))

---
##### [\`43.118.0\`](https://github.com/renovatebot/renovate/releases/tag/43.118.0)

##### Features

- **manager/ant:** add property resolution and .properties file support ([#42175](renovatebot/renovate#42175)) ([ef8e6c8](renovatebot/renovate@ef8e6c8))

---
##### [\`43.117.0\`](https://github.com/renovatebot/renovate/releases/tag/43.117.0)

##### Features

- **bitbucket-pipelines:** update file patterns to support shared configs ([#41704](renovatebot/renovate#41704)) ([53bd796](renovatebot/renovate@53bd796))
- **cache:** add a in-memory expiry map to package file cache ([#42531](renovatebot/renovate#42531)) ([5184761](renovatebot/renovate@5184761))

---
##### [\`43.116.1\`](https://github.com/renovatebot/renovate/releases/tag/43.116.1)

##### Build System

- **deps:** update dependency [@renovatebot/pgp](https://github.com/renovatebot/pgp) to v1.3.5 (main) ([#42626](renovatebot/renovate#42626)) ([7363aee](renovatebot/renovate@7363aee))

---
##### [\`43.116.0\`](https://github.com/renovatebot/renovate/releases/tag/43.116.0)

##### Features

- **osv:** mark malicious packages with `skipReason`s ([#42510](renovatebot/renovate#42510)) ([01f2479](renovatebot/renovate@01f2479))

##### Miscellaneous Chores

- **deps:** update dependency typescript to v6 (main) ([#42615](renovatebot/renovate#42615)) ([d9417b0](renovatebot/renovate@d9417b0))

##### Code Refactoring

- move `requireConfig` to `InheritConfig` ([#41385](renovatebot/renovate#41385)) ([36f9d4a](renovatebot/renovate@36f9d4a))

---
##### [\`43.115.1\`](https://github.com/renovatebot/renovate/releases/tag/43.115.1)

##### Miscellaneous Chores

- **deps:** update actions/github-script action to v9 (main) ([#42613](renovatebot/renovate#42613)) ([1fac64b](renovatebot/renovate@1fac64b))
- **deps:** update actions/upload-pages-artifact action to v5 (main) ([#42614](renovatebot/renovate#42614)) ([cf79688](renovatebot/renovate@cf79688))
- **deps:** update dependency vitest-mock-extended to v4 (main) ([#42616](renovatebot/renovate#42616)) ([1afe9a7](renovatebot/renovate@1afe9a7))
- **deps:** update nick-fields/retry action to v4 (main) ([#42617](renovatebot/renovate#42617)) ([7eee338](renovatebot/renovate@7eee338))
- **deps:** update slackapi/slack-github-action action to v3 (main) ([#42619](renovatebot/renovate#42619)) ([d2d8297](renovatebot/renovate@d2d8297))
- **deps:** update vitest monorepo to v4.1.3 (main) ([#42623](renovatebot/renovate#42623)) ([6cf2410](renovatebot/renovate@6cf2410))
- drop obsolete tsconfig ([#42622](renovatebot/renovate#42622)) ([fcf1e20](renovatebot/renovate@fcf1e20))
- **renovate:** disable next branch ([#42620](renovatebot/renovate#42620)) ([d2abeb4](renovatebot/renovate@d2abeb4))
- **tsdown:** migrate config ([#42621](renovatebot/renovate#42621)) ([32964bd](renovatebot/renovate@32964bd))
- **types:** add `skipStage=enrichment` ([#42585](renovatebot/renovate#42585)) ([4faa847](renovatebot/renovate@4faa847))

##### Build System

- **deps:** update dependency p-queue to v9.1.2 (main) ([#42624](renovatebot/renovate#42624)) ([19baa76](renovatebot/renovate@19baa76))
- **deps:** update dependency simple-git to v3.35.2 (main) ([#42588](renovatebot/renovate#42588)) ([a7b5b48](renovatebot/renovate@a7b5b48))

---
##### [\`43.115.0\`](https://github.com/renovatebot/renovate/releases/tag/43.115.0)

##### Features

- **packageRules:** bumpVersions.type sync ([#42540](renovatebot/renovate#42540)) ([0389869](renovatebot/renovate@0389869))

---
##### [\`43.114.0\`](https://github.com/renovatebot/renovate/releases/tag/43.114.0)

##### Features

- **manager/mise:** add support for openfga ([#42611](renovatebot/renovate#42611)) ([203c5fe](renovatebot/renovate@203c5fe))

##### Miscellaneous Chores

- **deps:** update zizmorcore/zizmor-action action to v0.5.3 (main) ([#42607](renovatebot/renovate#42607)) ([c815d30](renovatebot/renovate@c815d30))
- **types:** add a strong type for `ToolName` and `ConstraintName` ([#42589](renovatebot/renovate#42589)) ([1044a80](renovatebot/renovate@1044a80)), closes [#41849](renovatebot/renovate#41849)

---
##### [\`43.113.0\`](https://github.com/renovatebot/renovate/releases/tag/43.113.0)

##### Features

- **sbt:** support anonymous objects and dotted symbols for version declaration ([#40699](renovatebot/renovate#40699)) ([ef3c964](renovatebot/renovate@ef3c964))

##### Bug Fixes

- **workers/repository:** don't include `skipReason`'d dependencies in flattened updates ([#42595](renovatebot/renovate#42595)) ([f8b4477](renovatebot/renovate@f8b4477)), closes [#42510](renovatebot/renovate#42510)

##### Miscellaneous Chores

- **deps:** update actions/cache action to v5.0.5 (main) ([#42598](renovatebot/renovate#42598)) ([a808338](renovatebot/renovate@a808338))
- **deps:** update containerbase/internal-tools action to v4.5.20 (main) ([#42602](renovatebot/renovate#42602)) ([d2131a7](renovatebot/renovate@d2131a7))
- **deps:** update dependency [@smithy/util-stream](https://github.com/smithy/util-stream) to v4.5.22 (main) ([#42603](renovatebot/renovate#42603)) ([81e51cb](renovatebot/renovate@81e51cb))

---
##### [\`43.112.1\`](https://github.com/renovatebot/renovate/releases/tag/43.112.1)

##### Bug Fixes

- **cache:** Improve SQLite cache error handling ([#42557](renovatebot/renovate#42557)) ([50a2bac](renovatebot/renovate@50a2bac))

##### Code Refactoring

- **dashboard:** align terminology with other sections ([#42354](renovatebot/renovate#42354)) ([27f0797](renovatebot/renovate@27f0797))

---
##### [\`43.112.0\`](https://github.com/renovatebot/renovate/releases/tag/43.112.0)

##### Features

- **cache:** Add `writeSchema` to Maven cache provider ([#42570](renovatebot/renovate#42570)) ([e33aa4c](renovatebot/renovate@e33aa4c))

##### Miscellaneous Chores

- **deps:** update dependency oxlint-tsgolint to v0.20.0 (main) ([#42593](renovatebot/renovate#42593)) ([d80881e](renovatebot/renovate@d80881e))

---
##### [\`43.111.3\`](https://github.com/renovatebot/renovate/releases/tag/43.111.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.29 (main) ([#42592](renovatebot/renovate#42592)) ([edc474a](renovatebot/renovate@edc474a))

##### Documentation

- add Renovate Operator as Kubernetes-native option ([#42506](renovatebot/renovate#42506)) ([91a7213](renovatebot/renovate@91a7213))

---
##### [\`43.111.2\`](https://github.com/renovatebot/renovate/releases/tag/43.111.2)

##### Bug Fixes

- **github-actions:** use correct datasource for Zizmor version ([#42587](renovatebot/renovate#42587)) ([ea1e60e](renovatebot/renovate@ea1e60e))

---
##### [\`43.111.1\`](https://github.com/renovatebot/renovate/releases/tag/43.111.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.33.28 (main) ([#42580](renovatebot/renovate#42580)) ([216fc99](renovatebot/renovate@216fc99))

##### Documentation

- update references to python to [`8428c32`](renovatebot/renovate@8428c32) (main) ([#42572](renovatebot/renovate#42572)) ([c549ff7](renovatebot/renovate@c549ff7))
- update references to renovatebot/github-action to v46.1.8 (main) ([#42573](renovatebot/renovate#42573)) ([da4e84e](renovatebot/renovate@da4e84e))
- update references to renovatebot/github-action to v46.1.9 (main) ([#42577](renovatebot/renovate#42577)) ([2870abe](renovatebot/renovate@2870abe))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v4.5.19 (main) ([#42574](renovatebot/renovate#42574)) ([f31e3d4](renovatebot/renovate@f31e3d4))
- **deps:** update dependency [@containerbase/istanbul-reports-html](https://github.com/containerbase/istanbul-reports-html) to v1.1.43 (main) ([#42575](renovatebot/renovate#42575)) ([7af9aed](renovatebot/renovate@7af9aed))
- **deps:** update dependency [@containerbase/semantic-release-pnpm](https://github.com/containerbase/semantic-release-pnpm) to v1.3.33 (main) ([#42576](renovatebot/renovate#42576)) ([3870e76](renovatebot/renovate@3870e76))
- **deps:** update dependency nock to v14.0.12 (main) ([#42571](renovatebot/renovate#42571)) ([81791bd](renovatebot/renovate@81791bd))
- **deps:** update ghcr.io/containerbase/devcontainer docker tag to v14.6.20 (main) ([#42579](renovatebot/renovate#42579)) ([90a2429](renovatebot/renovate@90a2429))

---
##### [\`43.111.0\`](https://github.com/renovatebot/renovate/releases/tag/43.111.0)

##### Features

- **npm:** Trim response data before caching ([#42559](renovatebot/renovate#42559)) ([b359a1d](renovatebot/renovate@b359a1d))

##### Miscellaneous Chores

- **types:** allow `constraints` to be passed through to `getReleases` ([#42564](renovatebot/renovate#42564)) ([6238715](renovatebot/renovate@6238715))
@github-actions github-actions Bot locked as resolved and limited conversation to collaborators May 15, 2026
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants