kuzzle 2.25.0 → 2.26.1

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
@@ -104,7 +104,7 @@ Learn how to [Write an Application](https://docs.kuzzle.io/core/2/guides/getting
104
104
  * [Permissions](https://docs.kuzzle.io/core/2/guides/main-concepts/permissions/)
105
105
  * [Authentication](https://docs.kuzzle.io/core/2/guides/main-concepts/authentication/)
106
106
  * [Realtime Engine](https://docs.kuzzle.io/core/2/guides/main-concepts/realtime-engine/)
107
- * [Discover our SDKs](https://docs.kuzzle.io/core/2/sdk/)
107
+ * [Discover our SDKs](https://docs.kuzzle.io/sdk/v2.html)
108
108
  * [Release Notes](https://github.com/kuzzleio/kuzzle/releases)
109
109
 
110
110
  ## Get trained by the creators of Kuzzle :zap:
@@ -1145,6 +1145,8 @@ class HttpWsProtocol extends Protocol {
1145
1145
  );
1146
1146
  }
1147
1147
 
1148
+ const idleTimeoutInSecond = Math.round(idleTimeout / 1000);
1149
+
1148
1150
  /**
1149
1151
  * @deprecated -- to be removed in the next major version
1150
1152
  */
@@ -1158,7 +1160,7 @@ class HttpWsProtocol extends Protocol {
1158
1160
  enabled: cfg.enabled,
1159
1161
  opts: {
1160
1162
  compression,
1161
- idleTimeout,
1163
+ idleTimeout: idleTimeoutInSecond,
1162
1164
  maxPayloadLength: this.maxRequestSize,
1163
1165
  },
1164
1166
  rateLimit: cfg.rateLimit,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "kuzzle",
3
3
  "author": "The Kuzzle Team <support@kuzzle.io>",
4
- "version": "2.25.0",
4
+ "version": "2.26.1",
5
5
  "description": "Kuzzle is an open-source solution that handles all the data management through a secured API, with a large choice of protocols.",
6
6
  "bin": "bin/start-kuzzle-server",
7
7
  "scripts": {
@@ -53,7 +53,6 @@
53
53
  "denque": "^2.1.0",
54
54
  "didyoumean": "^1.2.2",
55
55
  "dumpme": "^1.0.3",
56
- "eslint-plugin-kuzzle": "^0.0.6",
57
56
  "eventemitter3": "^4.0.7",
58
57
  "inquirer": "^9.1.4",
59
58
  "ioredis": "^5.3.0",
@@ -61,10 +60,10 @@
61
60
  "json-stable-stringify": "^1.0.2",
62
61
  "json2yaml": "^1.1.0",
63
62
  "jsonwebtoken": "^8.5.1",
64
- "koncorde": "^4.1.0",
65
- "kuzzle-plugin-auth-passport-local": "^6.3.6",
63
+ "koncorde": "4.3.0",
64
+ "kuzzle-plugin-auth-passport-local": "6.4.0",
66
65
  "kuzzle-plugin-logger": "^3.0.3",
67
- "kuzzle-sdk": "^7.10.5",
66
+ "kuzzle-sdk": "7.11.0",
68
67
  "kuzzle-vault": "^2.0.4",
69
68
  "lodash": "4.17.21",
70
69
  "long": "^5.2.1",
@@ -78,14 +77,14 @@
78
77
  "rc": "1.2.8",
79
78
  "semver": "^7.3.8",
80
79
  "sorted-array": "^2.0.4",
81
- "uuid": "^9.0.0",
82
- "uWebSockets.js": "https://github.com/uNetworking/uWebSockets.js/archive/refs/tags/v20.7.0.tar.gz",
83
- "validator": "^13.9.0",
84
- "winston": "^3.8.2",
85
- "winston-elasticsearch": "0.17.1",
80
+ "uuid": "9.0.1",
81
+ "uWebSockets.js": "https://github.com/uNetworking/uWebSockets.js/archive/refs/tags/v20.23.0.tar.gz",
82
+ "validator": "13.11.0",
83
+ "winston": "3.10.0",
84
+ "winston-elasticsearch": "0.17.4",
86
85
  "winston-syslog": "^2.7.0",
87
86
  "winston-transport": "^4.5.0",
88
- "yargs": "^17.6.2",
87
+ "yargs": "17.7.2",
89
88
  "zeromq": "6.0.0-beta.6"
90
89
  },
91
90
  "repository": {
@@ -102,6 +101,7 @@
102
101
  "codecov": "^3.8.3",
103
102
  "cucumber": "^6.0.5",
104
103
  "ergol": "^1.0.2",
104
+ "eslint-plugin-kuzzle": "^0.0.6",
105
105
  "jest": "^29.4.1",
106
106
  "mocha": "^10.2.0",
107
107
  "mock-require": "^3.0.3",