Skip to content

Commit 65947e8

Browse files
authored
Merge branch 'master' into master
2 parents 3fe1b6a + 6ff8c61 commit 65947e8

File tree

12 files changed

+439
-421
lines changed

12 files changed

+439
-421
lines changed

.eslintrc.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,18 @@
7878
]
7979
}
8080
],
81-
"simple-import-sort/exports": "warn"
81+
"simple-import-sort/exports": "warn",
82+
"@typescript-eslint/no-extra-semi": "error",
83+
"no-extra-semi": "off"
8284
}
8385
},
8486
{
8587
"files": ["*.js", "*.jsx"],
8688
"extends": ["plugin:@nx/javascript"],
87-
"rules": {}
89+
"rules": {
90+
"@typescript-eslint/no-extra-semi": "error",
91+
"no-extra-semi": "off"
92+
}
8893
},
8994
{
9095
"files": ["*.spec.ts", "*/__fixtures__/*.ts"],
@@ -99,7 +104,9 @@
99104
"@typescript-eslint/no-explicit-any": "off",
100105
"import/no-extraneous-dependencies": "off",
101106
"jest/expect-expect": "off",
102-
"@nx/enforce-module-boundaries": ["off"]
107+
"@nx/enforce-module-boundaries": ["off"],
108+
"@typescript-eslint/no-extra-semi": "error",
109+
"no-extra-semi": "off"
103110
}
104111
}
105112
]

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,4 +93,5 @@ documentation/.docusaurus
9393
# VSCode workspace files
9494
.vscode
9595

96-
.nx/cache
96+
.nx/cache
97+
.nx/workspace-data

.prettierignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.prettierignore
22
.docusaurus/
3-
/.nx/cache
3+
/.nx/cache
4+
/.nx/workspace-data

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11

2+
# [7.1.0](https://github.com/TriPSs/nestjs-query/compare/v7.0.1...v7.1.0) (2024-10-16)
3+
4+
5+
### Bug Fixes
6+
7+
* Adjust package.json configurations and correct filter defaultValue syntax ([cc19f4c](https://github.com/TriPSs/nestjs-query/commit/cc19f4c4f24f5ae872d966f2719b5ca11edbc99a))
8+
9+
10+
### Features
11+
12+
* support querying soft deleted relations ([00296c0](https://github.com/TriPSs/nestjs-query/commit/00296c0e656f7865bcf5bb54848a07d53be8d7d7))
13+
14+
15+
216
## [7.0.1](https://github.com/TriPSs/nestjs-query/compare/v7.0.0...v7.0.1) (2024-09-25)
317

418

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nestjs-query",
3-
"version": "7.0.1",
3+
"version": "7.1.0",
44
"private": true,
55
"workspaces": [
66
"packages/**"
@@ -31,7 +31,7 @@
3131
"sequelize": "6.37.3",
3232
"sequelize-typescript": "2.1.6",
3333
"tslib": "^2.6.3",
34-
"typeorm": "^0.3.17"
34+
"typeorm": "0.3.17"
3535
},
3636
"devDependencies": {
3737
"@actions/core": "^1.10.1",
@@ -50,11 +50,11 @@
5050
"@nestjs/schematics": "10.1.4",
5151
"@nestjs/testing": "^10.4.1",
5252
"@nx-extend/docusaurus": "^2.0.1",
53-
"@nx/eslint": "18.3.4",
54-
"@nx/eslint-plugin": "18.3.4",
55-
"@nx/jest": "18.3.4",
56-
"@nx/js": "18.3.4",
57-
"@nx/node": "18.3.4",
53+
"@nx/eslint": "19.6.1",
54+
"@nx/eslint-plugin": "19.6.1",
55+
"@nx/jest": "19.6.1",
56+
"@nx/js": "19.6.1",
57+
"@nx/node": "19.6.1",
5858
"@typegoose/typegoose": "^12.6.0",
5959
"@types/express": "4.17.21",
6060
"@types/jest": "29.5.12",
@@ -70,8 +70,8 @@
7070
"@types/supertest": "6.0.2",
7171
"@types/uuid": "9.0.8",
7272
"@types/ws": "8.5.12",
73-
"@typescript-eslint/eslint-plugin": "7.13.0",
74-
"@typescript-eslint/parser": "7.13.0",
73+
"@typescript-eslint/eslint-plugin": "7.18.0",
74+
"@typescript-eslint/parser": "7.18.0",
7575
"class-transformer": "0.5.1",
7676
"class-validator": "0.14.1",
7777
"clsx": "^2.1.1",
@@ -95,7 +95,7 @@
9595
"jest-extended": "4.0.2",
9696
"mongodb-memory-server": "9.3.0",
9797
"mysql2": "3.11.0",
98-
"nx": "18.3.4",
98+
"nx": "19.6.1",
9999
"passport": "0.7.0",
100100
"passport-jwt": "4.0.1",
101101
"passport-local": "1.0.0",
@@ -113,7 +113,7 @@
113113
"ts-node": "10.9.2",
114114
"tsconfig-extends": "1.0.1",
115115
"tsconfig-paths": "4.2.0",
116-
"typescript": "5.4.5"
116+
"typescript": "5.5.4"
117117
},
118118
"packageManager": "yarn@4.4.0"
119119
}

packages/core/package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
{
22
"name": "@ptc-org/nestjs-query-core",
3-
"version": "7.0.1",
3+
"version": "7.1.0",
44
"description": "Base query package",
5-
"author": "doug-martin <doug@dougamartin.com>",
65
"homepage": "https://github.com/tripss/nestjs-query#readme",
6+
"bugs": {
7+
"url": "https://github.com/tripss/nestjs-query/issues"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/tripss/nestjs-query.git"
12+
},
713
"license": "MIT",
14+
"author": "doug-martin <doug@dougamartin.com>",
815
"main": "src/index.js",
916
"types": "src/index.d.ts",
1017
"directories": {
@@ -14,16 +21,6 @@
1421
"files": [
1522
"src/**"
1623
],
17-
"publishConfig": {
18-
"access": "public"
19-
},
20-
"repository": {
21-
"type": "git",
22-
"url": "git+https://github.com/tripss/nestjs-query.git"
23-
},
24-
"bugs": {
25-
"url": "https://github.com/tripss/nestjs-query/issues"
26-
},
2724
"dependencies": {
2825
"lodash.merge": "^4.6.2",
2926
"reflect-metadata": "^0.2.2",
@@ -32,5 +29,8 @@
3229
"peerDependencies": {
3330
"@nestjs/common": "^9.0.0 || ^10.0.0",
3431
"class-transformer": "^0.5"
32+
},
33+
"publishConfig": {
34+
"access": "public"
3535
}
3636
}
Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,24 @@
11
{
22
"name": "@ptc-org/nestjs-query-graphql",
3-
"version": "7.0.1",
3+
"version": "7.1.0",
44
"description": "Nestjs graphql query adapter",
5-
"author": "doug-martin <doug@dougamartin.com>",
6-
"homepage": "https://github.com/tripss/nestjs-query#readme",
75
"keywords": [
86
"graphql",
97
"crud",
108
"nestjs",
119
"dataloader"
1210
],
11+
"homepage": "https://github.com/tripss/nestjs-query#readme",
12+
"bugs": {
13+
"url": "https://github.com/tripss/nestjs-query/issues"
14+
},
15+
"repository": {
16+
"type": "git",
17+
"url": "git+https://github.com/tripss/nestjs-query.git",
18+
"directory": "packages/query-graphql"
19+
},
1320
"license": "MIT",
21+
"author": "doug-martin <doug@dougamartin.com>",
1422
"main": "src/index.js",
1523
"types": "src/index.d.ts",
1624
"directories": {
@@ -20,17 +28,6 @@
2028
"files": [
2129
"src/**"
2230
],
23-
"publishConfig": {
24-
"access": "public"
25-
},
26-
"repository": {
27-
"type": "git",
28-
"url": "git+https://github.com/tripss/nestjs-query.git",
29-
"directory": "packages/query-graphql"
30-
},
31-
"bugs": {
32-
"url": "https://github.com/tripss/nestjs-query/issues"
33-
},
3431
"dependencies": {
3532
"dataloader": "^2.2.2",
3633
"graphql-fields": "^2.0.3",
@@ -50,5 +47,8 @@
5047
"graphql": "^16.0.0",
5148
"graphql-subscriptions": "^2.0.0",
5249
"ts-morph": "^19.0.0"
50+
},
51+
"publishConfig": {
52+
"access": "public"
5353
}
5454
}
Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
{
22
"name": "@ptc-org/nestjs-query-mongoose",
3-
"version": "7.0.1",
3+
"version": "7.1.0",
44
"description": "Mongoose adapter for @ptc-org/nestjs-query-core",
5-
"author": "doug-martin <doug@dougamartin.com>",
65
"homepage": "https://github.com/tripss/nestjs-query#readme",
6+
"bugs": {
7+
"url": "https://github.com/tripss/nestjs-query/issues"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/tripss/nestjs-query.git",
12+
"directory": "packages/query-typeorm-mongo"
13+
},
714
"license": "MIT",
15+
"author": "doug-martin <doug@dougamartin.com>",
816
"main": "src/index.js",
917
"types": "src/index.d.ts",
1018
"directories": {
@@ -14,9 +22,6 @@
1422
"files": [
1523
"src/**"
1624
],
17-
"publishConfig": {
18-
"access": "public"
19-
},
2025
"dependencies": {
2126
"camel-case": "^4.1.2",
2227
"lodash.escaperegexp": "^4.1.2",
@@ -28,12 +33,7 @@
2833
"@nestjs/mongoose": "^9.0.0 || ^10.0.0",
2934
"mongoose": "^8.0.0"
3035
},
31-
"repository": {
32-
"type": "git",
33-
"url": "git+https://github.com/tripss/nestjs-query.git",
34-
"directory": "packages/query-typeorm-mongo"
35-
},
36-
"bugs": {
37-
"url": "https://github.com/tripss/nestjs-query/issues"
36+
"publishConfig": {
37+
"access": "public"
3838
}
3939
}
Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
{
22
"name": "@ptc-org/nestjs-query-sequelize",
3-
"version": "7.0.1",
3+
"version": "7.1.0",
44
"description": "Sequelize adapter for @ptc-org/nestjs-query-core",
5-
"author": "doug-martin <doug@dougamartin.com>",
65
"homepage": "https://github.com/tripss/nestjs-query#readme",
6+
"bugs": {
7+
"url": "https://github.com/tripss/nestjs-query/issues"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/tripss/nestjs-query.git",
12+
"directory": "packages/query-sequelize"
13+
},
714
"license": "MIT",
15+
"author": "doug-martin <doug@dougamartin.com>",
816
"main": "src/index.js",
917
"types": "src/index.d.ts",
1018
"directories": {
@@ -14,9 +22,6 @@
1422
"files": [
1523
"src/**"
1624
],
17-
"publishConfig": {
18-
"access": "public"
19-
},
2025
"dependencies": {
2126
"camel-case": "^4.1.2",
2227
"lodash.pick": "4.4.0",
@@ -28,12 +33,7 @@
2833
"sequelize": "^6.5.0",
2934
"sequelize-typescript": "^1.1.0 || ^2.0.0"
3035
},
31-
"repository": {
32-
"type": "git",
33-
"url": "git+https://github.com/tripss/nestjs-query.git",
34-
"directory": "packages/query-sequelize"
35-
},
36-
"bugs": {
37-
"url": "https://github.com/tripss/nestjs-query/issues"
36+
"publishConfig": {
37+
"access": "public"
3838
}
3939
}
Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
{
22
"name": "@ptc-org/nestjs-query-typegoose",
3-
"version": "7.0.1",
3+
"version": "7.1.0",
44
"description": "Typegoose adapter for @ptc-org/nestjs-query-core",
5-
"author": "john mcinall<johnmcinall@gmail.com>",
65
"homepage": "https://github.com/tripss/nestjs-query#readme",
6+
"bugs": {
7+
"url": "https://github.com/tripss/nestjs-query/issues"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/tripss/nestjs-query.git",
12+
"directory": "packages/query-typegoose"
13+
},
714
"license": "MIT",
15+
"author": "john mcinall<johnmcinall@gmail.com>",
816
"main": "src/index.js",
917
"types": "src/index.d.ts",
1018
"directories": {
@@ -14,9 +22,6 @@
1422
"files": [
1523
"src/**"
1624
],
17-
"publishConfig": {
18-
"access": "public"
19-
},
2025
"dependencies": {
2126
"camel-case": "^4.1.2",
2227
"is-class": "0.0.9",
@@ -30,12 +35,7 @@
3035
"@typegoose/typegoose": "^9.0.0 || ^10.0.0 || ^11.0.0",
3136
"mongoose": "^6.5.0 || ^7.0.3 || ^8.0.0"
3237
},
33-
"repository": {
34-
"type": "git",
35-
"url": "git+https://github.com/tripss/nestjs-query.git",
36-
"directory": "packages/query-typegoose"
37-
},
38-
"bugs": {
39-
"url": "https://github.com/tripss/nestjs-query/issues"
38+
"publishConfig": {
39+
"access": "public"
4040
}
4141
}

0 commit comments

Comments
 (0)