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
|
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