@depup/serverless 4.40.0-depup.0 → 4.41.0-depup.0

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.
package/README.md CHANGED
@@ -13,17 +13,16 @@ npm install @depup/serverless
13
13
 
14
14
  | Field | Value |
15
15
  |-------|-------|
16
- | Original | [serverless](https://www.npmjs.com/package/serverless) @ 4.40.0 |
17
- | Processed | 2026-07-26 |
16
+ | Original | [serverless](https://www.npmjs.com/package/serverless) @ 4.41.0 |
17
+ | Processed | 2026-08-16 |
18
18
  | Smoke test | failed |
19
- | Deps updated | 2 |
19
+ | Deps updated | 1 |
20
20
 
21
21
  ## Dependency Changes
22
22
 
23
23
  | Dependency | From | To |
24
24
  |------------|------|-----|
25
- | rimraf | 5.0.10 | ^6.1.3 |
26
- | undici | 6.27.0 | ^8.9.0 |
25
+ | undici | 6.28.0 | ^8.10.0 |
27
26
 
28
27
  ---
29
28
 
package/binary.js CHANGED
@@ -5,8 +5,6 @@ const { existsSync, mkdirSync, rmSync, writeFileSync } = require('fs')
5
5
  const { join } = require('path')
6
6
  const { spawnSync } = require('child_process')
7
7
 
8
- const rimraf = require('rimraf')
9
-
10
8
  const error = (msg) => {
11
9
  console.error(msg)
12
10
  process.exit(1)
@@ -145,9 +143,14 @@ class Binary {
145
143
  return Promise.resolve()
146
144
  }
147
145
 
148
- if (existsSync(this.installDirectory)) {
149
- rimraf.sync(this.installDirectory)
150
- }
146
+ // maxRetries/retryDelay cover transient EBUSY/EPERM on Windows, where
147
+ // antivirus or indexers can briefly hold locks on the old binaries
148
+ rmSync(this.installDirectory, {
149
+ recursive: true,
150
+ force: true,
151
+ maxRetries: 10,
152
+ retryDelay: 100,
153
+ })
151
154
 
152
155
  mkdirSync(this.installDirectory, { recursive: true })
153
156
 
package/changes.json CHANGED
@@ -1,14 +1,10 @@
1
1
  {
2
2
  "bumped": {
3
- "rimraf": {
4
- "from": "5.0.10",
5
- "to": "^6.1.3"
6
- },
7
3
  "undici": {
8
- "from": "6.27.0",
9
- "to": "^8.9.0"
4
+ "from": "6.28.0",
5
+ "to": "^8.10.0"
10
6
  }
11
7
  },
12
- "timestamp": "2026-07-26T01:00:53.696Z",
13
- "totalUpdated": 2
8
+ "timestamp": "2026-08-16T00:28:10.289Z",
9
+ "totalUpdated": 1
14
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@depup/serverless",
3
- "version": "4.40.0-depup.0",
3
+ "version": "4.41.0-depup.0",
4
4
  "description": "serverless with all dependencies updated to latest",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -27,32 +27,23 @@
27
27
  "sls": "run.js"
28
28
  },
29
29
  "dependencies": {
30
- "rimraf": "^6.1.3",
31
- "undici": "^8.9.0"
30
+ "undici": "^8.10.0"
32
31
  },
33
32
  "devDependencies": {},
34
- "overrides": {
35
- "minimatch": "^10.0.0",
36
- "brace-expansion": "^5.0.7"
37
- },
38
33
  "engines": {
39
34
  "node": ">=18.17.0"
40
35
  },
41
36
  "depup": {
42
37
  "changes": {
43
- "rimraf": {
44
- "from": "5.0.10",
45
- "to": "^6.1.3"
46
- },
47
38
  "undici": {
48
- "from": "6.27.0",
49
- "to": "^8.9.0"
39
+ "from": "6.28.0",
40
+ "to": "^8.10.0"
50
41
  }
51
42
  },
52
- "depsUpdated": 2,
43
+ "depsUpdated": 1,
53
44
  "originalPackage": "serverless",
54
- "originalVersion": "4.40.0",
55
- "processedAt": "2026-07-26T01:00:54.744Z",
45
+ "originalVersion": "4.41.0",
46
+ "processedAt": "2026-08-16T00:28:11.206Z",
56
47
  "smokeTest": "failed"
57
48
  }
58
49
  }