@depup/ws 8.21.1-depup.0 → 8.21.3-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 +2 -2
- package/changes.json +1 -1
- package/lib/permessage-deflate.js +3 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -13,8 +13,8 @@ npm install @depup/ws
|
|
|
13
13
|
|
|
14
14
|
| Field | Value |
|
|
15
15
|
|-------|-------|
|
|
16
|
-
| Original | [ws](https://www.npmjs.com/package/ws) @ 8.21.
|
|
17
|
-
| Processed | 2026-
|
|
16
|
+
| Original | [ws](https://www.npmjs.com/package/ws) @ 8.21.3 |
|
|
17
|
+
| Processed | 2026-08-09 |
|
|
18
18
|
| Smoke test | passed |
|
|
19
19
|
| Deps updated | 0 |
|
|
20
20
|
|
package/changes.json
CHANGED
|
@@ -167,7 +167,9 @@ class PerMessageDeflate {
|
|
|
167
167
|
(typeof opts.serverMaxWindowBits === 'number' &&
|
|
168
168
|
opts.serverMaxWindowBits > params.server_max_window_bits))) ||
|
|
169
169
|
(typeof opts.clientMaxWindowBits === 'number' &&
|
|
170
|
-
|
|
170
|
+
(typeof params.client_max_window_bits === 'number'
|
|
171
|
+
? opts.clientMaxWindowBits > params.client_max_window_bits
|
|
172
|
+
: !params.client_max_window_bits))
|
|
171
173
|
) {
|
|
172
174
|
return false;
|
|
173
175
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@depup/ws",
|
|
3
|
-
"version": "8.21.
|
|
3
|
+
"version": "8.21.3-depup.0",
|
|
4
4
|
"description": "Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js (with updated dependencies)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ws",
|
|
@@ -83,8 +83,8 @@
|
|
|
83
83
|
"changes": {},
|
|
84
84
|
"depsUpdated": 0,
|
|
85
85
|
"originalPackage": "ws",
|
|
86
|
-
"originalVersion": "8.21.
|
|
87
|
-
"processedAt": "2026-
|
|
86
|
+
"originalVersion": "8.21.3",
|
|
87
|
+
"processedAt": "2026-08-09T00:37:59.600Z",
|
|
88
88
|
"smokeTest": "passed"
|
|
89
89
|
}
|
|
90
90
|
}
|