Skip to content

Commit

Permalink
v1.0.1-alpha.143
Browse files Browse the repository at this point in the history
  • Loading branch information
marcj committed Mar 17, 2024
1 parent 80464bf commit 3f9da92
Show file tree
Hide file tree
Showing 85 changed files with 691 additions and 490 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"conventionalCommits": true
}
},
"version": "1.0.1-alpha.142"
"version": "1.0.1-alpha.143"
}
4 changes: 4 additions & 0 deletions packages/api-console-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
14 changes: 7 additions & 7 deletions packages/api-console-api/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand Down
4 changes: 4 additions & 0 deletions packages/api-console-gui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
26 changes: 13 additions & 13 deletions packages/api-console-gui/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand Down
4 changes: 4 additions & 0 deletions packages/api-console-module/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
24 changes: 12 additions & 12 deletions packages/api-console-module/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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": {
Expand Down
4 changes: 4 additions & 0 deletions packages/app/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
16 changes: 8 additions & 8 deletions packages/app/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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": {
Expand Down
4 changes: 4 additions & 0 deletions packages/broker/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
14 changes: 7 additions & 7 deletions packages/broker/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand Down
4 changes: 4 additions & 0 deletions packages/bson/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions packages/bson/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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"
Expand Down
4 changes: 4 additions & 0 deletions packages/bun/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/bun/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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": {
Expand Down
4 changes: 4 additions & 0 deletions packages/core-rxjs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/core-rxjs/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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": {
Expand Down
7 changes: 7 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 4 additions & 0 deletions packages/create-app/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions packages/create-app/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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": {
Expand Down
Loading

0 comments on commit 3f9da92

Please sign in to comment.