@rxap/plugin-nestjs 16.1.0-dev.9 → 16.1.1-dev.0
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 +385 -0
- package/README.md +127 -1
- package/generators.json +90 -0
- package/package.json +64 -42
- package/src/executors/package-json/executor.js +8 -0
- package/src/executors/package-json/executor.js.map +1 -1
- package/src/executors/package-json/schema.d.ts +3 -1
- package/src/executors/package-json/schema.json +11 -1
- package/src/generators/feature-microservice/generator.d.ts +4 -0
- package/src/generators/feature-microservice/generator.js +17 -0
- package/src/generators/feature-microservice/generator.js.map +1 -0
- package/src/generators/feature-microservice/index.d.ts +2 -0
- package/src/generators/feature-microservice/index.js +7 -0
- package/src/generators/feature-microservice/index.js.map +1 -0
- package/src/generators/feature-microservice/schema.d.ts +5 -0
- package/src/generators/feature-microservice/schema.json +23 -0
- package/src/generators/frontend-microservice/generator.d.ts +4 -0
- package/src/generators/frontend-microservice/generator.js +17 -0
- package/src/generators/frontend-microservice/generator.js.map +1 -0
- package/src/generators/frontend-microservice/index.d.ts +2 -0
- package/src/generators/frontend-microservice/index.js +7 -0
- package/src/generators/frontend-microservice/index.js.map +1 -0
- package/src/generators/frontend-microservice/schema.d.ts +6 -0
- package/src/generators/frontend-microservice/schema.json +29 -0
- package/src/generators/health-indicator/generator.d.ts +4 -0
- package/src/generators/health-indicator/generator.js +31 -0
- package/src/generators/health-indicator/generator.js.map +1 -0
- package/src/generators/health-indicator/index.d.ts +2 -0
- package/src/generators/health-indicator/index.js +7 -0
- package/src/generators/health-indicator/index.js.map +1 -0
- package/src/generators/health-indicator/schema.d.ts +5 -0
- package/src/generators/health-indicator/schema.json +32 -0
- package/src/generators/health-indicator-init/generator.d.ts +4 -0
- package/src/generators/health-indicator-init/generator.js +35 -0
- package/src/generators/health-indicator-init/generator.js.map +1 -0
- package/src/generators/health-indicator-init/index.d.ts +2 -0
- package/src/generators/health-indicator-init/index.js +7 -0
- package/src/generators/health-indicator-init/index.js.map +1 -0
- package/src/generators/health-indicator-init/schema.d.ts +4 -0
- package/src/generators/health-indicator-init/schema.json +22 -0
- package/src/generators/init/generator.js +8 -5
- package/src/generators/init/generator.js.map +1 -1
- package/src/generators/init/schema.d.ts +2 -0
- package/src/generators/init/schema.json +10 -0
- package/src/generators/init-application/extract-existing-config-validation.d.ts +3 -0
- package/src/generators/init-application/extract-existing-config-validation.js +47 -0
- package/src/generators/init-application/extract-existing-config-validation.js.map +1 -0
- package/src/generators/init-application/files/shared/Dockerfile +35 -0
- package/src/generators/init-application/generator.js +569 -30
- package/src/generators/init-application/generator.js.map +1 -1
- package/src/generators/init-application/schema.d.ts +5 -2
- package/src/generators/init-application/schema.json +36 -21
- package/src/generators/init-library/generator.js +36 -7
- package/src/generators/init-library/generator.js.map +1 -1
- package/src/generators/init-library/schema.d.ts +2 -0
- package/src/generators/init-library/schema.json +10 -0
- package/src/generators/jwt/generator.d.ts +4 -0
- package/src/generators/jwt/generator.js +76 -0
- package/src/generators/jwt/generator.js.map +1 -0
- package/src/generators/jwt/index.d.ts +2 -0
- package/src/generators/jwt/index.js +7 -0
- package/src/generators/jwt/index.js.map +1 -0
- package/src/generators/jwt/schema.d.ts +4 -0
- package/src/generators/jwt/schema.json +18 -0
- package/src/generators/microservice/generator.d.ts +4 -0
- package/src/generators/microservice/generator.js +26 -0
- package/src/generators/microservice/generator.js.map +1 -0
- package/src/generators/microservice/index.d.ts +2 -0
- package/src/generators/microservice/index.js +7 -0
- package/src/generators/microservice/index.js.map +1 -0
- package/src/generators/microservice/schema.d.ts +6 -0
- package/src/generators/microservice/schema.json +27 -0
- package/src/generators/open-api/generator.d.ts +4 -0
- package/src/generators/open-api/generator.js +74 -0
- package/src/generators/open-api/generator.js.map +1 -0
- package/src/generators/open-api/index.d.ts +2 -0
- package/src/generators/open-api/index.js +7 -0
- package/src/generators/open-api/index.js.map +1 -0
- package/src/generators/open-api/schema.d.ts +4 -0
- package/src/generators/open-api/schema.json +18 -0
- package/src/generators/sentry/generator.d.ts +4 -0
- package/src/generators/sentry/generator.js +152 -0
- package/src/generators/sentry/generator.js.map +1 -0
- package/src/generators/sentry/index.d.ts +2 -0
- package/src/generators/sentry/index.js +7 -0
- package/src/generators/sentry/index.js.map +1 -0
- package/src/generators/sentry/schema.d.ts +6 -0
- package/src/generators/sentry/schema.json +32 -0
- package/src/generators/swagger/files/environments/environment.swagger.ts__tmpl__ +1 -0
- package/src/generators/swagger/files/swagger.ts__tmpl__ +17 -15
- package/src/generators/swagger/generator.js +10 -17
- package/src/generators/swagger/generator.js.map +1 -1
- package/src/generators/swagger/schema.d.ts +1 -0
- package/src/generators/swagger/schema.json +3 -0
- package/src/generators/validator/generator.d.ts +4 -0
- package/src/generators/validator/generator.js +14 -0
- package/src/generators/validator/generator.js.map +1 -0
- package/src/generators/validator/index.d.ts +2 -0
- package/src/generators/validator/index.js +7 -0
- package/src/generators/validator/index.js.map +1 -0
- package/src/generators/validator/schema.d.ts +4 -0
- package/src/generators/validator/schema.json +22 -0
- package/src/lib/skip-non-nest-project.js +3 -3
- package/src/lib/skip-non-nest-project.js.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,391 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [16.1.1-dev.0](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0...@rxap/plugin-nestjs@16.1.1-dev.0) (2024-02-22)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- ensure the proper output path prefix is used ([38bb064](https://gitlab.com/rxap/packages/commit/38bb064427385974dfa8448e3b0c8f098127d071))
|
|
11
|
+
|
|
12
|
+
# [16.1.0](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.48...@rxap/plugin-nestjs@16.1.0) (2024-02-07)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package @rxap/plugin-nestjs
|
|
15
|
+
|
|
16
|
+
# [16.1.0-dev.48](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.47...@rxap/plugin-nestjs@16.1.0-dev.48) (2023-10-31)
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
- support custom dependencies ([632b477](https://gitlab.com/rxap/packages/commit/632b477367a1430df98e1f1859fd2ca144b6b4b4))
|
|
21
|
+
|
|
22
|
+
# [16.1.0-dev.47](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.46...@rxap/plugin-nestjs@16.1.0-dev.47) (2023-10-22)
|
|
23
|
+
|
|
24
|
+
### Bug Fixes
|
|
25
|
+
|
|
26
|
+
- support formatted regex extraction ([d6f8b8c](https://gitlab.com/rxap/packages/commit/d6f8b8c0ae8b0856d2ec1db2997bb193e174f4e0))
|
|
27
|
+
- update default Dockerfile ([ad14c1a](https://gitlab.com/rxap/packages/commit/ad14c1a0e2f80b87c80764bcd71b494474bbbb99))
|
|
28
|
+
- update default Dockerfile ([8e534c7](https://gitlab.com/rxap/packages/commit/8e534c72ae5385055acf3edfcfce56136d540b5a))
|
|
29
|
+
|
|
30
|
+
# [16.1.0-dev.46](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.45...@rxap/plugin-nestjs@16.1.0-dev.46) (2023-10-22)
|
|
31
|
+
|
|
32
|
+
### Bug Fixes
|
|
33
|
+
|
|
34
|
+
- set default PATH_PREFIX build arg value ([6742c35](https://gitlab.com/rxap/packages/commit/6742c35b7e1165e967ef831689a08d715c5967b5))
|
|
35
|
+
- update default Dockerfile ([f5fa480](https://gitlab.com/rxap/packages/commit/f5fa4808b5dd6c2b11e1a7e074bdea314c90a3a6))
|
|
36
|
+
- use utility CreateProject function to create a ts-morph Project instance ([78b308f](https://gitlab.com/rxap/packages/commit/78b308fd10747616c7c7f27e81501a4ad5052a77))
|
|
37
|
+
|
|
38
|
+
# [16.1.0-dev.45](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.44...@rxap/plugin-nestjs@16.1.0-dev.45) (2023-10-11)
|
|
39
|
+
|
|
40
|
+
**Note:** Version bump only for package @rxap/plugin-nestjs
|
|
41
|
+
|
|
42
|
+
# [16.1.0-dev.44](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.43...@rxap/plugin-nestjs@16.1.0-dev.44) (2023-10-11)
|
|
43
|
+
|
|
44
|
+
### Bug Fixes
|
|
45
|
+
|
|
46
|
+
- ensure required packages are installed ([dd3e670](https://gitlab.com/rxap/packages/commit/dd3e670dc30823e2f5ffed11f5f4a379a27442fa))
|
|
47
|
+
|
|
48
|
+
# [16.1.0-dev.43](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.42...@rxap/plugin-nestjs@16.1.0-dev.43) (2023-10-11)
|
|
49
|
+
|
|
50
|
+
### Bug Fixes
|
|
51
|
+
|
|
52
|
+
- ensure tailing slash is not added to the target directory ([e18cec3](https://gitlab.com/rxap/packages/commit/e18cec394240e291d8c7d3a187cd33d4e63d2133))
|
|
53
|
+
|
|
54
|
+
# [16.1.0-dev.42](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.41...@rxap/plugin-nestjs@16.1.0-dev.42) (2023-10-11)
|
|
55
|
+
|
|
56
|
+
### Bug Fixes
|
|
57
|
+
|
|
58
|
+
- only remove the root folder if required ([778c032](https://gitlab.com/rxap/packages/commit/778c032a340ae75b5bafc3b58649a654dd99cc78))
|
|
59
|
+
|
|
60
|
+
# [16.1.0-dev.41](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.40...@rxap/plugin-nestjs@16.1.0-dev.41) (2023-10-11)
|
|
61
|
+
|
|
62
|
+
### Bug Fixes
|
|
63
|
+
|
|
64
|
+
- fail with manuel action instructions ([94dee1f](https://gitlab.com/rxap/packages/commit/94dee1f89ac92d309e31d04629452ef468adf832))
|
|
65
|
+
|
|
66
|
+
# 16.1.0-dev.40 (2023-10-11)
|
|
67
|
+
|
|
68
|
+
### Bug Fixes
|
|
69
|
+
|
|
70
|
+
- add development configuration to build target ([676142f](https://gitlab.com/rxap/packages/commit/676142f78571b9f4ae47c78e61448b114f98ba38))
|
|
71
|
+
- add implicit dependencies between openapi client sdk project and the service project ([d2910cd](https://gitlab.com/rxap/packages/commit/d2910cdce7396665ed271952409ff4cc58a3f5cf))
|
|
72
|
+
- add licence file to publishable packages ([d7de1cb](https://gitlab.com/rxap/packages/commit/d7de1cb9db1bd1628f37084e3b0ffd1755aa75f6))
|
|
73
|
+
- add missing template property ([3a92a50](https://gitlab.com/rxap/packages/commit/3a92a50c201c18520b56c780df0fe3d797537fa3))
|
|
74
|
+
- add project ts-morph ([fda78f5](https://gitlab.com/rxap/packages/commit/fda78f5ed61caac6dc5c4d9a70afd3aced6a05fa))
|
|
75
|
+
- add ROOT_DOMAIN default env value ([bce5c91](https://gitlab.com/rxap/packages/commit/bce5c91c0face19e59c8e145b5b7e4cecf268089))
|
|
76
|
+
- add skip-projects flag ([e1f31ed](https://gitlab.com/rxap/packages/commit/e1f31ed837646f605ced82a52749e62af07ba939))
|
|
77
|
+
- change from commonjs to es2022 ([cf675a7](https://gitlab.com/rxap/packages/commit/cf675a7254de9ce4b269264df59794dd42fcbd8b))
|
|
78
|
+
- convert directory into project name prefix ([d2f0c19](https://gitlab.com/rxap/packages/commit/d2f0c19aa2fa798be5657f333c991a1af2e05408))
|
|
79
|
+
- create an info path for the default app controller ([7c54f5d](https://gitlab.com/rxap/packages/commit/7c54f5d569551c79042b2f8db437da6530d87d74))
|
|
80
|
+
- create health files if not exist ([60e7b63](https://gitlab.com/rxap/packages/commit/60e7b63919ab35eb3a546112eaf0f69cdecbb233))
|
|
81
|
+
- default status service base url var generation ([46125dd](https://gitlab.com/rxap/packages/commit/46125dd161db5eac87f5fea4fdb47ac61bc469a6))
|
|
82
|
+
- ensure all required cacheable operations are defined ([d9ded9c](https://gitlab.com/rxap/packages/commit/d9ded9c5e150d9781ce490ad7ac292194d09bf2a))
|
|
83
|
+
- ensure changes to the openapi client sdk project configuration are written to disk ([e0e6821](https://gitlab.com/rxap/packages/commit/e0e68211f160f79609fe62a81f66d713c1432bbc))
|
|
84
|
+
- ensure extraction works in new module structure ([c646866](https://gitlab.com/rxap/packages/commit/c646866cbb55d08d6a2dd7207c683578bdfd0105))
|
|
85
|
+
- ensure options are passed to the microservice generator ([3c4dfe0](https://gitlab.com/rxap/packages/commit/3c4dfe090f9f9b6b62abc3ea83a47d37a18cf52b))
|
|
86
|
+
- ensure overwrite option is passed to sub schematics ([0c8a19b](https://gitlab.com/rxap/packages/commit/0c8a19b5166f804aa335f739a00a5415bd97f61a))
|
|
87
|
+
- ensure project tags ([4a59b94](https://gitlab.com/rxap/packages/commit/4a59b94526ea0ed16216b1b8001a694ac7a8bea4))
|
|
88
|
+
- ensure projects are buildable or publishable ([354400b](https://gitlab.com/rxap/packages/commit/354400bd7b012e67801f8986ae4a05b40ef44d4a))
|
|
89
|
+
- ensure the apiConfigurationFile is defined ([09f9432](https://gitlab.com/rxap/packages/commit/09f9432bf20c20de29eb510b5b61db68f56bd306))
|
|
90
|
+
- ensure the env replacement for nest application is defined ([beccd3f](https://gitlab.com/rxap/packages/commit/beccd3f67df21ca60d696a7fe69445875c14a2c3))
|
|
91
|
+
- ensure the project name is not included in the project tag list ([46d4479](https://gitlab.com/rxap/packages/commit/46d44798258ea1b20df9d4408b9c0809f55027b2))
|
|
92
|
+
- ensure the project specific api prefix is used ([4e977a6](https://gitlab.com/rxap/packages/commit/4e977a6469c9f0537ef32c81c8adec34c34bcec9))
|
|
93
|
+
- expose generators as schematics ([8a58d07](https://gitlab.com/rxap/packages/commit/8a58d07c2f1dcfff75e724a418d7c3bddb2d0bbc))
|
|
94
|
+
- generate readme with peer dependencies to install ([27c2cd7](https://gitlab.com/rxap/packages/commit/27c2cd7d98f0c8a499b8c30719f49d69e4970ae9))
|
|
95
|
+
- import SentryOptionsFactory from the correct package ([001abfe](https://gitlab.com/rxap/packages/commit/001abfeba6c5adbdfd6a17748f1d0bc15b8aaee1))
|
|
96
|
+
- improve nest application init generator execution ([c41c348](https://gitlab.com/rxap/packages/commit/c41c348aaa0814e0567bf5270d242692ab735b51))
|
|
97
|
+
- install required dependencies ([c98eb72](https://gitlab.com/rxap/packages/commit/c98eb72f284d2645b882f266b1a5887392df2ba2))
|
|
98
|
+
- install required dependencies ([a416b24](https://gitlab.com/rxap/packages/commit/a416b24af4cedbb63218de1402e5cbb2ccaf68d9))
|
|
99
|
+
- install required dependencies ([859be87](https://gitlab.com/rxap/packages/commit/859be8766fbb20cb2c38c5e71ac3037286d59f0c))
|
|
100
|
+
- introduce Is\*Project functions ([3c9f251](https://gitlab.com/rxap/packages/commit/3c9f251f1d7be46ca366171e79e86ef2764fa3b0))
|
|
101
|
+
- introduce more Is\*Project functions ([41a3713](https://gitlab.com/rxap/packages/commit/41a3713e2965f46900e80902a455b62e08686989))
|
|
102
|
+
- move forRoot logic into detected loader classes ([45812d6](https://gitlab.com/rxap/packages/commit/45812d66901f37130ec4018b0bc9369829800155))
|
|
103
|
+
- only skip swagger configuration if explicit disabled ([b86fbff](https://gitlab.com/rxap/packages/commit/b86fbff8b6fabed940247abf25e8d611400fce26))
|
|
104
|
+
- pass overwrite option to utility function ([2b94b6d](https://gitlab.com/rxap/packages/commit/2b94b6d74c531c0d3d8655cfeb661053073779e1))
|
|
105
|
+
- peer dependency issue ([ee95415](https://gitlab.com/rxap/packages/commit/ee95415370d9ef2396916d6c25061a0df791034a))
|
|
106
|
+
- remove coerce default root domain ([20809c7](https://gitlab.com/rxap/packages/commit/20809c72bcca2b31bd6afdc53641e99fd9666899))
|
|
107
|
+
- remove generate file call ([ee235d5](https://gitlab.com/rxap/packages/commit/ee235d50713485e6b84e3735e7dee2a80f23e979))
|
|
108
|
+
- remove support for open-api client sdk packages ([0015878](https://gitlab.com/rxap/packages/commit/0015878e53cba42943d37354ef5c7d5f17828fd7))
|
|
109
|
+
- resolve issues ([602183d](https://gitlab.com/rxap/packages/commit/602183d93528a28773e05b7a983110bafb93a2f2))
|
|
110
|
+
- respect the overwrite flag ([efd7313](https://gitlab.com/rxap/packages/commit/efd7313bcb14886043d5cfd646a5542d6162312c))
|
|
111
|
+
- restore existing config validation ([3e3b92d](https://gitlab.com/rxap/packages/commit/3e3b92df3d183cc617bc0c3f70fb309f04fba0aa))
|
|
112
|
+
- set correct default publishable library package json version ([c942e51](https://gitlab.com/rxap/packages/commit/c942e5152a19e33cf9881106879eb2df20ef723b))
|
|
113
|
+
- set correct schema types ([c9d14da](https://gitlab.com/rxap/packages/commit/c9d14da08492f1d486b448ad96ff35ce92077a5b))
|
|
114
|
+
- set default throttler ttl to 1 ([6fd02aa](https://gitlab.com/rxap/packages/commit/6fd02aac633fde34cba8d66cc5e373b7eff9dc79))
|
|
115
|
+
- set required defaults for nestjs microservice init ([04463ec](https://gitlab.com/rxap/packages/commit/04463ec95cdc1265861a6b27f5532db1921fa677))
|
|
116
|
+
- skip plugin or schematic projects ([8953299](https://gitlab.com/rxap/packages/commit/89532993198c32bc25e5008748db385f6cee25a7))
|
|
117
|
+
- soft fail for library generation ([8d69e69](https://gitlab.com/rxap/packages/commit/8d69e69464e25c90d9cfb9e709fd0cde1fce0f7e))
|
|
118
|
+
- streamline the nestjs application initialization ([d5cc807](https://gitlab.com/rxap/packages/commit/d5cc8079d3ae542c988904fc7f0cc7a63dd7d2f0))
|
|
119
|
+
- support config validation overwrite ([bf9fc5d](https://gitlab.com/rxap/packages/commit/bf9fc5dcdb961d7583114e88abfe7ba0340df0f8))
|
|
120
|
+
- support dynamic label definition ([b284395](https://gitlab.com/rxap/packages/commit/b284395f0a1630a6b2f1310886ef4009f5523079))
|
|
121
|
+
- support dynamic server config loading ([17f73ab](https://gitlab.com/rxap/packages/commit/17f73aba524837a8e21f85b84d5cef8b2fe1e99b))
|
|
122
|
+
- support overwrite of default docker file ([4289d2b](https://gitlab.com/rxap/packages/commit/4289d2bd1cf184fc68766804d0c729a2773803be))
|
|
123
|
+
- update service status name ([595cd07](https://gitlab.com/rxap/packages/commit/595cd07ab522dc1818c6f275e7a526e6b31d63ac))
|
|
124
|
+
- update the application configuration file with the service api prefix ([86f0779](https://gitlab.com/rxap/packages/commit/86f0779339f21b786f894fa13685a504f6ad8bf3))
|
|
125
|
+
- use es module import style ([f41dbf7](https://gitlab.com/rxap/packages/commit/f41dbf754efa7e80d7277d1c8fb9aafe6aad6812))
|
|
126
|
+
- use function CoerceNxJsonCacheableOperation ([485e598](https://gitlab.com/rxap/packages/commit/485e598e7a1192b5635f6c54dee5349b9d2889c3))
|
|
127
|
+
- use local status server if possible ([4f498cd](https://gitlab.com/rxap/packages/commit/4f498cd2297e6b30e3962a1356a45e714982bec0))
|
|
128
|
+
- use ready hook for RegisterToStatusService ([072800b](https://gitlab.com/rxap/packages/commit/072800bd171a3e01773fe30942ea0c079065edb8))
|
|
129
|
+
- use the new status service hostname ([c59a0aa](https://gitlab.com/rxap/packages/commit/c59a0aae38e34a43d3ebfea36fd4ce128e865702))
|
|
130
|
+
- use the plugin-open-api project for client sdk generation ([734aa70](https://gitlab.com/rxap/packages/commit/734aa70f1a319bc2f9f42f6e1607b3aa57ce66b3))
|
|
131
|
+
- use unified Dockerfile ([506344a](https://gitlab.com/rxap/packages/commit/506344a573dd20a3054fe846e8b7a9556be2b788))
|
|
132
|
+
|
|
133
|
+
### Features
|
|
134
|
+
|
|
135
|
+
- add feature-microservice generator ([12f91f3](https://gitlab.com/rxap/packages/commit/12f91f36bb33552ebf56c8684d22e9ff4f7ef13f))
|
|
136
|
+
- add frontend-microservice generator ([ba67aea](https://gitlab.com/rxap/packages/commit/ba67aea0604a7a63ad73c1129a666026d73aca1e))
|
|
137
|
+
- add generate-open-api target to nestjs application projects ([24e804e](https://gitlab.com/rxap/packages/commit/24e804e80e44af186177454176e990ef92e2a212))
|
|
138
|
+
- add microservice generator ([c421e01](https://gitlab.com/rxap/packages/commit/c421e015cc7e8677664e8de1b2ee2f6b39e324d5))
|
|
139
|
+
- add openapi utility operation generation ([648b8ef](https://gitlab.com/rxap/packages/commit/648b8ef7a4fa521e4baf7362e443799f8718f401))
|
|
140
|
+
- add project json generator executor ([b4cd0cd](https://gitlab.com/rxap/packages/commit/b4cd0cd4d63521d37873d33d8ebe2f2a71202ec2))
|
|
141
|
+
- add the health indicator generator ([20b45b6](https://gitlab.com/rxap/packages/commit/20b45b6609a2dcd2eadd8c73a6a27501451bfc64))
|
|
142
|
+
- add the jwt generator ([ca9a3b3](https://gitlab.com/rxap/packages/commit/ca9a3b3e1f08dc7a54f8b19e4b4382d2ffa34053))
|
|
143
|
+
- add the mandatory app property to the environment object ([cfcb308](https://gitlab.com/rxap/packages/commit/cfcb3082c1f49295fe582bfdc057e17e2fff4804))
|
|
144
|
+
- add the open-api generator ([6500d77](https://gitlab.com/rxap/packages/commit/6500d778bca2fda5e18fe0732409b0664cf054d1))
|
|
145
|
+
- add the sentry generator ([dccb2fb](https://gitlab.com/rxap/packages/commit/dccb2fb1107ae34d440a25cb96d285d5b5bc3c65))
|
|
146
|
+
- add the validator generator ([6d64321](https://gitlab.com/rxap/packages/commit/6d64321501f1898d7094709c02a541cb8f2458c9))
|
|
147
|
+
- exclude health path from global api prefix ([023456b](https://gitlab.com/rxap/packages/commit/023456b9dae37372f2b1f0a8e6efadf285973010))
|
|
148
|
+
- generate status registry feature ([1eac350](https://gitlab.com/rxap/packages/commit/1eac350be642ce3f97671ac109950f2b5fdb6b96))
|
|
149
|
+
- **init-application:** add nest init application generator ([1d8af26](https://gitlab.com/rxap/packages/commit/1d8af264653885a907d8ffaff04d40e287e2a047))
|
|
150
|
+
- **init-library:** add nest init library generator ([8eb5b77](https://gitlab.com/rxap/packages/commit/8eb5b77685e7fa9d077398b742dc385ef5ddfd9f))
|
|
151
|
+
- **init:** add nest init generator ([e44ec06](https://gitlab.com/rxap/packages/commit/e44ec06239befc0aeaa4e2c8a34e46d041ff8ca6))
|
|
152
|
+
- mv swagger generator to plugin-nestjs ([895cba5](https://gitlab.com/rxap/packages/commit/895cba5d040262ae64f05ff14b604871240a0a4b))
|
|
153
|
+
- support open-api package project generation ([375681f](https://gitlab.com/rxap/packages/commit/375681f057e54879fa9fa2d8ba245da5163c0e65))
|
|
154
|
+
- use GetNestApiPrefix utility function ([7a1561c](https://gitlab.com/rxap/packages/commit/7a1561c24dbdcffdc5dfd5d3ba9d67c51264c345))
|
|
155
|
+
|
|
156
|
+
### Reverts
|
|
157
|
+
|
|
158
|
+
- "build: use nx run commands to build openapi.json" ([4485777](https://gitlab.com/rxap/packages/commit/44857779f20cd6264cb7e1b426988b5b91dc6649))
|
|
159
|
+
- change from commonjs to es2022 ([50eca61](https://gitlab.com/rxap/packages/commit/50eca61e9a89388d1cfeefb8b1029b302b6f307e))
|
|
160
|
+
|
|
161
|
+
# [16.1.0-dev.39](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.38...@rxap/plugin-nestjs@16.1.0-dev.39) (2023-10-10)
|
|
162
|
+
|
|
163
|
+
### Bug Fixes
|
|
164
|
+
|
|
165
|
+
- support dynamic label definition ([58022a3](https://gitlab.com/rxap/packages/commit/58022a39496f1a75cf8599c54b119ec02c02ee62))
|
|
166
|
+
- support overwrite of default docker file ([7ac132f](https://gitlab.com/rxap/packages/commit/7ac132faf705795b79d3c7ad5c88d115a3a62276))
|
|
167
|
+
|
|
168
|
+
### Features
|
|
169
|
+
|
|
170
|
+
- use GetNestApiPrefix utility function ([24c5c9f](https://gitlab.com/rxap/packages/commit/24c5c9f6f28a7bba17b17b0175afe40e399d518f))
|
|
171
|
+
|
|
172
|
+
# [16.1.0-dev.38](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.37...@rxap/plugin-nestjs@16.1.0-dev.38) (2023-10-03)
|
|
173
|
+
|
|
174
|
+
### Bug Fixes
|
|
175
|
+
|
|
176
|
+
- ensure all required cacheable operations are defined ([49a9199](https://gitlab.com/rxap/packages/commit/49a9199cd2592cf8550650dc17f9995e4f6727f8))
|
|
177
|
+
|
|
178
|
+
# [16.1.0-dev.37](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.36...@rxap/plugin-nestjs@16.1.0-dev.37) (2023-10-02)
|
|
179
|
+
|
|
180
|
+
### Bug Fixes
|
|
181
|
+
|
|
182
|
+
- set correct default publishable library package json version ([32c032d](https://gitlab.com/rxap/packages/commit/32c032dd47552dc53f5adbc39af0ef2a074beea6))
|
|
183
|
+
- use function CoerceNxJsonCacheableOperation ([14f26b0](https://gitlab.com/rxap/packages/commit/14f26b0d679f5d1208a23ae20d6d9f6f4516a60d))
|
|
184
|
+
|
|
185
|
+
# [16.1.0-dev.36](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.35...@rxap/plugin-nestjs@16.1.0-dev.36) (2023-10-02)
|
|
186
|
+
|
|
187
|
+
### Bug Fixes
|
|
188
|
+
|
|
189
|
+
- introduce Is\*Project functions ([0f4a53a](https://gitlab.com/rxap/packages/commit/0f4a53a2a68c7f854d819c005a30957d8b1cb3c6))
|
|
190
|
+
- introduce more Is\*Project functions ([8d37211](https://gitlab.com/rxap/packages/commit/8d37211fb1906f90d7176cfcfe43f755f04a0fa6))
|
|
191
|
+
|
|
192
|
+
# [16.1.0-dev.35](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.34...@rxap/plugin-nestjs@16.1.0-dev.35) (2023-10-02)
|
|
193
|
+
|
|
194
|
+
### Bug Fixes
|
|
195
|
+
|
|
196
|
+
- ensure options are passed to the microservice generator ([0d048cf](https://gitlab.com/rxap/packages/commit/0d048cf25a258107c38a9f52b96415331125ba56))
|
|
197
|
+
- ensure the project specific api prefix is used ([85327a4](https://gitlab.com/rxap/packages/commit/85327a40e26fe6e46bff0961bf91044e3cd4c59c))
|
|
198
|
+
|
|
199
|
+
# [16.1.0-dev.34](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.33...@rxap/plugin-nestjs@16.1.0-dev.34) (2023-10-02)
|
|
200
|
+
|
|
201
|
+
### Bug Fixes
|
|
202
|
+
|
|
203
|
+
- ensure changes to the openapi client sdk project configuration are written to disk ([f68ee6c](https://gitlab.com/rxap/packages/commit/f68ee6cb01155dfb8195f13dc311a1877f40a385))
|
|
204
|
+
|
|
205
|
+
# [16.1.0-dev.33](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.32...@rxap/plugin-nestjs@16.1.0-dev.33) (2023-10-02)
|
|
206
|
+
|
|
207
|
+
### Bug Fixes
|
|
208
|
+
|
|
209
|
+
- add implicit dependencies between openapi client sdk project and the service project ([0762167](https://gitlab.com/rxap/packages/commit/07621678af18ae73068270e506f4c14863d8a5a0))
|
|
210
|
+
- set required defaults for nestjs microservice init ([c49215d](https://gitlab.com/rxap/packages/commit/c49215d6c854edbc49e03e126c90358326c16ea3))
|
|
211
|
+
|
|
212
|
+
# [16.1.0-dev.32](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.31...@rxap/plugin-nestjs@16.1.0-dev.32) (2023-10-02)
|
|
213
|
+
|
|
214
|
+
### Bug Fixes
|
|
215
|
+
|
|
216
|
+
- convert directory into project name prefix ([97d743d](https://gitlab.com/rxap/packages/commit/97d743dfc500232aa3ee505fe0eaffc24af8ed30))
|
|
217
|
+
- ensure the apiConfigurationFile is defined ([ec22d23](https://gitlab.com/rxap/packages/commit/ec22d234d9a207803ca093cf55488d89280d7aeb))
|
|
218
|
+
- import SentryOptionsFactory from the correct package ([23243db](https://gitlab.com/rxap/packages/commit/23243db072efb24c543421c049a656f10c592d92))
|
|
219
|
+
- move forRoot logic into detected loader classes ([01796e0](https://gitlab.com/rxap/packages/commit/01796e0898a3dee4e365278a73029dd023093136))
|
|
220
|
+
- remove coerce default root domain ([8092172](https://gitlab.com/rxap/packages/commit/809217280ba95cf2132c6a5b0cb262687b5aee81))
|
|
221
|
+
- update the application configuration file with the service api prefix ([b9bbc58](https://gitlab.com/rxap/packages/commit/b9bbc58573e0fc885da765da71abd6b0ae2c4613))
|
|
222
|
+
|
|
223
|
+
### Features
|
|
224
|
+
|
|
225
|
+
- add feature-microservice generator ([4aed057](https://gitlab.com/rxap/packages/commit/4aed057737303429cd543008d9a2947f3756bca2))
|
|
226
|
+
- add frontend-microservice generator ([444e758](https://gitlab.com/rxap/packages/commit/444e7585d4a1c8c3fe2528671ef7948bad1323be))
|
|
227
|
+
- add microservice generator ([a2d46fc](https://gitlab.com/rxap/packages/commit/a2d46fc4c718d365346e243d899eb35d458900ac))
|
|
228
|
+
|
|
229
|
+
# [16.1.0-dev.31](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.30...@rxap/plugin-nestjs@16.1.0-dev.31) (2023-09-28)
|
|
230
|
+
|
|
231
|
+
### Bug Fixes
|
|
232
|
+
|
|
233
|
+
- add ROOT_DOMAIN default env value ([9465f3d](https://gitlab.com/rxap/packages/commit/9465f3d44e4882e364c7c105420604b268bf271f))
|
|
234
|
+
|
|
235
|
+
# [16.1.0-dev.30](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.29...@rxap/plugin-nestjs@16.1.0-dev.30) (2023-09-21)
|
|
236
|
+
|
|
237
|
+
### Bug Fixes
|
|
238
|
+
|
|
239
|
+
- add skip-projects flag ([0f45987](https://gitlab.com/rxap/packages/commit/0f45987bc9dd927b1ede9eb53256125fa0e33674))
|
|
240
|
+
|
|
241
|
+
# [16.1.0-dev.29](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.28...@rxap/plugin-nestjs@16.1.0-dev.29) (2023-09-19)
|
|
242
|
+
|
|
243
|
+
### Bug Fixes
|
|
244
|
+
|
|
245
|
+
- support dynamic server config loading ([088583a](https://gitlab.com/rxap/packages/commit/088583acece9a693a461c958af3fa27cb20d661f))
|
|
246
|
+
|
|
247
|
+
# [16.1.0-dev.28](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.27...@rxap/plugin-nestjs@16.1.0-dev.28) (2023-09-18)
|
|
248
|
+
|
|
249
|
+
### Bug Fixes
|
|
250
|
+
|
|
251
|
+
- install required dependencies ([2ec480a](https://gitlab.com/rxap/packages/commit/2ec480a2080d2be7aeb18b27dc9efb2ddc87835f))
|
|
252
|
+
|
|
253
|
+
# [16.1.0-dev.27](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.26...@rxap/plugin-nestjs@16.1.0-dev.27) (2023-09-18)
|
|
254
|
+
|
|
255
|
+
### Bug Fixes
|
|
256
|
+
|
|
257
|
+
- install required dependencies ([1eafe46](https://gitlab.com/rxap/packages/commit/1eafe462bcc0797340b52e3853ddffb49a5e584e))
|
|
258
|
+
|
|
259
|
+
# [16.1.0-dev.26](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.25...@rxap/plugin-nestjs@16.1.0-dev.26) (2023-09-18)
|
|
260
|
+
|
|
261
|
+
### Bug Fixes
|
|
262
|
+
|
|
263
|
+
- ensure project tags ([f644ed7](https://gitlab.com/rxap/packages/commit/f644ed7191bb89fa6d45ae53ed61c7ff0f36ab8a))
|
|
264
|
+
|
|
265
|
+
# [16.1.0-dev.25](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.24...@rxap/plugin-nestjs@16.1.0-dev.25) (2023-09-18)
|
|
266
|
+
|
|
267
|
+
### Bug Fixes
|
|
268
|
+
|
|
269
|
+
- install required dependencies ([3c86754](https://gitlab.com/rxap/packages/commit/3c867542bdc88c781f3894761b2a284955d9f7c4))
|
|
270
|
+
|
|
271
|
+
# [16.1.0-dev.24](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.23...@rxap/plugin-nestjs@16.1.0-dev.24) (2023-09-18)
|
|
272
|
+
|
|
273
|
+
### Bug Fixes
|
|
274
|
+
|
|
275
|
+
- update service status name ([238353c](https://gitlab.com/rxap/packages/commit/238353c821f25268af93599756406e73431fca21))
|
|
276
|
+
|
|
277
|
+
# [16.1.0-dev.23](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.22...@rxap/plugin-nestjs@16.1.0-dev.23) (2023-09-12)
|
|
278
|
+
|
|
279
|
+
### Bug Fixes
|
|
280
|
+
|
|
281
|
+
- ensure extraction works in new module structure ([bc421d7](https://gitlab.com/rxap/packages/commit/bc421d74643e15d55b2b74c930ddc32e3a601d03))
|
|
282
|
+
|
|
283
|
+
# [16.1.0-dev.22](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.21...@rxap/plugin-nestjs@16.1.0-dev.22) (2023-09-12)
|
|
284
|
+
|
|
285
|
+
### Bug Fixes
|
|
286
|
+
|
|
287
|
+
- remove generate file call ([dc7d904](https://gitlab.com/rxap/packages/commit/dc7d9042abb02dbad0b006aee71c508300a5fa17))
|
|
288
|
+
|
|
289
|
+
# [16.1.0-dev.21](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.20...@rxap/plugin-nestjs@16.1.0-dev.21) (2023-09-12)
|
|
290
|
+
|
|
291
|
+
### Bug Fixes
|
|
292
|
+
|
|
293
|
+
- restore existing config validation ([88feca5](https://gitlab.com/rxap/packages/commit/88feca56b0209f5fdfd649321606414ba66756ab))
|
|
294
|
+
|
|
295
|
+
# [16.1.0-dev.20](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.19...@rxap/plugin-nestjs@16.1.0-dev.20) (2023-09-12)
|
|
296
|
+
|
|
297
|
+
### Bug Fixes
|
|
298
|
+
|
|
299
|
+
- peer dependency issue ([e67e2b8](https://gitlab.com/rxap/packages/commit/e67e2b8eb884b598536d16c2c544a9ad9be5b53e))
|
|
300
|
+
|
|
301
|
+
# [16.1.0-dev.19](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.18...@rxap/plugin-nestjs@16.1.0-dev.19) (2023-09-12)
|
|
302
|
+
|
|
303
|
+
### Bug Fixes
|
|
304
|
+
|
|
305
|
+
- add development configuration to build target ([393a03a](https://gitlab.com/rxap/packages/commit/393a03aa54366fd1a037aac9ef42a57a23258f1f))
|
|
306
|
+
- use local status server if possible ([d9b48fa](https://gitlab.com/rxap/packages/commit/d9b48fa8f862d769e7c2675226a900eca3b8fde5))
|
|
307
|
+
- use ready hook for RegisterToStatusService ([b0b1cd5](https://gitlab.com/rxap/packages/commit/b0b1cd5273343ae09ab1b3c3dd2d0fae951d7cbd))
|
|
308
|
+
|
|
309
|
+
# [16.1.0-dev.18](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.17...@rxap/plugin-nestjs@16.1.0-dev.18) (2023-09-12)
|
|
310
|
+
|
|
311
|
+
### Bug Fixes
|
|
312
|
+
|
|
313
|
+
- improve nest application init generator execution ([30adde1](https://gitlab.com/rxap/packages/commit/30adde1b164884137890e4c604ed86a7a75261d9))
|
|
314
|
+
- use unified Dockerfile ([913898d](https://gitlab.com/rxap/packages/commit/913898d976a56873caabd2140cf2e6e0fef15214))
|
|
315
|
+
|
|
316
|
+
### Reverts
|
|
317
|
+
|
|
318
|
+
- "build: use nx run commands to build openapi.json" ([b294956](https://gitlab.com/rxap/packages/commit/b294956b25d42350a1e0907635c88776a39b7708))
|
|
319
|
+
|
|
320
|
+
# [16.1.0-dev.17](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.16...@rxap/plugin-nestjs@16.1.0-dev.17) (2023-09-09)
|
|
321
|
+
|
|
322
|
+
### Features
|
|
323
|
+
|
|
324
|
+
- add openapi utility operation generation ([9e67895](https://gitlab.com/rxap/packages/commit/9e678950b7f47bb39768f2d41c3a64b3af7a3c10))
|
|
325
|
+
|
|
326
|
+
# [16.1.0-dev.16](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.15...@rxap/plugin-nestjs@16.1.0-dev.16) (2023-09-07)
|
|
327
|
+
|
|
328
|
+
**Note:** Version bump only for package @rxap/plugin-nestjs
|
|
329
|
+
|
|
330
|
+
# [16.1.0-dev.15](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.14...@rxap/plugin-nestjs@16.1.0-dev.15) (2023-09-03)
|
|
331
|
+
|
|
332
|
+
**Note:** Version bump only for package @rxap/plugin-nestjs
|
|
333
|
+
|
|
334
|
+
# [16.1.0-dev.14](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.13...@rxap/plugin-nestjs@16.1.0-dev.14) (2023-09-03)
|
|
335
|
+
|
|
336
|
+
**Note:** Version bump only for package @rxap/plugin-nestjs
|
|
337
|
+
|
|
338
|
+
# [16.1.0-dev.13](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.12...@rxap/plugin-nestjs@16.1.0-dev.13) (2023-09-03)
|
|
339
|
+
|
|
340
|
+
### Bug Fixes
|
|
341
|
+
|
|
342
|
+
- create health files if not exist ([ea81a96](https://gitlab.com/rxap/packages/commit/ea81a964686256ea0c7d1a52cb09d6481a47cc98))
|
|
343
|
+
- remove support for open-api client sdk packages ([ace153f](https://gitlab.com/rxap/packages/commit/ace153f977690e7714c3c4110600e2a8916a0d52))
|
|
344
|
+
- respect the overwrite flag ([3234759](https://gitlab.com/rxap/packages/commit/32347594f4e3f27eb639647d6db0ec61a8537d04))
|
|
345
|
+
- use es module import style ([f844c22](https://gitlab.com/rxap/packages/commit/f844c22eac4a4e5ef288eb1039879faa207c9889))
|
|
346
|
+
|
|
347
|
+
# [16.1.0-dev.12](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.11...@rxap/plugin-nestjs@16.1.0-dev.12) (2023-09-02)
|
|
348
|
+
|
|
349
|
+
### Bug Fixes
|
|
350
|
+
|
|
351
|
+
- use the plugin-open-api project for client sdk generation ([5097269](https://gitlab.com/rxap/packages/commit/509726988a0bcb10a39dedff3bde9bbc36cf1331))
|
|
352
|
+
|
|
353
|
+
### Features
|
|
354
|
+
|
|
355
|
+
- support open-api package project generation ([d1f2d03](https://gitlab.com/rxap/packages/commit/d1f2d03a1b6bca7171fc04dc161bb62325017fc6))
|
|
356
|
+
|
|
357
|
+
# [16.1.0-dev.11](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.10...@rxap/plugin-nestjs@16.1.0-dev.11) (2023-09-01)
|
|
358
|
+
|
|
359
|
+
### Bug Fixes
|
|
360
|
+
|
|
361
|
+
- default status service base url var generation ([9509086](https://gitlab.com/rxap/packages/commit/95090864e8eda444fa2a849dbf2fb4b608afcc7c))
|
|
362
|
+
- ensure the env replacement for nest application is defined ([692dda5](https://gitlab.com/rxap/packages/commit/692dda5e52a20ac3158cf2d07e96e44de4f1fe77))
|
|
363
|
+
- set default throttler ttl to 1 ([dcd9f60](https://gitlab.com/rxap/packages/commit/dcd9f609bd75245f0cf7e889f4eab2cc66cf995d))
|
|
364
|
+
- support config validation overwrite ([bd01600](https://gitlab.com/rxap/packages/commit/bd01600ba9e0159b4e338a902314436d45c7d782))
|
|
365
|
+
- use the new status service hostname ([c2655b6](https://gitlab.com/rxap/packages/commit/c2655b6c8f499755cc788da991ac9cebca05a49c))
|
|
366
|
+
|
|
367
|
+
# [16.1.0-dev.10](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.9...@rxap/plugin-nestjs@16.1.0-dev.10) (2023-08-31)
|
|
368
|
+
|
|
369
|
+
### Bug Fixes
|
|
370
|
+
|
|
371
|
+
- add missing template property ([11daed1](https://gitlab.com/rxap/packages/commit/11daed1cb52709ee436014f571642644dbb77fe9))
|
|
372
|
+
- add project ts-morph ([f17725d](https://gitlab.com/rxap/packages/commit/f17725dccf31d3f5fab9087e103e19ad5df43246))
|
|
373
|
+
- create an info path for the default app controller ([8d3ab19](https://gitlab.com/rxap/packages/commit/8d3ab197ba35ece19345e3eea78e938a512586e5))
|
|
374
|
+
- ensure overwrite option is passed to sub schematics ([8472aab](https://gitlab.com/rxap/packages/commit/8472aab8814227c851fab9ae4c1b9ec3019d6f4e))
|
|
375
|
+
- ensure the project name is not included in the project tag list ([b131ac3](https://gitlab.com/rxap/packages/commit/b131ac3bd92b3b8799d62f15bbd30a1997d7c753))
|
|
376
|
+
- pass overwrite option to utility function ([7bf4f62](https://gitlab.com/rxap/packages/commit/7bf4f62249879ec13cb476844cac143033d4a8b4))
|
|
377
|
+
- resolve issues ([07edb75](https://gitlab.com/rxap/packages/commit/07edb75b3ed6bedc2b831145d6ac5b57e342c6fd))
|
|
378
|
+
- streamline the nestjs application initialization ([4fcdde5](https://gitlab.com/rxap/packages/commit/4fcdde539d462efaaf6fe24000187c87bbad8c19))
|
|
379
|
+
|
|
380
|
+
### Features
|
|
381
|
+
|
|
382
|
+
- add the health indicator generator ([3153e97](https://gitlab.com/rxap/packages/commit/3153e97c034d3f8856a68cf507ac88b5fb8c53bc))
|
|
383
|
+
- add the jwt generator ([b9d22b1](https://gitlab.com/rxap/packages/commit/b9d22b1fc6c7b7bfa960012f92a1a9f74fd20a32))
|
|
384
|
+
- add the mandatory app property to the environment object ([2655e0d](https://gitlab.com/rxap/packages/commit/2655e0d5449949a67b38044d34e6180f22ffc9c1))
|
|
385
|
+
- add the open-api generator ([6ecf74d](https://gitlab.com/rxap/packages/commit/6ecf74d83dfb7092523fdeb6dc7e925f8aece46e))
|
|
386
|
+
- add the sentry generator ([567eb83](https://gitlab.com/rxap/packages/commit/567eb83f2932643f359eb844db9b104e0b6c223d))
|
|
387
|
+
- add the validator generator ([810ff12](https://gitlab.com/rxap/packages/commit/810ff12308a98446c37f03ae2523b1d7d7a8b7d5))
|
|
388
|
+
- exclude health path from global api prefix ([15a5dbe](https://gitlab.com/rxap/packages/commit/15a5dbe4581e943bd7d0775fd87f8c2b0322cc02))
|
|
389
|
+
- generate status registry feature ([aff8ff8](https://gitlab.com/rxap/packages/commit/aff8ff8f0e67e6181383beb93ee1f7c898c9a2ea))
|
|
390
|
+
|
|
6
391
|
# [16.1.0-dev.9](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.8...@rxap/plugin-nestjs@16.1.0-dev.9) (2023-08-17)
|
|
7
392
|
|
|
8
393
|
### Reverts
|
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ yarn add @rxap/plugin-nestjs
|
|
|
19
19
|
```
|
|
20
20
|
**Install peer dependencies:**
|
|
21
21
|
```bash
|
|
22
|
-
yarn add @nx/devkit@^16.5.0 @nx/js@^16.5.0 @rxap/generator-utilities@^1.1.0-
|
|
22
|
+
yarn add @nx/devkit@^16.5.0 @nx/js@^16.5.0 @nx/nest@^16.5.0 @rxap/generator-utilities@^1.1.0 @rxap/node-utilities@^1.1.0 @rxap/plugin-utilities@^16.1.0 @rxap/ts-morph@^1.0.1 @rxap/utilities@^16.0.0 @rxap/workspace-ts-morph@^16.0.1 @rxap/workspace-utilities@^16.0.1 ts-morph@^18.0.0 tslib@2.6.2
|
|
23
23
|
```
|
|
24
24
|
**Execute the init generator:**
|
|
25
25
|
```bash
|
|
@@ -55,6 +55,69 @@ yarn nx g @rxap/plugin-nestjs:init-application
|
|
|
55
55
|
yarn nx g @rxap/plugin-nestjs:swagger
|
|
56
56
|
```
|
|
57
57
|
|
|
58
|
+
## sentry
|
|
59
|
+
> sentry generator
|
|
60
|
+
|
|
61
|
+
```bash
|
|
62
|
+
yarn nx g @rxap/plugin-nestjs:sentry
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
## validator
|
|
66
|
+
> validator generator
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
yarn nx g @rxap/plugin-nestjs:validator
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
## open-api
|
|
73
|
+
> open-api generator
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
yarn nx g @rxap/plugin-nestjs:open-api
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
## jwt
|
|
80
|
+
> jwt generator
|
|
81
|
+
|
|
82
|
+
```bash
|
|
83
|
+
yarn nx g @rxap/plugin-nestjs:jwt
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
## health-indicator
|
|
87
|
+
> health-indicator generator
|
|
88
|
+
|
|
89
|
+
```bash
|
|
90
|
+
yarn nx g @rxap/plugin-nestjs:health-indicator
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
## health-indicator-init
|
|
94
|
+
> health-indicator-init generator
|
|
95
|
+
|
|
96
|
+
```bash
|
|
97
|
+
yarn nx g @rxap/plugin-nestjs:health-indicator-init
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
## microservice
|
|
101
|
+
> microservice generator
|
|
102
|
+
|
|
103
|
+
```bash
|
|
104
|
+
yarn nx g @rxap/plugin-nestjs:microservice
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
## feature-microservice
|
|
108
|
+
> feature-microservice generator
|
|
109
|
+
|
|
110
|
+
```bash
|
|
111
|
+
yarn nx g @rxap/plugin-nestjs:feature-microservice
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
## frontend-microservice
|
|
115
|
+
> frontend-microservice generator
|
|
116
|
+
|
|
117
|
+
```bash
|
|
118
|
+
yarn nx g @rxap/plugin-nestjs:frontend-microservice
|
|
119
|
+
```
|
|
120
|
+
|
|
58
121
|
## init
|
|
59
122
|
> init generator
|
|
60
123
|
|
|
@@ -82,6 +145,69 @@ yarn nx g @rxap/plugin-nestjs:init-application
|
|
|
82
145
|
```bash
|
|
83
146
|
yarn nx g @rxap/plugin-nestjs:swagger
|
|
84
147
|
```
|
|
148
|
+
|
|
149
|
+
## sentry
|
|
150
|
+
> sentry generator
|
|
151
|
+
|
|
152
|
+
```bash
|
|
153
|
+
yarn nx g @rxap/plugin-nestjs:sentry
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
## validator
|
|
157
|
+
> validator generator
|
|
158
|
+
|
|
159
|
+
```bash
|
|
160
|
+
yarn nx g @rxap/plugin-nestjs:validator
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
## open-api
|
|
164
|
+
> open-api generator
|
|
165
|
+
|
|
166
|
+
```bash
|
|
167
|
+
yarn nx g @rxap/plugin-nestjs:open-api
|
|
168
|
+
```
|
|
169
|
+
|
|
170
|
+
## jwt
|
|
171
|
+
> jwt generator
|
|
172
|
+
|
|
173
|
+
```bash
|
|
174
|
+
yarn nx g @rxap/plugin-nestjs:jwt
|
|
175
|
+
```
|
|
176
|
+
|
|
177
|
+
## health-indicator
|
|
178
|
+
> health-indicator generator
|
|
179
|
+
|
|
180
|
+
```bash
|
|
181
|
+
yarn nx g @rxap/plugin-nestjs:health-indicator
|
|
182
|
+
```
|
|
183
|
+
|
|
184
|
+
## health-indicator-init
|
|
185
|
+
> health-indicator-init generator
|
|
186
|
+
|
|
187
|
+
```bash
|
|
188
|
+
yarn nx g @rxap/plugin-nestjs:health-indicator-init
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
## microservice
|
|
192
|
+
> microservice generator
|
|
193
|
+
|
|
194
|
+
```bash
|
|
195
|
+
yarn nx g @rxap/plugin-nestjs:microservice
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
## feature-microservice
|
|
199
|
+
> feature-microservice generator
|
|
200
|
+
|
|
201
|
+
```bash
|
|
202
|
+
yarn nx g @rxap/plugin-nestjs:feature-microservice
|
|
203
|
+
```
|
|
204
|
+
|
|
205
|
+
## frontend-microservice
|
|
206
|
+
> frontend-microservice generator
|
|
207
|
+
|
|
208
|
+
```bash
|
|
209
|
+
yarn nx g @rxap/plugin-nestjs:frontend-microservice
|
|
210
|
+
```
|
|
85
211
|
# Executors
|
|
86
212
|
|
|
87
213
|
## package-json
|
package/generators.json
CHANGED
|
@@ -19,6 +19,51 @@
|
|
|
19
19
|
"factory": "./src/generators/swagger/generator",
|
|
20
20
|
"schema": "./src/generators/swagger/schema.json",
|
|
21
21
|
"description": "swagger generator"
|
|
22
|
+
},
|
|
23
|
+
"sentry": {
|
|
24
|
+
"factory": "./src/generators/sentry/generator",
|
|
25
|
+
"schema": "./src/generators/sentry/schema.json",
|
|
26
|
+
"description": "sentry generator"
|
|
27
|
+
},
|
|
28
|
+
"validator": {
|
|
29
|
+
"factory": "./src/generators/validator/generator",
|
|
30
|
+
"schema": "./src/generators/validator/schema.json",
|
|
31
|
+
"description": "validator generator"
|
|
32
|
+
},
|
|
33
|
+
"open-api": {
|
|
34
|
+
"factory": "./src/generators/open-api/generator",
|
|
35
|
+
"schema": "./src/generators/open-api/schema.json",
|
|
36
|
+
"description": "open-api generator"
|
|
37
|
+
},
|
|
38
|
+
"jwt": {
|
|
39
|
+
"factory": "./src/generators/jwt/generator",
|
|
40
|
+
"schema": "./src/generators/jwt/schema.json",
|
|
41
|
+
"description": "jwt generator"
|
|
42
|
+
},
|
|
43
|
+
"health-indicator": {
|
|
44
|
+
"factory": "./src/generators/health-indicator/generator",
|
|
45
|
+
"schema": "./src/generators/health-indicator/schema.json",
|
|
46
|
+
"description": "health-indicator generator"
|
|
47
|
+
},
|
|
48
|
+
"health-indicator-init": {
|
|
49
|
+
"factory": "./src/generators/health-indicator-init/generator",
|
|
50
|
+
"schema": "./src/generators/health-indicator-init/schema.json",
|
|
51
|
+
"description": "health-indicator-init generator"
|
|
52
|
+
},
|
|
53
|
+
"microservice": {
|
|
54
|
+
"factory": "./src/generators/microservice/generator",
|
|
55
|
+
"schema": "./src/generators/microservice/schema.json",
|
|
56
|
+
"description": "microservice generator"
|
|
57
|
+
},
|
|
58
|
+
"feature-microservice": {
|
|
59
|
+
"factory": "./src/generators/feature-microservice/generator",
|
|
60
|
+
"schema": "./src/generators/feature-microservice/schema.json",
|
|
61
|
+
"description": "feature-microservice generator"
|
|
62
|
+
},
|
|
63
|
+
"frontend-microservice": {
|
|
64
|
+
"factory": "./src/generators/frontend-microservice/generator",
|
|
65
|
+
"schema": "./src/generators/frontend-microservice/schema.json",
|
|
66
|
+
"description": "frontend-microservice generator"
|
|
22
67
|
}
|
|
23
68
|
},
|
|
24
69
|
"schematics": {
|
|
@@ -41,6 +86,51 @@
|
|
|
41
86
|
"factory": "./src/generators/swagger/index",
|
|
42
87
|
"schema": "./src/generators/swagger/schema.json",
|
|
43
88
|
"description": "swagger generator"
|
|
89
|
+
},
|
|
90
|
+
"sentry": {
|
|
91
|
+
"factory": "./src/generators/sentry/index",
|
|
92
|
+
"schema": "./src/generators/sentry/schema.json",
|
|
93
|
+
"description": "sentry generator"
|
|
94
|
+
},
|
|
95
|
+
"validator": {
|
|
96
|
+
"factory": "./src/generators/validator/index",
|
|
97
|
+
"schema": "./src/generators/validator/schema.json",
|
|
98
|
+
"description": "validator generator"
|
|
99
|
+
},
|
|
100
|
+
"open-api": {
|
|
101
|
+
"factory": "./src/generators/open-api/index",
|
|
102
|
+
"schema": "./src/generators/open-api/schema.json",
|
|
103
|
+
"description": "open-api generator"
|
|
104
|
+
},
|
|
105
|
+
"jwt": {
|
|
106
|
+
"factory": "./src/generators/jwt/index",
|
|
107
|
+
"schema": "./src/generators/jwt/schema.json",
|
|
108
|
+
"description": "jwt generator"
|
|
109
|
+
},
|
|
110
|
+
"health-indicator": {
|
|
111
|
+
"factory": "./src/generators/health-indicator/index",
|
|
112
|
+
"schema": "./src/generators/health-indicator/schema.json",
|
|
113
|
+
"description": "health-indicator generator"
|
|
114
|
+
},
|
|
115
|
+
"health-indicator-init": {
|
|
116
|
+
"factory": "./src/generators/health-indicator-init/index",
|
|
117
|
+
"schema": "./src/generators/health-indicator-init/schema.json",
|
|
118
|
+
"description": "health-indicator-init generator"
|
|
119
|
+
},
|
|
120
|
+
"microservice": {
|
|
121
|
+
"factory": "./src/generators/microservice/index",
|
|
122
|
+
"schema": "./src/generators/microservice/schema.json",
|
|
123
|
+
"description": "microservice generator"
|
|
124
|
+
},
|
|
125
|
+
"feature-microservice": {
|
|
126
|
+
"factory": "./src/generators/feature-microservice/index",
|
|
127
|
+
"schema": "./src/generators/feature-microservice/schema.json",
|
|
128
|
+
"description": "feature-microservice generator"
|
|
129
|
+
},
|
|
130
|
+
"frontend-microservice": {
|
|
131
|
+
"factory": "./src/generators/frontend-microservice/index",
|
|
132
|
+
"schema": "./src/generators/frontend-microservice/schema.json",
|
|
133
|
+
"description": "frontend-microservice generator"
|
|
44
134
|
}
|
|
45
135
|
}
|
|
46
136
|
}
|