Skip to content

Commit 4d3efe7

Browse files
committed
force semver on nmp packages
1 parent 96be7e9 commit 4d3efe7

2 files changed

Lines changed: 16 additions & 4 deletions

File tree

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ ENV \
1919

2020
ARG \
2121
# renovate: datasource=npm depName=@anthropic-ai/claude-code
22-
CLAUDE_CLI_VERSION=2.1.87 \
22+
CLAUDE_CLI_VERSION=2.1.90 \
2323
# renovate: datasource=npm depName=@openai/codex
24-
CODEX_CLI_VERSION=0.118.0-alpha.3-win32-x64 \
24+
CODEX_CLI_VERSION=0.118.0 \
2525
# renovate: datasource=npm depName=@google/gemini-cli
26-
GEMINI_CLI_VERSION=0.36.0-preview.6 \
26+
GEMINI_CLI_VERSION=0.36.0 \
2727
# renovate: datasource=npm depName=opencode-ai
28-
OPENCODE_AI_VERSION=1.3.7 \
28+
OPENCODE_AI_VERSION=1.3.13 \
2929
CLI=""
3030

3131
RUN if [ -n "$CLI" ]; then \

renovate.json5

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,16 @@
33
extends: [
44
'github>libops/renovate-config:default.json5',
55
],
6+
packageRules: [
7+
{
8+
matchDatasources: ['npm'],
9+
matchPackageNames: [
10+
'@anthropic-ai/claude-code',
11+
'@google/gemini-cli',
12+
'@openai/codex',
13+
'opencode-ai',
14+
],
15+
allowedVersions: '/^\\d+\\.\\d+\\.\\d+$/',
16+
},
17+
],
618
}

0 commit comments

Comments
 (0)