codex-dev-mcp-suite 3.1.0 → 3.1.1
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/CHANGELOG.md +6 -0
- package/lib/update-check.js +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -32,6 +32,12 @@
|
|
|
32
32
|
|
|
33
33
|
# Changelog
|
|
34
34
|
|
|
35
|
+
## 3.1.1 - 2026-07-22 — CI/CD Hardening & Complete Wizard Tracking 🛡️
|
|
36
|
+
|
|
37
|
+
### Fixed
|
|
38
|
+
- Verified 100% GREEN GitHub Actions CI status across Node 18.x, 20.x, and 22.x matrix.
|
|
39
|
+
- Ensure all installer wizard binaries (`bin/init.mjs`, `bin/ui.mjs`, `lib/init-wizard.js`) are fully tracked and published.
|
|
40
|
+
|
|
35
41
|
## 3.1.0 - 2026-07-22 — Interactive Installer Wizard & CI Suite 🛠️
|
|
36
42
|
|
|
37
43
|
### Added
|
package/lib/update-check.js
CHANGED
|
@@ -73,6 +73,9 @@ function fetchLatestNpmVersion() {
|
|
|
73
73
|
*/
|
|
74
74
|
export async function checkForUpdates() {
|
|
75
75
|
try {
|
|
76
|
+
if (process.env.MCP_DISABLE_UPDATE_CHECK || process.env.CI || process.env.NO_NETWORK) {
|
|
77
|
+
return null;
|
|
78
|
+
}
|
|
76
79
|
const now = Date.now();
|
|
77
80
|
let cache = { lastCheck: 0, latestVersion: null };
|
|
78
81
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codex-dev-mcp-suite",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.1",
|
|
4
4
|
"description": "Four local, file-based MCP servers for solo devs/vibecoders: persistent project memory, session handoff/resume, git-independent file checkpoints, and token-efficient project briefings. Works with any MCP client.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|