equipped 4.4.2 → 4.4.4
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/CHANGELOG.md +14 -0
- package/lib/db/mongoose/changes.js +1 -1
- package/lib/db/mongoose/query.d.ts +1 -1
- package/lib/db/query.d.ts +2 -2
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [4.4.4](https://github.com/kevinand11/equipped/compare/v4.4.3...v4.4.4) (2024-03-23)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* debezium connector mongodb string ([125b199](https://github.com/kevinand11/equipped/commit/125b1992ac0caa9c9d40ae5de26706e8c5d01f43))
|
|
11
|
+
|
|
12
|
+
### [4.4.3](https://github.com/kevinand11/equipped/compare/v4.4.2...v4.4.3) (2024-03-01)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* typing of QueryParams sort ([9c7e4a3](https://github.com/kevinand11/equipped/commit/9c7e4a37f3dbcfe06981419ade4e7678c128e2a4))
|
|
18
|
+
|
|
5
19
|
### [4.4.2](https://github.com/kevinand11/equipped/compare/v4.4.1...v4.4.2) (2024-03-01)
|
|
6
20
|
|
|
7
21
|
|
|
@@ -44,7 +44,7 @@ class MongoDbChange extends _instance_1.DbChange {
|
|
|
44
44
|
const started = await this._setup(topic, {
|
|
45
45
|
'connector.class': 'io.debezium.connector.mongodb.MongoDbConnector',
|
|
46
46
|
'capture.mode': 'change_streams_update_full_with_pre_image',
|
|
47
|
-
'mongodb.
|
|
47
|
+
'mongodb.connection.string': `mongodb://${hosts.map((h) => `${h.host}:${h.port}`).join(',')}/?replicaSet=${replicaSet}`,
|
|
48
48
|
...(credentials ? {
|
|
49
49
|
'mongodb.user': credentials.username,
|
|
50
50
|
'mongodb.pass': credentials.password,
|
|
@@ -24,4 +24,4 @@
|
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
25
|
import mongoose from 'mongoose';
|
|
26
26
|
import { QueryParams, QueryResults } from '../query';
|
|
27
|
-
export declare const parseMongodbQueryParams: <Model>(model: mongoose.Model<Model
|
|
27
|
+
export declare const parseMongodbQueryParams: <Model>(model: mongoose.Model<Model>, params: QueryParams) => Promise<QueryResults<Model>>;
|
package/lib/db/query.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "equipped",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -15,31 +15,31 @@
|
|
|
15
15
|
"author": "",
|
|
16
16
|
"license": "ISC",
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@commitlint/cli": "^19.
|
|
19
|
-
"@commitlint/config-conventional": "^19.0
|
|
18
|
+
"@commitlint/cli": "^19.2.1",
|
|
19
|
+
"@commitlint/config-conventional": "^19.1.0",
|
|
20
20
|
"@types/amqplib": "^0.10.5",
|
|
21
21
|
"@types/bcryptjs": "^2.4.6",
|
|
22
22
|
"@types/bull": "^3.15.9",
|
|
23
23
|
"@types/cors": "^2.8.17",
|
|
24
24
|
"@types/express": "^4.17.21",
|
|
25
|
-
"@types/express-fileupload": "^1.
|
|
25
|
+
"@types/express-fileupload": "^1.5.0",
|
|
26
26
|
"@types/jsonwebtoken": "^9.0.6",
|
|
27
27
|
"@types/morgan": "^1.9.9",
|
|
28
|
-
"@types/node": "^20.11.
|
|
28
|
+
"@types/node": "^20.11.30",
|
|
29
29
|
"@types/pug": "^2.0.10",
|
|
30
30
|
"@types/supertest": "^6.0.2",
|
|
31
|
-
"@typescript-eslint/eslint-plugin": "^7.1
|
|
32
|
-
"@typescript-eslint/parser": "^7.1
|
|
31
|
+
"@typescript-eslint/eslint-plugin": "^7.3.1",
|
|
32
|
+
"@typescript-eslint/parser": "^7.3.1",
|
|
33
33
|
"eslint": "^8.57.0",
|
|
34
34
|
"eslint-plugin-promise": "^6.1.1",
|
|
35
35
|
"husky": "^9.0.11",
|
|
36
36
|
"standard-version": "^9.5.0",
|
|
37
|
-
"typescript": "^5.
|
|
37
|
+
"typescript": "^5.4.3"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"amqp-connection-manager": "^4.1.14",
|
|
41
41
|
"amqplib": "^0.10.3",
|
|
42
|
-
"axios": "^1.6.
|
|
42
|
+
"axios": "^1.6.8",
|
|
43
43
|
"bcryptjs": "^2.4.3",
|
|
44
44
|
"bull": "^4.12.2",
|
|
45
45
|
"chalk": "^4.1.2",
|
|
@@ -47,24 +47,24 @@
|
|
|
47
47
|
"cookie-parser": "^1.4.6",
|
|
48
48
|
"cors": "^2.8.5",
|
|
49
49
|
"dotenv": "^16.4.5",
|
|
50
|
-
"express": "^4.
|
|
51
|
-
"express-fileupload": "^1.
|
|
52
|
-
"express-rate-limit": "^7.
|
|
50
|
+
"express": "^4.19.1",
|
|
51
|
+
"express-fileupload": "^1.5.0",
|
|
52
|
+
"express-rate-limit": "^7.2.0",
|
|
53
53
|
"express-slow-down": "^2.0.1",
|
|
54
54
|
"helmet": "^7.1.0",
|
|
55
55
|
"jsonwebtoken": "^9.0.2",
|
|
56
56
|
"jwks-rsa": "^3.1.0",
|
|
57
57
|
"kafkajs": "^2.2.4",
|
|
58
|
-
"mongoose": "^8.2.
|
|
58
|
+
"mongoose": "^8.2.3",
|
|
59
59
|
"mongoose-lean-defaults": "^2.2.1",
|
|
60
|
-
"mongoose-lean-getters": "^
|
|
60
|
+
"mongoose-lean-getters": "^2.0.1",
|
|
61
61
|
"mongoose-lean-virtuals": "^0.9.1",
|
|
62
62
|
"morgan": "^1.10.0",
|
|
63
63
|
"music-metadata": "^7.14.0",
|
|
64
64
|
"path-to-regexp": "^6.2.1",
|
|
65
65
|
"pug": "^3.0.2",
|
|
66
66
|
"redis": "^4.6.13",
|
|
67
|
-
"socket.io": "4.7.
|
|
67
|
+
"socket.io": "4.7.5",
|
|
68
68
|
"supertest": "^6.3.4",
|
|
69
69
|
"valleyed": "4.2.9"
|
|
70
70
|
},
|