diff --git a/CHANGELOG.md b/CHANGELOG.md index dafde19b0..65fadd081 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +### Bug Fixes + +- **core:** don't include stack in formatError per default ([1b603ee](https://github.com/deepkit/deepkit-framework/commit/1b603eef2938ab010fb6d83836894ad5a1c236af)) +- **http:** parameter service injection into route methods with encapsulated modules ([9c98f8b](https://github.com/deepkit/deepkit-framework/commit/9c98f8b110078ab35882fece44f45fde34a4feeb)) +- **type-compiler:** also parse tsx source files ([80464bf](https://github.com/deepkit/deepkit-framework/commit/80464bf2bd38477e7ce7898fde17b6d6738007f7)), closes [#560](https://github.com/deepkit/deepkit-framework/issues/560) +- **type:** print Error cause chain in formatError ([c2a413a](https://github.com/deepkit/deepkit-framework/commit/c2a413aeb74155ddb29f1939b48e034f05d9ae60)) +- **type:** union expansions in intersections ([332b26e](https://github.com/deepkit/deepkit-framework/commit/332b26eb148d916d03f49fad0daaad083c24207a)), closes [#556](https://github.com/deepkit/deepkit-framework/issues/556) + +### Features + +- **desktop-ui:** support queryParams in list route support ([6f33804](https://github.com/deepkit/deepkit-framework/commit/6f3380469c22d8c146367889c8afd55d8df15292)) +- **injector:** improve set method api ([#557](https://github.com/deepkit/deepkit-framework/issues/557)) ([eb92e58](https://github.com/deepkit/deepkit-framework/commit/eb92e58a44a25170f29150aae89b2dfad33a3495)) +- **mysql, postgres:** add support for connection URLs ([2518670](https://github.com/deepkit/deepkit-framework/commit/25186701e3d6ea60ea232cbcc0c989e195df9edf)) + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) ### Bug Fixes diff --git a/lerna.json b/lerna.json index c09e91ac3..39b341305 100644 --- a/lerna.json +++ b/lerna.json @@ -6,5 +6,5 @@ "conventionalCommits": true } }, - "version": "1.0.1-alpha.142" + "version": "1.0.1-alpha.143" } diff --git a/packages/api-console-api/CHANGELOG.md b/packages/api-console-api/CHANGELOG.md index 97e5c0f99..e5285cf03 100644 --- a/packages/api-console-api/CHANGELOG.md +++ b/packages/api-console-api/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/api-console-api + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/api-console-api diff --git a/packages/api-console-api/package.json b/packages/api-console-api/package.json index a08ebac9e..9613be201 100644 --- a/packages/api-console-api/package.json +++ b/packages/api-console-api/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/api-console-api", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "type": "commonjs", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", @@ -31,12 +31,12 @@ "@deepkit/type": "^1.0.1-alpha.63" }, "devDependencies": { - "@deepkit/bson": "^1.0.1-alpha.142", - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/injector": "^1.0.1-alpha.142", - "@deepkit/logger": "^1.0.1-alpha.142", - "@deepkit/rpc": "^1.0.1-alpha.142", - "@deepkit/type": "^1.0.1-alpha.142" + "@deepkit/bson": "^1.0.1-alpha.143", + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/injector": "^1.0.1-alpha.143", + "@deepkit/logger": "^1.0.1-alpha.143", + "@deepkit/rpc": "^1.0.1-alpha.143", + "@deepkit/type": "^1.0.1-alpha.143" }, "jest": { "testEnvironment": "node", diff --git a/packages/api-console-gui/CHANGELOG.md b/packages/api-console-gui/CHANGELOG.md index 376a36310..af97dcf5a 100644 --- a/packages/api-console-gui/CHANGELOG.md +++ b/packages/api-console-gui/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/api-console-gui + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/api-console-gui diff --git a/packages/api-console-gui/package.json b/packages/api-console-gui/package.json index 3275096c1..552788315 100644 --- a/packages/api-console-gui/package.json +++ b/packages/api-console-gui/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/api-console-gui", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "description": "API Console GUI", "scripts": { "ng": "ng", @@ -34,18 +34,18 @@ "@angular/platform-browser": "^17.1.0", "@angular/platform-browser-dynamic": "^17.1.0", "@angular/router": "^17.1.0", - "@deepkit/api-console-api": "^1.0.1-alpha.142", - "@deepkit/bson": "^1.0.1-alpha.142", - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/core-rxjs": "^1.0.1-alpha.124", - "@deepkit/desktop-ui": "^1.0.1-alpha.142", - "@deepkit/event": "^1.0.1-alpha.142", - "@deepkit/injector": "^1.0.1-alpha.142", - "@deepkit/logger": "^1.0.1-alpha.142", - "@deepkit/rpc": "^1.0.1-alpha.142", - "@deepkit/stopwatch": "^1.0.1-alpha.142", - "@deepkit/type": "^1.0.1-alpha.142", - "@deepkit/type-compiler": "^1.0.1-alpha.142", + "@deepkit/api-console-api": "^1.0.1-alpha.143", + "@deepkit/bson": "^1.0.1-alpha.143", + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/core-rxjs": "^1.0.1-alpha.143", + "@deepkit/desktop-ui": "^1.0.1-alpha.143", + "@deepkit/event": "^1.0.1-alpha.143", + "@deepkit/injector": "^1.0.1-alpha.143", + "@deepkit/logger": "^1.0.1-alpha.143", + "@deepkit/rpc": "^1.0.1-alpha.143", + "@deepkit/stopwatch": "^1.0.1-alpha.143", + "@deepkit/type": "^1.0.1-alpha.143", + "@deepkit/type-compiler": "^1.0.1-alpha.143", "@deepkit/ui-library": "^1.0.1-alpha.56", "@types/jasmine": "~4.3.0", "@types/marked": "^4.0.3", diff --git a/packages/api-console-module/CHANGELOG.md b/packages/api-console-module/CHANGELOG.md index ea2592125..bd42a0d36 100644 --- a/packages/api-console-module/CHANGELOG.md +++ b/packages/api-console-module/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/api-console-module + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/api-console-module diff --git a/packages/api-console-module/package.json b/packages/api-console-module/package.json index 78fcbcf17..fad58e5a2 100644 --- a/packages/api-console-module/package.json +++ b/packages/api-console-module/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/api-console-module", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "description": "API Console", "type": "commonjs", "main": "./dist/cjs/index.js", @@ -34,19 +34,19 @@ "@deepkit/type": "^1.0.1-alpha.43" }, "dependencies": { - "@deepkit/api-console-api": "^1.0.1-alpha.142", - "@deepkit/api-console-gui": "^1.0.1-alpha.142" + "@deepkit/api-console-api": "^1.0.1-alpha.143", + "@deepkit/api-console-gui": "^1.0.1-alpha.143" }, "devDependencies": { - "@deepkit/app": "^1.0.1-alpha.142", - "@deepkit/broker": "^1.0.1-alpha.142", - "@deepkit/bson": "^1.0.1-alpha.142", - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/http": "^1.0.1-alpha.142", - "@deepkit/injector": "^1.0.1-alpha.142", - "@deepkit/logger": "^1.0.1-alpha.142", - "@deepkit/rpc": "^1.0.1-alpha.142", - "@deepkit/type": "^1.0.1-alpha.142", + "@deepkit/app": "^1.0.1-alpha.143", + "@deepkit/broker": "^1.0.1-alpha.143", + "@deepkit/bson": "^1.0.1-alpha.143", + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/http": "^1.0.1-alpha.143", + "@deepkit/injector": "^1.0.1-alpha.143", + "@deepkit/logger": "^1.0.1-alpha.143", + "@deepkit/rpc": "^1.0.1-alpha.143", + "@deepkit/type": "^1.0.1-alpha.143", "rxjs": "~7.8.0" }, "jest": { diff --git a/packages/app/CHANGELOG.md b/packages/app/CHANGELOG.md index b9a2f29c2..2a2788acc 100644 --- a/packages/app/CHANGELOG.md +++ b/packages/app/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/app + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/app diff --git a/packages/app/package.json b/packages/app/package.json index 9749ae0c9..da39c3e16 100644 --- a/packages/app/package.json +++ b/packages/app/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/app", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "description": "Deepkit App, CLI framework and service container", "type": "commonjs", "main": "./dist/cjs/index.js", @@ -32,13 +32,13 @@ "@deepkit/workflow": "^1.0.1-alpha.13" }, "devDependencies": { - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/event": "^1.0.1-alpha.142", - "@deepkit/injector": "^1.0.1-alpha.142", - "@deepkit/logger": "^1.0.1-alpha.142", - "@deepkit/stopwatch": "^1.0.1-alpha.142", - "@deepkit/type": "^1.0.1-alpha.142", - "@deepkit/workflow": "^1.0.1-alpha.142", + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/event": "^1.0.1-alpha.143", + "@deepkit/injector": "^1.0.1-alpha.143", + "@deepkit/logger": "^1.0.1-alpha.143", + "@deepkit/stopwatch": "^1.0.1-alpha.143", + "@deepkit/type": "^1.0.1-alpha.143", + "@deepkit/workflow": "^1.0.1-alpha.143", "conditional-type-checks": "^1.0.5" }, "jest": { diff --git a/packages/broker/CHANGELOG.md b/packages/broker/CHANGELOG.md index 6132b28aa..811c792c2 100644 --- a/packages/broker/CHANGELOG.md +++ b/packages/broker/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/broker + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/broker diff --git a/packages/broker/package.json b/packages/broker/package.json index 6ec09d363..e1d82bcd1 100644 --- a/packages/broker/package.json +++ b/packages/broker/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/broker", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "type": "commonjs", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", @@ -36,12 +36,12 @@ "rxjs": "*" }, "devDependencies": { - "@deepkit/bson": "^1.0.1-alpha.142", - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/core-rxjs": "^1.0.1-alpha.124", - "@deepkit/event": "^1.0.1-alpha.142", - "@deepkit/rpc": "^1.0.1-alpha.142", - "@deepkit/type": "^1.0.1-alpha.142" + "@deepkit/bson": "^1.0.1-alpha.143", + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/core-rxjs": "^1.0.1-alpha.143", + "@deepkit/event": "^1.0.1-alpha.143", + "@deepkit/rpc": "^1.0.1-alpha.143", + "@deepkit/type": "^1.0.1-alpha.143" }, "jest": { "testEnvironment": "node", diff --git a/packages/bson/CHANGELOG.md b/packages/bson/CHANGELOG.md index 1e8316272..f83bd78e1 100644 --- a/packages/bson/CHANGELOG.md +++ b/packages/bson/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/bson + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/bson diff --git a/packages/bson/package.json b/packages/bson/package.json index db25a8074..e74c95eda 100644 --- a/packages/bson/package.json +++ b/packages/bson/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/bson", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "description": "Deepkit BSON parser", "type": "commonjs", "main": "./dist/cjs/index.js", @@ -28,8 +28,8 @@ "@deepkit/type": "^1.0.1-alpha.13" }, "devDependencies": { - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/type": "^1.0.1-alpha.142", + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/type": "^1.0.1-alpha.143", "@types/bson": "^4.0.3", "@types/node": "20.6.0", "bson": "^4.4.0" diff --git a/packages/bun/CHANGELOG.md b/packages/bun/CHANGELOG.md index d5be26c22..bc6926953 100644 --- a/packages/bun/CHANGELOG.md +++ b/packages/bun/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/bun + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/bun diff --git a/packages/bun/package.json b/packages/bun/package.json index 0a86b74dc..a619d0bc5 100644 --- a/packages/bun/package.json +++ b/packages/bun/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/bun", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "description": "Deepkit Bun Plugin for Deepkit Runtime Types support", "type": "commonjs", "main": "./dist/cjs/index.js", @@ -28,7 +28,7 @@ "typescript": "*" }, "devDependencies": { - "@deepkit/type-compiler": "^1.0.1-alpha.142", + "@deepkit/type-compiler": "^1.0.1-alpha.143", "bun-types": "1.0.6" }, "jest": { diff --git a/packages/core-rxjs/CHANGELOG.md b/packages/core-rxjs/CHANGELOG.md index 7a2dca1ea..128b59b3a 100644 --- a/packages/core-rxjs/CHANGELOG.md +++ b/packages/core-rxjs/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/core-rxjs + ## [1.0.1-alpha.124](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.123...v1.0.1-alpha.124) (2024-02-04) **Note:** Version bump only for package @deepkit/core-rxjs diff --git a/packages/core-rxjs/package.json b/packages/core-rxjs/package.json index 0fbc5770e..a896f62bf 100644 --- a/packages/core-rxjs/package.json +++ b/packages/core-rxjs/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/core-rxjs", - "version": "1.0.1-alpha.124", + "version": "1.0.1-alpha.143", "description": "Deepkit core rxjs library", "type": "commonjs", "main": "./dist/cjs/index.js", @@ -28,7 +28,7 @@ "rxjs": "*" }, "devDependencies": { - "@deepkit/core": "^1.0.1-alpha.124", + "@deepkit/core": "^1.0.1-alpha.143", "rxjs": "~7.8.0" }, "jest": { diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 39b51964f..a7e3534fa 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +### Bug Fixes + +- **core:** don't include stack in formatError per default ([1b603ee](https://github.com/deepkit/deepkit-framework/commit/1b603eef2938ab010fb6d83836894ad5a1c236af)) +- **type:** print Error cause chain in formatError ([c2a413a](https://github.com/deepkit/deepkit-framework/commit/c2a413aeb74155ddb29f1939b48e034f05d9ae60)) + ## [1.0.1-alpha.124](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.123...v1.0.1-alpha.124) (2024-02-04) ### Bug Fixes diff --git a/packages/core/package.json b/packages/core/package.json index b5f1eb572..e30b83d51 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/core", - "version": "1.0.1-alpha.124", + "version": "1.0.1-alpha.143", "description": "Deepkit core library", "type": "commonjs", "main": "./dist/cjs/index.js", diff --git a/packages/create-app/CHANGELOG.md b/packages/create-app/CHANGELOG.md index 36e35bdbd..f2289056b 100644 --- a/packages/create-app/CHANGELOG.md +++ b/packages/create-app/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/create-app + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/create-app diff --git a/packages/create-app/package.json b/packages/create-app/package.json index 40c473940..1de33c5f8 100644 --- a/packages/create-app/package.json +++ b/packages/create-app/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/create-app", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "description": "asdasd", "type": "commonjs", "main": "./dist/cjs/main.js", @@ -17,10 +17,10 @@ "deepkit-app": "dist/cjs/main.js" }, "dependencies": { - "@deepkit/app": "^1.0.1-alpha.142", - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/logger": "^1.0.1-alpha.142", - "@deepkit/type": "^1.0.1-alpha.142", + "@deepkit/app": "^1.0.1-alpha.143", + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/logger": "^1.0.1-alpha.143", + "@deepkit/type": "^1.0.1-alpha.143", "fs-extra": "^9.1.0" }, "devDependencies": { diff --git a/packages/desktop-ui/CHANGELOG.md b/packages/desktop-ui/CHANGELOG.md index 23ef239c9..9664e4147 100644 --- a/packages/desktop-ui/CHANGELOG.md +++ b/packages/desktop-ui/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +### Features + +- **desktop-ui:** support queryParams in list route support ([6f33804](https://github.com/deepkit/deepkit-framework/commit/6f3380469c22d8c146367889c8afd55d8df15292)) + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/desktop-ui diff --git a/packages/desktop-ui/package.json b/packages/desktop-ui/package.json index ce1e1afaa..f28d5b59b 100644 --- a/packages/desktop-ui/package.json +++ b/packages/desktop-ui/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/desktop-ui", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "description": "Library for desktop UI widgets in Angular 10+", "keywords": [ "Desktop", @@ -55,10 +55,10 @@ "@angular/platform-browser": "^17.1.0", "@angular/platform-browser-dynamic": "^17.1.0", "@angular/router": "^17.1.0", - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/core-rxjs": "^1.0.1-alpha.124", - "@deepkit/event": "^1.0.1-alpha.142", - "@deepkit/type": "^1.0.1-alpha.142", + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/core-rxjs": "^1.0.1-alpha.143", + "@deepkit/event": "^1.0.1-alpha.143", + "@deepkit/type": "^1.0.1-alpha.143", "@types/fs-extra": "^8.0.1", "@types/node": "20.6.0", "fs-extra": "^8.1.0", diff --git a/packages/event/CHANGELOG.md b/packages/event/CHANGELOG.md index b8f5065a0..6ba4a0aaa 100644 --- a/packages/event/CHANGELOG.md +++ b/packages/event/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/event + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/event diff --git a/packages/event/package.json b/packages/event/package.json index 797e252aa..a0088abf9 100644 --- a/packages/event/package.json +++ b/packages/event/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/event", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "description": "Deepkit async event dispatcher", "type": "commonjs", "main": "./dist/cjs/index.js", @@ -28,9 +28,9 @@ "@deepkit/type": "^1.0.1-alpha.13" }, "devDependencies": { - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/injector": "^1.0.1-alpha.142", - "@deepkit/type": "^1.0.1-alpha.142" + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/injector": "^1.0.1-alpha.143", + "@deepkit/type": "^1.0.1-alpha.143" }, "jest": { "testEnvironment": "node", diff --git a/packages/filesystem-aws-s3/CHANGELOG.md b/packages/filesystem-aws-s3/CHANGELOG.md index bbf81e9e4..f329f9a71 100644 --- a/packages/filesystem-aws-s3/CHANGELOG.md +++ b/packages/filesystem-aws-s3/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/filesystem-aws-s3 + ## [1.0.1-alpha.124](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.123...v1.0.1-alpha.124) (2024-02-04) **Note:** Version bump only for package @deepkit/filesystem-aws-s3 diff --git a/packages/filesystem-aws-s3/package.json b/packages/filesystem-aws-s3/package.json index f19d7187e..f7939ea2e 100644 --- a/packages/filesystem-aws-s3/package.json +++ b/packages/filesystem-aws-s3/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/filesystem-aws-s3", - "version": "1.0.1-alpha.124", + "version": "1.0.1-alpha.143", "description": "Deepkit storage adapter for AWS S3", "type": "commonjs", "main": "./dist/cjs/index.js", @@ -24,8 +24,8 @@ }, "dependencies": { "@aws-sdk/client-s3": "^3.0.0", - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/filesystem": "^1.0.1-alpha.124" + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/filesystem": "^1.0.1-alpha.143" }, "jest": { "runner": "../../jest-serial-runner.js", diff --git a/packages/filesystem-ftp/CHANGELOG.md b/packages/filesystem-ftp/CHANGELOG.md index f49f26c86..a6c926a76 100644 --- a/packages/filesystem-ftp/CHANGELOG.md +++ b/packages/filesystem-ftp/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/filesystem-ftp + ## [1.0.1-alpha.124](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.123...v1.0.1-alpha.124) (2024-02-04) **Note:** Version bump only for package @deepkit/filesystem-ftp diff --git a/packages/filesystem-ftp/package.json b/packages/filesystem-ftp/package.json index 73a54b04c..f866fa48e 100644 --- a/packages/filesystem-ftp/package.json +++ b/packages/filesystem-ftp/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/filesystem-ftp", - "version": "1.0.1-alpha.124", + "version": "1.0.1-alpha.143", "description": "Deepkit storage adapter for FTP", "type": "commonjs", "main": "./dist/cjs/index.js", @@ -23,8 +23,8 @@ "build": "echo '{\"type\": \"module\"}' > ./dist/esm/package.json" }, "dependencies": { - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/filesystem": "^1.0.1-alpha.124", + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/filesystem": "^1.0.1-alpha.143", "basic-ftp": "^5.0.3" }, "jest": { diff --git a/packages/filesystem-google/CHANGELOG.md b/packages/filesystem-google/CHANGELOG.md index 2bd32b4f2..c38fdf6e8 100644 --- a/packages/filesystem-google/CHANGELOG.md +++ b/packages/filesystem-google/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/filesystem-google + ## [1.0.1-alpha.124](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.123...v1.0.1-alpha.124) (2024-02-04) **Note:** Version bump only for package @deepkit/filesystem-google diff --git a/packages/filesystem-google/package.json b/packages/filesystem-google/package.json index 4ddf43efc..829e84427 100644 --- a/packages/filesystem-google/package.json +++ b/packages/filesystem-google/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/filesystem-google", - "version": "1.0.1-alpha.124", + "version": "1.0.1-alpha.143", "description": "Deepkit storage adapter for Google Storage", "type": "commonjs", "main": "./dist/cjs/index.js", @@ -23,8 +23,8 @@ "build": "echo '{\"type\": \"module\"}' > ./dist/esm/package.json" }, "dependencies": { - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/filesystem": "^1.0.1-alpha.124", + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/filesystem": "^1.0.1-alpha.143", "@google-cloud/storage": "^7.2.0", "bignumber.js": "^9.1.2", "google-auth-library": "^9.1.0" diff --git a/packages/filesystem-sftp/CHANGELOG.md b/packages/filesystem-sftp/CHANGELOG.md index ca88e7035..def11f203 100644 --- a/packages/filesystem-sftp/CHANGELOG.md +++ b/packages/filesystem-sftp/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/filesystem-fstp + ## [1.0.1-alpha.124](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.123...v1.0.1-alpha.124) (2024-02-04) **Note:** Version bump only for package @deepkit/filesystem-fstp diff --git a/packages/filesystem-sftp/package.json b/packages/filesystem-sftp/package.json index 6e115825c..6b317e66e 100644 --- a/packages/filesystem-sftp/package.json +++ b/packages/filesystem-sftp/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/filesystem-fstp", - "version": "1.0.1-alpha.124", + "version": "1.0.1-alpha.143", "description": "Deepkit storage adapter for sFTP (via SSH)", "type": "commonjs", "main": "./dist/cjs/index.js", @@ -23,8 +23,8 @@ "build": "echo '{\"type\": \"module\"}' > ./dist/esm/package.json" }, "dependencies": { - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/filesystem": "^1.0.1-alpha.124", + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/filesystem": "^1.0.1-alpha.143", "ssh2-sftp-client": "^9.1.0" }, "devDependencies": { diff --git a/packages/filesystem/CHANGELOG.md b/packages/filesystem/CHANGELOG.md index 23a460d85..eb513dc6c 100644 --- a/packages/filesystem/CHANGELOG.md +++ b/packages/filesystem/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/filesystem + ## [1.0.1-alpha.124](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.123...v1.0.1-alpha.124) (2024-02-04) ### Features diff --git a/packages/filesystem/package.json b/packages/filesystem/package.json index c1598805c..fc7830f79 100644 --- a/packages/filesystem/package.json +++ b/packages/filesystem/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/filesystem", - "version": "1.0.1-alpha.124", + "version": "1.0.1-alpha.143", "description": "Filesystem abstraction Deepkit", "type": "commonjs", "main": "./dist/cjs/index.js", @@ -31,7 +31,7 @@ "@deepkit/core": "^1.0.1-alpha.13" }, "devDependencies": { - "@deepkit/core": "^1.0.1-alpha.124" + "@deepkit/core": "^1.0.1-alpha.143" }, "jest": { "testEnvironment": "node", diff --git a/packages/framework-debug-api/CHANGELOG.md b/packages/framework-debug-api/CHANGELOG.md index 5beebf730..468a62515 100644 --- a/packages/framework-debug-api/CHANGELOG.md +++ b/packages/framework-debug-api/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/framework-debug-api + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/framework-debug-api diff --git a/packages/framework-debug-api/package.json b/packages/framework-debug-api/package.json index fff9ee39c..fe9822557 100644 --- a/packages/framework-debug-api/package.json +++ b/packages/framework-debug-api/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/framework-debug-api", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "type": "commonjs", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", @@ -33,14 +33,14 @@ "@deepkit/type": "^1.0.1-alpha.13" }, "devDependencies": { - "@deepkit/bson": "^1.0.1-alpha.142", - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/core-rxjs": "^1.0.1-alpha.124", - "@deepkit/injector": "^1.0.1-alpha.142", - "@deepkit/logger": "^1.0.1-alpha.142", - "@deepkit/rpc": "^1.0.1-alpha.142", - "@deepkit/stopwatch": "^1.0.1-alpha.142", - "@deepkit/type": "^1.0.1-alpha.142", + "@deepkit/bson": "^1.0.1-alpha.143", + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/core-rxjs": "^1.0.1-alpha.143", + "@deepkit/injector": "^1.0.1-alpha.143", + "@deepkit/logger": "^1.0.1-alpha.143", + "@deepkit/rpc": "^1.0.1-alpha.143", + "@deepkit/stopwatch": "^1.0.1-alpha.143", + "@deepkit/type": "^1.0.1-alpha.143", "rxjs": "~7.8.0" }, "jest": { diff --git a/packages/framework-debug-gui/CHANGELOG.md b/packages/framework-debug-gui/CHANGELOG.md index 36bfca6c4..d61e6dead 100644 --- a/packages/framework-debug-gui/CHANGELOG.md +++ b/packages/framework-debug-gui/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/framework-debug-gui + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/framework-debug-gui diff --git a/packages/framework-debug-gui/package.json b/packages/framework-debug-gui/package.json index 6d33ce962..406e435b2 100644 --- a/packages/framework-debug-gui/package.json +++ b/packages/framework-debug-gui/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/framework-debug-gui", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "scripts": { "ng": "ng", "start": "NODE_OPTIONS=--preserve-symlinks ng serve", @@ -31,24 +31,24 @@ "@angular/platform-browser": "^17.1.0", "@angular/platform-browser-dynamic": "^17.1.0", "@angular/router": "^17.1.0", - "@deepkit/api-console-api": "^1.0.1-alpha.142", - "@deepkit/api-console-gui": "^1.0.1-alpha.142", - "@deepkit/bson": "^1.0.1-alpha.142", - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/core-rxjs": "^1.0.1-alpha.124", - "@deepkit/desktop-ui": "^1.0.1-alpha.142", - "@deepkit/event": "^1.0.1-alpha.142", - "@deepkit/framework-debug-api": "^1.0.1-alpha.142", - "@deepkit/injector": "^1.0.1-alpha.142", - "@deepkit/logger": "^1.0.1-alpha.142", - "@deepkit/orm": "^1.0.1-alpha.142", - "@deepkit/orm-browser-api": "^1.0.1-alpha.142", - "@deepkit/orm-browser-gui": "^1.0.1-alpha.142", - "@deepkit/rpc": "^1.0.1-alpha.142", - "@deepkit/stopwatch": "^1.0.1-alpha.142", + "@deepkit/api-console-api": "^1.0.1-alpha.143", + "@deepkit/api-console-gui": "^1.0.1-alpha.143", + "@deepkit/bson": "^1.0.1-alpha.143", + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/core-rxjs": "^1.0.1-alpha.143", + "@deepkit/desktop-ui": "^1.0.1-alpha.143", + "@deepkit/event": "^1.0.1-alpha.143", + "@deepkit/framework-debug-api": "^1.0.1-alpha.143", + "@deepkit/injector": "^1.0.1-alpha.143", + "@deepkit/logger": "^1.0.1-alpha.143", + "@deepkit/orm": "^1.0.1-alpha.143", + "@deepkit/orm-browser-api": "^1.0.1-alpha.143", + "@deepkit/orm-browser-gui": "^1.0.1-alpha.143", + "@deepkit/rpc": "^1.0.1-alpha.143", + "@deepkit/stopwatch": "^1.0.1-alpha.143", "@deepkit/topsort": "^1.0.1-alpha.121", - "@deepkit/type": "^1.0.1-alpha.142", - "@deepkit/type-compiler": "^1.0.1-alpha.142", + "@deepkit/type": "^1.0.1-alpha.143", + "@deepkit/type-compiler": "^1.0.1-alpha.143", "@deepkit/ui-library": "^1.0.1-alpha.56", "@types/dagre": "^0.7.44", "@types/file-saver": "^2.0.1", diff --git a/packages/framework/CHANGELOG.md b/packages/framework/CHANGELOG.md index f4e8dd752..19ba12a93 100644 --- a/packages/framework/CHANGELOG.md +++ b/packages/framework/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/framework + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/framework diff --git a/packages/framework/package.json b/packages/framework/package.json index cee3d652d..abc6a1798 100644 --- a/packages/framework/package.json +++ b/packages/framework/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/framework", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "type": "commonjs", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", @@ -44,11 +44,11 @@ "@deepkit/workflow": "^1.0.1-alpha.13" }, "dependencies": { - "@deepkit/api-console-module": "^1.0.1-alpha.142", - "@deepkit/framework-debug-api": "^1.0.1-alpha.142", - "@deepkit/framework-debug-gui": "^1.0.1-alpha.142", - "@deepkit/orm-browser-api": "^1.0.1-alpha.142", - "@deepkit/orm-browser-gui": "^1.0.1-alpha.142", + "@deepkit/api-console-module": "^1.0.1-alpha.143", + "@deepkit/framework-debug-api": "^1.0.1-alpha.143", + "@deepkit/framework-debug-gui": "^1.0.1-alpha.143", + "@deepkit/orm-browser-api": "^1.0.1-alpha.143", + "@deepkit/orm-browser-gui": "^1.0.1-alpha.143", "@types/ws": "^7.4.0", "buffer": "^5.2.1", "compression": "^1.7.4", @@ -65,24 +65,24 @@ "ws": "^7.4.2" }, "devDependencies": { - "@deepkit/app": "^1.0.1-alpha.142", - "@deepkit/broker": "^1.0.1-alpha.142", - "@deepkit/bson": "^1.0.1-alpha.142", - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/core-rxjs": "^1.0.1-alpha.124", - "@deepkit/event": "^1.0.1-alpha.142", - "@deepkit/filesystem": "^1.0.1-alpha.124", - "@deepkit/http": "^1.0.1-alpha.142", - "@deepkit/injector": "^1.0.1-alpha.142", - "@deepkit/logger": "^1.0.1-alpha.142", - "@deepkit/orm": "^1.0.1-alpha.142", - "@deepkit/rpc": "^1.0.1-alpha.142", - "@deepkit/rpc-tcp": "^1.0.1-alpha.142", - "@deepkit/sql": "^1.0.1-alpha.142", - "@deepkit/stopwatch": "^1.0.1-alpha.142", - "@deepkit/template": "^1.0.1-alpha.142", - "@deepkit/type": "^1.0.1-alpha.142", - "@deepkit/workflow": "^1.0.1-alpha.142", + "@deepkit/app": "^1.0.1-alpha.143", + "@deepkit/broker": "^1.0.1-alpha.143", + "@deepkit/bson": "^1.0.1-alpha.143", + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/core-rxjs": "^1.0.1-alpha.143", + "@deepkit/event": "^1.0.1-alpha.143", + "@deepkit/filesystem": "^1.0.1-alpha.143", + "@deepkit/http": "^1.0.1-alpha.143", + "@deepkit/injector": "^1.0.1-alpha.143", + "@deepkit/logger": "^1.0.1-alpha.143", + "@deepkit/orm": "^1.0.1-alpha.143", + "@deepkit/rpc": "^1.0.1-alpha.143", + "@deepkit/rpc-tcp": "^1.0.1-alpha.143", + "@deepkit/sql": "^1.0.1-alpha.143", + "@deepkit/stopwatch": "^1.0.1-alpha.143", + "@deepkit/template": "^1.0.1-alpha.143", + "@deepkit/type": "^1.0.1-alpha.143", + "@deepkit/workflow": "^1.0.1-alpha.143", "@types/clone": "^0.1.30", "@types/faker": "^5.1.6", "@types/fs-extra": "^9.0.1", diff --git a/packages/http/CHANGELOG.md b/packages/http/CHANGELOG.md index f04742baf..2c1f4f4a5 100644 --- a/packages/http/CHANGELOG.md +++ b/packages/http/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +### Bug Fixes + +- **http:** parameter service injection into route methods with encapsulated modules ([9c98f8b](https://github.com/deepkit/deepkit-framework/commit/9c98f8b110078ab35882fece44f45fde34a4feeb)) + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/http diff --git a/packages/http/package.json b/packages/http/package.json index 74f35e9af..78f043d3b 100644 --- a/packages/http/package.json +++ b/packages/http/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/http", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "description": "Deepkit HTTP server and router.", "type": "commonjs", "main": "./dist/cjs/index.js", @@ -39,15 +39,15 @@ "send": "^0.18.0" }, "devDependencies": { - "@deepkit/app": "^1.0.1-alpha.142", - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/event": "^1.0.1-alpha.142", - "@deepkit/injector": "^1.0.1-alpha.142", - "@deepkit/logger": "^1.0.1-alpha.142", - "@deepkit/stopwatch": "^1.0.1-alpha.142", - "@deepkit/template": "^1.0.1-alpha.142", - "@deepkit/type": "^1.0.1-alpha.142", - "@deepkit/workflow": "^1.0.1-alpha.142", + "@deepkit/app": "^1.0.1-alpha.143", + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/event": "^1.0.1-alpha.143", + "@deepkit/injector": "^1.0.1-alpha.143", + "@deepkit/logger": "^1.0.1-alpha.143", + "@deepkit/stopwatch": "^1.0.1-alpha.143", + "@deepkit/template": "^1.0.1-alpha.143", + "@deepkit/type": "^1.0.1-alpha.143", + "@deepkit/workflow": "^1.0.1-alpha.143", "@types/node": "20.6.0", "@types/send": "^0.14.6" }, diff --git a/packages/injector/CHANGELOG.md b/packages/injector/CHANGELOG.md index fafd84e2d..1ea74e483 100644 --- a/packages/injector/CHANGELOG.md +++ b/packages/injector/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +### Features + +- **injector:** improve set method api ([#557](https://github.com/deepkit/deepkit-framework/issues/557)) ([eb92e58](https://github.com/deepkit/deepkit-framework/commit/eb92e58a44a25170f29150aae89b2dfad33a3495)) + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/injector diff --git a/packages/injector/package.json b/packages/injector/package.json index e7d089620..5e5f4202b 100644 --- a/packages/injector/package.json +++ b/packages/injector/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/injector", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "description": "Deepkit Dependency Injection", "type": "commonjs", "main": "./dist/cjs/index.js", @@ -27,8 +27,8 @@ "@deepkit/type": "^1.0.1-alpha.13" }, "devDependencies": { - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/type": "^1.0.1-alpha.142", + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/type": "^1.0.1-alpha.143", "benchmark": "^2.1.4" }, "jest": { diff --git a/packages/logger/CHANGELOG.md b/packages/logger/CHANGELOG.md index d374014e0..fc40578a0 100644 --- a/packages/logger/CHANGELOG.md +++ b/packages/logger/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/logger + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/logger diff --git a/packages/logger/package.json b/packages/logger/package.json index 99741691d..c39dbc4bb 100644 --- a/packages/logger/package.json +++ b/packages/logger/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/logger", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "description": "Deepkit logger", "type": "commonjs", "main": "./dist/cjs/index.js", @@ -33,8 +33,8 @@ "format-util": "^1.0.5" }, "devDependencies": { - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/injector": "^1.0.1-alpha.142" + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/injector": "^1.0.1-alpha.143" }, "jest": { "testEnvironment": "node", diff --git a/packages/mongo/CHANGELOG.md b/packages/mongo/CHANGELOG.md index f6a79c52a..1357086da 100644 --- a/packages/mongo/CHANGELOG.md +++ b/packages/mongo/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +### Bug Fixes + +- **core:** don't include stack in formatError per default ([1b603ee](https://github.com/deepkit/deepkit-framework/commit/1b603eef2938ab010fb6d83836894ad5a1c236af)) + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/mongo diff --git a/packages/mongo/package.json b/packages/mongo/package.json index df25e0f34..9c9674503 100644 --- a/packages/mongo/package.json +++ b/packages/mongo/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/mongo", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "description": "Deepkit ORM MongoDB adapter", "type": "commonjs", "main": "./dist/cjs/index.js", @@ -33,11 +33,11 @@ "saslprep": "^1.0.3" }, "devDependencies": { - "@deepkit/bson": "^1.0.1-alpha.142", - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/orm": "^1.0.1-alpha.142", + "@deepkit/bson": "^1.0.1-alpha.143", + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/orm": "^1.0.1-alpha.143", "@deepkit/orm-integration": "^1.0.1-alpha.13", - "@deepkit/type": "^1.0.1-alpha.142", + "@deepkit/type": "^1.0.1-alpha.143", "@types/mongodb": "3.5.25", "@types/node": "20.6.0", "mongodb": "3.6.0" diff --git a/packages/mysql/CHANGELOG.md b/packages/mysql/CHANGELOG.md index cdc166fb9..8b2a00ea5 100644 --- a/packages/mysql/CHANGELOG.md +++ b/packages/mysql/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +### Features + +- **mysql, postgres:** add support for connection URLs ([2518670](https://github.com/deepkit/deepkit-framework/commit/25186701e3d6ea60ea232cbcc0c989e195df9edf)) + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/mysql diff --git a/packages/mysql/package.json b/packages/mysql/package.json index d5ec93bd7..d3841a32f 100644 --- a/packages/mysql/package.json +++ b/packages/mysql/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/mysql", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "description": "deepkit/orm MySQL adapter.", "type": "commonjs", "main": "./dist/cjs/index.js", @@ -34,12 +34,12 @@ "mariadb": "^3.2.3" }, "devDependencies": { - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/orm": "^1.0.1-alpha.142", + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/orm": "^1.0.1-alpha.143", "@deepkit/orm-integration": "^1.0.1-alpha.13", - "@deepkit/sql": "^1.0.1-alpha.142", - "@deepkit/stopwatch": "^1.0.1-alpha.142", - "@deepkit/type": "^1.0.1-alpha.142" + "@deepkit/sql": "^1.0.1-alpha.143", + "@deepkit/stopwatch": "^1.0.1-alpha.143", + "@deepkit/type": "^1.0.1-alpha.143" }, "jest": { "runner": "../../jest-serial-runner.js", diff --git a/packages/orm-browser-api/CHANGELOG.md b/packages/orm-browser-api/CHANGELOG.md index 00e6d004d..41ccae13b 100644 --- a/packages/orm-browser-api/CHANGELOG.md +++ b/packages/orm-browser-api/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/orm-browser-api + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/orm-browser-api diff --git a/packages/orm-browser-api/package.json b/packages/orm-browser-api/package.json index 2537abb56..36919e7cf 100644 --- a/packages/orm-browser-api/package.json +++ b/packages/orm-browser-api/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/orm-browser-api", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "type": "commonjs", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", @@ -28,9 +28,9 @@ "@deepkit/type": "^1.0.1-alpha.13" }, "devDependencies": { - "@deepkit/rpc": "^1.0.1-alpha.142", - "@deepkit/stopwatch": "^1.0.1-alpha.142", - "@deepkit/type": "^1.0.1-alpha.142" + "@deepkit/rpc": "^1.0.1-alpha.143", + "@deepkit/stopwatch": "^1.0.1-alpha.143", + "@deepkit/type": "^1.0.1-alpha.143" }, "jest": { "testEnvironment": "node", diff --git a/packages/orm-browser-gui/CHANGELOG.md b/packages/orm-browser-gui/CHANGELOG.md index ca4a71038..164017c5b 100644 --- a/packages/orm-browser-gui/CHANGELOG.md +++ b/packages/orm-browser-gui/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/orm-browser-gui + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/orm-browser-gui diff --git a/packages/orm-browser-gui/package.json b/packages/orm-browser-gui/package.json index 0d9b14418..743728766 100644 --- a/packages/orm-browser-gui/package.json +++ b/packages/orm-browser-gui/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/orm-browser-gui", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "scripts": { "ng": "ng", "start": "NODE_OPTIONS=--preserve-symlinks ng serve", @@ -33,21 +33,21 @@ "@angular/platform-browser": "^17.1.0", "@angular/platform-browser-dynamic": "^17.1.0", "@angular/router": "^17.1.0", - "@deepkit/bson": "^1.0.1-alpha.142", - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/core-rxjs": "^1.0.1-alpha.124", + "@deepkit/bson": "^1.0.1-alpha.143", + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/core-rxjs": "^1.0.1-alpha.143", "@deepkit/crypto": "^1.0.1-alpha.89", - "@deepkit/desktop-ui": "^1.0.1-alpha.142", - "@deepkit/event": "^1.0.1-alpha.142", - "@deepkit/injector": "^1.0.1-alpha.142", - "@deepkit/logger": "^1.0.1-alpha.142", - "@deepkit/orm": "^1.0.1-alpha.142", - "@deepkit/orm-browser-api": "^1.0.1-alpha.142", - "@deepkit/rpc": "^1.0.1-alpha.142", - "@deepkit/stopwatch": "^1.0.1-alpha.142", + "@deepkit/desktop-ui": "^1.0.1-alpha.143", + "@deepkit/event": "^1.0.1-alpha.143", + "@deepkit/injector": "^1.0.1-alpha.143", + "@deepkit/logger": "^1.0.1-alpha.143", + "@deepkit/orm": "^1.0.1-alpha.143", + "@deepkit/orm-browser-api": "^1.0.1-alpha.143", + "@deepkit/rpc": "^1.0.1-alpha.143", + "@deepkit/stopwatch": "^1.0.1-alpha.143", "@deepkit/topsort": "^1.0.1-alpha.121", - "@deepkit/type": "^1.0.1-alpha.142", - "@deepkit/type-compiler": "^1.0.1-alpha.142", + "@deepkit/type": "^1.0.1-alpha.143", + "@deepkit/type-compiler": "^1.0.1-alpha.143", "@types/dagre": "^0.7.44", "@types/file-saver": "^2.0.2", "@types/jasmine": "~4.3.0", diff --git a/packages/orm-browser/CHANGELOG.md b/packages/orm-browser/CHANGELOG.md index 4aca6fe9f..a79b672d4 100644 --- a/packages/orm-browser/CHANGELOG.md +++ b/packages/orm-browser/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/orm-browser + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/orm-browser diff --git a/packages/orm-browser/package.json b/packages/orm-browser/package.json index a75f62b7b..34146b5d7 100644 --- a/packages/orm-browser/package.json +++ b/packages/orm-browser/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/orm-browser", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "description": "ORM Browser", "type": "commonjs", "main": "./dist/cjs/index.js", @@ -36,20 +36,20 @@ "@deepkit/type": "^1.0.1-alpha.43" }, "dependencies": { - "@deepkit/orm-browser-gui": "^1.0.1-alpha.142" + "@deepkit/orm-browser-gui": "^1.0.1-alpha.143" }, "devDependencies": { - "@deepkit/app": "^1.0.1-alpha.142", - "@deepkit/broker": "^1.0.1-alpha.142", - "@deepkit/bson": "^1.0.1-alpha.142", - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/framework": "^1.0.1-alpha.142", - "@deepkit/http": "^1.0.1-alpha.142", - "@deepkit/injector": "^1.0.1-alpha.142", - "@deepkit/logger": "^1.0.1-alpha.142", - "@deepkit/orm": "^1.0.1-alpha.142", - "@deepkit/rpc": "^1.0.1-alpha.142", - "@deepkit/type": "^1.0.1-alpha.142", + "@deepkit/app": "^1.0.1-alpha.143", + "@deepkit/broker": "^1.0.1-alpha.143", + "@deepkit/bson": "^1.0.1-alpha.143", + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/framework": "^1.0.1-alpha.143", + "@deepkit/http": "^1.0.1-alpha.143", + "@deepkit/injector": "^1.0.1-alpha.143", + "@deepkit/logger": "^1.0.1-alpha.143", + "@deepkit/orm": "^1.0.1-alpha.143", + "@deepkit/rpc": "^1.0.1-alpha.143", + "@deepkit/type": "^1.0.1-alpha.143", "@types/node": "20.6.0", "rxjs": "~7.8.0" }, diff --git a/packages/orm/CHANGELOG.md b/packages/orm/CHANGELOG.md index 3974eb63a..e69f36ac6 100644 --- a/packages/orm/CHANGELOG.md +++ b/packages/orm/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/orm + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/orm diff --git a/packages/orm/package.json b/packages/orm/package.json index b8a1b970b..569bb3863 100644 --- a/packages/orm/package.json +++ b/packages/orm/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/orm", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "description": "Deepkit ORM, the fastest JIT-based ORM for Typescript", "type": "commonjs", "main": "./dist/cjs/index.js", @@ -36,12 +36,12 @@ "sift": "^7.0.1" }, "devDependencies": { - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/event": "^1.0.1-alpha.142", - "@deepkit/injector": "^1.0.1-alpha.142", - "@deepkit/logger": "^1.0.1-alpha.142", - "@deepkit/stopwatch": "^1.0.1-alpha.142", - "@deepkit/type": "^1.0.1-alpha.142", + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/event": "^1.0.1-alpha.143", + "@deepkit/injector": "^1.0.1-alpha.143", + "@deepkit/logger": "^1.0.1-alpha.143", + "@deepkit/stopwatch": "^1.0.1-alpha.143", + "@deepkit/type": "^1.0.1-alpha.143", "@types/sqlstring": "^2.2.1", "conditional-type-checks": "^1.0.5" }, diff --git a/packages/postgres/CHANGELOG.md b/packages/postgres/CHANGELOG.md index 86a587579..00380fc46 100644 --- a/packages/postgres/CHANGELOG.md +++ b/packages/postgres/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +### Features + +- **mysql, postgres:** add support for connection URLs ([2518670](https://github.com/deepkit/deepkit-framework/commit/25186701e3d6ea60ea232cbcc0c989e195df9edf)) + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/postgres diff --git a/packages/postgres/package.json b/packages/postgres/package.json index 58873796a..a32dd09d2 100644 --- a/packages/postgres/package.json +++ b/packages/postgres/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/postgres", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "description": "deepkit/orm PostgreSQL adapter", "type": "commonjs", "main": "./dist/cjs/index.js", @@ -36,12 +36,12 @@ "sqlstring": "^2.3.2" }, "devDependencies": { - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/orm": "^1.0.1-alpha.142", + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/orm": "^1.0.1-alpha.143", "@deepkit/orm-integration": "^1.0.1-alpha.13", - "@deepkit/sql": "^1.0.1-alpha.142", - "@deepkit/stopwatch": "^1.0.1-alpha.142", - "@deepkit/type": "^1.0.1-alpha.142", + "@deepkit/sql": "^1.0.1-alpha.143", + "@deepkit/stopwatch": "^1.0.1-alpha.143", + "@deepkit/type": "^1.0.1-alpha.143", "@types/sqlstring": "^2.2.1" }, "jest": { diff --git a/packages/rpc-tcp/CHANGELOG.md b/packages/rpc-tcp/CHANGELOG.md index b48ed972e..70b66f2cd 100644 --- a/packages/rpc-tcp/CHANGELOG.md +++ b/packages/rpc-tcp/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/rpc-tcp + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/rpc-tcp diff --git a/packages/rpc-tcp/package.json b/packages/rpc-tcp/package.json index ac3c5536c..99188d0a5 100644 --- a/packages/rpc-tcp/package.json +++ b/packages/rpc-tcp/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/rpc-tcp", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "type": "commonjs", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", @@ -30,7 +30,7 @@ "ws": "^8.6.0" }, "devDependencies": { - "@deepkit/rpc": "^1.0.1-alpha.142" + "@deepkit/rpc": "^1.0.1-alpha.143" }, "jest": { "testEnvironment": "node", diff --git a/packages/rpc/CHANGELOG.md b/packages/rpc/CHANGELOG.md index e80b27962..7049786c4 100644 --- a/packages/rpc/CHANGELOG.md +++ b/packages/rpc/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/rpc + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/rpc diff --git a/packages/rpc/package.json b/packages/rpc/package.json index 70086e7e1..3a4574853 100644 --- a/packages/rpc/package.json +++ b/packages/rpc/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/rpc", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "type": "commonjs", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", @@ -34,12 +34,12 @@ "dot-prop": "^5.1.1" }, "devDependencies": { - "@deepkit/bson": "^1.0.1-alpha.142", - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/core-rxjs": "^1.0.1-alpha.124", - "@deepkit/injector": "^1.0.1-alpha.142", - "@deepkit/logger": "^1.0.1-alpha.142", - "@deepkit/type": "^1.0.1-alpha.142", + "@deepkit/bson": "^1.0.1-alpha.143", + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/core-rxjs": "^1.0.1-alpha.143", + "@deepkit/injector": "^1.0.1-alpha.143", + "@deepkit/logger": "^1.0.1-alpha.143", + "@deepkit/type": "^1.0.1-alpha.143", "@types/dot-prop": "^5.0.1", "@types/fs-extra": "^9.0.1", "@types/node": "20.6.0", diff --git a/packages/sql/CHANGELOG.md b/packages/sql/CHANGELOG.md index 5f3478ff3..89ca85c04 100644 --- a/packages/sql/CHANGELOG.md +++ b/packages/sql/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/sql + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/sql diff --git a/packages/sql/package.json b/packages/sql/package.json index dee474cfc..e54b3d5df 100644 --- a/packages/sql/package.json +++ b/packages/sql/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/sql", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "description": "deepkit/orm base SQL", "type": "commonjs", "main": "./dist/cjs/index.js", @@ -49,13 +49,13 @@ "sqlstring-sqlite": "^0.1.1" }, "devDependencies": { - "@deepkit/app": "^1.0.1-alpha.142", - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/injector": "^1.0.1-alpha.142", - "@deepkit/logger": "^1.0.1-alpha.142", - "@deepkit/orm": "^1.0.1-alpha.142", - "@deepkit/stopwatch": "^1.0.1-alpha.142", - "@deepkit/type": "^1.0.1-alpha.142" + "@deepkit/app": "^1.0.1-alpha.143", + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/injector": "^1.0.1-alpha.143", + "@deepkit/logger": "^1.0.1-alpha.143", + "@deepkit/orm": "^1.0.1-alpha.143", + "@deepkit/stopwatch": "^1.0.1-alpha.143", + "@deepkit/type": "^1.0.1-alpha.143" }, "jest": { "runner": "../../jest-serial-runner.js", diff --git a/packages/sqlite/CHANGELOG.md b/packages/sqlite/CHANGELOG.md index 9b2f8cb64..0a6123435 100644 --- a/packages/sqlite/CHANGELOG.md +++ b/packages/sqlite/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +### Features + +- **mysql, postgres:** add support for connection URLs ([2518670](https://github.com/deepkit/deepkit-framework/commit/25186701e3d6ea60ea232cbcc0c989e195df9edf)) + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/sqlite diff --git a/packages/sqlite/package.json b/packages/sqlite/package.json index d587690d4..752e04113 100644 --- a/packages/sqlite/package.json +++ b/packages/sqlite/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/sqlite", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "description": "deepkit/orm SQLite adapter", "type": "commonjs", "main": "./dist/cjs/index.js", @@ -36,12 +36,12 @@ "sqlstring-sqlite": "^0.1.1" }, "devDependencies": { - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/orm": "^1.0.1-alpha.142", + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/orm": "^1.0.1-alpha.143", "@deepkit/orm-integration": "^1.0.1-alpha.13", - "@deepkit/sql": "^1.0.1-alpha.142", - "@deepkit/stopwatch": "^1.0.1-alpha.142", - "@deepkit/type": "^1.0.1-alpha.142" + "@deepkit/sql": "^1.0.1-alpha.143", + "@deepkit/stopwatch": "^1.0.1-alpha.143", + "@deepkit/type": "^1.0.1-alpha.143" }, "jest": { "runner": "../../jest-serial-runner.js", diff --git a/packages/stopwatch/CHANGELOG.md b/packages/stopwatch/CHANGELOG.md index ac8d3e46f..9dadbd685 100644 --- a/packages/stopwatch/CHANGELOG.md +++ b/packages/stopwatch/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/stopwatch + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/stopwatch diff --git a/packages/stopwatch/package.json b/packages/stopwatch/package.json index 11cad85b1..f61b5d744 100644 --- a/packages/stopwatch/package.json +++ b/packages/stopwatch/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/stopwatch", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "description": "Deepkit Stopwatch", "type": "commonjs", "main": "./dist/cjs/index.js", @@ -27,8 +27,8 @@ "@deepkit/type": "^1.0.1-alpha.13" }, "devDependencies": { - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/type": "^1.0.1-alpha.142" + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/type": "^1.0.1-alpha.143" }, "jest": { "testEnvironment": "node", diff --git a/packages/template/CHANGELOG.md b/packages/template/CHANGELOG.md index 1f12eebfe..2eb9dd271 100644 --- a/packages/template/CHANGELOG.md +++ b/packages/template/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/template + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/template diff --git a/packages/template/package.json b/packages/template/package.json index 527d545c6..703b682df 100644 --- a/packages/template/package.json +++ b/packages/template/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/template", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "description": "Deepkit template engine based on TSX", "type": "commonjs", "main": "./dist/cjs/index.js", @@ -38,10 +38,10 @@ "abstract-syntax-tree": "^2.9.4" }, "devDependencies": { - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/injector": "^1.0.1-alpha.142", - "@deepkit/stopwatch": "^1.0.1-alpha.142", - "@deepkit/type": "^1.0.1-alpha.142" + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/injector": "^1.0.1-alpha.143", + "@deepkit/stopwatch": "^1.0.1-alpha.143", + "@deepkit/type": "^1.0.1-alpha.143" }, "jest": { "transform": { diff --git a/packages/type-angular/CHANGELOG.md b/packages/type-angular/CHANGELOG.md index 33c9c4c0e..4e3a7680c 100644 --- a/packages/type-angular/CHANGELOG.md +++ b/packages/type-angular/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/type-angular + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/type-angular diff --git a/packages/type-angular/package.json b/packages/type-angular/package.json index cf0961896..15a62ea18 100644 --- a/packages/type-angular/package.json +++ b/packages/type-angular/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/type-angular", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "description": "Types angular forms", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -19,8 +19,8 @@ "devDependencies": { "@angular/core": "^17.1.0", "@angular/forms": "^17.1.0", - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/type": "^1.0.1-alpha.142", + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/type": "^1.0.1-alpha.143", "rxjs": "*" }, "jest": { diff --git a/packages/type-compiler/CHANGELOG.md b/packages/type-compiler/CHANGELOG.md index 6e65d84c9..aaf75eda9 100644 --- a/packages/type-compiler/CHANGELOG.md +++ b/packages/type-compiler/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +### Bug Fixes + +- **type-compiler:** also parse tsx source files ([80464bf](https://github.com/deepkit/deepkit-framework/commit/80464bf2bd38477e7ce7898fde17b6d6738007f7)), closes [#560](https://github.com/deepkit/deepkit-framework/issues/560) + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) ### Bug Fixes diff --git a/packages/type-compiler/package.json b/packages/type-compiler/package.json index 372077b14..55de4d5dc 100644 --- a/packages/type-compiler/package.json +++ b/packages/type-compiler/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/type-compiler", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "description": "Deepkit/type compiler/Typescript transformer", "type": "commonjs", "main": "./dist/cjs/index.js", diff --git a/packages/type/CHANGELOG.md b/packages/type/CHANGELOG.md index 68b203282..dc4f43938 100644 --- a/packages/type/CHANGELOG.md +++ b/packages/type/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +### Bug Fixes + +- **type:** union expansions in intersections ([332b26e](https://github.com/deepkit/deepkit-framework/commit/332b26eb148d916d03f49fad0daaad083c24207a)), closes [#556](https://github.com/deepkit/deepkit-framework/issues/556) + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/type diff --git a/packages/type/package.json b/packages/type/package.json index 9dd4fa13e..86351f21e 100644 --- a/packages/type/package.json +++ b/packages/type/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/type", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "description": "@deepkit/type, the fastest universal TypeScript serializer and validator with JIT engine for frontend, backend, http-transport, RPC, and database, with built-in validations, for Browser/NodeJS.", "type": "commonjs", "main": "./dist/cjs/index.js", @@ -33,8 +33,8 @@ "uuid": "^8.3.2" }, "devDependencies": { - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/type-compiler": "^1.0.1-alpha.142", + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/type-compiler": "^1.0.1-alpha.143", "@types/lz-string": "^1.3.34", "@types/node": "20.6.0", "@typescript/vfs": "^1.5.0", diff --git a/packages/vite/CHANGELOG.md b/packages/vite/CHANGELOG.md index b70e61a87..bd820dc9a 100644 --- a/packages/vite/CHANGELOG.md +++ b/packages/vite/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/vite + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/vite diff --git a/packages/vite/package.json b/packages/vite/package.json index 87940b8b1..059fc852e 100644 --- a/packages/vite/package.json +++ b/packages/vite/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/vite", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "description": "Deepkit Vite Plugin for Deepkit Runtime Types support", "type": "commonjs", "main": "./dist/cjs/index.js", @@ -30,7 +30,7 @@ "@rollup/pluginutils": "^5.0.2" }, "devDependencies": { - "@deepkit/type-compiler": "^1.0.1-alpha.142", + "@deepkit/type-compiler": "^1.0.1-alpha.143", "vite": "^4.0.0" }, "jest": { diff --git a/packages/workflow/CHANGELOG.md b/packages/workflow/CHANGELOG.md index a2555bfaf..d53abf12b 100644 --- a/packages/workflow/CHANGELOG.md +++ b/packages/workflow/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.1-alpha.143](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.142...v1.0.1-alpha.143) (2024-03-17) + +**Note:** Version bump only for package @deepkit/workflow + ## [1.0.1-alpha.142](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.141...v1.0.1-alpha.142) (2024-03-06) **Note:** Version bump only for package @deepkit/workflow diff --git a/packages/workflow/package.json b/packages/workflow/package.json index 635dfe4fb..5bc78c013 100644 --- a/packages/workflow/package.json +++ b/packages/workflow/package.json @@ -1,6 +1,6 @@ { "name": "@deepkit/workflow", - "version": "1.0.1-alpha.142", + "version": "1.0.1-alpha.143", "description": "Deepkit workflow engine / finite state machine", "type": "commonjs", "main": "./dist/cjs/index.js", @@ -30,11 +30,11 @@ "@deepkit/type": "^1.0.1-alpha.13" }, "devDependencies": { - "@deepkit/core": "^1.0.1-alpha.124", - "@deepkit/event": "^1.0.1-alpha.142", - "@deepkit/injector": "^1.0.1-alpha.142", - "@deepkit/stopwatch": "^1.0.1-alpha.142", - "@deepkit/type": "^1.0.1-alpha.142" + "@deepkit/core": "^1.0.1-alpha.143", + "@deepkit/event": "^1.0.1-alpha.143", + "@deepkit/injector": "^1.0.1-alpha.143", + "@deepkit/stopwatch": "^1.0.1-alpha.143", + "@deepkit/type": "^1.0.1-alpha.143" }, "jest": { "testEnvironment": "node", diff --git a/yarn.lock b/yarn.lock index 9a112ccb0..22100a82f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2734,16 +2734,16 @@ __metadata: languageName: node linkType: hard -"@deepkit/api-console-api@npm:^1.0.1-alpha.142, @deepkit/api-console-api@workspace:packages/api-console-api": +"@deepkit/api-console-api@npm:^1.0.1-alpha.143, @deepkit/api-console-api@workspace:packages/api-console-api": version: 0.0.0-use.local resolution: "@deepkit/api-console-api@workspace:packages/api-console-api" dependencies: - "@deepkit/bson": "npm:^1.0.1-alpha.142" - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/injector": "npm:^1.0.1-alpha.142" - "@deepkit/logger": "npm:^1.0.1-alpha.142" - "@deepkit/rpc": "npm:^1.0.1-alpha.142" - "@deepkit/type": "npm:^1.0.1-alpha.142" + "@deepkit/bson": "npm:^1.0.1-alpha.143" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/injector": "npm:^1.0.1-alpha.143" + "@deepkit/logger": "npm:^1.0.1-alpha.143" + "@deepkit/rpc": "npm:^1.0.1-alpha.143" + "@deepkit/type": "npm:^1.0.1-alpha.143" peerDependencies: "@deepkit/bson": ^1.0.1-alpha.43 "@deepkit/core": ^1.0.1-alpha.43 @@ -2754,7 +2754,7 @@ __metadata: languageName: unknown linkType: soft -"@deepkit/api-console-gui@npm:^1.0.1-alpha.142, @deepkit/api-console-gui@workspace:packages/api-console-gui": +"@deepkit/api-console-gui@npm:^1.0.1-alpha.143, @deepkit/api-console-gui@workspace:packages/api-console-gui": version: 0.0.0-use.local resolution: "@deepkit/api-console-gui@workspace:packages/api-console-gui" dependencies: @@ -2770,18 +2770,18 @@ __metadata: "@angular/platform-browser": "npm:^17.1.0" "@angular/platform-browser-dynamic": "npm:^17.1.0" "@angular/router": "npm:^17.1.0" - "@deepkit/api-console-api": "npm:^1.0.1-alpha.142" - "@deepkit/bson": "npm:^1.0.1-alpha.142" - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/core-rxjs": "npm:^1.0.1-alpha.124" - "@deepkit/desktop-ui": "npm:^1.0.1-alpha.142" - "@deepkit/event": "npm:^1.0.1-alpha.142" - "@deepkit/injector": "npm:^1.0.1-alpha.142" - "@deepkit/logger": "npm:^1.0.1-alpha.142" - "@deepkit/rpc": "npm:^1.0.1-alpha.142" - "@deepkit/stopwatch": "npm:^1.0.1-alpha.142" - "@deepkit/type": "npm:^1.0.1-alpha.142" - "@deepkit/type-compiler": "npm:^1.0.1-alpha.142" + "@deepkit/api-console-api": "npm:^1.0.1-alpha.143" + "@deepkit/bson": "npm:^1.0.1-alpha.143" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/core-rxjs": "npm:^1.0.1-alpha.143" + "@deepkit/desktop-ui": "npm:^1.0.1-alpha.143" + "@deepkit/event": "npm:^1.0.1-alpha.143" + "@deepkit/injector": "npm:^1.0.1-alpha.143" + "@deepkit/logger": "npm:^1.0.1-alpha.143" + "@deepkit/rpc": "npm:^1.0.1-alpha.143" + "@deepkit/stopwatch": "npm:^1.0.1-alpha.143" + "@deepkit/type": "npm:^1.0.1-alpha.143" + "@deepkit/type-compiler": "npm:^1.0.1-alpha.143" "@deepkit/ui-library": "npm:^1.0.1-alpha.56" "@types/jasmine": "npm:~4.3.0" "@types/marked": "npm:^4.0.3" @@ -2803,21 +2803,21 @@ __metadata: languageName: unknown linkType: soft -"@deepkit/api-console-module@npm:^1.0.1-alpha.142, @deepkit/api-console-module@npm:^1.0.1-alpha.43, @deepkit/api-console-module@workspace:packages/api-console-module": +"@deepkit/api-console-module@npm:^1.0.1-alpha.143, @deepkit/api-console-module@npm:^1.0.1-alpha.43, @deepkit/api-console-module@workspace:packages/api-console-module": version: 0.0.0-use.local resolution: "@deepkit/api-console-module@workspace:packages/api-console-module" dependencies: - "@deepkit/api-console-api": "npm:^1.0.1-alpha.142" - "@deepkit/api-console-gui": "npm:^1.0.1-alpha.142" - "@deepkit/app": "npm:^1.0.1-alpha.142" - "@deepkit/broker": "npm:^1.0.1-alpha.142" - "@deepkit/bson": "npm:^1.0.1-alpha.142" - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/http": "npm:^1.0.1-alpha.142" - "@deepkit/injector": "npm:^1.0.1-alpha.142" - "@deepkit/logger": "npm:^1.0.1-alpha.142" - "@deepkit/rpc": "npm:^1.0.1-alpha.142" - "@deepkit/type": "npm:^1.0.1-alpha.142" + "@deepkit/api-console-api": "npm:^1.0.1-alpha.143" + "@deepkit/api-console-gui": "npm:^1.0.1-alpha.143" + "@deepkit/app": "npm:^1.0.1-alpha.143" + "@deepkit/broker": "npm:^1.0.1-alpha.143" + "@deepkit/bson": "npm:^1.0.1-alpha.143" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/http": "npm:^1.0.1-alpha.143" + "@deepkit/injector": "npm:^1.0.1-alpha.143" + "@deepkit/logger": "npm:^1.0.1-alpha.143" + "@deepkit/rpc": "npm:^1.0.1-alpha.143" + "@deepkit/type": "npm:^1.0.1-alpha.143" rxjs: "npm:~7.8.0" peerDependencies: "@deepkit/app": ^1.0.1-alpha.43 @@ -2832,17 +2832,17 @@ __metadata: languageName: unknown linkType: soft -"@deepkit/app@npm:^1.0.1-alpha.0, @deepkit/app@npm:^1.0.1-alpha.102, @deepkit/app@npm:^1.0.1-alpha.142, @deepkit/app@npm:^1.0.1-alpha.96, @deepkit/app@workspace:packages/app": +"@deepkit/app@npm:^1.0.1-alpha.0, @deepkit/app@npm:^1.0.1-alpha.102, @deepkit/app@npm:^1.0.1-alpha.143, @deepkit/app@npm:^1.0.1-alpha.96, @deepkit/app@workspace:packages/app": version: 0.0.0-use.local resolution: "@deepkit/app@workspace:packages/app" dependencies: - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/event": "npm:^1.0.1-alpha.142" - "@deepkit/injector": "npm:^1.0.1-alpha.142" - "@deepkit/logger": "npm:^1.0.1-alpha.142" - "@deepkit/stopwatch": "npm:^1.0.1-alpha.142" - "@deepkit/type": "npm:^1.0.1-alpha.142" - "@deepkit/workflow": "npm:^1.0.1-alpha.142" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/event": "npm:^1.0.1-alpha.143" + "@deepkit/injector": "npm:^1.0.1-alpha.143" + "@deepkit/logger": "npm:^1.0.1-alpha.143" + "@deepkit/stopwatch": "npm:^1.0.1-alpha.143" + "@deepkit/type": "npm:^1.0.1-alpha.143" + "@deepkit/workflow": "npm:^1.0.1-alpha.143" conditional-type-checks: "npm:^1.0.5" peerDependencies: "@deepkit/core": ^1.0.1-alpha.13 @@ -2855,16 +2855,16 @@ __metadata: languageName: unknown linkType: soft -"@deepkit/broker@npm:^1.0.1-alpha.0, @deepkit/broker@npm:^1.0.1-alpha.142, @deepkit/broker@workspace:packages/broker": +"@deepkit/broker@npm:^1.0.1-alpha.0, @deepkit/broker@npm:^1.0.1-alpha.143, @deepkit/broker@workspace:packages/broker": version: 0.0.0-use.local resolution: "@deepkit/broker@workspace:packages/broker" dependencies: - "@deepkit/bson": "npm:^1.0.1-alpha.142" - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/core-rxjs": "npm:^1.0.1-alpha.124" - "@deepkit/event": "npm:^1.0.1-alpha.142" - "@deepkit/rpc": "npm:^1.0.1-alpha.142" - "@deepkit/type": "npm:^1.0.1-alpha.142" + "@deepkit/bson": "npm:^1.0.1-alpha.143" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/core-rxjs": "npm:^1.0.1-alpha.143" + "@deepkit/event": "npm:^1.0.1-alpha.143" + "@deepkit/rpc": "npm:^1.0.1-alpha.143" + "@deepkit/type": "npm:^1.0.1-alpha.143" "@lukeed/ms": "npm:^2.0.1" js-xxhash: "npm:3.0.1" peerDependencies: @@ -2879,12 +2879,12 @@ __metadata: languageName: unknown linkType: soft -"@deepkit/bson@npm:^1.0.1-alpha.0, @deepkit/bson@npm:^1.0.1-alpha.142, @deepkit/bson@workspace:packages/bson": +"@deepkit/bson@npm:^1.0.1-alpha.0, @deepkit/bson@npm:^1.0.1-alpha.143, @deepkit/bson@workspace:packages/bson": version: 0.0.0-use.local resolution: "@deepkit/bson@workspace:packages/bson" dependencies: - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/type": "npm:^1.0.1-alpha.142" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/type": "npm:^1.0.1-alpha.143" "@types/bson": "npm:^4.0.3" "@types/node": "npm:20.6.0" bson: "npm:^4.4.0" @@ -2898,7 +2898,7 @@ __metadata: version: 0.0.0-use.local resolution: "@deepkit/bun@workspace:packages/bun" dependencies: - "@deepkit/type-compiler": "npm:^1.0.1-alpha.142" + "@deepkit/type-compiler": "npm:^1.0.1-alpha.143" bun-types: "npm:1.0.6" peerDependencies: "@deepkit/type-compiler": ^1.0.1-alpha.93 @@ -2906,11 +2906,11 @@ __metadata: languageName: unknown linkType: soft -"@deepkit/core-rxjs@npm:^1.0.1-alpha.0, @deepkit/core-rxjs@npm:^1.0.1-alpha.124, @deepkit/core-rxjs@workspace:packages/core-rxjs": +"@deepkit/core-rxjs@npm:^1.0.1-alpha.0, @deepkit/core-rxjs@npm:^1.0.1-alpha.143, @deepkit/core-rxjs@workspace:packages/core-rxjs": version: 0.0.0-use.local resolution: "@deepkit/core-rxjs@workspace:packages/core-rxjs" dependencies: - "@deepkit/core": "npm:^1.0.1-alpha.124" + "@deepkit/core": "npm:^1.0.1-alpha.143" rxjs: "npm:~7.8.0" peerDependencies: "@deepkit/core": ^1.0.1-alpha.0 @@ -2918,7 +2918,7 @@ __metadata: languageName: unknown linkType: soft -"@deepkit/core@npm:^1.0.1-alpha.0, @deepkit/core@npm:^1.0.1-alpha.100, @deepkit/core@npm:^1.0.1-alpha.124, @deepkit/core@npm:^1.0.1-alpha.13, @deepkit/core@npm:^1.0.1-alpha.52, @deepkit/core@workspace:packages/core": +"@deepkit/core@npm:^1.0.1-alpha.0, @deepkit/core@npm:^1.0.1-alpha.100, @deepkit/core@npm:^1.0.1-alpha.13, @deepkit/core@npm:^1.0.1-alpha.143, @deepkit/core@npm:^1.0.1-alpha.52, @deepkit/core@workspace:packages/core": version: 0.0.0-use.local resolution: "@deepkit/core@workspace:packages/core" dependencies: @@ -2932,10 +2932,10 @@ __metadata: version: 0.0.0-use.local resolution: "@deepkit/create-app@workspace:packages/create-app" dependencies: - "@deepkit/app": "npm:^1.0.1-alpha.142" - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/logger": "npm:^1.0.1-alpha.142" - "@deepkit/type": "npm:^1.0.1-alpha.142" + "@deepkit/app": "npm:^1.0.1-alpha.143" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/logger": "npm:^1.0.1-alpha.143" + "@deepkit/type": "npm:^1.0.1-alpha.143" "@types/fs-extra": "npm:^9.0.13" fs-extra: "npm:^9.1.0" bin: @@ -2950,7 +2950,7 @@ __metadata: languageName: node linkType: hard -"@deepkit/desktop-ui@npm:^1.0.1-alpha.102, @deepkit/desktop-ui@npm:^1.0.1-alpha.142, @deepkit/desktop-ui@npm:^1.0.1-alpha.48, @deepkit/desktop-ui@workspace:packages/desktop-ui": +"@deepkit/desktop-ui@npm:^1.0.1-alpha.102, @deepkit/desktop-ui@npm:^1.0.1-alpha.143, @deepkit/desktop-ui@npm:^1.0.1-alpha.48, @deepkit/desktop-ui@workspace:packages/desktop-ui": version: 0.0.0-use.local resolution: "@deepkit/desktop-ui@workspace:packages/desktop-ui" dependencies: @@ -2966,10 +2966,10 @@ __metadata: "@angular/platform-browser": "npm:^17.1.0" "@angular/platform-browser-dynamic": "npm:^17.1.0" "@angular/router": "npm:^17.1.0" - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/core-rxjs": "npm:^1.0.1-alpha.124" - "@deepkit/event": "npm:^1.0.1-alpha.142" - "@deepkit/type": "npm:^1.0.1-alpha.142" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/core-rxjs": "npm:^1.0.1-alpha.143" + "@deepkit/event": "npm:^1.0.1-alpha.143" + "@deepkit/type": "npm:^1.0.1-alpha.143" "@types/fs-extra": "npm:^8.0.1" "@types/hammerjs": "npm:^2.0.36" "@types/node": "npm:20.6.0" @@ -2999,13 +2999,13 @@ __metadata: languageName: unknown linkType: soft -"@deepkit/event@npm:^1.0.1-alpha.0, @deepkit/event@npm:^1.0.1-alpha.102, @deepkit/event@npm:^1.0.1-alpha.142, @deepkit/event@workspace:packages/event": +"@deepkit/event@npm:^1.0.1-alpha.0, @deepkit/event@npm:^1.0.1-alpha.102, @deepkit/event@npm:^1.0.1-alpha.143, @deepkit/event@workspace:packages/event": version: 0.0.0-use.local resolution: "@deepkit/event@workspace:packages/event" dependencies: - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/injector": "npm:^1.0.1-alpha.142" - "@deepkit/type": "npm:^1.0.1-alpha.142" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/injector": "npm:^1.0.1-alpha.143" + "@deepkit/type": "npm:^1.0.1-alpha.143" peerDependencies: "@deepkit/core": ^1.0.1-alpha.13 "@deepkit/injector": ^1.0.1-alpha.13 @@ -3052,8 +3052,8 @@ __metadata: resolution: "@deepkit/filesystem-aws-s3@workspace:packages/filesystem-aws-s3" dependencies: "@aws-sdk/client-s3": "npm:^3.0.0" - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/filesystem": "npm:^1.0.1-alpha.124" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/filesystem": "npm:^1.0.1-alpha.143" languageName: unknown linkType: soft @@ -3061,8 +3061,8 @@ __metadata: version: 0.0.0-use.local resolution: "@deepkit/filesystem-fstp@workspace:packages/filesystem-sftp" dependencies: - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/filesystem": "npm:^1.0.1-alpha.124" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/filesystem": "npm:^1.0.1-alpha.143" "@types/ssh2-sftp-client": "npm:^9.0.1" ssh2-sftp-client: "npm:^9.1.0" languageName: unknown @@ -3072,8 +3072,8 @@ __metadata: version: 0.0.0-use.local resolution: "@deepkit/filesystem-ftp@workspace:packages/filesystem-ftp" dependencies: - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/filesystem": "npm:^1.0.1-alpha.124" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/filesystem": "npm:^1.0.1-alpha.143" basic-ftp: "npm:^5.0.3" languageName: unknown linkType: soft @@ -3082,8 +3082,8 @@ __metadata: version: 0.0.0-use.local resolution: "@deepkit/filesystem-google@workspace:packages/filesystem-google" dependencies: - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/filesystem": "npm:^1.0.1-alpha.124" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/filesystem": "npm:^1.0.1-alpha.143" "@google-cloud/storage": "npm:^7.2.0" "@types/node": "npm:20.6.0" bignumber.js: "npm:^9.1.2" @@ -3091,28 +3091,28 @@ __metadata: languageName: unknown linkType: soft -"@deepkit/filesystem@npm:^1.0.1-alpha.0, @deepkit/filesystem@npm:^1.0.1-alpha.124, @deepkit/filesystem@workspace:packages/filesystem": +"@deepkit/filesystem@npm:^1.0.1-alpha.0, @deepkit/filesystem@npm:^1.0.1-alpha.143, @deepkit/filesystem@workspace:packages/filesystem": version: 0.0.0-use.local resolution: "@deepkit/filesystem@workspace:packages/filesystem" dependencies: - "@deepkit/core": "npm:^1.0.1-alpha.124" + "@deepkit/core": "npm:^1.0.1-alpha.143" peerDependencies: "@deepkit/core": ^1.0.1-alpha.13 languageName: unknown linkType: soft -"@deepkit/framework-debug-api@npm:^1.0.1-alpha.142, @deepkit/framework-debug-api@workspace:packages/framework-debug-api": +"@deepkit/framework-debug-api@npm:^1.0.1-alpha.143, @deepkit/framework-debug-api@workspace:packages/framework-debug-api": version: 0.0.0-use.local resolution: "@deepkit/framework-debug-api@workspace:packages/framework-debug-api" dependencies: - "@deepkit/bson": "npm:^1.0.1-alpha.142" - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/core-rxjs": "npm:^1.0.1-alpha.124" - "@deepkit/injector": "npm:^1.0.1-alpha.142" - "@deepkit/logger": "npm:^1.0.1-alpha.142" - "@deepkit/rpc": "npm:^1.0.1-alpha.142" - "@deepkit/stopwatch": "npm:^1.0.1-alpha.142" - "@deepkit/type": "npm:^1.0.1-alpha.142" + "@deepkit/bson": "npm:^1.0.1-alpha.143" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/core-rxjs": "npm:^1.0.1-alpha.143" + "@deepkit/injector": "npm:^1.0.1-alpha.143" + "@deepkit/logger": "npm:^1.0.1-alpha.143" + "@deepkit/rpc": "npm:^1.0.1-alpha.143" + "@deepkit/stopwatch": "npm:^1.0.1-alpha.143" + "@deepkit/type": "npm:^1.0.1-alpha.143" rxjs: "npm:~7.8.0" peerDependencies: "@deepkit/bson": ^1.0.1-alpha.13 @@ -3126,7 +3126,7 @@ __metadata: languageName: unknown linkType: soft -"@deepkit/framework-debug-gui@npm:^1.0.1-alpha.142, @deepkit/framework-debug-gui@workspace:packages/framework-debug-gui": +"@deepkit/framework-debug-gui@npm:^1.0.1-alpha.143, @deepkit/framework-debug-gui@workspace:packages/framework-debug-gui": version: 0.0.0-use.local resolution: "@deepkit/framework-debug-gui@workspace:packages/framework-debug-gui" dependencies: @@ -3142,24 +3142,24 @@ __metadata: "@angular/platform-browser": "npm:^17.1.0" "@angular/platform-browser-dynamic": "npm:^17.1.0" "@angular/router": "npm:^17.1.0" - "@deepkit/api-console-api": "npm:^1.0.1-alpha.142" - "@deepkit/api-console-gui": "npm:^1.0.1-alpha.142" - "@deepkit/bson": "npm:^1.0.1-alpha.142" - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/core-rxjs": "npm:^1.0.1-alpha.124" - "@deepkit/desktop-ui": "npm:^1.0.1-alpha.142" - "@deepkit/event": "npm:^1.0.1-alpha.142" - "@deepkit/framework-debug-api": "npm:^1.0.1-alpha.142" - "@deepkit/injector": "npm:^1.0.1-alpha.142" - "@deepkit/logger": "npm:^1.0.1-alpha.142" - "@deepkit/orm": "npm:^1.0.1-alpha.142" - "@deepkit/orm-browser-api": "npm:^1.0.1-alpha.142" - "@deepkit/orm-browser-gui": "npm:^1.0.1-alpha.142" - "@deepkit/rpc": "npm:^1.0.1-alpha.142" - "@deepkit/stopwatch": "npm:^1.0.1-alpha.142" + "@deepkit/api-console-api": "npm:^1.0.1-alpha.143" + "@deepkit/api-console-gui": "npm:^1.0.1-alpha.143" + "@deepkit/bson": "npm:^1.0.1-alpha.143" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/core-rxjs": "npm:^1.0.1-alpha.143" + "@deepkit/desktop-ui": "npm:^1.0.1-alpha.143" + "@deepkit/event": "npm:^1.0.1-alpha.143" + "@deepkit/framework-debug-api": "npm:^1.0.1-alpha.143" + "@deepkit/injector": "npm:^1.0.1-alpha.143" + "@deepkit/logger": "npm:^1.0.1-alpha.143" + "@deepkit/orm": "npm:^1.0.1-alpha.143" + "@deepkit/orm-browser-api": "npm:^1.0.1-alpha.143" + "@deepkit/orm-browser-gui": "npm:^1.0.1-alpha.143" + "@deepkit/rpc": "npm:^1.0.1-alpha.143" + "@deepkit/stopwatch": "npm:^1.0.1-alpha.143" "@deepkit/topsort": "npm:^1.0.1-alpha.121" - "@deepkit/type": "npm:^1.0.1-alpha.142" - "@deepkit/type-compiler": "npm:^1.0.1-alpha.142" + "@deepkit/type": "npm:^1.0.1-alpha.143" + "@deepkit/type-compiler": "npm:^1.0.1-alpha.143" "@deepkit/ui-library": "npm:^1.0.1-alpha.56" "@types/dagre": "npm:^0.7.44" "@types/file-saver": "npm:^2.0.1" @@ -3223,33 +3223,33 @@ __metadata: languageName: unknown linkType: soft -"@deepkit/framework@npm:^1.0.1-alpha.0, @deepkit/framework@npm:^1.0.1-alpha.103, @deepkit/framework@npm:^1.0.1-alpha.142, @deepkit/framework@workspace:packages/framework": +"@deepkit/framework@npm:^1.0.1-alpha.0, @deepkit/framework@npm:^1.0.1-alpha.103, @deepkit/framework@npm:^1.0.1-alpha.143, @deepkit/framework@workspace:packages/framework": version: 0.0.0-use.local resolution: "@deepkit/framework@workspace:packages/framework" dependencies: - "@deepkit/api-console-module": "npm:^1.0.1-alpha.142" - "@deepkit/app": "npm:^1.0.1-alpha.142" - "@deepkit/broker": "npm:^1.0.1-alpha.142" - "@deepkit/bson": "npm:^1.0.1-alpha.142" - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/core-rxjs": "npm:^1.0.1-alpha.124" - "@deepkit/event": "npm:^1.0.1-alpha.142" - "@deepkit/filesystem": "npm:^1.0.1-alpha.124" - "@deepkit/framework-debug-api": "npm:^1.0.1-alpha.142" - "@deepkit/framework-debug-gui": "npm:^1.0.1-alpha.142" - "@deepkit/http": "npm:^1.0.1-alpha.142" - "@deepkit/injector": "npm:^1.0.1-alpha.142" - "@deepkit/logger": "npm:^1.0.1-alpha.142" - "@deepkit/orm": "npm:^1.0.1-alpha.142" - "@deepkit/orm-browser-api": "npm:^1.0.1-alpha.142" - "@deepkit/orm-browser-gui": "npm:^1.0.1-alpha.142" - "@deepkit/rpc": "npm:^1.0.1-alpha.142" - "@deepkit/rpc-tcp": "npm:^1.0.1-alpha.142" - "@deepkit/sql": "npm:^1.0.1-alpha.142" - "@deepkit/stopwatch": "npm:^1.0.1-alpha.142" - "@deepkit/template": "npm:^1.0.1-alpha.142" - "@deepkit/type": "npm:^1.0.1-alpha.142" - "@deepkit/workflow": "npm:^1.0.1-alpha.142" + "@deepkit/api-console-module": "npm:^1.0.1-alpha.143" + "@deepkit/app": "npm:^1.0.1-alpha.143" + "@deepkit/broker": "npm:^1.0.1-alpha.143" + "@deepkit/bson": "npm:^1.0.1-alpha.143" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/core-rxjs": "npm:^1.0.1-alpha.143" + "@deepkit/event": "npm:^1.0.1-alpha.143" + "@deepkit/filesystem": "npm:^1.0.1-alpha.143" + "@deepkit/framework-debug-api": "npm:^1.0.1-alpha.143" + "@deepkit/framework-debug-gui": "npm:^1.0.1-alpha.143" + "@deepkit/http": "npm:^1.0.1-alpha.143" + "@deepkit/injector": "npm:^1.0.1-alpha.143" + "@deepkit/logger": "npm:^1.0.1-alpha.143" + "@deepkit/orm": "npm:^1.0.1-alpha.143" + "@deepkit/orm-browser-api": "npm:^1.0.1-alpha.143" + "@deepkit/orm-browser-gui": "npm:^1.0.1-alpha.143" + "@deepkit/rpc": "npm:^1.0.1-alpha.143" + "@deepkit/rpc-tcp": "npm:^1.0.1-alpha.143" + "@deepkit/sql": "npm:^1.0.1-alpha.143" + "@deepkit/stopwatch": "npm:^1.0.1-alpha.143" + "@deepkit/template": "npm:^1.0.1-alpha.143" + "@deepkit/type": "npm:^1.0.1-alpha.143" + "@deepkit/workflow": "npm:^1.0.1-alpha.143" "@types/clone": "npm:^0.1.30" "@types/faker": "npm:^5.1.6" "@types/fs-extra": "npm:^9.0.1" @@ -3291,19 +3291,19 @@ __metadata: languageName: unknown linkType: soft -"@deepkit/http@npm:^1.0.1-alpha.0, @deepkit/http@npm:^1.0.1-alpha.102, @deepkit/http@npm:^1.0.1-alpha.142, @deepkit/http@workspace:packages/http": +"@deepkit/http@npm:^1.0.1-alpha.0, @deepkit/http@npm:^1.0.1-alpha.102, @deepkit/http@npm:^1.0.1-alpha.143, @deepkit/http@workspace:packages/http": version: 0.0.0-use.local resolution: "@deepkit/http@workspace:packages/http" dependencies: - "@deepkit/app": "npm:^1.0.1-alpha.142" - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/event": "npm:^1.0.1-alpha.142" - "@deepkit/injector": "npm:^1.0.1-alpha.142" - "@deepkit/logger": "npm:^1.0.1-alpha.142" - "@deepkit/stopwatch": "npm:^1.0.1-alpha.142" - "@deepkit/template": "npm:^1.0.1-alpha.142" - "@deepkit/type": "npm:^1.0.1-alpha.142" - "@deepkit/workflow": "npm:^1.0.1-alpha.142" + "@deepkit/app": "npm:^1.0.1-alpha.143" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/event": "npm:^1.0.1-alpha.143" + "@deepkit/injector": "npm:^1.0.1-alpha.143" + "@deepkit/logger": "npm:^1.0.1-alpha.143" + "@deepkit/stopwatch": "npm:^1.0.1-alpha.143" + "@deepkit/template": "npm:^1.0.1-alpha.143" + "@deepkit/type": "npm:^1.0.1-alpha.143" + "@deepkit/workflow": "npm:^1.0.1-alpha.143" "@types/node": "npm:20.6.0" "@types/send": "npm:^0.14.6" formidable: "npm:^2.0.1" @@ -3322,12 +3322,12 @@ __metadata: languageName: unknown linkType: soft -"@deepkit/injector@npm:^1.0.1-alpha.0, @deepkit/injector@npm:^1.0.1-alpha.102, @deepkit/injector@npm:^1.0.1-alpha.142, @deepkit/injector@workspace:packages/injector": +"@deepkit/injector@npm:^1.0.1-alpha.0, @deepkit/injector@npm:^1.0.1-alpha.102, @deepkit/injector@npm:^1.0.1-alpha.143, @deepkit/injector@workspace:packages/injector": version: 0.0.0-use.local resolution: "@deepkit/injector@workspace:packages/injector" dependencies: - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/type": "npm:^1.0.1-alpha.142" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/type": "npm:^1.0.1-alpha.143" benchmark: "npm:^2.1.4" peerDependencies: "@deepkit/core": ^1.0.1-alpha.13 @@ -3335,12 +3335,12 @@ __metadata: languageName: unknown linkType: soft -"@deepkit/logger@npm:^1.0.1-alpha.0, @deepkit/logger@npm:^1.0.1-alpha.102, @deepkit/logger@npm:^1.0.1-alpha.142, @deepkit/logger@npm:^1.0.1-alpha.94, @deepkit/logger@workspace:packages/logger": +"@deepkit/logger@npm:^1.0.1-alpha.0, @deepkit/logger@npm:^1.0.1-alpha.102, @deepkit/logger@npm:^1.0.1-alpha.143, @deepkit/logger@npm:^1.0.1-alpha.94, @deepkit/logger@workspace:packages/logger": version: 0.0.0-use.local resolution: "@deepkit/logger@workspace:packages/logger" dependencies: - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/injector": "npm:^1.0.1-alpha.142" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/injector": "npm:^1.0.1-alpha.143" "@types/format-util": "npm:^1.0.1" ansi-styles: "npm:^4.3.0" format-util: "npm:^1.0.5" @@ -3354,11 +3354,11 @@ __metadata: version: 0.0.0-use.local resolution: "@deepkit/mongo@workspace:packages/mongo" dependencies: - "@deepkit/bson": "npm:^1.0.1-alpha.142" - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/orm": "npm:^1.0.1-alpha.142" + "@deepkit/bson": "npm:^1.0.1-alpha.143" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/orm": "npm:^1.0.1-alpha.143" "@deepkit/orm-integration": "npm:^1.0.1-alpha.13" - "@deepkit/type": "npm:^1.0.1-alpha.142" + "@deepkit/type": "npm:^1.0.1-alpha.143" "@types/mongodb": "npm:3.5.25" "@types/node": "npm:20.6.0" mongodb: "npm:3.6.0" @@ -3375,12 +3375,12 @@ __metadata: version: 0.0.0-use.local resolution: "@deepkit/mysql@workspace:packages/mysql" dependencies: - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/orm": "npm:^1.0.1-alpha.142" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/orm": "npm:^1.0.1-alpha.143" "@deepkit/orm-integration": "npm:^1.0.1-alpha.13" - "@deepkit/sql": "npm:^1.0.1-alpha.142" - "@deepkit/stopwatch": "npm:^1.0.1-alpha.142" - "@deepkit/type": "npm:^1.0.1-alpha.142" + "@deepkit/sql": "npm:^1.0.1-alpha.143" + "@deepkit/stopwatch": "npm:^1.0.1-alpha.143" + "@deepkit/type": "npm:^1.0.1-alpha.143" mariadb: "npm:^3.2.3" peerDependencies: "@deepkit/core": ^1.0.1-alpha.13 @@ -3391,13 +3391,13 @@ __metadata: languageName: unknown linkType: soft -"@deepkit/orm-browser-api@npm:^1.0.1-alpha.142, @deepkit/orm-browser-api@workspace:packages/orm-browser-api": +"@deepkit/orm-browser-api@npm:^1.0.1-alpha.143, @deepkit/orm-browser-api@workspace:packages/orm-browser-api": version: 0.0.0-use.local resolution: "@deepkit/orm-browser-api@workspace:packages/orm-browser-api" dependencies: - "@deepkit/rpc": "npm:^1.0.1-alpha.142" - "@deepkit/stopwatch": "npm:^1.0.1-alpha.142" - "@deepkit/type": "npm:^1.0.1-alpha.142" + "@deepkit/rpc": "npm:^1.0.1-alpha.143" + "@deepkit/stopwatch": "npm:^1.0.1-alpha.143" + "@deepkit/type": "npm:^1.0.1-alpha.143" peerDependencies: "@deepkit/rpc": ^1.0.1-alpha.13 "@deepkit/stopwatch": ^1.0.1-alpha.13 @@ -3405,7 +3405,7 @@ __metadata: languageName: unknown linkType: soft -"@deepkit/orm-browser-gui@npm:^1.0.1-alpha.142, @deepkit/orm-browser-gui@workspace:packages/orm-browser-gui": +"@deepkit/orm-browser-gui@npm:^1.0.1-alpha.143, @deepkit/orm-browser-gui@workspace:packages/orm-browser-gui": version: 0.0.0-use.local resolution: "@deepkit/orm-browser-gui@workspace:packages/orm-browser-gui" dependencies: @@ -3421,21 +3421,21 @@ __metadata: "@angular/platform-browser": "npm:^17.1.0" "@angular/platform-browser-dynamic": "npm:^17.1.0" "@angular/router": "npm:^17.1.0" - "@deepkit/bson": "npm:^1.0.1-alpha.142" - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/core-rxjs": "npm:^1.0.1-alpha.124" + "@deepkit/bson": "npm:^1.0.1-alpha.143" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/core-rxjs": "npm:^1.0.1-alpha.143" "@deepkit/crypto": "npm:^1.0.1-alpha.89" - "@deepkit/desktop-ui": "npm:^1.0.1-alpha.142" - "@deepkit/event": "npm:^1.0.1-alpha.142" - "@deepkit/injector": "npm:^1.0.1-alpha.142" - "@deepkit/logger": "npm:^1.0.1-alpha.142" - "@deepkit/orm": "npm:^1.0.1-alpha.142" - "@deepkit/orm-browser-api": "npm:^1.0.1-alpha.142" - "@deepkit/rpc": "npm:^1.0.1-alpha.142" - "@deepkit/stopwatch": "npm:^1.0.1-alpha.142" + "@deepkit/desktop-ui": "npm:^1.0.1-alpha.143" + "@deepkit/event": "npm:^1.0.1-alpha.143" + "@deepkit/injector": "npm:^1.0.1-alpha.143" + "@deepkit/logger": "npm:^1.0.1-alpha.143" + "@deepkit/orm": "npm:^1.0.1-alpha.143" + "@deepkit/orm-browser-api": "npm:^1.0.1-alpha.143" + "@deepkit/rpc": "npm:^1.0.1-alpha.143" + "@deepkit/stopwatch": "npm:^1.0.1-alpha.143" "@deepkit/topsort": "npm:^1.0.1-alpha.121" - "@deepkit/type": "npm:^1.0.1-alpha.142" - "@deepkit/type-compiler": "npm:^1.0.1-alpha.142" + "@deepkit/type": "npm:^1.0.1-alpha.143" + "@deepkit/type-compiler": "npm:^1.0.1-alpha.143" "@types/dagre": "npm:^0.7.44" "@types/file-saver": "npm:^2.0.2" "@types/jasmine": "npm:~4.3.0" @@ -3462,18 +3462,18 @@ __metadata: version: 0.0.0-use.local resolution: "@deepkit/orm-browser@workspace:packages/orm-browser" dependencies: - "@deepkit/app": "npm:^1.0.1-alpha.142" - "@deepkit/broker": "npm:^1.0.1-alpha.142" - "@deepkit/bson": "npm:^1.0.1-alpha.142" - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/framework": "npm:^1.0.1-alpha.142" - "@deepkit/http": "npm:^1.0.1-alpha.142" - "@deepkit/injector": "npm:^1.0.1-alpha.142" - "@deepkit/logger": "npm:^1.0.1-alpha.142" - "@deepkit/orm": "npm:^1.0.1-alpha.142" - "@deepkit/orm-browser-gui": "npm:^1.0.1-alpha.142" - "@deepkit/rpc": "npm:^1.0.1-alpha.142" - "@deepkit/type": "npm:^1.0.1-alpha.142" + "@deepkit/app": "npm:^1.0.1-alpha.143" + "@deepkit/broker": "npm:^1.0.1-alpha.143" + "@deepkit/bson": "npm:^1.0.1-alpha.143" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/framework": "npm:^1.0.1-alpha.143" + "@deepkit/http": "npm:^1.0.1-alpha.143" + "@deepkit/injector": "npm:^1.0.1-alpha.143" + "@deepkit/logger": "npm:^1.0.1-alpha.143" + "@deepkit/orm": "npm:^1.0.1-alpha.143" + "@deepkit/orm-browser-gui": "npm:^1.0.1-alpha.143" + "@deepkit/rpc": "npm:^1.0.1-alpha.143" + "@deepkit/type": "npm:^1.0.1-alpha.143" "@types/node": "npm:20.6.0" rxjs: "npm:~7.8.0" peerDependencies: @@ -3507,17 +3507,17 @@ __metadata: languageName: unknown linkType: soft -"@deepkit/orm@npm:^1.0.1-alpha.0, @deepkit/orm@npm:^1.0.1-alpha.102, @deepkit/orm@npm:^1.0.1-alpha.142, @deepkit/orm@workspace:packages/orm": +"@deepkit/orm@npm:^1.0.1-alpha.0, @deepkit/orm@npm:^1.0.1-alpha.102, @deepkit/orm@npm:^1.0.1-alpha.143, @deepkit/orm@workspace:packages/orm": version: 0.0.0-use.local resolution: "@deepkit/orm@workspace:packages/orm" dependencies: - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/event": "npm:^1.0.1-alpha.142" - "@deepkit/injector": "npm:^1.0.1-alpha.142" - "@deepkit/logger": "npm:^1.0.1-alpha.142" - "@deepkit/stopwatch": "npm:^1.0.1-alpha.142" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/event": "npm:^1.0.1-alpha.143" + "@deepkit/injector": "npm:^1.0.1-alpha.143" + "@deepkit/logger": "npm:^1.0.1-alpha.143" + "@deepkit/stopwatch": "npm:^1.0.1-alpha.143" "@deepkit/topsort": "npm:^1.0.1-alpha.121" - "@deepkit/type": "npm:^1.0.1-alpha.142" + "@deepkit/type": "npm:^1.0.1-alpha.143" "@types/sqlstring": "npm:^2.2.1" conditional-type-checks: "npm:^1.0.5" sift: "npm:^7.0.1" @@ -3535,12 +3535,12 @@ __metadata: version: 0.0.0-use.local resolution: "@deepkit/postgres@workspace:packages/postgres" dependencies: - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/orm": "npm:^1.0.1-alpha.142" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/orm": "npm:^1.0.1-alpha.143" "@deepkit/orm-integration": "npm:^1.0.1-alpha.13" - "@deepkit/sql": "npm:^1.0.1-alpha.142" - "@deepkit/stopwatch": "npm:^1.0.1-alpha.142" - "@deepkit/type": "npm:^1.0.1-alpha.142" + "@deepkit/sql": "npm:^1.0.1-alpha.143" + "@deepkit/stopwatch": "npm:^1.0.1-alpha.143" + "@deepkit/type": "npm:^1.0.1-alpha.143" "@types/pg": "npm:^7.14.7" "@types/sqlstring": "npm:^2.2.1" pg: "npm:^8.5.1" @@ -3554,11 +3554,11 @@ __metadata: languageName: unknown linkType: soft -"@deepkit/rpc-tcp@npm:^1.0.1-alpha.0, @deepkit/rpc-tcp@npm:^1.0.1-alpha.142, @deepkit/rpc-tcp@workspace:packages/rpc-tcp": +"@deepkit/rpc-tcp@npm:^1.0.1-alpha.0, @deepkit/rpc-tcp@npm:^1.0.1-alpha.143, @deepkit/rpc-tcp@workspace:packages/rpc-tcp": version: 0.0.0-use.local resolution: "@deepkit/rpc-tcp@workspace:packages/rpc-tcp" dependencies: - "@deepkit/rpc": "npm:^1.0.1-alpha.142" + "@deepkit/rpc": "npm:^1.0.1-alpha.143" "@types/ws": "npm:^8.5.3" ws: "npm:^8.6.0" peerDependencies: @@ -3567,16 +3567,16 @@ __metadata: languageName: unknown linkType: soft -"@deepkit/rpc@npm:^1.0.1-alpha.0, @deepkit/rpc@npm:^1.0.1-alpha.102, @deepkit/rpc@npm:^1.0.1-alpha.142, @deepkit/rpc@npm:^1.0.1-alpha.57, @deepkit/rpc@workspace:packages/rpc": +"@deepkit/rpc@npm:^1.0.1-alpha.0, @deepkit/rpc@npm:^1.0.1-alpha.102, @deepkit/rpc@npm:^1.0.1-alpha.143, @deepkit/rpc@npm:^1.0.1-alpha.57, @deepkit/rpc@workspace:packages/rpc": version: 0.0.0-use.local resolution: "@deepkit/rpc@workspace:packages/rpc" dependencies: - "@deepkit/bson": "npm:^1.0.1-alpha.142" - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/core-rxjs": "npm:^1.0.1-alpha.124" - "@deepkit/injector": "npm:^1.0.1-alpha.142" - "@deepkit/logger": "npm:^1.0.1-alpha.142" - "@deepkit/type": "npm:^1.0.1-alpha.142" + "@deepkit/bson": "npm:^1.0.1-alpha.143" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/core-rxjs": "npm:^1.0.1-alpha.143" + "@deepkit/injector": "npm:^1.0.1-alpha.143" + "@deepkit/logger": "npm:^1.0.1-alpha.143" + "@deepkit/type": "npm:^1.0.1-alpha.143" "@types/dot-prop": "npm:^5.0.1" "@types/fs-extra": "npm:^9.0.1" "@types/node": "npm:20.6.0" @@ -3603,17 +3603,17 @@ __metadata: languageName: unknown linkType: soft -"@deepkit/sql@npm:^1.0.1-alpha.0, @deepkit/sql@npm:^1.0.1-alpha.103, @deepkit/sql@npm:^1.0.1-alpha.142, @deepkit/sql@workspace:packages/sql": +"@deepkit/sql@npm:^1.0.1-alpha.0, @deepkit/sql@npm:^1.0.1-alpha.103, @deepkit/sql@npm:^1.0.1-alpha.143, @deepkit/sql@workspace:packages/sql": version: 0.0.0-use.local resolution: "@deepkit/sql@workspace:packages/sql" dependencies: - "@deepkit/app": "npm:^1.0.1-alpha.142" - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/injector": "npm:^1.0.1-alpha.142" - "@deepkit/logger": "npm:^1.0.1-alpha.142" - "@deepkit/orm": "npm:^1.0.1-alpha.142" - "@deepkit/stopwatch": "npm:^1.0.1-alpha.142" - "@deepkit/type": "npm:^1.0.1-alpha.142" + "@deepkit/app": "npm:^1.0.1-alpha.143" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/injector": "npm:^1.0.1-alpha.143" + "@deepkit/logger": "npm:^1.0.1-alpha.143" + "@deepkit/orm": "npm:^1.0.1-alpha.143" + "@deepkit/stopwatch": "npm:^1.0.1-alpha.143" + "@deepkit/type": "npm:^1.0.1-alpha.143" "@types/sqlstring": "npm:^2.2.1" date-fns: "npm:^2.17.0" fast-glob: "npm:^3.2.5" @@ -3636,12 +3636,12 @@ __metadata: version: 0.0.0-use.local resolution: "@deepkit/sqlite@workspace:packages/sqlite" dependencies: - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/orm": "npm:^1.0.1-alpha.142" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/orm": "npm:^1.0.1-alpha.143" "@deepkit/orm-integration": "npm:^1.0.1-alpha.13" - "@deepkit/sql": "npm:^1.0.1-alpha.142" - "@deepkit/stopwatch": "npm:^1.0.1-alpha.142" - "@deepkit/type": "npm:^1.0.1-alpha.142" + "@deepkit/sql": "npm:^1.0.1-alpha.143" + "@deepkit/stopwatch": "npm:^1.0.1-alpha.143" + "@deepkit/type": "npm:^1.0.1-alpha.143" "@types/better-sqlite3": "npm:^5.4.1" better-sqlite3: "npm:^8.7.0" sqlstring-sqlite: "npm:^0.1.1" @@ -3654,26 +3654,26 @@ __metadata: languageName: unknown linkType: soft -"@deepkit/stopwatch@npm:^1.0.1-alpha.0, @deepkit/stopwatch@npm:^1.0.1-alpha.142, @deepkit/stopwatch@workspace:packages/stopwatch": +"@deepkit/stopwatch@npm:^1.0.1-alpha.0, @deepkit/stopwatch@npm:^1.0.1-alpha.143, @deepkit/stopwatch@workspace:packages/stopwatch": version: 0.0.0-use.local resolution: "@deepkit/stopwatch@workspace:packages/stopwatch" dependencies: - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/type": "npm:^1.0.1-alpha.142" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/type": "npm:^1.0.1-alpha.143" peerDependencies: "@deepkit/core": ^1.0.1-alpha.13 "@deepkit/type": ^1.0.1-alpha.13 languageName: unknown linkType: soft -"@deepkit/template@npm:^1.0.1-alpha.0, @deepkit/template@npm:^1.0.1-alpha.142, @deepkit/template@workspace:packages/template": +"@deepkit/template@npm:^1.0.1-alpha.0, @deepkit/template@npm:^1.0.1-alpha.143, @deepkit/template@workspace:packages/template": version: 0.0.0-use.local resolution: "@deepkit/template@workspace:packages/template" dependencies: - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/injector": "npm:^1.0.1-alpha.142" - "@deepkit/stopwatch": "npm:^1.0.1-alpha.142" - "@deepkit/type": "npm:^1.0.1-alpha.142" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/injector": "npm:^1.0.1-alpha.143" + "@deepkit/stopwatch": "npm:^1.0.1-alpha.143" + "@deepkit/type": "npm:^1.0.1-alpha.143" "@types/estree": "npm:^0.0.45" abstract-syntax-tree: "npm:^2.9.4" peerDependencies: @@ -3696,8 +3696,8 @@ __metadata: dependencies: "@angular/core": "npm:^17.1.0" "@angular/forms": "npm:^17.1.0" - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/type": "npm:^1.0.1-alpha.142" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/type": "npm:^1.0.1-alpha.143" rxjs: "npm:*" peerDependencies: "@deepkit/core": ^1.0.1-alpha.19 @@ -3705,7 +3705,7 @@ __metadata: languageName: unknown linkType: soft -"@deepkit/type-compiler@npm:^1.0.1-alpha.102, @deepkit/type-compiler@npm:^1.0.1-alpha.142, @deepkit/type-compiler@workspace:packages/type-compiler": +"@deepkit/type-compiler@npm:^1.0.1-alpha.102, @deepkit/type-compiler@npm:^1.0.1-alpha.143, @deepkit/type-compiler@workspace:packages/type-compiler": version: 0.0.0-use.local resolution: "@deepkit/type-compiler@workspace:packages/type-compiler" dependencies: @@ -3733,12 +3733,12 @@ __metadata: languageName: unknown linkType: soft -"@deepkit/type@npm:^1.0.1-alpha.0, @deepkit/type@npm:^1.0.1-alpha.102, @deepkit/type@npm:^1.0.1-alpha.142, @deepkit/type@npm:^1.0.1-alpha.52, @deepkit/type@npm:^1.0.1-alpha.96, @deepkit/type@workspace:packages/type": +"@deepkit/type@npm:^1.0.1-alpha.0, @deepkit/type@npm:^1.0.1-alpha.102, @deepkit/type@npm:^1.0.1-alpha.143, @deepkit/type@npm:^1.0.1-alpha.52, @deepkit/type@npm:^1.0.1-alpha.96, @deepkit/type@workspace:packages/type": version: 0.0.0-use.local resolution: "@deepkit/type@workspace:packages/type" dependencies: - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/type-compiler": "npm:^1.0.1-alpha.142" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/type-compiler": "npm:^1.0.1-alpha.143" "@deepkit/type-spec": "npm:^1.0.1-alpha.116" "@types/lz-string": "npm:^1.3.34" "@types/node": "npm:20.6.0" @@ -3778,7 +3778,7 @@ __metadata: version: 0.0.0-use.local resolution: "@deepkit/vite@workspace:packages/vite" dependencies: - "@deepkit/type-compiler": "npm:^1.0.1-alpha.142" + "@deepkit/type-compiler": "npm:^1.0.1-alpha.143" "@rollup/pluginutils": "npm:^5.0.2" vite: "npm:^4.0.0" peerDependencies: @@ -3786,15 +3786,15 @@ __metadata: languageName: unknown linkType: soft -"@deepkit/workflow@npm:^1.0.1-alpha.0, @deepkit/workflow@npm:^1.0.1-alpha.142, @deepkit/workflow@workspace:packages/workflow": +"@deepkit/workflow@npm:^1.0.1-alpha.0, @deepkit/workflow@npm:^1.0.1-alpha.143, @deepkit/workflow@workspace:packages/workflow": version: 0.0.0-use.local resolution: "@deepkit/workflow@workspace:packages/workflow" dependencies: - "@deepkit/core": "npm:^1.0.1-alpha.124" - "@deepkit/event": "npm:^1.0.1-alpha.142" - "@deepkit/injector": "npm:^1.0.1-alpha.142" - "@deepkit/stopwatch": "npm:^1.0.1-alpha.142" - "@deepkit/type": "npm:^1.0.1-alpha.142" + "@deepkit/core": "npm:^1.0.1-alpha.143" + "@deepkit/event": "npm:^1.0.1-alpha.143" + "@deepkit/injector": "npm:^1.0.1-alpha.143" + "@deepkit/stopwatch": "npm:^1.0.1-alpha.143" + "@deepkit/type": "npm:^1.0.1-alpha.143" peerDependencies: "@deepkit/core": ^1.0.1-alpha.13 "@deepkit/event": ^1.0.1-alpha.13