Skip to content

ci: don't allow breaking changes in PR commit messages - #44944

Merged
jamietanna merged 1 commit into
mainfrom
ci/no-breaking-dry-run
Jul 29, 2026
Merged

ci: don't allow breaking changes in PR commit messages#44944
jamietanna merged 1 commit into
mainfrom
ci/no-breaking-dry-run

Conversation

@jamietanna

@jamietanna jamietanna commented Jul 29, 2026

Copy link
Copy Markdown
Contributor

Changes

Renovate 44.0.0 was incorrectly released from #44004 due to the
BREAKING ... reference in the commit message.

Renovate uses Squash Merge as our method for merging commits into
main, and when enabled with the Merge Queue[0], this doesn't provide
maintainers with the ability to inspect the commit messages before
merging (which would be the case if not using the Merge Queue, we would
likely rewrite the commit message prior to merge.

With this in mind, Renovate maintainers often don't inspect the commit
messages, allowing them to stay as they are, as they'll be squashed into
the final commit.

In the case of #44004, this led to us missing the BREAKING ...
trailing message - from changes that were split into #44939 - and
because of this, semantic-release published this as a major release.

As a means to prevent this happening again, we can introduce a CI check
that validates - with the same underlying library as semantic-release -
whether a major release is being suggested, and if so, rejecting it.

Tested with: https://github.com/renovatebot/renovate/actions/runs/30455613636/job/90588296364#step:4:136

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:

Renovate 44.0.0 was incorrectly released from #44004 due to the
`BREAKING ...` reference in the commit message.

Renovate uses Squash Merge as our method for merging commits into
`main`, and when enabled with the Merge Queue[0], this doesn't provide
maintainers with the ability to inspect the commit messages before
merging (which would be the case if not using the Merge Queue, we would
likely rewrite the commit message prior to merge.

With this in mind, Renovate maintainers often don't inspect the commit
messages, allowing them to stay as they are, as they'll be squashed into
the final commit.

In the case of #44004, this led to us missing the `BREAKING ...`
trailing message - from changes that were split into #44939 - and
because of this, semantic-release published this as a major release.

As a means to prevent this happening again, we can introduce a CI check
that performs a full `semantic-release --dry-run` programatically, so we
can avoid relying on log lines from `semantic-release`.

This then flags if there is a suggested major release, and if so,
rejecting it.

Co-authored-by: Claude Opus 4.8 (1M context) <jamie.tanna+claude-code@mend.io>
@jamietanna
jamietanna force-pushed the ci/no-breaking-dry-run branch from b29c1eb to c97bde1 Compare July 29, 2026 13:26
@jamietanna jamietanna changed the title ci-check-opus-48 ci: don't allow breaking changes in PR commit messages Jul 29, 2026
@jamietanna
jamietanna requested a review from Copilot July 29, 2026 13:27

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Pull request overview

This PR adds a CI safeguard to prevent accidental major releases caused by breaking-change markers in PR commit messages, by running an offline semantic-release dry-run against the post-merge state and failing if it would produce a major bump.

Changes:

  • Introduces a semantic-release dry-run helper script (tools/check-release-dry-run.ts) that computes whether the next release would be major.
  • Adds a small Vitest suite to validate the “major vs non-major vs no-release” evaluation logic.
  • Extends the existing check-commit-messages workflow with a new dry-run-major job that runs the dry-run after checkout and fails the PR if a major bump is detected.

Review notes (actionable):

  • The workflow currently runs node tools/check-release-dry-run.ts .... Unless the CI environment is explicitly set up to execute TypeScript files (loader like tsx/ts-node, etc.), this is likely to fail because Node does not generally execute .ts directly. The workflow should invoke the script using the repo’s standard TS execution mechanism (e.g., pnpm exec tsx ... or an equivalent established pattern in this repo).
  • In evaluateResult, the “no release” branch discards any available lastRelease.version when nextRelease is missing/null. Keeping lastVersion even when willRelease is false would improve diagnostics and makes the helper more accurate for partial/edge result shapes.

Reviewed changes

Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.

File Description
tools/check-release-dry-run.ts Adds a programmatic semantic-release dry-run and major-release detection logic intended for CI gating.
tools/check-release-dry-run.spec.ts Adds unit tests for evaluateResult to ensure major/premajor detection and no-release handling.
.github/workflows/check-commit-messages.yml Adds a new CI job to run the dry-run on PR merge state and fail if it would trigger a major release.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@jamietanna

This comment was marked as outdated.

@jamietanna

This comment was marked as outdated.

@jamietanna
jamietanna requested a review from a team July 29, 2026 13:43
@jamietanna
jamietanna marked this pull request as ready for review July 29, 2026 13:43
@github-actions
github-actions Bot requested a review from viceice July 29, 2026 13:44
@jamietanna
jamietanna added this pull request to the merge queue Jul 29, 2026
Merged via the queue into main with commit 710913e Jul 29, 2026
82 of 98 checks passed
@jamietanna
jamietanna deleted the ci/no-breaking-dry-run branch July 29, 2026 14:48
@github-actions

Copy link
Copy Markdown
Contributor

🎉 This PR is included in version 44.1.0 🎉

The release is available on:

Your semantic-release bot 📦🚀

ajgon pushed a commit to deedee-ops/home-ops that referenced this pull request Jul 29, 2026
… ➔ 44.2.1) (#466)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [ghcr.io/renovatebot/renovate](https://renovatebot.com) ([source](https://github.com/renovatebot/renovate)) | major | [`43.285.2` → `44.2.1`](https://octochangelog.com/compare?repo=renovatebot%2Frenovate&from=43.285.2&to=44.2.1) |

---

### Release Notes

<details>
<summary>renovatebot/renovate (ghcr.io/renovatebot/renovate)</summary>

### [`v44.2.1`](https://github.com/renovatebot/renovate/releases/tag/44.2.1)

[Compare Source](renovatebot/renovate@44.2.0...44.2.1)

##### Build System

- **deps:** update node.js to v24.18.1 (main) ([#&#8203;44951](renovatebot/renovate#44951)) ([cb5c6d6](renovatebot/renovate@cb5c6d6))

### [`v44.2.0`](https://github.com/renovatebot/renovate/releases/tag/44.2.0)

[Compare Source](renovatebot/renovate@44.1.0...44.2.0)

##### Features

- **github-actions:** support UpCloudLtd/upcloud-cli-action ver input ([#&#8203;44947](renovatebot/renovate#44947)) ([fdd3d02](renovatebot/renovate@fdd3d02))

### [`v44.1.0`](https://github.com/renovatebot/renovate/releases/tag/44.1.0)

[Compare Source](renovatebot/renovate@44.0.1...44.1.0)

##### Features

- **presets/monorepo:** Add YamlDotNet as monorepo ([#&#8203;44937](renovatebot/renovate#44937)) ([e3655af](renovatebot/renovate@e3655af))

##### Miscellaneous Chores

- **deps:** update renovate/renovate docker tag to v44 (main) ([#&#8203;44942](renovatebot/renovate#44942)) ([ba0182f](renovatebot/renovate@ba0182f))

##### Continuous Integration

- don't allow breaking changes in PR commit messages ([#&#8203;44944](renovatebot/renovate#44944)) ([710913e](renovatebot/renovate@710913e)), closes [#&#8203;44004](renovatebot/renovate#44004) [#&#8203;44004](renovatebot/renovate#44004) [#&#8203;44939](renovatebot/renovate#44939)

### [`v44.0.1`](https://github.com/renovatebot/renovate/releases/tag/44.0.1)

[Compare Source](renovatebot/renovate@44.0.0...44.0.1)

##### Code Refactoring

- **manager/pixi:** extract shared pixi.lock update helper ([#&#8203;44941](renovatebot/renovate#44941)) ([533bc62](renovatebot/renovate@533bc62))

##### Build System

- **deps:** update dependency p-queue to v9.3.3 (main) ([#&#8203;44900](renovatebot/renovate#44900)) ([04b629b](renovatebot/renovate@04b629b))

### [`v44.0.0`](https://github.com/renovatebot/renovate/releases/tag/44.0.0)

[Compare Source](renovatebot/renovate@43.288.0...44.0.0)

> \[!IMPORTANT]
> This release was incorrectly flagged as a major bump.
> Now it is released, we will - unfortunately - have to continue on the 44.x release train.
> For more details, see [the announcement on GitHub](renovatebot/renovate#44952).

##### Features

- **managers/pep621:** update pixi.lock if present ([#&#8203;44004](renovatebot/renovate#44004)) ([c3c70b8](renovatebot/renovate@c3c70b8))

### [`v43.288.0`](https://github.com/renovatebot/renovate/releases/tag/43.288.0)

[Compare Source](renovatebot/renovate@43.287.0...43.288.0)

##### Features

- **exec:** support custom stream output writers ([#&#8203;44910](renovatebot/renovate#44910)) ([5ff2229](renovatebot/renovate@5ff2229))
- **manager/pixi:** gate pixi.lock updates behind `allowedUnsafeExecutions` ([#&#8203;44939](renovatebot/renovate#44939)) ([f60995a](renovatebot/renovate@f60995a))

### [`v43.287.0`](https://github.com/renovatebot/renovate/releases/tag/43.287.0)

[Compare Source](renovatebot/renovate@43.286.1...43.287.0)

##### Features

- **copier:** convert ssh \_src\_path to https URL for datasource lookup ([#&#8203;44552](renovatebot/renovate#44552)) ([932b7b2](renovatebot/renovate@932b7b2)), closes [#&#8203;44528](renovatebot/renovate#44528)

##### Bug Fixes

- **github:** include `commitTrailers` in platform-native commits ([#&#8203;44918](renovatebot/renovate#44918)) ([d32e38e](renovatebot/renovate@d32e38e))

##### Miscellaneous Chores

- **deps:** update dependency lint-staged to v17.1.1 (main) ([#&#8203;44935](renovatebot/renovate#44935)) ([736438b](renovatebot/renovate@736438b))
- **deps:** update dependency oxlint-tsgolint to v7 (main) ([#&#8203;44907](renovatebot/renovate#44907)) ([1809104](renovatebot/renovate@1809104))

### [`v43.286.1`](https://github.com/renovatebot/renovate/releases/tag/43.286.1)

[Compare Source](renovatebot/renovate@43.286.0...43.286.1)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.78.1 (main) ([#&#8203;44932](renovatebot/renovate#44932)) ([648b7a8](renovatebot/renovate@648b7a8))

### [`v43.286.0`](https://github.com/renovatebot/renovate/releases/tag/43.286.0)

[Compare Source](renovatebot/renovate@43.285.7...43.286.0)

##### Features

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.78.0 (main) ([#&#8203;44931](renovatebot/renovate#44931)) ([db1b150](renovatebot/renovate@db1b150))

##### Miscellaneous Chores

- **deps:** update dependency astral-sh/uv to v0.12.0 (main) ([#&#8203;44927](renovatebot/renovate#44927)) ([5b56a5a](renovatebot/renovate@5b56a5a))
- **deps:** update dependency tsdown to v0.22.13 (main) ([#&#8203;44925](renovatebot/renovate#44925)) ([05f36d5](renovatebot/renovate@05f36d5))
- **deps:** update dependency uv to v0.12.0 (main) ([#&#8203;44928](renovatebot/renovate#44928)) ([9fe51ed](renovatebot/renovate@9fe51ed))

##### Build System

- **deps:** update opentelemetry-js monorepo (main) ([#&#8203;44930](renovatebot/renovate#44930)) ([59dca2b](renovatebot/renovate@59dca2b))

### [`v43.285.7`](https://github.com/renovatebot/renovate/releases/tag/43.285.7)

[Compare Source](renovatebot/renovate@43.285.6...43.285.7)

##### Bug Fixes

- **packagist:** Throw on transient errors ([#&#8203;44328](renovatebot/renovate#44328)) ([2a5308b](renovatebot/renovate@2a5308b))

##### Code Refactoring

- **types:** make `currentVersionTimestamp` a Timestamp ([#&#8203;44917](renovatebot/renovate#44917)) ([12f5fde](renovatebot/renovate@12f5fde))

### [`v43.285.6`](https://github.com/renovatebot/renovate/releases/tag/43.285.6)

[Compare Source](renovatebot/renovate@43.285.5...43.285.6)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.77.9 (main) ([#&#8203;44919](renovatebot/renovate#44919)) ([18c59f8](renovatebot/renovate@18c59f8))

### [`v43.285.5`](https://github.com/renovatebot/renovate/releases/tag/43.285.5)

[Compare Source](renovatebot/renovate@43.285.4...43.285.5)

##### Bug Fixes

- **datasource/go:** resolve `sourceUrl` from `GOPROXY` `Origin` ([#&#8203;44902](renovatebot/renovate#44902)) ([feeb236](renovatebot/renovate@feeb236))

##### Documentation

- **manager:** indicate where `lockFileMaintenance` runs external commands ([#&#8203;44914](renovatebot/renovate#44914)) ([5ffc308](renovatebot/renovate@5ffc308))

##### Miscellaneous Chores

- **deps:** update dependency [@&#8203;biomejs/biome](https://github.com/biomejs/biome) to v2.5.5 (main) ([#&#8203;44906](renovatebot/renovate#44906)) ([9c1fe2c](renovatebot/renovate@9c1fe2c))
- **deps:** update dependency astral-sh/uv to v0.11.33 (main) ([#&#8203;44912](renovatebot/renovate#44912)) ([e41e315](renovatebot/renovate@e41e315))
- **deps:** update dependency oxlint-tsgolint to v0.25.0 (main) ([#&#8203;44424](renovatebot/renovate#44424)) ([196101a](renovatebot/renovate@196101a))
- **deps:** update dependency uv to v0.11.33 (main) ([#&#8203;44913](renovatebot/renovate#44913)) ([9c7d468](renovatebot/renovate@9c7d468))

##### Code Refactoring

- move checkMinimumReleaseAge to lib/util/minimum-release-age.ts ([#&#8203;44904](renovatebot/renovate#44904)) ([5173de0](renovatebot/renovate@5173de0))

### [`v43.285.4`](https://github.com/renovatebot/renovate/releases/tag/43.285.4)

[Compare Source](renovatebot/renovate@43.285.3...43.285.4)

##### Build System

- **deps:** update dependency re2 to v1.26.1 (main) ([#&#8203;44903](renovatebot/renovate#44903)) ([48399bc](renovatebot/renovate@48399bc))

### [`v43.285.3`](https://github.com/renovatebot/renovate/releases/tag/43.285.3)

[Compare Source](renovatebot/renovate@43.285.2...43.285.3)

##### Build System

- **deps:** update dependency p-map to v7.0.6 (main) ([#&#8203;44893](renovatebot/renovate#44893)) ([352c728](renovatebot/renovate@352c728))

</details>

---

### Configuration

📅 **Schedule**: (in timezone Europe/Warsaw)

- Branch creation
  - At any time (no schedule defined)
- Automerge
  - At any time (no schedule defined)

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

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

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yODUuMiIsInVwZGF0ZWRJblZlciI6IjQzLjI4NS4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWFqb3IiXX0=-->

Reviewed-on: https://git.ajgon.casa/deedee/mark13/pulls/466
renovate Bot added a commit to sdwilsh/ansible-playbooks that referenced this pull request Aug 1, 2026
##### [\`44.2.2\`](https://github.com/renovatebot/renovate/releases/tag/44.2.2)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.78.4 (main) ([#44938](renovatebot/renovate#44938)) ([6c536e4](renovatebot/renovate@6c536e4))

##### Documentation

- **next-major:** update links to Renovate 44 examples ([#44945](renovatebot/renovate#44945)) ([1fe48de](renovatebot/renovate@1fe48de))
- note the accidental release of Renovate 44 ([#44954](renovatebot/renovate#44954)) ([5067543](renovatebot/renovate@5067543))

##### Miscellaneous Chores

- **deps:** update dependency pnpm to v11.16.0 (main) ([#44957](renovatebot/renovate#44957)) ([c80292d](renovatebot/renovate@c80292d))

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

##### Build System

- **deps:** update node.js to v24.18.1 (main) ([#44951](renovatebot/renovate#44951)) ([cb5c6d6](renovatebot/renovate@cb5c6d6))

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

##### Features

- **github-actions:** support UpCloudLtd/upcloud-cli-action ver input ([#44947](renovatebot/renovate#44947)) ([fdd3d02](renovatebot/renovate@fdd3d02))

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

##### Features

- **presets/monorepo:** Add YamlDotNet as monorepo ([#44937](renovatebot/renovate#44937)) ([e3655af](renovatebot/renovate@e3655af))

##### Miscellaneous Chores

- **deps:** update renovate/renovate docker tag to v44 (main) ([#44942](renovatebot/renovate#44942)) ([ba0182f](renovatebot/renovate@ba0182f))

##### Continuous Integration

- don't allow breaking changes in PR commit messages ([#44944](renovatebot/renovate#44944)) ([710913e](renovatebot/renovate@710913e)), closes [#44004](renovatebot/renovate#44004) [#44004](renovatebot/renovate#44004) [#44939](renovatebot/renovate#44939)

---
##### [\`44.0.1\`](renovatebot/renovate@44.0.0...44.0.1)


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

##### ⚠ BREAKING CHANGES

- **managers/pep621:** The `pixi` manager no longer updates `pixi.lock`
  automatically. To keep `pixi.lock` updated, add `pixi` to the global
  `allowedUnsafeExecutions` option.

##### Features

- **managers/pep621:** update pixi.lock if present ([#44004](renovatebot/renovate#44004)) ([c3c70b8](renovatebot/renovate@c3c70b8))
renovate Bot added a commit to sdwilsh/ansible-playbooks that referenced this pull request Aug 2, 2026
##### [\`44.2.3\`](https://github.com/renovatebot/renovate/releases/tag/44.2.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.78.5 (main) ([#44960](renovatebot/renovate#44960)) ([17951d4](renovatebot/renovate@17951d4))

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

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.78.4 (main) ([#44938](renovatebot/renovate#44938)) ([6c536e4](renovatebot/renovate@6c536e4))

##### Documentation

- **next-major:** update links to Renovate 44 examples ([#44945](renovatebot/renovate#44945)) ([1fe48de](renovatebot/renovate@1fe48de))
- note the accidental release of Renovate 44 ([#44954](renovatebot/renovate#44954)) ([5067543](renovatebot/renovate@5067543))

##### Miscellaneous Chores

- **deps:** update dependency pnpm to v11.16.0 (main) ([#44957](renovatebot/renovate#44957)) ([c80292d](renovatebot/renovate@c80292d))

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

##### Build System

- **deps:** update node.js to v24.18.1 (main) ([#44951](renovatebot/renovate#44951)) ([cb5c6d6](renovatebot/renovate@cb5c6d6))

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

##### Features

- **github-actions:** support UpCloudLtd/upcloud-cli-action ver input ([#44947](renovatebot/renovate#44947)) ([fdd3d02](renovatebot/renovate@fdd3d02))

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

##### Features

- **presets/monorepo:** Add YamlDotNet as monorepo ([#44937](renovatebot/renovate#44937)) ([e3655af](renovatebot/renovate@e3655af))

##### Miscellaneous Chores

- **deps:** update renovate/renovate docker tag to v44 (main) ([#44942](renovatebot/renovate#44942)) ([ba0182f](renovatebot/renovate@ba0182f))

##### Continuous Integration

- don't allow breaking changes in PR commit messages ([#44944](renovatebot/renovate#44944)) ([710913e](renovatebot/renovate@710913e)), closes [#44004](renovatebot/renovate#44004) [#44004](renovatebot/renovate#44004) [#44939](renovatebot/renovate#44939)

---
##### [\`44.0.1\`](renovatebot/renovate@44.0.0...44.0.1)


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

##### ⚠ BREAKING CHANGES

- **managers/pep621:** The `pixi` manager no longer updates `pixi.lock`
  automatically. To keep `pixi.lock` updated, add `pixi` to the global
  `allowedUnsafeExecutions` option.

##### Features

- **managers/pep621:** update pixi.lock if present ([#44004](renovatebot/renovate#44004)) ([c3c70b8](renovatebot/renovate@c3c70b8))
Exikle pushed a commit to Exikle/Artemis-Cluster that referenced this pull request Aug 2, 2026
… ➔ 44.6.0) (#1275)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [ghcr.io/renovatebot/renovate](https://renovatebot.com) ([source](https://github.com/renovatebot/renovate)) | major | [`43.288.0` → `44.6.0`](https://octochangelog.com/compare?repo=renovatebot%2Frenovate&from=43.288.0&to=44.6.0) |

---

> ⚠️ **Warning**
>
> Some dependencies could not be looked up. Check the [Dependency Dashboard](issues/107) for more information.

---

### Release Notes

<details>
<summary>renovatebot/renovate (ghcr.io/renovatebot/renovate)</summary>

### [`v44.6.0`](https://github.com/renovatebot/renovate/releases/tag/44.6.0)

[Compare Source](renovatebot/renovate@44.5.3...44.6.0)

##### Features

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.79.0 (main) ([#&#8203;45011](renovatebot/renovate#45011)) ([6025968](renovatebot/renovate@6025968))

##### Miscellaneous Chores

- **deps:** update jdx/mise-action action to v4.2.4 (main) ([#&#8203;45008](renovatebot/renovate#45008)) ([d94d55e](renovatebot/renovate@d94d55e))
- **deps:** update zizmor (main) ([#&#8203;45010](renovatebot/renovate#45010)) ([2e66925](renovatebot/renovate@2e66925))

### [`v44.5.3`](https://github.com/renovatebot/renovate/releases/tag/44.5.3)

[Compare Source](renovatebot/renovate@44.5.2...44.5.3)

##### Miscellaneous Chores

- **deps:** update dependency [@&#8203;smithy/util-stream](https://github.com/smithy/util-stream) to v4.7.14 (main) ([#&#8203;45006](renovatebot/renovate#45006)) ([2e94314](renovatebot/renovate@2e94314))

##### Build System

- **deps:** update aws-sdk-js-v3 monorepo to v3.1095.0 (main) ([#&#8203;45007](renovatebot/renovate#45007)) ([34a83b9](renovatebot/renovate@34a83b9))

### [`v44.5.2`](https://github.com/renovatebot/renovate/releases/tag/44.5.2)

[Compare Source](renovatebot/renovate@44.5.1...44.5.2)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.78.8 (main) ([#&#8203;45004](renovatebot/renovate#45004)) ([022f765](renovatebot/renovate@022f765))

##### Miscellaneous Chores

- **deps:** update dependency astral-sh/uv to v0.12.1 (main) ([#&#8203;45002](renovatebot/renovate#45002)) ([292f98b](renovatebot/renovate@292f98b))
- **deps:** update dependency uv to v0.12.1 (main) ([#&#8203;45003](renovatebot/renovate#45003)) ([027e4b6](renovatebot/renovate@027e4b6))

### [`v44.5.1`](https://github.com/renovatebot/renovate/releases/tag/44.5.1)

[Compare Source](renovatebot/renovate@44.5.0...44.5.1)

##### Miscellaneous Chores

- **deps:** update dependency tar to v7.5.22 (main) ([#&#8203;44995](renovatebot/renovate#44995)) ([2810dfb](renovatebot/renovate@2810dfb))
- **deps:** update docker/dockerfile docker tag to v1.26.0 (main) ([#&#8203;44993](renovatebot/renovate#44993)) ([b98703e](renovatebot/renovate@b98703e))

##### Build System

- **deps:** update dependency sax to v1.6.1 (main) ([#&#8203;45001](renovatebot/renovate#45001)) ([84c75fb](renovatebot/renovate@84c75fb))

### [`v44.5.0`](https://github.com/renovatebot/renovate/releases/tag/44.5.0)

[Compare Source](renovatebot/renovate@44.4.6...44.5.0)

##### Features

- **presets:** add `security:minimumReleaseAgeCrate` preset ([#&#8203;44659](renovatebot/renovate#44659)) ([fa7f6ec](renovatebot/renovate@fa7f6ec))

### [`v44.4.6`](https://github.com/renovatebot/renovate/releases/tag/44.4.6)

[Compare Source](renovatebot/renovate@44.4.5...44.4.6)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.78.7 (main) ([#&#8203;44986](renovatebot/renovate#44986)) ([d1d254c](renovatebot/renovate@d1d254c))

### [`v44.4.5`](https://github.com/renovatebot/renovate/releases/tag/44.4.5)

[Compare Source](renovatebot/renovate@44.4.4...44.4.5)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.78.6 (main) ([#&#8203;44983](renovatebot/renovate#44983)) ([4c7bb14](renovatebot/renovate@4c7bb14))

### [`v44.4.4`](https://github.com/renovatebot/renovate/releases/tag/44.4.4)

[Compare Source](renovatebot/renovate@44.4.3...44.4.4)

##### Build System

- **deps:** update dependency google-auth-library to v10.9.1 (main) ([#&#8203;44982](renovatebot/renovate#44982)) ([58ce6fa](renovatebot/renovate@58ce6fa))

### [`v44.4.3`](https://github.com/renovatebot/renovate/releases/tag/44.4.3)

[Compare Source](renovatebot/renovate@44.4.2...44.4.3)

##### Build System

- **deps:** update dependency [@&#8203;renovatebot/osv-offline](https://github.com/renovatebot/osv-offline) to v3.0.10 (main) ([#&#8203;44980](renovatebot/renovate#44980)) ([dfcc47a](renovatebot/renovate@dfcc47a))

### [`v44.4.2`](https://github.com/renovatebot/renovate/releases/tag/44.4.2)

[Compare Source](renovatebot/renovate@44.4.1...44.4.2)

##### Build System

- **deps:** update dependency [@&#8203;opentelemetry/instrumentation-bunyan](https://github.com/opentelemetry/instrumentation-bunyan) to v0.66.0 (main) ([#&#8203;44977](renovatebot/renovate#44977)) ([e2dc290](renovatebot/renovate@e2dc290))

### [`v44.4.1`](https://github.com/renovatebot/renovate/releases/tag/44.4.1)

[Compare Source](renovatebot/renovate@44.4.0...44.4.1)

##### Miscellaneous Chores

- **deps:** update dependency [@&#8203;smithy/util-stream](https://github.com/smithy/util-stream) to v4.7.13 (main) ([#&#8203;44972](renovatebot/renovate#44972)) ([2c786a2](renovatebot/renovate@2c786a2))
- **deps:** update dependency pnpm to v11.17.0 (main) ([#&#8203;44973](renovatebot/renovate#44973)) ([9f453df](renovatebot/renovate@9f453df))
- **deps:** update dependency tsdown to v0.22.14 (main) ([#&#8203;44975](renovatebot/renovate#44975)) ([7a05b9a](renovatebot/renovate@7a05b9a))

##### Build System

- **deps:** update opentelemetry-js-contrib monorepo (main) ([#&#8203;44976](renovatebot/renovate#44976)) ([8e1603a](renovatebot/renovate@8e1603a))

### [`v44.4.0`](https://github.com/renovatebot/renovate/releases/tag/44.4.0)

[Compare Source](renovatebot/renovate@44.3.3...44.4.0)

##### Features

- **templates:** always expose `renovateVersion` ([#&#8203;44969](renovatebot/renovate#44969)) ([69a6290](renovatebot/renovate@69a6290)), closes [#&#8203;44756](https://github.com/renovatebot/renovate/issues/44756)

##### Bug Fixes

- **util/markdown:** undo zero-width space chars when used inside codeblocks ([#&#8203;44933](renovatebot/renovate#44933)) ([14c81bb](renovatebot/renovate@14c81bb))
- **workers/repository:** apply `minimumReleaseAge` to `pinDigest` updates ([#&#8203;44968](renovatebot/renovate#44968)) ([33f5139](renovatebot/renovate@33f5139)), closes [#&#8203;44820](renovatebot/renovate#44820)

##### Documentation

- **contributing:** clarify the "don't merge `main`" ([#&#8203;44963](renovatebot/renovate#44963)) ([9d41668](renovatebot/renovate@9d41668))

##### Miscellaneous Chores

- **deps:** update dependency [@&#8203;smithy/util-stream](https://github.com/smithy/util-stream) to v4.7.12 (main) ([#&#8203;44929](renovatebot/renovate#44929)) ([d422e51](renovatebot/renovate@d422e51))
- **util/exec:** fix typo ([#&#8203;44946](renovatebot/renovate#44946)) ([29243d0](renovatebot/renovate@29243d0))

### [`v44.3.3`](https://github.com/renovatebot/renovate/releases/tag/44.3.3)

[Compare Source](renovatebot/renovate@44.3.2...44.3.3)

##### Bug Fixes

- **composer:** detect already-updated lockfile updates for dev dependencies ([#&#8203;44805](renovatebot/renovate#44805)) ([98b7710](renovatebot/renovate@98b7710))

### [`v44.3.2`](https://github.com/renovatebot/renovate/releases/tag/44.3.2)

[Compare Source](renovatebot/renovate@44.3.1...44.3.2)

##### Bug Fixes

- **manager/mise:** use semver versioning for cargo backend crates ([#&#8203;44966](renovatebot/renovate#44966)) ([97fcec1](renovatebot/renovate@97fcec1))

### [`v44.3.1`](https://github.com/renovatebot/renovate/releases/tag/44.3.1)

[Compare Source](renovatebot/renovate@44.3.0...44.3.1)

##### Bug Fixes

- **config-validator:** warn when `RE2` is not in use ([#&#8203;44894](renovatebot/renovate#44894)) ([11a217e](renovatebot/renovate@11a217e))
- **workers/repository:** apply `minimumReleaseAge` to `digest` updates ([#&#8203;44965](renovatebot/renovate#44965)) ([1247df7](renovatebot/renovate@1247df7))

##### Miscellaneous Chores

- **config:** be explicit about `Renovate CLI` in `prFooter` ([#&#8203;44949](renovatebot/renovate#44949)) ([10da664](renovatebot/renovate@10da664))

### [`v44.3.0`](https://github.com/renovatebot/renovate/releases/tag/44.3.0)

[Compare Source](renovatebot/renovate@44.2.3...44.3.0)

##### Features

- **pre-commit:** support forgejo-tags datasource ([#&#8203;44923](renovatebot/renovate#44923)) ([c526a26](renovatebot/renovate@c526a26))

##### Miscellaneous Chores

- **deps:** update dependency lint-staged to v17.2.0 (main) ([#&#8203;44962](renovatebot/renovate#44962)) ([54609b4](renovatebot/renovate@54609b4))
- **deps:** update github/codeql-action action to v4.37.4 (main) ([#&#8203;44961](renovatebot/renovate#44961)) ([3ea610a](renovatebot/renovate@3ea610a))

### [`v44.2.3`](https://github.com/renovatebot/renovate/releases/tag/44.2.3)

[Compare Source](renovatebot/renovate@44.2.2...44.2.3)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.78.5 (main) ([#&#8203;44960](renovatebot/renovate#44960)) ([17951d4](renovatebot/renovate@17951d4))

### [`v44.2.2`](https://github.com/renovatebot/renovate/releases/tag/44.2.2)

[Compare Source](renovatebot/renovate@44.2.1...44.2.2)

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.78.4 (main) ([#&#8203;44938](renovatebot/renovate#44938)) ([6c536e4](renovatebot/renovate@6c536e4))

##### Documentation

- **next-major:** update links to Renovate 44 examples ([#&#8203;44945](renovatebot/renovate#44945)) ([1fe48de](renovatebot/renovate@1fe48de))
- note the accidental release of Renovate 44 ([#&#8203;44954](renovatebot/renovate#44954)) ([5067543](renovatebot/renovate@5067543))

##### Miscellaneous Chores

- **deps:** update dependency pnpm to v11.16.0 (main) ([#&#8203;44957](renovatebot/renovate#44957)) ([c80292d](renovatebot/renovate@c80292d))

### [`v44.2.1`](https://github.com/renovatebot/renovate/releases/tag/44.2.1)

[Compare Source](renovatebot/renovate@44.2.0...44.2.1)

##### Build System

- **deps:** update node.js to v24.18.1 (main) ([#&#8203;44951](renovatebot/renovate#44951)) ([cb5c6d6](renovatebot/renovate@cb5c6d6))

### [`v44.2.0`](https://github.com/renovatebot/renovate/releases/tag/44.2.0)

[Compare Source](renovatebot/renovate@44.1.0...44.2.0)

##### Features

- **github-actions:** support UpCloudLtd/upcloud-cli-action ver input ([#&#8203;44947](renovatebot/renovate#44947)) ([fdd3d02](renovatebot/renovate@fdd3d02))

### [`v44.1.0`](https://github.com/renovatebot/renovate/releases/tag/44.1.0)

[Compare Source](renovatebot/renovate@44.0.1...44.1.0)

##### Features

- **presets/monorepo:** Add YamlDotNet as monorepo ([#&#8203;44937](renovatebot/renovate#44937)) ([e3655af](renovatebot/renovate@e3655af))

##### Miscellaneous Chores

- **deps:** update renovate/renovate docker tag to v44 (main) ([#&#8203;44942](renovatebot/renovate#44942)) ([ba0182f](renovatebot/renovate@ba0182f))

##### Continuous Integration

- don't allow breaking changes in PR commit messages ([#&#8203;44944](renovatebot/renovate#44944)) ([710913e](renovatebot/renovate@710913e)), closes [#&#8203;44004](renovatebot/renovate#44004) [#&#8203;44004](renovatebot/renovate#44004) [#&#8203;44939](renovatebot/renovate#44939)

### [`v44.0.1`](https://github.com/renovatebot/renovate/releases/tag/44.0.1)

[Compare Source](renovatebot/renovate@44.0.0...44.0.1)

##### Code Refactoring

- **manager/pixi:** extract shared pixi.lock update helper ([#&#8203;44941](renovatebot/renovate#44941)) ([533bc62](renovatebot/renovate@533bc62))

##### Build System

- **deps:** update dependency p-queue to v9.3.3 (main) ([#&#8203;44900](renovatebot/renovate#44900)) ([04b629b](renovatebot/renovate@04b629b))

### [`v44.0.0`](https://github.com/renovatebot/renovate/releases/tag/44.0.0)

[Compare Source](renovatebot/renovate@43.288.0...44.0.0)

> \[!IMPORTANT]
> This release was incorrectly flagged as a major bump.
> Now it is released, we will - unfortunately - have to continue on the 44.x release train.
> For more details, see [the announcement on GitHub](https://github.com/renovatebot/renovate/discussions/44952).

##### Features

- **managers/pep621:** update pixi.lock if present ([#&#8203;44004](renovatebot/renovate#44004)) ([c3c70b8](renovatebot/renovate@c3c70b8))

</details>

---

### Configuration

📅 **Schedule**: (in timezone America/Toronto)

- Branch creation
  - At any time (no schedule defined)
- Automerge
  - At any time (no schedule defined)

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

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

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yODguMCIsInVwZGF0ZWRJblZlciI6IjQzLjI4OC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJwcmlvcml0eS9oaWdoIiwicmVub3ZhdGUvY29udGFpbmVyIiwidHlwZS9tYWpvciJdfQ==-->

Reviewed-on: https://git.dcunha.io/Exikle/Artemis-Cluster/pulls/1275
renovate Bot added a commit to sdwilsh/ansible-playbooks that referenced this pull request Aug 2, 2026
##### [\`44.3.3\`](https://github.com/renovatebot/renovate/releases/tag/44.3.3)

##### Bug Fixes

- **composer:** detect already-updated lockfile updates for dev dependencies ([#44805](renovatebot/renovate#44805)) ([98b7710](renovatebot/renovate@98b7710))

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

##### Bug Fixes

- **manager/mise:** use semver versioning for cargo backend crates ([#44966](renovatebot/renovate#44966)) ([97fcec1](renovatebot/renovate@97fcec1))

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

##### Bug Fixes

- **config-validator:** warn when `RE2` is not in use ([#44894](renovatebot/renovate#44894)) ([11a217e](renovatebot/renovate@11a217e))
- **workers/repository:** apply `minimumReleaseAge` to `digest` updates ([#44965](renovatebot/renovate#44965)) ([1247df7](renovatebot/renovate@1247df7))

##### Miscellaneous Chores

- **config:** be explicit about `Renovate CLI` in `prFooter` ([#44949](renovatebot/renovate#44949)) ([10da664](renovatebot/renovate@10da664))

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

##### Features

- **pre-commit:** support forgejo-tags datasource ([#44923](renovatebot/renovate#44923)) ([c526a26](renovatebot/renovate@c526a26))

##### Miscellaneous Chores

- **deps:** update dependency lint-staged to v17.2.0 (main) ([#44962](renovatebot/renovate#44962)) ([54609b4](renovatebot/renovate@54609b4))
- **deps:** update github/codeql-action action to v4.37.4 (main) ([#44961](renovatebot/renovate#44961)) ([3ea610a](renovatebot/renovate@3ea610a))

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

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.78.5 (main) ([#44960](renovatebot/renovate#44960)) ([17951d4](renovatebot/renovate@17951d4))

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

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.78.4 (main) ([#44938](renovatebot/renovate#44938)) ([6c536e4](renovatebot/renovate@6c536e4))

##### Documentation

- **next-major:** update links to Renovate 44 examples ([#44945](renovatebot/renovate#44945)) ([1fe48de](renovatebot/renovate@1fe48de))
- note the accidental release of Renovate 44 ([#44954](renovatebot/renovate#44954)) ([5067543](renovatebot/renovate@5067543))

##### Miscellaneous Chores

- **deps:** update dependency pnpm to v11.16.0 (main) ([#44957](renovatebot/renovate#44957)) ([c80292d](renovatebot/renovate@c80292d))

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

##### Build System

- **deps:** update node.js to v24.18.1 (main) ([#44951](renovatebot/renovate#44951)) ([cb5c6d6](renovatebot/renovate@cb5c6d6))

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

##### Features

- **github-actions:** support UpCloudLtd/upcloud-cli-action ver input ([#44947](renovatebot/renovate#44947)) ([fdd3d02](renovatebot/renovate@fdd3d02))

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

##### Features

- **presets/monorepo:** Add YamlDotNet as monorepo ([#44937](renovatebot/renovate#44937)) ([e3655af](renovatebot/renovate@e3655af))

##### Miscellaneous Chores

- **deps:** update renovate/renovate docker tag to v44 (main) ([#44942](renovatebot/renovate#44942)) ([ba0182f](renovatebot/renovate@ba0182f))

##### Continuous Integration

- don't allow breaking changes in PR commit messages ([#44944](renovatebot/renovate#44944)) ([710913e](renovatebot/renovate@710913e)), closes [#44004](renovatebot/renovate#44004) [#44004](renovatebot/renovate#44004) [#44939](renovatebot/renovate#44939)

---
##### [\`44.0.1\`](renovatebot/renovate@44.0.0...44.0.1)


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

##### ⚠ BREAKING CHANGES

- **managers/pep621:** The `pixi` manager no longer updates `pixi.lock`
  automatically. To keep `pixi.lock` updated, add `pixi` to the global
  `allowedUnsafeExecutions` option.

##### Features

- **managers/pep621:** update pixi.lock if present ([#44004](renovatebot/renovate#44004)) ([c3c70b8](renovatebot/renovate@c3c70b8))
renovate Bot added a commit to sdwilsh/ansible-playbooks that referenced this pull request Aug 2, 2026
##### [\`44.4.0\`](renovatebot/renovate@44.3.3...44.4.0)


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

##### Bug Fixes

- **composer:** detect already-updated lockfile updates for dev dependencies ([#44805](renovatebot/renovate#44805)) ([98b7710](renovatebot/renovate@98b7710))

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

##### Bug Fixes

- **manager/mise:** use semver versioning for cargo backend crates ([#44966](renovatebot/renovate#44966)) ([97fcec1](renovatebot/renovate@97fcec1))

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

##### Bug Fixes

- **config-validator:** warn when `RE2` is not in use ([#44894](renovatebot/renovate#44894)) ([11a217e](renovatebot/renovate@11a217e))
- **workers/repository:** apply `minimumReleaseAge` to `digest` updates ([#44965](renovatebot/renovate#44965)) ([1247df7](renovatebot/renovate@1247df7))

##### Miscellaneous Chores

- **config:** be explicit about `Renovate CLI` in `prFooter` ([#44949](renovatebot/renovate#44949)) ([10da664](renovatebot/renovate@10da664))

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

##### Features

- **pre-commit:** support forgejo-tags datasource ([#44923](renovatebot/renovate#44923)) ([c526a26](renovatebot/renovate@c526a26))

##### Miscellaneous Chores

- **deps:** update dependency lint-staged to v17.2.0 (main) ([#44962](renovatebot/renovate#44962)) ([54609b4](renovatebot/renovate@54609b4))
- **deps:** update github/codeql-action action to v4.37.4 (main) ([#44961](renovatebot/renovate#44961)) ([3ea610a](renovatebot/renovate@3ea610a))

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

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.78.5 (main) ([#44960](renovatebot/renovate#44960)) ([17951d4](renovatebot/renovate@17951d4))

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

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.78.4 (main) ([#44938](renovatebot/renovate#44938)) ([6c536e4](renovatebot/renovate@6c536e4))

##### Documentation

- **next-major:** update links to Renovate 44 examples ([#44945](renovatebot/renovate#44945)) ([1fe48de](renovatebot/renovate@1fe48de))
- note the accidental release of Renovate 44 ([#44954](renovatebot/renovate#44954)) ([5067543](renovatebot/renovate@5067543))

##### Miscellaneous Chores

- **deps:** update dependency pnpm to v11.16.0 (main) ([#44957](renovatebot/renovate#44957)) ([c80292d](renovatebot/renovate@c80292d))

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

##### Build System

- **deps:** update node.js to v24.18.1 (main) ([#44951](renovatebot/renovate#44951)) ([cb5c6d6](renovatebot/renovate@cb5c6d6))

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

##### Features

- **github-actions:** support UpCloudLtd/upcloud-cli-action ver input ([#44947](renovatebot/renovate#44947)) ([fdd3d02](renovatebot/renovate@fdd3d02))

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

##### Features

- **presets/monorepo:** Add YamlDotNet as monorepo ([#44937](renovatebot/renovate#44937)) ([e3655af](renovatebot/renovate@e3655af))

##### Miscellaneous Chores

- **deps:** update renovate/renovate docker tag to v44 (main) ([#44942](renovatebot/renovate#44942)) ([ba0182f](renovatebot/renovate@ba0182f))

##### Continuous Integration

- don't allow breaking changes in PR commit messages ([#44944](renovatebot/renovate#44944)) ([710913e](renovatebot/renovate@710913e)), closes [#44004](renovatebot/renovate#44004) [#44004](renovatebot/renovate#44004) [#44939](renovatebot/renovate#44939)

---
##### [\`44.0.1\`](renovatebot/renovate@44.0.0...44.0.1)


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

##### ⚠ BREAKING CHANGES

- **managers/pep621:** The `pixi` manager no longer updates `pixi.lock`
  automatically. To keep `pixi.lock` updated, add `pixi` to the global
  `allowedUnsafeExecutions` option.

##### Features

- **managers/pep621:** update pixi.lock if present ([#44004](renovatebot/renovate#44004)) ([c3c70b8](renovatebot/renovate@c3c70b8))
sdwilsh pushed a commit to sdwilsh/ansible-playbooks that referenced this pull request Aug 2, 2026
##### [\`44.4.0\`](renovatebot/renovate@44.3.3...44.4.0)


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

##### Bug Fixes

- **composer:** detect already-updated lockfile updates for dev dependencies ([#44805](renovatebot/renovate#44805)) ([98b7710](renovatebot/renovate@98b7710))

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

##### Bug Fixes

- **manager/mise:** use semver versioning for cargo backend crates ([#44966](renovatebot/renovate#44966)) ([97fcec1](renovatebot/renovate@97fcec1))

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

##### Bug Fixes

- **config-validator:** warn when `RE2` is not in use ([#44894](renovatebot/renovate#44894)) ([11a217e](renovatebot/renovate@11a217e))
- **workers/repository:** apply `minimumReleaseAge` to `digest` updates ([#44965](renovatebot/renovate#44965)) ([1247df7](renovatebot/renovate@1247df7))

##### Miscellaneous Chores

- **config:** be explicit about `Renovate CLI` in `prFooter` ([#44949](renovatebot/renovate#44949)) ([10da664](renovatebot/renovate@10da664))

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

##### Features

- **pre-commit:** support forgejo-tags datasource ([#44923](renovatebot/renovate#44923)) ([c526a26](renovatebot/renovate@c526a26))

##### Miscellaneous Chores

- **deps:** update dependency lint-staged to v17.2.0 (main) ([#44962](renovatebot/renovate#44962)) ([54609b4](renovatebot/renovate@54609b4))
- **deps:** update github/codeql-action action to v4.37.4 (main) ([#44961](renovatebot/renovate#44961)) ([3ea610a](renovatebot/renovate@3ea610a))

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

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.78.5 (main) ([#44960](renovatebot/renovate#44960)) ([17951d4](renovatebot/renovate@17951d4))

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

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v13.78.4 (main) ([#44938](renovatebot/renovate#44938)) ([6c536e4](renovatebot/renovate@6c536e4))

##### Documentation

- **next-major:** update links to Renovate 44 examples ([#44945](renovatebot/renovate#44945)) ([1fe48de](renovatebot/renovate@1fe48de))
- note the accidental release of Renovate 44 ([#44954](renovatebot/renovate#44954)) ([5067543](renovatebot/renovate@5067543))

##### Miscellaneous Chores

- **deps:** update dependency pnpm to v11.16.0 (main) ([#44957](renovatebot/renovate#44957)) ([c80292d](renovatebot/renovate@c80292d))

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

##### Build System

- **deps:** update node.js to v24.18.1 (main) ([#44951](renovatebot/renovate#44951)) ([cb5c6d6](renovatebot/renovate@cb5c6d6))

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

##### Features

- **github-actions:** support UpCloudLtd/upcloud-cli-action ver input ([#44947](renovatebot/renovate#44947)) ([fdd3d02](renovatebot/renovate@fdd3d02))

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

##### Features

- **presets/monorepo:** Add YamlDotNet as monorepo ([#44937](renovatebot/renovate#44937)) ([e3655af](renovatebot/renovate@e3655af))

##### Miscellaneous Chores

- **deps:** update renovate/renovate docker tag to v44 (main) ([#44942](renovatebot/renovate#44942)) ([ba0182f](renovatebot/renovate@ba0182f))

##### Continuous Integration

- don't allow breaking changes in PR commit messages ([#44944](renovatebot/renovate#44944)) ([710913e](renovatebot/renovate@710913e)), closes [#44004](renovatebot/renovate#44004) [#44004](renovatebot/renovate#44004) [#44939](renovatebot/renovate#44939)

---
##### [\`44.0.1\`](renovatebot/renovate@44.0.0...44.0.1)


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

##### ⚠ BREAKING CHANGES

- **managers/pep621:** The `pixi` manager no longer updates `pixi.lock`
  automatically. To keep `pixi.lock` updated, add `pixi` to the global
  `allowedUnsafeExecutions` option.

##### Features

- **managers/pep621:** update pixi.lock if present ([#44004](renovatebot/renovate#44004)) ([c3c70b8](renovatebot/renovate@c3c70b8))

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants