mcp-rubber-duck 1.9.0 → 1.9.4

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.
@@ -0,0 +1 @@
1
+ custom: ['https://github.com/nesquikm/mcp-rubber-duck/blob/master/DONATE.md']
@@ -33,7 +33,7 @@ jobs:
33
33
  trivyignores: '.trivyignore'
34
34
 
35
35
  - name: 📤 Upload Trivy scan results to GitHub Security
36
- uses: github/codeql-action/upload-sarif@v3
36
+ uses: github/codeql-action/upload-sarif@v4
37
37
  if: always()
38
38
  with:
39
39
  sarif_file: 'trivy-results.sarif'
@@ -54,7 +54,7 @@ jobs:
54
54
  trivyignores: '.trivyignore'
55
55
 
56
56
  - name: 📤 Upload Docker scan results
57
- uses: github/codeql-action/upload-sarif@v3
57
+ uses: github/codeql-action/upload-sarif@v4
58
58
  if: always() && github.event_name != 'schedule'
59
59
  with:
60
60
  sarif_file: 'trivy-docker-results.sarif'
@@ -71,7 +71,7 @@ jobs:
71
71
  - name: 📦 Setup Node.js
72
72
  uses: actions/setup-node@v4
73
73
  with:
74
- node-version: '20'
74
+ node-version: '22'
75
75
  cache: 'npm'
76
76
 
77
77
  - name: 📥 Install dependencies
@@ -105,7 +105,7 @@ jobs:
105
105
  no-fail: true
106
106
 
107
107
  - name: 📤 Upload Dockerfile lint results
108
- uses: github/codeql-action/upload-sarif@v3
108
+ uses: github/codeql-action/upload-sarif@v4
109
109
  if: always()
110
110
  with:
111
111
  sarif_file: hadolint-results.sarif
@@ -122,7 +122,7 @@ jobs:
122
122
  - name: 📦 Setup Node.js
123
123
  uses: actions/setup-node@v4
124
124
  with:
125
- node-version: '20'
125
+ node-version: '22'
126
126
  cache: 'npm'
127
127
 
128
128
  - name: 📥 Install dependencies
@@ -18,6 +18,7 @@ permissions:
18
18
  packages: write
19
19
  security-events: write
20
20
  actions: read
21
+ id-token: write
21
22
 
22
23
  jobs:
23
24
  test:
@@ -30,7 +31,7 @@ jobs:
30
31
  - name: 📦 Setup Node.js
31
32
  uses: actions/setup-node@v4
32
33
  with:
33
- node-version: '20'
34
+ node-version: '22'
34
35
  cache: 'npm'
35
36
 
36
37
  - name: 📥 Install dependencies
@@ -65,7 +66,7 @@ jobs:
65
66
  output: 'trivy-results.sarif'
66
67
 
67
68
  - name: 📤 Upload Trivy scan results to GitHub Security
68
- uses: github/codeql-action/upload-sarif@v3
69
+ uses: github/codeql-action/upload-sarif@v4
69
70
  if: always()
70
71
  with:
71
72
  sarif_file: 'trivy-results.sarif'
@@ -83,7 +84,7 @@ jobs:
83
84
  output: 'trivy-docker-results.sarif'
84
85
 
85
86
  - name: 📤 Upload Docker scan results
86
- uses: github/codeql-action/upload-sarif@v3
87
+ uses: github/codeql-action/upload-sarif@v4
87
88
  if: always()
88
89
  with:
89
90
  sarif_file: 'trivy-docker-results.sarif'
@@ -100,7 +101,7 @@ jobs:
100
101
  - name: 📦 Setup Node.js
101
102
  uses: actions/setup-node@v4
102
103
  with:
103
- node-version: '20'
104
+ node-version: '22'
104
105
  cache: 'npm'
105
106
 
106
107
  - name: 📥 Install dependencies
@@ -134,7 +135,7 @@ jobs:
134
135
  no-fail: true
135
136
 
136
137
  - name: 📤 Upload Dockerfile lint results
137
- uses: github/codeql-action/upload-sarif@v3
138
+ uses: github/codeql-action/upload-sarif@v4
138
139
  if: always()
139
140
  with:
140
141
  sarif_file: hadolint-results.sarif
@@ -158,8 +159,9 @@ jobs:
158
159
  - name: 📦 Setup Node.js
159
160
  uses: actions/setup-node@v4
160
161
  with:
161
- node-version: '20'
162
+ node-version: '22'
162
163
  cache: 'npm'
164
+ registry-url: 'https://registry.npmjs.org'
163
165
 
164
166
  - name: 📥 Install dependencies
165
167
  run: npm ci
@@ -177,7 +179,6 @@ jobs:
177
179
  - name: 📦 Run semantic-release
178
180
  env:
179
181
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
180
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
181
182
  run: npx semantic-release
182
183
 
183
184
  - name: 🏷️ Get latest tag after release
@@ -210,6 +211,16 @@ jobs:
210
211
  echo "No new release"
211
212
  fi
212
213
 
214
+ - name: 📦 Upgrade npm for OIDC support
215
+ if: steps.check-release.outputs.released == 'true'
216
+ run: |
217
+ npm install -g npm@latest
218
+ npm --version
219
+
220
+ - name: 📤 Publish to npm with provenance
221
+ if: steps.check-release.outputs.released == 'true'
222
+ run: npm publish --provenance --access public
223
+
213
224
  - name: 📊 Release Summary
214
225
  if: success()
215
226
  run: |
package/.releaserc.json CHANGED
@@ -12,7 +12,12 @@
12
12
  "changelogFile": "CHANGELOG.md"
13
13
  }
14
14
  ],
15
- "@semantic-release/npm",
15
+ [
16
+ "@semantic-release/npm",
17
+ {
18
+ "npmPublish": false
19
+ }
20
+ ],
16
21
  [
17
22
  "@semantic-release/git",
18
23
  {
package/CHANGELOG.md CHANGED
@@ -1,3 +1,32 @@
1
+ ## [1.9.4](https://github.com/nesquikm/mcp-rubber-duck/compare/v1.9.3...v1.9.4) (2026-01-26)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * override lodash to 4.17.23 to address CVE-2025-13465 ([8cb5a3a](https://github.com/nesquikm/mcp-rubber-duck/commit/8cb5a3a0b3a644b2ed368537412cda32b8a333f2))
7
+
8
+ ## [1.9.3](https://github.com/nesquikm/mcp-rubber-duck/compare/v1.9.2...v1.9.3) (2026-01-19)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * upgrade npm to latest for OIDC trusted publishing ([a6ca82c](https://github.com/nesquikm/mcp-rubber-duck/commit/a6ca82cddd15bbd56a9e7eaabb513d7cb5b13d8c))
14
+
15
+ ## [1.9.2](https://github.com/nesquikm/mcp-rubber-duck/compare/v1.9.1...v1.9.2) (2026-01-19)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * configure registry-url for npm OIDC auth ([0798f7c](https://github.com/nesquikm/mcp-rubber-duck/commit/0798f7c94a0a69470d6cae9f27ca984ee2975ac8))
21
+
22
+ ## [1.9.1](https://github.com/nesquikm/mcp-rubber-duck/compare/v1.9.0...v1.9.1) (2026-01-19)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * switch to npm OIDC trusted publishing ([b1f92ca](https://github.com/nesquikm/mcp-rubber-duck/commit/b1f92ca97baba8ac50b77cf16c880174a4dd32fa))
28
+ * use native npm publish for OIDC provenance ([99fb6d8](https://github.com/nesquikm/mcp-rubber-duck/commit/99fb6d8d77a786e1b1c748bc9a3b68c81cffec99))
29
+
1
30
  # [1.9.0](https://github.com/nesquikm/mcp-rubber-duck/compare/v1.8.0...v1.9.0) (2026-01-15)
2
31
 
3
32
 
package/DONATE.md ADDED
@@ -0,0 +1,30 @@
1
+ # 🦆 Feed the Ducks
2
+
3
+ ```
4
+ __
5
+ <(o )___
6
+ ( ._> /
7
+ `---' Quack! Spare some crypto?
8
+ ```
9
+
10
+ Enjoying the duck pond? Toss us some digital bread crumbs to keep the ducks quacking!
11
+
12
+ ## Bitcoin (BTC)
13
+
14
+ `bc1qlq3dl8pca5q27qz5zk2jm6qqf6xgt6lvh4yrxs`
15
+
16
+ ## Ethereum (ETH, USDT, USDC)
17
+
18
+ `0x41341d35Ee5C02DdD4255113E58e32Ba024754e9`
19
+
20
+ ## Solana (SOL, USDT, USDC)
21
+
22
+ `C2JuPcbcVQEfYwzDtbF3iwbhbjFzdJLqjYxzhPxNZQH6`
23
+
24
+ ## Tron (TRX, USDT, USDC)
25
+
26
+ `TBi9y3fEUJLAX7DSGK6pVPB7TUW9ymFRJ8`
27
+
28
+ ---
29
+
30
+ 🦆 Every satoshi helps keep our ducks debugging! Thank you!
package/audit-ci.json CHANGED
@@ -6,6 +6,9 @@
6
6
  "report-type": "summary",
7
7
  "allowlist": [
8
8
  "GHSA-5j98-mcp5-4vw2",
9
- "GHSA-73rr-hh4g-fpgx"
9
+ "GHSA-73rr-hh4g-fpgx",
10
+ "GHSA-8qq5-rm4j-mr97",
11
+ "GHSA-g9mf-h72j-4rw9",
12
+ "GHSA-r6q2-hw4h-h46w"
10
13
  ]
11
14
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-rubber-duck",
3
- "version": "1.9.0",
3
+ "version": "1.9.4",
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",
@@ -37,8 +37,13 @@
37
37
  "bugs": {
38
38
  "url": "https://github.com/nesquikm/mcp-rubber-duck/issues"
39
39
  },
40
+ "publishConfig": {
41
+ "provenance": true,
42
+ "access": "public"
43
+ },
40
44
  "dependencies": {
41
45
  "@modelcontextprotocol/sdk": "^1.24.0",
46
+ "@semantic-release/npm": "^13.1.3",
42
47
  "ajv": "^8.17.1",
43
48
  "dotenv": "^16.4.0",
44
49
  "node-cache": "^5.1.2",
@@ -57,12 +62,14 @@
57
62
  "eslint": "^8.0.0",
58
63
  "jest": "^29.0.0",
59
64
  "prettier": "^3.0.0",
60
- "semantic-release": "^24.2.8",
65
+ "semantic-release": "^25.0.2",
61
66
  "ts-jest": "^29.0.0",
62
67
  "tsx": "^4.0.0",
63
68
  "typescript": "^5.0.0"
64
69
  },
65
70
  "overrides": {
66
- "js-yaml": "^4.1.1"
71
+ "js-yaml": "^4.1.1",
72
+ "lodash": "^4.17.23",
73
+ "lodash-es": "^4.17.23"
67
74
  }
68
75
  }