@nocobase/server 1.9.24 → 1.9.26
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/lib/gateway/ws-server.js +3 -0
- package/lib/plugin-manager/deps.js +1 -1
- package/package.json +16 -16
package/lib/gateway/ws-server.js
CHANGED
|
@@ -228,6 +228,9 @@ const _WSServer = class _WSServer extends import_events.default {
|
|
|
228
228
|
}
|
|
229
229
|
removeClientTag(clientId, tagKey) {
|
|
230
230
|
const client = this.webSocketClients.get(clientId);
|
|
231
|
+
if (!client) {
|
|
232
|
+
return;
|
|
233
|
+
}
|
|
231
234
|
client.tags.forEach((tag) => {
|
|
232
235
|
if (tag.startsWith(`${tagKey}#`)) {
|
|
233
236
|
client.tags.delete(tag);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nocobase/server",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.26",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"types": "./lib/index.d.ts",
|
|
6
6
|
"license": "AGPL-3.0",
|
|
@@ -10,20 +10,20 @@
|
|
|
10
10
|
"@koa/cors": "^5.0.0",
|
|
11
11
|
"@koa/multer": "^3.1.0",
|
|
12
12
|
"@koa/router": "^13.1.0",
|
|
13
|
-
"@nocobase/acl": "1.9.
|
|
14
|
-
"@nocobase/actions": "1.9.
|
|
15
|
-
"@nocobase/auth": "1.9.
|
|
16
|
-
"@nocobase/cache": "1.9.
|
|
17
|
-
"@nocobase/data-source-manager": "1.9.
|
|
18
|
-
"@nocobase/database": "1.9.
|
|
19
|
-
"@nocobase/evaluators": "1.9.
|
|
20
|
-
"@nocobase/lock-manager": "1.9.
|
|
21
|
-
"@nocobase/logger": "1.9.
|
|
22
|
-
"@nocobase/resourcer": "1.9.
|
|
23
|
-
"@nocobase/sdk": "1.9.
|
|
24
|
-
"@nocobase/snowflake-id": "1.9.
|
|
25
|
-
"@nocobase/telemetry": "1.9.
|
|
26
|
-
"@nocobase/utils": "1.9.
|
|
13
|
+
"@nocobase/acl": "1.9.26",
|
|
14
|
+
"@nocobase/actions": "1.9.26",
|
|
15
|
+
"@nocobase/auth": "1.9.26",
|
|
16
|
+
"@nocobase/cache": "1.9.26",
|
|
17
|
+
"@nocobase/data-source-manager": "1.9.26",
|
|
18
|
+
"@nocobase/database": "1.9.26",
|
|
19
|
+
"@nocobase/evaluators": "1.9.26",
|
|
20
|
+
"@nocobase/lock-manager": "1.9.26",
|
|
21
|
+
"@nocobase/logger": "1.9.26",
|
|
22
|
+
"@nocobase/resourcer": "1.9.26",
|
|
23
|
+
"@nocobase/sdk": "1.9.26",
|
|
24
|
+
"@nocobase/snowflake-id": "1.9.26",
|
|
25
|
+
"@nocobase/telemetry": "1.9.26",
|
|
26
|
+
"@nocobase/utils": "1.9.26",
|
|
27
27
|
"@types/decompress": "4.2.7",
|
|
28
28
|
"@types/ini": "^1.3.31",
|
|
29
29
|
"@types/koa-send": "^4.1.3",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"@types/serve-handler": "^6.1.1",
|
|
60
60
|
"@types/ws": "^8.5.5"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "794e25d4aca20fbc68769ad7b1266860bd45ac5c"
|
|
63
63
|
}
|