kuzzle 2.17.2 → 2.17.5
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 +1 -1
- package/index.js +5 -1
- package/lib/api/controllers/serverController.js +0 -1
- package/lib/api/openapi/components/index.js +5 -1
- package/lib/api/openapi/index.js +5 -1
- package/lib/api/request/index.js +5 -1
- package/lib/api/request/kuzzleRequest.js +5 -1
- package/lib/api/request/requestContext.js +5 -1
- package/lib/api/request/requestInput.js +5 -1
- package/lib/api/request/requestResponse.js +11 -2
- package/lib/cluster/state.js +5 -1
- package/lib/core/backend/backend.js +5 -1
- package/lib/core/backend/backendConfig.js +5 -1
- package/lib/core/backend/backendController.js +5 -1
- package/lib/core/backend/backendErrors.d.ts +11 -8
- package/lib/core/backend/backendErrors.js +31 -23
- package/lib/core/backend/backendHook.js +5 -1
- package/lib/core/backend/backendImport.js +5 -1
- package/lib/core/backend/backendPipe.js +5 -1
- package/lib/core/backend/backendPlugin.js +5 -1
- package/lib/core/backend/backendVault.js +5 -1
- package/lib/core/backend/index.js +5 -1
- package/lib/core/network/protocols/httpMessage.js +2 -1
- package/lib/core/network/protocols/httpwsProtocol.js +7 -5
- package/lib/core/plugin/pluginContext.js +5 -1
- package/lib/core/realtime/channel.js +5 -1
- package/lib/core/realtime/hotelClerk.js +5 -1
- package/lib/core/security/profileRepository.js +5 -1
- package/lib/core/shared/sdk/embeddedSdk.js +5 -1
- package/lib/core/storage/indexCache.js +5 -1
- package/lib/kerror/codes/0-core.json +1 -1
- package/lib/kerror/codes/1-services.json +1 -1
- package/lib/kerror/codes/2-api.json +1 -1
- package/lib/kerror/codes/3-network.json +1 -1
- package/lib/kerror/codes/4-plugin.json +1 -1
- package/lib/kerror/codes/5-validation.json +1 -1
- package/lib/kerror/codes/6-protocol.json +1 -1
- package/lib/kerror/codes/7-security.json +1 -1
- package/lib/kerror/codes/8-cluster.json +1 -1
- package/lib/kerror/codes/index.js +7 -7
- package/lib/kerror/errors/index.js +5 -1
- package/lib/kerror/errors/kuzzleError.d.ts +4 -0
- package/lib/kerror/errors/kuzzleError.js +9 -2
- package/lib/kerror/index.d.ts +3 -3
- package/lib/kerror/index.js +16 -7
- package/lib/kuzzle/kuzzle.js +5 -1
- package/lib/model/security/profile.js +5 -1
- package/lib/model/security/role.js +5 -1
- package/lib/model/security/user.js +5 -1
- package/lib/types/Plugin.js +5 -1
- package/lib/types/errors/ErrorDefinition.d.ts +6 -0
- package/lib/types/errors/ErrorDomains.d.ts +2 -2
- package/lib/types/index.js +5 -1
- package/lib/util/dump-collection.js +5 -1
- package/lib/util/mutex.js +5 -1
- package/package-lock.json +478 -681
- package/package.json +22 -22
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.17.
|
|
4
|
+
"version": "2.17.5",
|
|
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": {
|
|
7
7
|
"kuzzle": "bin/start-kuzzle-server"
|
|
@@ -43,18 +43,18 @@
|
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@elastic/elasticsearch": "https://github.com/elastic/elasticsearch-js/archive/refs/tags/v7.13.0.tar.gz",
|
|
45
45
|
"@types/js-yaml": "^4.0.5",
|
|
46
|
-
"aedes": "^0.46.
|
|
46
|
+
"aedes": "^0.46.3",
|
|
47
47
|
"bluebird": "^3.7.2",
|
|
48
48
|
"cli-color": "^2.0.1",
|
|
49
|
-
"cookie": "^0.4.
|
|
50
|
-
"debug": "^4.3.
|
|
49
|
+
"cookie": "^0.4.2",
|
|
50
|
+
"debug": "^4.3.4",
|
|
51
51
|
"denque": "^2.0.1",
|
|
52
52
|
"didyoumean": "^1.2.2",
|
|
53
53
|
"dumpme": "^1.0.3",
|
|
54
54
|
"eventemitter3": "^4.0.7",
|
|
55
|
-
"express": "^4.17.
|
|
56
|
-
"inquirer": "^8.2.
|
|
57
|
-
"ioredis": "^4.28.
|
|
55
|
+
"express": "^4.17.3",
|
|
56
|
+
"inquirer": "^8.2.1",
|
|
57
|
+
"ioredis": "^4.28.5",
|
|
58
58
|
"js-yaml": "^4.1.0",
|
|
59
59
|
"json-stable-stringify": "^1.0.1",
|
|
60
60
|
"json2yaml": "^1.1.0",
|
|
@@ -62,14 +62,14 @@
|
|
|
62
62
|
"koncorde": "^4.0.2",
|
|
63
63
|
"kuzzle-plugin-auth-passport-local": "^6.3.6",
|
|
64
64
|
"kuzzle-plugin-logger": "^3.0.3",
|
|
65
|
-
"kuzzle-sdk": "7.
|
|
65
|
+
"kuzzle-sdk": "7.9.1",
|
|
66
66
|
"kuzzle-vault": "^2.0.4",
|
|
67
67
|
"lodash": "4.17.21",
|
|
68
68
|
"long": "^5.2.0",
|
|
69
69
|
"moment": "^2.29.1",
|
|
70
70
|
"ms": "^2.1.3",
|
|
71
71
|
"murmurhash-native": "^3.5.0",
|
|
72
|
-
"nanoid": "^3.
|
|
72
|
+
"nanoid": "^3.3.1",
|
|
73
73
|
"ndjson": "^2.0.0",
|
|
74
74
|
"node-segfault-handler": "^1.0.4",
|
|
75
75
|
"passport": "^0.5.2",
|
|
@@ -80,11 +80,11 @@
|
|
|
80
80
|
"uWebSockets.js": "https://github.com/uNetworking/uWebSockets.js/archive/refs/tags/v20.0.0.tar.gz",
|
|
81
81
|
"uuid": "^8.3.2",
|
|
82
82
|
"validator": "^13.7.0",
|
|
83
|
-
"winston": "^3.
|
|
83
|
+
"winston": "^3.6.0",
|
|
84
84
|
"winston-elasticsearch": "0.16.1",
|
|
85
|
-
"winston-syslog": "^2.
|
|
86
|
-
"winston-transport": "^4.
|
|
87
|
-
"yargs": "^17.
|
|
85
|
+
"winston-syslog": "^2.5.0",
|
|
86
|
+
"winston-transport": "^4.5.0",
|
|
87
|
+
"yargs": "^17.4.0",
|
|
88
88
|
"zeromq": "^6.0.0-beta.6"
|
|
89
89
|
},
|
|
90
90
|
"repository": {
|
|
@@ -92,18 +92,18 @@
|
|
|
92
92
|
"url": "git://github.com/kuzzleio/kuzzle.git"
|
|
93
93
|
},
|
|
94
94
|
"devDependencies": {
|
|
95
|
-
"@types/lodash": "^4.14.
|
|
96
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
97
|
-
"@typescript-eslint/parser": "^5.
|
|
95
|
+
"@types/lodash": "^4.14.180",
|
|
96
|
+
"@typescript-eslint/eslint-plugin": "^5.16.0",
|
|
97
|
+
"@typescript-eslint/parser": "^5.16.0",
|
|
98
98
|
"async": "^3.2.3",
|
|
99
99
|
"chokidar": "^3.5.3",
|
|
100
100
|
"codecov": "^3.8.3",
|
|
101
101
|
"cucumber": "^6.0.5",
|
|
102
|
-
"ergol": "^1.0.
|
|
103
|
-
"eslint": "^8.
|
|
104
|
-
"mocha": "^9.2.
|
|
102
|
+
"ergol": "^1.0.2",
|
|
103
|
+
"eslint": "^8.11.0",
|
|
104
|
+
"mocha": "^9.2.2",
|
|
105
105
|
"mock-require": "^3.0.3",
|
|
106
|
-
"mqtt": "^4.3.
|
|
106
|
+
"mqtt": "^4.3.7",
|
|
107
107
|
"nyc": "^15.1.0",
|
|
108
108
|
"request": "^2.88.2",
|
|
109
109
|
"request-promise": "^4.2.6",
|
|
@@ -112,8 +112,8 @@
|
|
|
112
112
|
"should-sinon": "0.0.6",
|
|
113
113
|
"sinon": "^12.0.1",
|
|
114
114
|
"strip-json-comments": "https://github.com/sindresorhus/strip-json-comments/archive/refs/tags/v3.1.1.tar.gz",
|
|
115
|
-
"ts-node": "^10.
|
|
116
|
-
"typescript": "^4.
|
|
115
|
+
"ts-node": "^10.7.0",
|
|
116
|
+
"typescript": "^4.6.2",
|
|
117
117
|
"yaml": "^1.10.2"
|
|
118
118
|
},
|
|
119
119
|
"engines": {
|