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
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
"markdown-it": ">=14.1.1",
"postcss": ">=8.5.18",
"sharp": ">=0.35.3",
"uuid": ">=11.1.1"
"uuid": ">=11.1.1",
"minimatch": "3.1.2"
}
}
}
13 changes: 9 additions & 4 deletions public/config/shared.json
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,8 @@
},
"console": {
"latest": {
"label": "v0.3.34 (Latest)",
"branch": "docs/console/0.3.34",
"label": "v0.3.35 (Latest)",
"branch": "docs/console/0.3.35",
"isDefault": true
},
"main": {
Expand Down Expand Up @@ -383,6 +383,11 @@
"label": "v0.3.33",
"branch": "docs/console/0.3.33",
"isDefault": false
},
"0.3.34": {
"label": "v0.3.34",
"branch": "docs/console/0.3.34",
"isDefault": false
}
},
"hive": {
Expand Down Expand Up @@ -422,7 +427,7 @@
"console": {
"name": "Console",
"basePath": "console",
"currentVersion": "0.3.34"
"currentVersion": "0.3.35"
},
"hive": {
"name": "Hive",
Expand Down Expand Up @@ -474,5 +479,5 @@
"multi-plugin": "https://github.com/kubestellar/docs/edit/main/docs/content/multi-plugin",
"kubestellar-mcp": "https://github.com/kubestellar/kubestellar-mcp/edit/main/docs"
},
"updatedAt": "2026-08-02T06:15:37.042Z"
"updatedAt": "2026-08-04T06:11:56.978Z"
}
11 changes: 8 additions & 3 deletions src/config/versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -248,8 +248,8 @@ const KUBESTELLAR_MCP_VERSIONS: Record<string, VersionInfo> = {
// The console release sync workflow auto-updates this when a new release is detected.
const CONSOLE_VERSIONS: Record<string, VersionInfo> = {
latest: {
label: "v0.3.34 (Latest)",
branch: "docs/console/0.3.34",
label: "v0.3.35 (Latest)",
branch: "docs/console/0.3.35",
isDefault: true,
},
main: {
Expand All @@ -258,6 +258,11 @@ const CONSOLE_VERSIONS: Record<string, VersionInfo> = {
isDefault: false,
isDev: true,
},
"0.3.34": {
label: "v0.3.34",
branch: "docs/console/0.3.34",
isDefault: false,
},
"0.3.33": {
label: "v0.3.33",
branch: "docs/console/0.3.33",
Expand Down Expand Up @@ -490,7 +495,7 @@ export const PROJECTS: Record<ProjectId, ProjectConfig> = {
id: "console",
name: "Console",
basePath: "console",
currentVersion: "0.3.34",
currentVersion: "0.3.35",
contentPath: "docs/content/console",
versions: CONSOLE_VERSIONS,
},
Expand Down
Loading