Skip to content

Commit bc9e6c5

Browse files
Dav-14claude
andcommitted
chore(nix): bump goVersion to 25 and nixpkgs
golangci-lint shipped via nix was built with go1.24 and failed to load tools/readme (go 1.25.0). Bumping the flake's pinned nixpkgs + goVersion to 25 fixes `just lint` / `just pre-commit`. Also regenerates portal/console-v3 values.schema.json to include the new top-level `command`/`args` and migration `command`/`args` fields introduced in d53151f. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent e2f54a7 commit bc9e6c5

4 files changed

Lines changed: 58 additions & 32 deletions

File tree

charts/console-v3/values.schema.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@
88
"annotations": {
99
"type": "object"
1010
},
11+
"args": {
12+
"type": "array",
13+
"items": {
14+
"type": "string"
15+
}
16+
},
1117
"autoscaling": {
1218
"type": "object",
1319
"properties": {
@@ -60,6 +66,12 @@
6066
}
6167
}
6268
},
69+
"command": {
70+
"type": "array",
71+
"items": {
72+
"type": "string"
73+
}
74+
},
6375
"config": {
6476
"type": "object",
6577
"properties": {
@@ -108,6 +120,18 @@
108120
"annotations": {
109121
"type": "object"
110122
},
123+
"args": {
124+
"type": "array",
125+
"items": {
126+
"type": "string"
127+
}
128+
},
129+
"command": {
130+
"type": "array",
131+
"items": {
132+
"type": "string"
133+
}
134+
},
111135
"enabled": {
112136
"type": "boolean"
113137
},

charts/portal/values.schema.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@
88
"annotations": {
99
"type": "object"
1010
},
11+
"args": {
12+
"type": "array",
13+
"items": {
14+
"type": "string"
15+
}
16+
},
1117
"autoscaling": {
1218
"type": "object",
1319
"properties": {
@@ -60,6 +66,12 @@
6066
}
6167
}
6268
},
69+
"command": {
70+
"type": "array",
71+
"items": {
72+
"type": "string"
73+
}
74+
},
6375
"config": {
6476
"type": "object",
6577
"properties": {
@@ -103,6 +115,18 @@
103115
"annotations": {
104116
"type": "object"
105117
},
118+
"args": {
119+
"type": "array",
120+
"items": {
121+
"type": "string"
122+
}
123+
},
124+
"command": {
125+
"type": "array",
126+
"items": {
127+
"type": "string"
128+
}
129+
},
106130
"enabled": {
107131
"type": "boolean"
108132
},

flake.lock

Lines changed: 9 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
outputs = { self, nixpkgs, nur }:
1414
let
15-
goVersion = 23;
15+
goVersion = 25;
1616

1717
supportedSystems = [
1818
"x86_64-linux"

0 commit comments

Comments
 (0)