codeforge-dev 1.14.1 → 1.14.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.devcontainer/CHANGELOG.md +9 -3
- package/.devcontainer/features/ccburn/devcontainer-feature.json +0 -5
- package/.devcontainer/features/ccusage/devcontainer-feature.json +0 -5
- package/.devcontainer/features/claude-monitor/devcontainer-feature.json +0 -5
- package/.devcontainer/features/claude-session-dashboard/devcontainer-feature.json +1 -2
- package/.devcontainer/features/mcp-qdrant/devcontainer-feature.json +0 -6
- package/.devcontainer/features/tree-sitter/devcontainer-feature.json +0 -6
- package/package.json +1 -1
|
@@ -1,18 +1,24 @@
|
|
|
1
1
|
# CodeForge Devcontainer Changelog
|
|
2
2
|
|
|
3
|
-
## [v1.14.
|
|
3
|
+
## [v1.14.2] - 2026-02-24
|
|
4
4
|
|
|
5
5
|
### Fixed
|
|
6
6
|
|
|
7
|
-
#### CI: Release Workflow
|
|
7
|
+
#### CI: Release Workflow (v1.14.1)
|
|
8
8
|
- **test.js** — settings.json path updated from `config/settings.json` to `config/defaults/settings.json` to match config externalization refactor
|
|
9
9
|
- **test.js** — Test 5 (executable check) result now included in exit condition; previously a failure was logged but did not affect the exit code
|
|
10
10
|
- **setup.js** — file permissions changed from 644 to 755 (executable) to match shebang and `bin` declaration in package.json
|
|
11
11
|
|
|
12
|
-
#### CI: Publish DevContainer Features Workflow
|
|
12
|
+
#### CI: Publish DevContainer Features Workflow (v1.14.1)
|
|
13
13
|
- **features/README.md** — removed from features directory; `devcontainers/action@v1` treated it as a feature subdirectory and failed looking for `README.md/devcontainer-feature.json`
|
|
14
14
|
- **11 devcontainer-feature.json files** — removed `"maintainer"` field (not in the DevContainer Feature spec schema, causing strict validation failure): ast-grep, ccburn, ccms, ccstatusline, ccusage, chromaterm, claude-monitor, claude-session-dashboard, lsp-servers, mcp-qdrant, tree-sitter
|
|
15
15
|
|
|
16
|
+
#### CI: Publish DevContainer Features Workflow (v1.14.2)
|
|
17
|
+
- **6 devcontainer-feature.json files** — removed `"proposals"` field that coexisted with `"enum"` on the same option (spec schema treats them as mutually exclusive via `anyOf`): ccburn, ccusage, claude-monitor, claude-session-dashboard, mcp-qdrant, tree-sitter
|
|
18
|
+
|
|
19
|
+
#### Docs
|
|
20
|
+
- **Active sidebar item** — increased background opacity from 0.08 to 0.14, added `font-weight: 600` and `color: var(--sl-color-accent-high)` for readable contrast against inactive items
|
|
21
|
+
|
|
16
22
|
## [v1.14.0] - 2026-02-24
|
|
17
23
|
|
|
18
24
|
### Fixed (CodeRabbit review)
|
|
@@ -19,8 +19,7 @@
|
|
|
19
19
|
"type": "string",
|
|
20
20
|
"description": "Which shells to configure aliases in (bash, zsh, or both)",
|
|
21
21
|
"default": "both",
|
|
22
|
-
"enum": ["bash", "zsh", "both"]
|
|
23
|
-
"proposals": ["bash", "zsh", "both"]
|
|
22
|
+
"enum": ["bash", "zsh", "both"]
|
|
24
23
|
},
|
|
25
24
|
"username": {
|
|
26
25
|
"type": "string",
|
|
@@ -39,12 +39,6 @@
|
|
|
39
39
|
"BAAI/bge-small-en-v1.5",
|
|
40
40
|
"sentence-transformers/all-mpnet-base-v2",
|
|
41
41
|
"BAAI/bge-base-en-v1.5"
|
|
42
|
-
],
|
|
43
|
-
"proposals": [
|
|
44
|
-
"all-MiniLM-L6-v2",
|
|
45
|
-
"BAAI/bge-small-en-v1.5",
|
|
46
|
-
"sentence-transformers/all-mpnet-base-v2",
|
|
47
|
-
"BAAI/bge-base-en-v1.5"
|
|
48
42
|
]
|
|
49
43
|
},
|
|
50
44
|
"username": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeforge-dev",
|
|
3
|
-
"version": "1.14.
|
|
3
|
+
"version": "1.14.2",
|
|
4
4
|
"description": "Complete development container that sets up Claude Code with modular devcontainer features, modern dev tools, and persistent configurations. Drop it into any project and get a production-ready AI development environment in minutes.",
|
|
5
5
|
"main": "setup.js",
|
|
6
6
|
"bin": {
|