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.
@@ -1 +1 @@
1
- 20251201
1
+ 20251202
package/README.md CHANGED
@@ -11,7 +11,7 @@
11
11
  [![Publish](https://github.com/paulpreibisch/AgentVibes/actions/workflows/publish.yml/badge.svg)](https://github.com/paulpreibisch/AgentVibes/actions/workflows/publish.yml)
12
12
  [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
13
13
 
14
- **Author**: Paul Preibisch ([@997Fire](https://x.com/997Fire)) | **Version**: v2.14.15
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.15",
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.0",
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.15 - CI/CD Publish Workflow Fix\n') +
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.15 fixes the GitHub Actions publish workflow\n') +
135
- chalk.cyan('that was failing with E403 errors. The workflow now checks if\n') +
136
- chalk.cyan('a version already exists on npm before attempting to publish.\n\n') +
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(' 🔧 Workflow Fix - publish.yml checks version before publish\n') +
139
- chalk.gray(' Green Badges - No more E403 "already published" errors\n') +
140
- chalk.gray(' 🚀 CI/CD - Graceful skip if version already on npm\n\n') +
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') +