Skip to content

Commit

Permalink
v1.0.1-alpha.153
Browse files Browse the repository at this point in the history
  • Loading branch information
marcj committed Jun 6, 2024
1 parent bb40036 commit 2332134
Show file tree
Hide file tree
Showing 67 changed files with 564 additions and 369 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,29 @@
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.153](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.152...v1.0.1-alpha.153) (2024-06-06)

### Bug Fixes

- **app:** don't force package.json to exist for finding env files ([f478e96](https://github.com/deepkit/deepkit-framework/commit/f478e966103fbfde1289fdfbebe2b235bf19875f))
- **bson:** make sure NaN is deserialized as 0 ([7b19397](https://github.com/deepkit/deepkit-framework/commit/7b193977a35fceac4402829d0709d909e3ef6f8e))
- **orm:** correctly resolve reference class schemas ([e193325](https://github.com/deepkit/deepkit-framework/commit/e193325b561563f0207403103cd8caf859228cc2))
- **rpc:** add interface for fetch ([6035736](https://github.com/deepkit/deepkit-framework/commit/60357366ec1db553789909889bf3489dea17a269))
- **rpc:** http adapter wrong authorization + remove OPTIONS method ([3ff8955](https://github.com/deepkit/deepkit-framework/commit/3ff89556961864ceffea188e33e0af0404cd44b3))
- **rpc:** make sure Error is chained and ValidationError correctly handled ([5c49778](https://github.com/deepkit/deepkit-framework/commit/5c49778da68baaab6e7d9588acb03af7d891bf3a))
- **website:** angular 18 fixes ([4307a5d](https://github.com/deepkit/deepkit-framework/commit/4307a5dbdadcbfed5d09b9b5907a3b76f75f0022))

### Features

- **broker:** new BrokerKeyValue and broker documentation ([1f53bc8](https://github.com/deepkit/deepkit-framework/commit/1f53bc8962c5186c2be16953eeae2b9187c11877))
- **orm:** support passing type to Database.persistAs/Database.removeAs, DatabaseSession.addAs ([6679aba](https://github.com/deepkit/deepkit-framework/commit/6679aba8517b46575b92edaa3a9f59ea90f9f762)), closes [#571](https://github.com/deepkit/deepkit-framework/issues/571)
- **rpc:** add http transport ([3b2c6cc](https://github.com/deepkit/deepkit-framework/commit/3b2c6cc6c75d70e3b6bfac7d53e3e7606696baf4))
- **type:** automatically assign .path to SerializationError in TemplateState.convert() errors ([1e8d61d](https://github.com/deepkit/deepkit-framework/commit/1e8d61d38e7310360c834605887c96fb33d0d4ac))
- **type:** automatically assign .path to SerializationError in TemplateState.convert() errors ([23781a1](https://github.com/deepkit/deepkit-framework/commit/23781a1949d445d769cfc3704c25bc69a27c7350))
- **website:** improve broker docs ([1ff9600](https://github.com/deepkit/deepkit-framework/commit/1ff960054404c5bb2105471168fd21ea4f6c9f5a))
- **website:** migrated to Angular v18 SSR + Signals ([322817f](https://github.com/deepkit/deepkit-framework/commit/322817fd60a86ea2d4806e721a860642ec02d9ad))
- **website:** update angular to v18 ([4dcc38c](https://github.com/deepkit/deepkit-framework/commit/4dcc38cac90614282ea2610bfab8586f7e923d5f))

## [1.0.1-alpha.152](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.151...v1.0.1-alpha.152) (2024-05-16)

### Features
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.152"
"version": "1.0.1-alpha.153"
}
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.153](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.152...v1.0.1-alpha.153) (2024-06-06)

**Note:** Version bump only for package @deepkit/api-console-api

## [1.0.1-alpha.152](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.151...v1.0.1-alpha.152) (2024-05-16)

**Note:** Version bump only for package @deepkit/api-console-api
Expand Down
12 changes: 6 additions & 6 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.152",
"version": "1.0.1-alpha.153",
"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.151",
"@deepkit/bson": "^1.0.1-alpha.153",
"@deepkit/core": "^1.0.1-alpha.147",
"@deepkit/injector": "^1.0.1-alpha.151",
"@deepkit/logger": "^1.0.1-alpha.151",
"@deepkit/rpc": "^1.0.1-alpha.152",
"@deepkit/type": "^1.0.1-alpha.151"
"@deepkit/injector": "^1.0.1-alpha.153",
"@deepkit/logger": "^1.0.1-alpha.153",
"@deepkit/rpc": "^1.0.1-alpha.153",
"@deepkit/type": "^1.0.1-alpha.153"
},
"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.153](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.152...v1.0.1-alpha.153) (2024-06-06)

**Note:** Version bump only for package @deepkit/api-console-gui

## [1.0.1-alpha.152](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.151...v1.0.1-alpha.152) (2024-05-16)

**Note:** Version bump only for package @deepkit/api-console-gui
Expand Down
20 changes: 10 additions & 10 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.152",
"version": "1.0.1-alpha.153",
"description": "API Console GUI",
"scripts": {
"ng": "ng",
Expand Down Expand Up @@ -34,17 +34,17 @@
"@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.152",
"@deepkit/bson": "^1.0.1-alpha.151",
"@deepkit/api-console-api": "^1.0.1-alpha.153",
"@deepkit/bson": "^1.0.1-alpha.153",
"@deepkit/core": "^1.0.1-alpha.147",
"@deepkit/core-rxjs": "^1.0.1-alpha.147",
"@deepkit/desktop-ui": "^1.0.1-alpha.151",
"@deepkit/event": "^1.0.1-alpha.151",
"@deepkit/injector": "^1.0.1-alpha.151",
"@deepkit/logger": "^1.0.1-alpha.151",
"@deepkit/rpc": "^1.0.1-alpha.152",
"@deepkit/stopwatch": "^1.0.1-alpha.151",
"@deepkit/type": "^1.0.1-alpha.151",
"@deepkit/desktop-ui": "^1.0.1-alpha.153",
"@deepkit/event": "^1.0.1-alpha.153",
"@deepkit/injector": "^1.0.1-alpha.153",
"@deepkit/logger": "^1.0.1-alpha.153",
"@deepkit/rpc": "^1.0.1-alpha.153",
"@deepkit/stopwatch": "^1.0.1-alpha.153",
"@deepkit/type": "^1.0.1-alpha.153",
"@deepkit/type-compiler": "^1.0.1-alpha.150",
"@deepkit/ui-library": "^1.0.1-alpha.56",
"@types/jasmine": "~4.3.0",
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.153](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.152...v1.0.1-alpha.153) (2024-06-06)

**Note:** Version bump only for package @deepkit/api-console-module

## [1.0.1-alpha.152](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.151...v1.0.1-alpha.152) (2024-05-16)

**Note:** Version bump only for package @deepkit/api-console-module
Expand Down
22 changes: 11 additions & 11 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.152",
"version": "1.0.1-alpha.153",
"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.152",
"@deepkit/api-console-gui": "^1.0.1-alpha.152"
"@deepkit/api-console-api": "^1.0.1-alpha.153",
"@deepkit/api-console-gui": "^1.0.1-alpha.153"
},
"devDependencies": {
"@deepkit/app": "^1.0.1-alpha.151",
"@deepkit/broker": "^1.0.1-alpha.152",
"@deepkit/bson": "^1.0.1-alpha.151",
"@deepkit/app": "^1.0.1-alpha.153",
"@deepkit/broker": "^1.0.1-alpha.153",
"@deepkit/bson": "^1.0.1-alpha.153",
"@deepkit/core": "^1.0.1-alpha.147",
"@deepkit/http": "^1.0.1-alpha.151",
"@deepkit/injector": "^1.0.1-alpha.151",
"@deepkit/logger": "^1.0.1-alpha.151",
"@deepkit/rpc": "^1.0.1-alpha.152",
"@deepkit/type": "^1.0.1-alpha.151",
"@deepkit/http": "^1.0.1-alpha.153",
"@deepkit/injector": "^1.0.1-alpha.153",
"@deepkit/logger": "^1.0.1-alpha.153",
"@deepkit/rpc": "^1.0.1-alpha.153",
"@deepkit/type": "^1.0.1-alpha.153",
"rxjs": "~7.8.0"
},
"jest": {
Expand Down
6 changes: 6 additions & 0 deletions packages/app/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.153](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.152...v1.0.1-alpha.153) (2024-06-06)

### Bug Fixes

- **app:** don't force package.json to exist for finding env files ([f478e96](https://github.com/deepkit/deepkit-framework/commit/f478e966103fbfde1289fdfbebe2b235bf19875f))

## [1.0.1-alpha.151](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.150...v1.0.1-alpha.151) (2024-05-14)

**Note:** Version bump only for package @deepkit/app
Expand Down
14 changes: 7 additions & 7 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.151",
"version": "1.0.1-alpha.153",
"description": "Deepkit App, CLI framework and service container",
"type": "commonjs",
"main": "./dist/cjs/index.js",
Expand Down Expand Up @@ -33,12 +33,12 @@
},
"devDependencies": {
"@deepkit/core": "^1.0.1-alpha.147",
"@deepkit/event": "^1.0.1-alpha.151",
"@deepkit/injector": "^1.0.1-alpha.151",
"@deepkit/logger": "^1.0.1-alpha.151",
"@deepkit/stopwatch": "^1.0.1-alpha.151",
"@deepkit/type": "^1.0.1-alpha.151",
"@deepkit/workflow": "^1.0.1-alpha.151",
"@deepkit/event": "^1.0.1-alpha.153",
"@deepkit/injector": "^1.0.1-alpha.153",
"@deepkit/logger": "^1.0.1-alpha.153",
"@deepkit/stopwatch": "^1.0.1-alpha.153",
"@deepkit/type": "^1.0.1-alpha.153",
"@deepkit/workflow": "^1.0.1-alpha.153",
"conditional-type-checks": "^1.0.5"
},
"jest": {
Expand Down
7 changes: 7 additions & 0 deletions packages/broker/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.153](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.152...v1.0.1-alpha.153) (2024-06-06)

### Features

- **broker:** new BrokerKeyValue and broker documentation ([1f53bc8](https://github.com/deepkit/deepkit-framework/commit/1f53bc8962c5186c2be16953eeae2b9187c11877))
- **rpc:** add http transport ([3b2c6cc](https://github.com/deepkit/deepkit-framework/commit/3b2c6cc6c75d70e3b6bfac7d53e3e7606696baf4))

## [1.0.1-alpha.152](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.151...v1.0.1-alpha.152) (2024-05-16)

**Note:** Version bump only for package @deepkit/broker
Expand Down
10 changes: 5 additions & 5 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.152",
"version": "1.0.1-alpha.153",
"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.151",
"@deepkit/bson": "^1.0.1-alpha.153",
"@deepkit/core": "^1.0.1-alpha.147",
"@deepkit/core-rxjs": "^1.0.1-alpha.147",
"@deepkit/event": "^1.0.1-alpha.151",
"@deepkit/rpc": "^1.0.1-alpha.152",
"@deepkit/type": "^1.0.1-alpha.151"
"@deepkit/event": "^1.0.1-alpha.153",
"@deepkit/rpc": "^1.0.1-alpha.153",
"@deepkit/type": "^1.0.1-alpha.153"
},
"jest": {
"testEnvironment": "node",
Expand Down
10 changes: 10 additions & 0 deletions packages/bson/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
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.153](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.152...v1.0.1-alpha.153) (2024-06-06)

### Bug Fixes

- **bson:** make sure NaN is deserialized as 0 ([7b19397](https://github.com/deepkit/deepkit-framework/commit/7b193977a35fceac4402829d0709d909e3ef6f8e))

### Features

- **type:** automatically assign .path to SerializationError in TemplateState.convert() errors ([23781a1](https://github.com/deepkit/deepkit-framework/commit/23781a1949d445d769cfc3704c25bc69a27c7350))

## [1.0.1-alpha.151](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.150...v1.0.1-alpha.151) (2024-05-14)

**Note:** Version bump only for package @deepkit/bson
Expand Down
4 changes: 2 additions & 2 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.151",
"version": "1.0.1-alpha.153",
"description": "Deepkit BSON parser",
"type": "commonjs",
"main": "./dist/cjs/index.js",
Expand Down Expand Up @@ -29,7 +29,7 @@
},
"devDependencies": {
"@deepkit/core": "^1.0.1-alpha.147",
"@deepkit/type": "^1.0.1-alpha.151",
"@deepkit/type": "^1.0.1-alpha.153",
"@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.153](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.152...v1.0.1-alpha.153) (2024-06-06)

**Note:** Version bump only for package @deepkit/bun

## [1.0.1-alpha.150](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.149...v1.0.1-alpha.150) (2024-05-09)

**Note:** Version bump only for package @deepkit/bun
Expand Down
2 changes: 1 addition & 1 deletion 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.150",
"version": "1.0.1-alpha.153",
"description": "Deepkit Bun Plugin for Deepkit Runtime Types support",
"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.153](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.152...v1.0.1-alpha.153) (2024-06-06)

**Note:** Version bump only for package @deepkit/create-app

## [1.0.1-alpha.151](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.150...v1.0.1-alpha.151) (2024-05-14)

**Note:** Version bump only for package @deepkit/create-app
Expand Down
8 changes: 4 additions & 4 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.151",
"version": "1.0.1-alpha.153",
"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.151",
"@deepkit/app": "^1.0.1-alpha.153",
"@deepkit/core": "^1.0.1-alpha.147",
"@deepkit/logger": "^1.0.1-alpha.151",
"@deepkit/type": "^1.0.1-alpha.151",
"@deepkit/logger": "^1.0.1-alpha.153",
"@deepkit/type": "^1.0.1-alpha.153",
"fs-extra": "^9.1.0"
},
"devDependencies": {
Expand Down
4 changes: 4 additions & 0 deletions packages/desktop-ui/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.153](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.152...v1.0.1-alpha.153) (2024-06-06)

**Note:** Version bump only for package @deepkit/desktop-ui

## [1.0.1-alpha.151](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.150...v1.0.1-alpha.151) (2024-05-14)

**Note:** Version bump only for package @deepkit/desktop-ui
Expand Down
6 changes: 3 additions & 3 deletions packages/desktop-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@deepkit/desktop-ui",
"version": "1.0.1-alpha.151",
"version": "1.0.1-alpha.153",
"description": "Library for desktop UI widgets in Angular 10+",
"keywords": [
"Desktop",
Expand Down Expand Up @@ -57,8 +57,8 @@
"@angular/router": "^17.1.0",
"@deepkit/core": "^1.0.1-alpha.147",
"@deepkit/core-rxjs": "^1.0.1-alpha.147",
"@deepkit/event": "^1.0.1-alpha.151",
"@deepkit/type": "^1.0.1-alpha.151",
"@deepkit/event": "^1.0.1-alpha.153",
"@deepkit/type": "^1.0.1-alpha.153",
"@types/fs-extra": "^8.0.1",
"@types/node": "20.6.0",
"fs-extra": "^8.1.0",
Expand Down
4 changes: 4 additions & 0 deletions packages/event/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.153](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.152...v1.0.1-alpha.153) (2024-06-06)

**Note:** Version bump only for package @deepkit/event

## [1.0.1-alpha.151](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.150...v1.0.1-alpha.151) (2024-05-14)

**Note:** Version bump only for package @deepkit/event
Expand Down
6 changes: 3 additions & 3 deletions packages/event/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@deepkit/event",
"version": "1.0.1-alpha.151",
"version": "1.0.1-alpha.153",
"description": "Deepkit async event dispatcher",
"type": "commonjs",
"main": "./dist/cjs/index.js",
Expand Down Expand Up @@ -29,8 +29,8 @@
},
"devDependencies": {
"@deepkit/core": "^1.0.1-alpha.147",
"@deepkit/injector": "^1.0.1-alpha.151",
"@deepkit/type": "^1.0.1-alpha.151"
"@deepkit/injector": "^1.0.1-alpha.153",
"@deepkit/type": "^1.0.1-alpha.153"
},
"jest": {
"testEnvironment": "node",
Expand Down
Loading

0 comments on commit 2332134

Please sign in to comment.