agentvibes 2.14.15 → 2.14.16
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/.claude/github-star-reminder.txt +1 -1
- package/README.md +1 -1
- package/RELEASE_NOTES.md +17 -0
- package/package.json +2 -2
- package/src/installer.js +7 -7
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
20251202
|
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
[](https://github.com/paulpreibisch/AgentVibes/actions/workflows/publish.yml)
|
|
12
12
|
[](https://opensource.org/licenses/Apache-2.0)
|
|
13
13
|
|
|
14
|
-
**Author**: Paul Preibisch ([@997Fire](https://x.com/997Fire)) | **Version**: v2.14.
|
|
14
|
+
**Author**: Paul Preibisch ([@997Fire](https://x.com/997Fire)) | **Version**: v2.14.16
|
|
15
15
|
|
|
16
16
|
---
|
|
17
17
|
|
package/RELEASE_NOTES.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
# Release v2.14.16 - Security Hardening & Dependency Updates
|
|
2
|
+
|
|
3
|
+
**Release Date:** 2025-12-02
|
|
4
|
+
**Type:** Patch Release (Security)
|
|
5
|
+
|
|
6
|
+
## AI Summary
|
|
7
|
+
|
|
8
|
+
AgentVibes v2.14.16 hardens repository security with Dependabot automated dependency updates, CodeQL security scanning, and fixes a moderate prototype pollution vulnerability in js-yaml. GitHub security features including Dependabot alerts and security updates are now enabled for the repository.
|
|
9
|
+
|
|
10
|
+
**Key Highlights:**
|
|
11
|
+
- 🔒 **Security Fix** - Updated js-yaml from 4.1.0 to 4.1.1 (fixes prototype pollution CVE)
|
|
12
|
+
- 🤖 **Dependabot** - Automated weekly dependency updates for npm, pip, and GitHub Actions
|
|
13
|
+
- 🔍 **CodeQL** - Security scanning for JavaScript and Python on every PR
|
|
14
|
+
- ✅ **Security Updates** - Enabled Dependabot alerts and automatic security PRs
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
1
18
|
# Release v2.14.15 - CI/CD Publish Workflow Fix
|
|
2
19
|
|
|
3
20
|
**Release Date:** 2025-12-01
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "agentvibes",
|
|
4
|
-
"version": "2.14.
|
|
4
|
+
"version": "2.14.16",
|
|
5
5
|
"description": "Now your AI Agents can finally talk back! Professional TTS voice for Claude Code and Claude Desktop (via MCP) with multi-provider support.",
|
|
6
6
|
"homepage": "https://agentvibes.org",
|
|
7
7
|
"keywords": [
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"commander": "^10.0.0",
|
|
47
47
|
"figlet": "^1.6.0",
|
|
48
48
|
"inquirer": "^12.0.0",
|
|
49
|
-
"js-yaml": "^4.1.
|
|
49
|
+
"js-yaml": "^4.1.1",
|
|
50
50
|
"ora": "^6.0.0"
|
|
51
51
|
},
|
|
52
52
|
"engines": {
|
package/src/installer.js
CHANGED
|
@@ -128,16 +128,16 @@ function showReleaseInfo() {
|
|
|
128
128
|
console.log(
|
|
129
129
|
boxen(
|
|
130
130
|
chalk.white.bold('═══════════════════════════════════════════════════════════════\n') +
|
|
131
|
-
chalk.cyan.bold(' 📦 AgentVibes v2.14.
|
|
131
|
+
chalk.cyan.bold(' 📦 AgentVibes v2.14.16 - Security Hardening & Dependency Updates\n') +
|
|
132
132
|
chalk.white.bold('═══════════════════════════════════════════════════════════════\n\n') +
|
|
133
133
|
chalk.green.bold('🎙️ WHAT\'S NEW:\n\n') +
|
|
134
|
-
chalk.cyan('AgentVibes v2.14.
|
|
135
|
-
chalk.cyan('
|
|
136
|
-
chalk.cyan('
|
|
134
|
+
chalk.cyan('AgentVibes v2.14.16 hardens repository security with Dependabot\n') +
|
|
135
|
+
chalk.cyan('automated updates, CodeQL scanning, and fixes a prototype pollution\n') +
|
|
136
|
+
chalk.cyan('vulnerability in js-yaml. GitHub security features now enabled.\n\n') +
|
|
137
137
|
chalk.green.bold('✨ KEY HIGHLIGHTS:\n\n') +
|
|
138
|
-
chalk.gray('
|
|
139
|
-
chalk.gray('
|
|
140
|
-
chalk.gray('
|
|
138
|
+
chalk.gray(' 🔒 Security Fix - js-yaml 4.1.1 fixes prototype pollution CVE\n') +
|
|
139
|
+
chalk.gray(' 🤖 Dependabot - Weekly dependency updates for npm, pip, actions\n') +
|
|
140
|
+
chalk.gray(' 🔍 CodeQL - Security scanning for JS/Python on every PR\n\n') +
|
|
141
141
|
chalk.white.bold('═══════════════════════════════════════════════════════════════\n\n') +
|
|
142
142
|
chalk.gray('📖 Full Release Notes: RELEASE_NOTES.md\n') +
|
|
143
143
|
chalk.gray('🌐 Website: https://agentvibes.org\n') +
|