mcp-rubber-duck 1.5.0 โ†’ 1.5.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.
@@ -111,10 +111,39 @@ jobs:
111
111
  sarif_file: hadolint-results.sarif
112
112
  category: 'hadolint'
113
113
 
114
+ test:
115
+ name: ๐Ÿงช Test Suite
116
+ runs-on: ubuntu-latest
117
+
118
+ steps:
119
+ - name: ๐Ÿ“ฅ Checkout
120
+ uses: actions/checkout@v4
121
+
122
+ - name: ๐Ÿ“ฆ Setup Node.js
123
+ uses: actions/setup-node@v4
124
+ with:
125
+ node-version: '20'
126
+ cache: 'npm'
127
+
128
+ - name: ๐Ÿ“ฅ Install dependencies
129
+ run: npm ci
130
+
131
+ - name: ๐Ÿ” Lint
132
+ run: npm run lint
133
+
134
+ - name: ๐Ÿ—๏ธ Build
135
+ run: npm run build
136
+
137
+ - name: ๐Ÿ”ฌ Type check
138
+ run: npm run typecheck
139
+
140
+ - name: ๐Ÿงช Test
141
+ run: npm test
142
+
114
143
  quality-gates:
115
144
  name: ๐Ÿš€ Quality Gates
116
145
  runs-on: ubuntu-latest
117
- needs: [security-scan, dependency-check, dockerfile-lint]
146
+ needs: [security-scan, dependency-check, dockerfile-lint, test]
118
147
  if: always()
119
148
 
120
149
  steps:
@@ -141,5 +170,11 @@ jobs:
141
170
  echo "โŒ **Dockerfile Lint:** Failed" >> $GITHUB_STEP_SUMMARY
142
171
  fi
143
172
 
173
+ if [ "${{ needs.test.result }}" == "success" ]; then
174
+ echo "โœ… **Test Suite:** Passed" >> $GITHUB_STEP_SUMMARY
175
+ else
176
+ echo "โŒ **Test Suite:** Failed" >> $GITHUB_STEP_SUMMARY
177
+ fi
178
+
144
179
  echo "" >> $GITHUB_STEP_SUMMARY
145
180
  echo "๐Ÿ“‹ **View detailed results in the Security tab**" >> $GITHUB_STEP_SUMMARY
@@ -45,9 +45,8 @@ jobs:
45
45
  - name: ๐Ÿ”ฌ Type check
46
46
  run: npm run typecheck
47
47
 
48
- # Enable when tests are working
49
- # - name: ๐Ÿงช Test
50
- # run: npm test
48
+ - name: ๐Ÿงช Test
49
+ run: npm test
51
50
 
52
51
  security-scan:
53
52
  name: ๐Ÿ” Security Scan
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.5.1](https://github.com/nesquikm/mcp-rubber-duck/compare/v1.5.0...v1.5.1) (2026-01-02)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * update qs to resolve CVE (GHSA-6rw7-vpxm-498p) ([3c15c66](https://github.com/nesquikm/mcp-rubber-duck/commit/3c15c66a3c81c741e38d9cc22d8df5e6537ba7d9))
7
+
1
8
  # [1.5.0](https://github.com/nesquikm/mcp-rubber-duck/compare/v1.4.2...v1.5.0) (2025-12-08)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-rubber-duck",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "description": "An MCP server that bridges to multiple OpenAI-compatible LLMs - your AI rubber duck debugging panel",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",