Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ env:
# are we on a release branch?
DO_REALEASE: ${{ github.ref_name == github.event.repository.default_branch || github.ref_name == 'next' || startsWith(github.ref_name, 'maint/')}}
NODE_VERSION: 22
PDM_VERSION: 2.24.2 # renovate: datasource=pypi depName=pdm
PDM_VERSION: 2.25.0 # renovate: datasource=pypi depName=pdm
DRY_RUN: true
TEST_LEGACY_DECRYPTION: true
SPARSE_CHECKOUT: |-
Expand Down
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.13.4
3.13.5
2 changes: 1 addition & 1 deletion docs/usage/.pages
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ nav:
- 'Java': 'java.md'
- 'JavaScript': 'javascript.md'
- 'Node.js Versions': 'node.md'
- 'Nuget': 'nuget.md'
- 'NuGet': 'nuget.md'
- 'PHP': 'php.md'
- 'Python': 'python.md'
- 'Ruby': 'ruby.md'
Expand Down
2 changes: 1 addition & 1 deletion docs/usage/key-concepts/changelogs.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,6 @@ Read [`maven` datasource, making your changelogs fetchable](../modules/datasourc

Read the [Docker datasource](../modules/datasource/docker/index.md) docs.

### Nuget package maintainers
### NuGet package maintainers

See [Renovate issue #14128 about using NuGet's changelogs](https://github.com/renovatebot/renovate/issues/14128).
2 changes: 1 addition & 1 deletion lib/modules/manager/nuget/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ For Renovate to work with .NET Framework projects, you need to update these file

### Disabling updates for pinned versions

In Nuget, when you use versions like `Version="1.2.3"` then it means "1.2.3 or greater, up to v2"
In NuGet, when you use versions like `Version="1.2.3"` then it means "1.2.3 or greater, up to v2"
When you use versions like `Version="[1.2.3]"` then it means "exactly 1.2.3".

If you would like Renovate to disable updating of exact versions (warning: you might end up years out of date and not realize it) then here is an example configuration to achieve that:
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@
"semver-stable": "3.0.0",
"semver-utils": "1.1.4",
"shlex": "2.1.2",
"simple-git": "3.27.0",
"simple-git": "3.28.0",
"slugify": "1.6.6",
"source-map-support": "0.5.21",
"toml-eslint-parser": "0.10.0",
Expand All @@ -260,7 +260,7 @@
"vuln-vects": "1.1.0",
"xmldoc": "1.3.0",
"yaml": "2.8.0",
"zod": "3.25.53"
"zod": "3.25.55"
},
"optionalDependencies": {
"better-sqlite3": "11.10.0",
Expand Down
22 changes: 11 additions & 11 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions tools/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ ARG BASE_IMAGE_TYPE=slim
# --------------------------------------
# slim image
# --------------------------------------
FROM ghcr.io/renovatebot/base-image:9.71.14@sha256:ff77187bf2a430dc738aa30a132ebe3565d9072ab9e1b36a06de78fd70cc145e AS slim-base
FROM ghcr.io/renovatebot/base-image:9.72.0@sha256:b8159ae61340880e6287e997f24f429241af7f530c0656a0e15e9d4973bca217 AS slim-base

# --------------------------------------
# full image
# --------------------------------------
FROM ghcr.io/renovatebot/base-image:9.71.14-full@sha256:0d106881c8886f63a650791e0dbc4a305b21d62903397bafb16cee89b3fed3e1 AS full-base
FROM ghcr.io/renovatebot/base-image:9.72.0-full@sha256:19ddabae181baf0555b65a7b352f1fff8127e5b0301eb385ec4051c21a234744 AS full-base

ENV RENOVATE_BINARY_SOURCE=global

# --------------------------------------
# build image
# --------------------------------------
FROM --platform=$BUILDPLATFORM ghcr.io/renovatebot/base-image:9.71.14@sha256:ff77187bf2a430dc738aa30a132ebe3565d9072ab9e1b36a06de78fd70cc145e AS build
FROM --platform=$BUILDPLATFORM ghcr.io/renovatebot/base-image:9.72.0@sha256:b8159ae61340880e6287e997f24f429241af7f530c0656a0e15e9d4973bca217 AS build

# We want a specific node version here
# renovate: datasource=github-releases packageName=containerbase/node-prebuild versioning=node
Expand Down
Loading