Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: renovatebot/renovate
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 39.217.0
Choose a base ref
...
head repository: renovatebot/renovate
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 39.218.0
Choose a head ref
  • 3 commits
  • 14 files changed
  • 5 contributors

Commits on Mar 26, 2025

  1. docs(manager): mention other CI variables (#35016)

    fgreinacher authored Mar 26, 2025
    Copy the full SHA
    242ef8d View commit details
  2. feat(manager/kustomize): Support inflating helm charts (#34277)

    Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
    Co-authored-by: Rhys Arkins <rhys@arkins.net>
    3 people authored Mar 26, 2025
    Copy the full SHA
    cc08c6e View commit details
  3. chore(deps): update dependency pnpm to v10.6.5 (main) (#35021)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 26, 2025
    Copy the full SHA
    c6620ea View commit details
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -2,4 +2,4 @@ FROM ghcr.io/containerbase/devcontainer:13.8.8

# https://github.com/pnpm/pnpm/issues/8971
# renovate: datasource=npm
RUN install-tool pnpm 10.6.4
RUN install-tool pnpm 10.6.5
1 change: 1 addition & 0 deletions docs/usage/configuration-options.md
Original file line number Diff line number Diff line change
@@ -3470,6 +3470,7 @@ Table with options:
| `gomodSkipVendor` | Never run `go mod vendor` after Go module updates. |
| `gomodVendor` | Always run `go mod vendor` after Go module updates even if vendor files aren't detected. |
| `helmUpdateSubChartArchives` | Update subchart archives in the `/charts` folder. |
| `kustomizeInflateHelmCharts` | Inflate updated helm charts referenced in the kustomization. |
| `npmDedupe` | Run `npm install` with `--prefer-dedupe` for npm >= 7 or `npm dedupe` after `package-lock.json` update for npm <= 6. |
| `pnpmDedupe` | Run `pnpm dedupe --config.ignore-scripts=true` after `pnpm-lock.yaml` updates. |
| `yarnDedupeFewer` | Run `yarn-deduplicate --strategy fewer` after `yarn.lock` updates. |
1 change: 1 addition & 0 deletions lib/config/options/index.ts
Original file line number Diff line number Diff line change
@@ -2413,6 +2413,7 @@ const options: RenovateOptions[] = [
'gomodSkipVendor',
'gomodVendor',
'helmUpdateSubChartArchives',
'kustomizeInflateHelmArchives',
'npmDedupe',
'pnpmDedupe',
'yarnDedupeFewer',
6 changes: 4 additions & 2 deletions lib/modules/manager/gitlabci/readme.md
Original file line number Diff line number Diff line change
@@ -7,12 +7,14 @@ If you use Gitlab Dependency Proxy then you can use these predefined variables a
- `CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX`
- `CI_DEPENDENCY_PROXY_DIRECT_GROUP_IMAGE_PREFIX`

If you use the predefined `CI_REGISTRY` variable make sure to configure its value via `registryAliases`:
If you use predefined GitLab CI variables like `CI_REGISTRY` or `CI_SERVER_FQDN` make sure to configure their value via `registryAliases`:

```json
{
"registryAliases": {
"$CI_REGISTRY": "registry.example.com"
"$CI_REGISTRY": "registry.example.com",
"$CI_SERVER_FQDN": "gitlab.example.com",
"$CI_SERVER_HOST": "gitlab.example.com"
}
}
```
Loading