Skip to content

Commit

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

### Bug Fixes

- **bson:** make sure index signature keys use full utf8 encoding ([d447c1d](https://github.com/deepkit/deepkit-framework/commit/d447c1d1b12f2331aec8519fec67335151b0183a))
- **sql:** fix queries where value legitimately begins with $ ([#580](https://github.com/deepkit/deepkit-framework/issues/580)) ([e0a0c3f](https://github.com/deepkit/deepkit-framework/commit/e0a0c3f10d7f22cd79760d032c6c90b797e48d9f))
- **sql:** repair & enable @deepkit/sql tests ([#579](https://github.com/deepkit/deepkit-framework/issues/579)) ([81a1ab1](https://github.com/deepkit/deepkit-framework/commit/81a1ab1e82ae170034545a25aa540a3a7c69acd7))
- **type-compiler:** include enum annotations in .d.ts transformation ([#607](https://github.com/deepkit/deepkit-framework/issues/607)) ([08854f3](https://github.com/deepkit/deepkit-framework/commit/08854f3d1aff429b70c384aeaf54538b1f49c079))
- **type:** add scope in setter code to prevent `variable already declared` [#603](https://github.com/deepkit/deepkit-framework/issues/603) ([#606](https://github.com/deepkit/deepkit-framework/issues/606)) ([9af344f](https://github.com/deepkit/deepkit-framework/commit/9af344f4705943571bc0c18e73435b18c4819641))
- **website:** modify broken reflection example ([#599](https://github.com/deepkit/deepkit-framework/issues/599)) ([7ee0a75](https://github.com/deepkit/deepkit-framework/commit/7ee0a75f2ddbeff137239fecb72e409ab128bc1c))

### Features

- **http:** http timeout options ([44fbf56](https://github.com/deepkit/deepkit-framework/commit/44fbf5672344f6296de6f62ca2295be17d88501f))
- **rpc:** make Buffer dependency optional ([2f32a12](https://github.com/deepkit/deepkit-framework/commit/2f32a1214c2c4555371fc1cfccdfdf533c21128e))
- **type:** support enum in pathResolver/resolvePath ([78d7df0](https://github.com/deepkit/deepkit-framework/commit/78d7df08af6845c3986bc55a7c8b1dc3353d8847))

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

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

## [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
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.153",
"version": "1.0.1-alpha.154",
"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.153",
"@deepkit/core": "^1.0.1-alpha.147",
"@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"
"@deepkit/bson": "^1.0.1-alpha.154",
"@deepkit/core": "^1.0.1-alpha.154",
"@deepkit/injector": "^1.0.1-alpha.154",
"@deepkit/logger": "^1.0.1-alpha.154",
"@deepkit/rpc": "^1.0.1-alpha.154",
"@deepkit/type": "^1.0.1-alpha.154"
},
"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.154](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.153...v1.0.1-alpha.154) (2024-09-06)

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

## [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
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.153",
"version": "1.0.1-alpha.154",
"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.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.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/api-console-api": "^1.0.1-alpha.154",
"@deepkit/bson": "^1.0.1-alpha.154",
"@deepkit/core": "^1.0.1-alpha.154",
"@deepkit/core-rxjs": "^1.0.1-alpha.154",
"@deepkit/desktop-ui": "^1.0.1-alpha.154",
"@deepkit/event": "^1.0.1-alpha.154",
"@deepkit/injector": "^1.0.1-alpha.154",
"@deepkit/logger": "^1.0.1-alpha.154",
"@deepkit/rpc": "^1.0.1-alpha.154",
"@deepkit/stopwatch": "^1.0.1-alpha.154",
"@deepkit/type": "^1.0.1-alpha.154",
"@deepkit/type-compiler": "^1.0.1-alpha.154",
"@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.154](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.153...v1.0.1-alpha.154) (2024-09-06)

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

## [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
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.153",
"version": "1.0.1-alpha.154",
"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.153",
"@deepkit/api-console-gui": "^1.0.1-alpha.153"
"@deepkit/api-console-api": "^1.0.1-alpha.154",
"@deepkit/api-console-gui": "^1.0.1-alpha.154"
},
"devDependencies": {
"@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.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",
"@deepkit/app": "^1.0.1-alpha.154",
"@deepkit/broker": "^1.0.1-alpha.154",
"@deepkit/bson": "^1.0.1-alpha.154",
"@deepkit/core": "^1.0.1-alpha.154",
"@deepkit/http": "^1.0.1-alpha.154",
"@deepkit/injector": "^1.0.1-alpha.154",
"@deepkit/logger": "^1.0.1-alpha.154",
"@deepkit/rpc": "^1.0.1-alpha.154",
"@deepkit/type": "^1.0.1-alpha.154",
"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.154](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.153...v1.0.1-alpha.154) (2024-09-06)

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

## [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
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.153",
"version": "1.0.1-alpha.154",
"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.147",
"@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",
"@deepkit/core": "^1.0.1-alpha.154",
"@deepkit/event": "^1.0.1-alpha.154",
"@deepkit/injector": "^1.0.1-alpha.154",
"@deepkit/logger": "^1.0.1-alpha.154",
"@deepkit/stopwatch": "^1.0.1-alpha.154",
"@deepkit/type": "^1.0.1-alpha.154",
"@deepkit/workflow": "^1.0.1-alpha.154",
"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.154](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.153...v1.0.1-alpha.154) (2024-09-06)

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

## [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
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.153",
"version": "1.0.1-alpha.154",
"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.153",
"@deepkit/core": "^1.0.1-alpha.147",
"@deepkit/core-rxjs": "^1.0.1-alpha.147",
"@deepkit/event": "^1.0.1-alpha.153",
"@deepkit/rpc": "^1.0.1-alpha.153",
"@deepkit/type": "^1.0.1-alpha.153"
"@deepkit/bson": "^1.0.1-alpha.154",
"@deepkit/core": "^1.0.1-alpha.154",
"@deepkit/core-rxjs": "^1.0.1-alpha.154",
"@deepkit/event": "^1.0.1-alpha.154",
"@deepkit/rpc": "^1.0.1-alpha.154",
"@deepkit/type": "^1.0.1-alpha.154"
},
"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.154](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.153...v1.0.1-alpha.154) (2024-09-06)

### Bug Fixes

- **bson:** make sure index signature keys use full utf8 encoding ([d447c1d](https://github.com/deepkit/deepkit-framework/commit/d447c1d1b12f2331aec8519fec67335151b0183a))

### Features

- **rpc:** make Buffer dependency optional ([2f32a12](https://github.com/deepkit/deepkit-framework/commit/2f32a1214c2c4555371fc1cfccdfdf533c21128e))

## [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
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.153",
"version": "1.0.1-alpha.154",
"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.147",
"@deepkit/type": "^1.0.1-alpha.153",
"@deepkit/core": "^1.0.1-alpha.154",
"@deepkit/type": "^1.0.1-alpha.154",
"@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.154](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.153...v1.0.1-alpha.154) (2024-09-06)

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

## [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
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.153",
"version": "1.0.1-alpha.154",
"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.150",
"@deepkit/type-compiler": "^1.0.1-alpha.154",
"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.154](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.153...v1.0.1-alpha.154) (2024-09-06)

**Note:** Version bump only for package @deepkit/core-rxjs

## [1.0.1-alpha.147](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.146...v1.0.1-alpha.147) (2024-05-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.147",
"version": "1.0.1-alpha.154",
"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.147",
"@deepkit/core": "^1.0.1-alpha.154",
"rxjs": "~7.8.0"
},
"jest": {
Expand Down
6 changes: 6 additions & 0 deletions packages/core/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.154](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.153...v1.0.1-alpha.154) (2024-09-06)

### Features

- **rpc:** make Buffer dependency optional ([2f32a12](https://github.com/deepkit/deepkit-framework/commit/2f32a1214c2c4555371fc1cfccdfdf533c21128e))

## [1.0.1-alpha.147](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.146...v1.0.1-alpha.147) (2024-05-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.147",
"version": "1.0.1-alpha.154",
"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.154](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.153...v1.0.1-alpha.154) (2024-09-06)

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

## [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
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.153",
"version": "1.0.1-alpha.154",
"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.153",
"@deepkit/core": "^1.0.1-alpha.147",
"@deepkit/logger": "^1.0.1-alpha.153",
"@deepkit/type": "^1.0.1-alpha.153",
"@deepkit/app": "^1.0.1-alpha.154",
"@deepkit/core": "^1.0.1-alpha.154",
"@deepkit/logger": "^1.0.1-alpha.154",
"@deepkit/type": "^1.0.1-alpha.154",
"fs-extra": "^9.1.0"
},
"devDependencies": {
Expand Down
Loading

0 comments on commit be915e8

Please sign in to comment.