@rsdk/core 3.6.1-next.0 → 4.0.0-next.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,20 @@
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
+ ## [4.0.0-next.0](https://github.com/R-Vision/rsdk/compare/v3.6.2-next.0...v4.0.0-next.0) (2023-10-26)
7
+
8
+ ### ⚠ BREAKING CHANGES
9
+
10
+ * update eslint plugin deps and conf
11
+
12
+ ### Features
13
+
14
+ * update eslint plugin deps and conf ([e59f061](https://github.com/R-Vision/rsdk/commit/e59f061f473b47ec220464ee6da19f1acfd3160b))
15
+
16
+ ## [3.6.1](https://github.com/R-Vision/rsdk/compare/v3.6.1-next.1...v3.6.1) (2023-10-24)
17
+
18
+ **Note:** Version bump only for package @rsdk/core
19
+
6
20
  ## [3.6.1-next.0](https://github.com/R-Vision/rsdk/compare/v3.6.0...v3.6.1-next.0) (2023-10-20)
7
21
 
8
22
  ### Bug Fixes
@@ -5,7 +5,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.ReloadEvents = void 0;
7
7
  const node_events_1 = __importDefault(require("node:events"));
8
- // eslint-disable-next-line unicorn/prefer-event-target
8
+ // eslint-disable-next-line unicorn/prefer-event-target,@typescript-eslint/no-unsafe-declaration-merging
9
9
  class ReloadEvents extends node_events_1.default {
10
10
  }
11
11
  exports.ReloadEvents = ReloadEvents;
@@ -1 +1 @@
1
- {"version":3,"file":"config-reload.events.js","sourceRoot":"","sources":["../../../src/config/reload/config-reload.events.ts"],"names":[],"mappings":";;;;;;AAAA,8DAAuC;AAOvC,uDAAuD;AACvD,MAAa,YAAa,SAAQ,qBAAY;CAAG;AAAjD,oCAAiD"}
1
+ {"version":3,"file":"config-reload.events.js","sourceRoot":"","sources":["../../../src/config/reload/config-reload.events.ts"],"names":[],"mappings":";;;;;;AAAA,8DAAuC;AAOvC,wGAAwG;AACxG,MAAa,YAAa,SAAQ,qBAAY;CAAG;AAAjD,oCAAiD"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rsdk/core",
3
- "version": "3.6.1-next.0",
3
+ "version": "4.0.0-next.0",
4
4
  "description": "Nestjs based microservice chassis",
5
5
  "license": "Apache License 2.0",
6
6
  "publishConfig": {
@@ -35,13 +35,14 @@
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.1-next.0",
38
+ "@rsdk/decorators": "^3.6.1",
39
39
  "@rsdk/logging": "^3.6.0",
40
40
  "@rsdk/metadata": "^3.6.0",
41
41
  "@rsdk/nest-tools": "^3.6.0",
42
42
  "axios": "^1.1.3",
43
+ "pino": "^8.16.1",
43
44
  "reflect-metadata": "^0.1.13",
44
45
  "rxjs": "^7.0.0"
45
46
  },
46
- "gitHead": "d4ae98e83f9bb8c9fcbb21e4e55fd74c1801a216"
47
+ "gitHead": "2d50b44d35be75f6768d4b1d57ccc6b7641bf146"
47
48
  }
@@ -5,9 +5,10 @@ import type { PropertyException } from '../exceptions';
5
5
  import type { ConfigSource, ConfigSourceException } from '../sources';
6
6
  import type { Changes, RawValues } from '../types';
7
7
 
8
- // eslint-disable-next-line unicorn/prefer-event-target
8
+ // eslint-disable-next-line unicorn/prefer-event-target,@typescript-eslint/no-unsafe-declaration-merging
9
9
  export class ReloadEvents extends EventEmitter {}
10
10
 
11
+ // eslint-disable-next-line @typescript-eslint/no-unsafe-declaration-merging
11
12
  export declare interface ReloadEvents {
12
13
  on(e: 'reload', fn: (source: ConfigSource, values: RawValues) => void): this;
13
14
  on(