Skip to content

Commit 62fa65e

Browse files
authored
Fix npm global install deprecation warnings (#28318)
* Dependencies: make @discordjs/opus an optional peer * Dependencies: bump node-llama-cpp peer to 3.16.2 * Dependencies: pin Google auth deps to warning-free versions * CI: reduce Dependabot cooldown to 2 days * CI: fix invalid Dependabot npm registry config * CI: restore Dependabot npm registry with token auth * Dependencies: remove global Google auth pnpm overrides * CI: make Dependabot updates daily * Dependencies: restore optional install semantics for @discordjs/opus * CI: keep Docker Dependabot interval weekly
1 parent fe807e4 commit 62fa65e

File tree

3 files changed

+218
-206
lines changed

3 files changed

+218
-206
lines changed

.github/dependabot.yml

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,17 @@ registries:
77
npm-npmjs:
88
type: npm-registry
99
url: https://registry.npmjs.org
10+
token: ${{secrets.NPM_NPMJS_TOKEN}}
1011
replaces-base: true
1112

1213
updates:
1314
# npm dependencies (root)
1415
- package-ecosystem: npm
1516
directory: /
1617
schedule:
17-
interval: weekly
18+
interval: daily
1819
cooldown:
19-
default-days: 7
20+
default-days: 2
2021
groups:
2122
production:
2223
dependency-type: production
@@ -36,9 +37,9 @@ updates:
3637
- package-ecosystem: github-actions
3738
directory: /
3839
schedule:
39-
interval: weekly
40+
interval: daily
4041
cooldown:
41-
default-days: 7
42+
default-days: 2
4243
groups:
4344
actions:
4445
patterns:
@@ -52,9 +53,9 @@ updates:
5253
- package-ecosystem: swift
5354
directory: /apps/macos
5455
schedule:
55-
interval: weekly
56+
interval: daily
5657
cooldown:
57-
default-days: 7
58+
default-days: 2
5859
groups:
5960
swift-deps:
6061
patterns:
@@ -68,9 +69,9 @@ updates:
6869
- package-ecosystem: swift
6970
directory: /apps/shared/MoltbotKit
7071
schedule:
71-
interval: weekly
72+
interval: daily
7273
cooldown:
73-
default-days: 7
74+
default-days: 2
7475
groups:
7576
swift-deps:
7677
patterns:
@@ -84,9 +85,9 @@ updates:
8485
- package-ecosystem: swift
8586
directory: /Swabble
8687
schedule:
87-
interval: weekly
88+
interval: daily
8889
cooldown:
89-
default-days: 7
90+
default-days: 2
9091
groups:
9192
swift-deps:
9293
patterns:
@@ -100,9 +101,9 @@ updates:
100101
- package-ecosystem: gradle
101102
directory: /apps/android
102103
schedule:
103-
interval: weekly
104+
interval: daily
104105
cooldown:
105-
default-days: 7
106+
default-days: 2
106107
groups:
107108
android-deps:
108109
patterns:
@@ -118,7 +119,7 @@ updates:
118119
schedule:
119120
interval: weekly
120121
cooldown:
121-
default-days: 7
122+
default-days: 2
122123
groups:
123124
docker-images:
124125
patterns:

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,8 @@
180180
"dotenv": "^17.3.1",
181181
"express": "^5.2.1",
182182
"file-type": "^21.3.0",
183+
"gaxios": "7.1.2",
184+
"google-auth-library": "10.5.0",
183185
"grammy": "^1.40.1",
184186
"https-proxy-agent": "^7.0.6",
185187
"ipaddr.js": "^2.3.0",
@@ -189,6 +191,7 @@
189191
"linkedom": "^0.18.12",
190192
"long": "^5.3.2",
191193
"markdown-it": "^14.1.1",
194+
"node-domexception": "npm:@nolyfill/domexception@^1.0.28",
192195
"node-edge-tts": "^1.2.10",
193196
"opusscript": "^0.1.1",
194197
"osc-progress": "^0.3.0",
@@ -227,7 +230,7 @@
227230
},
228231
"peerDependencies": {
229232
"@napi-rs/canvas": "^0.1.89",
230-
"node-llama-cpp": "3.15.1"
233+
"node-llama-cpp": "3.16.2"
231234
},
232235
"optionalDependencies": {
233236
"@discordjs/opus": "^0.10.0"
@@ -246,6 +249,7 @@
246249
"form-data": "2.5.4",
247250
"minimatch": "10.2.4",
248251
"qs": "6.14.2",
252+
"node-domexception": "npm:@nolyfill/domexception@^1.0.28",
249253
"@sinclair/typebox": "0.34.48",
250254
"tar": "7.5.9",
251255
"tough-cookie": "4.1.3"

0 commit comments

Comments
 (0)