@rsdk/core 3.6.0-next.7 → 3.6.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
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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
|
+
## [3.6.0](https://github.com/R-Vision/rsdk/compare/v3.6.0-next.8...v3.6.0) (2023-10-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @rsdk/core
|
|
9
|
+
|
|
10
|
+
## [3.6.0-next.8](https://github.com/R-Vision/rsdk/compare/v3.6.0-next.7...v3.6.0-next.8) (2023-10-20)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @rsdk/core
|
|
13
|
+
|
|
6
14
|
## [3.6.0-next.7](https://github.com/R-Vision/rsdk/compare/v3.6.0-next.6...v3.6.0-next.7) (2023-10-20)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @rsdk/core
|
|
@@ -105,7 +105,7 @@ class PlatformConfigModule {
|
|
|
105
105
|
}
|
|
106
106
|
exports.PlatformConfigModule = PlatformConfigModule;
|
|
107
107
|
__decorate([
|
|
108
|
-
(0, deprecate_1.DeprecateMethod)('
|
|
108
|
+
(0, deprecate_1.DeprecateMethod)('Do not use `PlatformConfigModule.forFeature`, from @rsdk/core 3.1.0 configs are loaded automatically'),
|
|
109
109
|
__metadata("design:type", Function),
|
|
110
110
|
__metadata("design:paramtypes", [Object]),
|
|
111
111
|
__metadata("design:returntype", Object)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rsdk/core",
|
|
3
|
-
"version": "3.6.0
|
|
3
|
+
"version": "3.6.0",
|
|
4
4
|
"description": "Nestjs based microservice chassis",
|
|
5
5
|
"license": "Apache License 2.0",
|
|
6
6
|
"publishConfig": {
|
|
@@ -31,17 +31,17 @@
|
|
|
31
31
|
"@nestjs/common": "^10.1.3",
|
|
32
32
|
"@nestjs/core": "^10.1.3",
|
|
33
33
|
"@nestjs/microservices": "^10.1.3",
|
|
34
|
-
"@rsdk/autodoc.protocol": "^3.6.0
|
|
34
|
+
"@rsdk/autodoc.protocol": "^3.6.0",
|
|
35
35
|
"@rsdk/common": "^3.5.0",
|
|
36
36
|
"@rsdk/common.nestjs": "^3.5.0",
|
|
37
37
|
"@rsdk/common.node": "^3.5.0",
|
|
38
|
-
"@rsdk/decorators": "^3.6.0
|
|
39
|
-
"@rsdk/logging": "^3.6.0
|
|
40
|
-
"@rsdk/metadata": "^3.6.0
|
|
41
|
-
"@rsdk/nest-tools": "^3.6.0
|
|
38
|
+
"@rsdk/decorators": "^3.6.0",
|
|
39
|
+
"@rsdk/logging": "^3.6.0",
|
|
40
|
+
"@rsdk/metadata": "^3.6.0",
|
|
41
|
+
"@rsdk/nest-tools": "^3.6.0",
|
|
42
42
|
"axios": "^1.1.3",
|
|
43
43
|
"reflect-metadata": "^0.1.13",
|
|
44
44
|
"rxjs": "^7.0.0"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "cc75fb4595bd49e877974f6eeeef66f30743011c"
|
|
47
47
|
}
|
|
@@ -134,7 +134,7 @@ export class PlatformConfigModule {
|
|
|
134
134
|
* @returns DynamicModule
|
|
135
135
|
*/
|
|
136
136
|
@DeprecateMethod(
|
|
137
|
-
'
|
|
137
|
+
'Do not use `PlatformConfigModule.forFeature`, from @rsdk/core 3.1.0 configs are loaded automatically',
|
|
138
138
|
)
|
|
139
139
|
static forFeature(ctor: Constructor<Config>): DynamicModule {
|
|
140
140
|
return PlatformConfigModule.createConfigProvider(ctor);
|