Skip to content

Commit

Permalink
Merge branch 'master' into type-fix-intersection-collapsing
Browse files Browse the repository at this point in the history
Signed-off-by: Marc J. Schmidt <[email protected]>
  • Loading branch information
marcj committed Feb 10, 2024
2 parents 860fe52 + 732feec commit 645c625
Show file tree
Hide file tree
Showing 199 changed files with 4,220 additions and 1,477 deletions.
17 changes: 11 additions & 6 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,21 @@ root = true
[*]
charset = utf-8
indent_style = space
indent_size = 4
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
max_line_length = 180

[*.json]
indent_size = 2
max_line_length = 120

[*.ts]
[*.{tsx,ts,jsx,js}]
quote_type = single
indent_size = 4

[*.{html,spec.ts}]
max_line_length = 250

[packages/type-compiler/src/compiler.ts]
max_line_length = 250

[*.md]
max_line_length = off
Expand Down
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
yarn.lock
.angular
packages/core/src/indent.ts
13 changes: 11 additions & 2 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,19 +1,28 @@
{
"plugins": ["@trivago/prettier-plugin-sort-imports"],
"importOrderParserPlugins": ["typescript", "decorators-legacy"],
"importOrder": ["<THIRD_PARTY_MODULES>", "^@deepkit/(.*)$", "^[./]"],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true,
"trailingComma": "all",
"printWidth": 120,
"bracketSpacing": true,
"tabWidth": 2,
"singleQuote": true,
"arrowParens": "avoid",
"endOfLine": "lf",
"importOrderSeparation": true,
"importOrderSortSpecifiers": true,
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"options": {
"tabWidth": 4
}
},
{
"files": ["*.spec.ts", "*.html", "packages/type-compiler/src/compiler.ts"],
"options": {
"printWidth": 250
}
}
]
}
86 changes: 86 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,92 @@
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.131](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.130...v1.0.1-alpha.131) (2024-02-09)

### Bug Fixes

- **http:** make sure all path parameters are available in HttpRequestParser ([e215420](https://github.com/deepkit/deepkit-framework/commit/e215420edf4889d116b01ca0f52109e7167e7b63))
- **rpc:** error Observable Subscribers when no Observable Next type can be detected ([e207fea](https://github.com/deepkit/deepkit-framework/commit/e207fea1d9abbb61f8e33d8253fe3ce5e23022d0))
- **type:** make sure cast<string> throws when null/undefined is passed ([1bb3641](https://github.com/deepkit/deepkit-framework/commit/1bb3641f3db8196c9bcab64ef17004dc5e1f9f4c))

## [1.0.1-alpha.130](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.129...v1.0.1-alpha.130) (2024-02-07)

### Bug Fixes

- **http:** don't include resolver/DI objects into HttpRequestParser ([be189c5](https://github.com/deepkit/deepkit-framework/commit/be189c5bcf8d5d57e5c9a1738e458e370bff2b50))

### Features

- **http:** allow to fetch unused path parameters in HttpRequestParser ([cc3cd3b](https://github.com/deepkit/deepkit-framework/commit/cc3cd3bc4a0a75906e43ae764bff473a81b09d1b))

## [1.0.1-alpha.129](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.128...v1.0.1-alpha.129) (2024-02-07)

### Features

- **http:** also read path parameters in HttpRequestParser<T> ([888d058](https://github.com/deepkit/deepkit-framework/commit/888d058b900b29fa39a2d77a6aa5e8946f2ee5e7))

## [1.0.1-alpha.128](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.127...v1.0.1-alpha.128) (2024-02-06)

### Bug Fixes

- **framework:** esm import ([a9927c2](https://github.com/deepkit/deepkit-framework/commit/a9927c2507be69b59ee13c45ae315e95aef84898))
- **injector:** correctly label symbols ([ac07f21](https://github.com/deepkit/deepkit-framework/commit/ac07f2134ec21fd0f114bc9751d700f46e0f5607))
- **postgres:** don't crash when no index can be extracted ([c80e88f](https://github.com/deepkit/deepkit-framework/commit/c80e88f2379a8c956d4921922b177685547e7278))

### Features

- **http:** add new HttpRequestParser<T> injection token ([6101f83](https://github.com/deepkit/deepkit-framework/commit/6101f830897e071e72b8e873bda6dbeee69cdc1e))

## [1.0.1-alpha.127](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.126...v1.0.1-alpha.127) (2024-02-06)

### Bug Fixes

- **framework:** wrong ESM import ([9ec0df2](https://github.com/deepkit/deepkit-framework/commit/9ec0df218ddd42dba52b2ac892701b9d9bff216a))
- **sql:** wrong ESM import ([08996bb](https://github.com/deepkit/deepkit-framework/commit/08996bb2606b48164c727ceb5a7366185efa13a1))

## [1.0.1-alpha.126](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.125...v1.0.1-alpha.126) (2024-02-06)

### Bug Fixes

- **rpc:** wrong ESM import ([1426627](https://github.com/deepkit/deepkit-framework/commit/14266273c30414513aed4ae7667697f19d852098))

## [1.0.1-alpha.125](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.124...v1.0.1-alpha.125) (2024-02-05)

### Bug Fixes

- **mongo:** export error symbols ([5841a5a](https://github.com/deepkit/deepkit-framework/commit/5841a5a35927bf34d4187d047e43e2ec6317beb3))

## [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

- **desktop-ui:** -webkit-scrollbar is not supported in chrome anymore ([68fca4f](https://github.com/deepkit/deepkit-framework/commit/68fca4f393d170e2ce5b4bfa17539d06d6ab1cb0))
- **desktop-ui:** dont ignore dist/ in npm package ([e6e6faa](https://github.com/deepkit/deepkit-framework/commit/e6e6faa77f2e30d741dfe0bf77a0d79c5410a7dd))
- **orm:** make sure getJoin operates on existing join model ([03b2428](https://github.com/deepkit/deepkit-framework/commit/03b242832adac48b7163e1fcf8902e7f1b197e8a))
- **type:** handle more circular types ([5f6bd12](https://github.com/deepkit/deepkit-framework/commit/5f6bd124aaf9c546014b81dbded8110312f4e819)), closes [#477](https://github.com/deepkit/deepkit-framework/issues/477)

### Features

- **orm:** better Error handling + UniqueConstraintFailure ([f1845ee](https://github.com/deepkit/deepkit-framework/commit/f1845ee84eb61a894155944a6efae6b926a4a47d))
- **orm:** new API to configure a join query ([64cc55e](https://github.com/deepkit/deepkit-framework/commit/64cc55e812a6be555515e036de4e6b18d147b4f0))

## [1.0.1-alpha.123](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.122...v1.0.1-alpha.123) (2024-02-02)

### Bug Fixes

- **desktop-ui:** resolve various circular imports ([3f5c676](https://github.com/deepkit/deepkit-framework/commit/3f5c676f49678361707be5334222a08efdde65ba))
- **injector:** resolve deps of exported providers correctly ([c185b38](https://github.com/deepkit/deepkit-framework/commit/c185b383c3314f08c92b65c76776864a2065a2b8))

### Features

- **orm:** onDatabaseError event ([cdb7256](https://github.com/deepkit/deepkit-framework/commit/cdb7256b34f1d9de16145dd79b307ccf45f7c72f))

## [1.0.1-alpha.122](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.121...v1.0.1-alpha.122) (2024-01-31)

### Features

- **injector:** new Module.configureProvider<T>(Fn) with configuration callback ([1739b95](https://github.com/deepkit/deepkit-framework/commit/1739b9564dcf4d254dd3041dc71945290e06ad4c))

## [1.0.1-alpha.121](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.120...v1.0.1-alpha.121) (2024-01-31)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
"conventionalCommits": true
}
},
"version": "1.0.1-alpha.121"
"version": "1.0.1-alpha.131"
}
24 changes: 24 additions & 0 deletions packages/api-console-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,30 @@
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.131](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.130...v1.0.1-alpha.131) (2024-02-09)

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

## [1.0.1-alpha.128](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.127...v1.0.1-alpha.128) (2024-02-06)

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

## [1.0.1-alpha.126](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.125...v1.0.1-alpha.126) (2024-02-06)

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

## [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/api-console-api

## [1.0.1-alpha.123](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.122...v1.0.1-alpha.123) (2024-02-02)

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

## [1.0.1-alpha.122](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.121...v1.0.1-alpha.122) (2024-01-31)

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

## [1.0.1-alpha.121](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.120...v1.0.1-alpha.121) (2024-01-31)

**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.121",
"version": "1.0.1-alpha.131",
"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.121",
"@deepkit/core": "^1.0.1-alpha.121",
"@deepkit/injector": "^1.0.1-alpha.121",
"@deepkit/logger": "^1.0.1-alpha.121",
"@deepkit/rpc": "^1.0.1-alpha.121",
"@deepkit/type": "^1.0.1-alpha.121"
"@deepkit/bson": "^1.0.1-alpha.131",
"@deepkit/core": "^1.0.1-alpha.124",
"@deepkit/injector": "^1.0.1-alpha.131",
"@deepkit/logger": "^1.0.1-alpha.131",
"@deepkit/rpc": "^1.0.1-alpha.131",
"@deepkit/type": "^1.0.1-alpha.131"
},
"jest": {
"testEnvironment": "node",
Expand Down
24 changes: 24 additions & 0 deletions packages/api-console-gui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,30 @@
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.131](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.130...v1.0.1-alpha.131) (2024-02-09)

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

## [1.0.1-alpha.128](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.127...v1.0.1-alpha.128) (2024-02-06)

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

## [1.0.1-alpha.126](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.125...v1.0.1-alpha.126) (2024-02-06)

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

## [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/api-console-gui

## [1.0.1-alpha.123](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.122...v1.0.1-alpha.123) (2024-02-02)

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

## [1.0.1-alpha.122](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.121...v1.0.1-alpha.122) (2024-01-31)

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

## [1.0.1-alpha.121](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.120...v1.0.1-alpha.121) (2024-01-31)

**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.121",
"version": "1.0.1-alpha.131",
"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.121",
"@deepkit/bson": "^1.0.1-alpha.121",
"@deepkit/core": "^1.0.1-alpha.121",
"@deepkit/core-rxjs": "^1.0.1-alpha.121",
"@deepkit/desktop-ui": "^1.0.1-alpha.121",
"@deepkit/event": "^1.0.1-alpha.121",
"@deepkit/injector": "^1.0.1-alpha.121",
"@deepkit/logger": "^1.0.1-alpha.121",
"@deepkit/rpc": "^1.0.1-alpha.121",
"@deepkit/stopwatch": "^1.0.1-alpha.121",
"@deepkit/type": "^1.0.1-alpha.121",
"@deepkit/type-compiler": "^1.0.1-alpha.117",
"@deepkit/api-console-api": "^1.0.1-alpha.131",
"@deepkit/bson": "^1.0.1-alpha.131",
"@deepkit/core": "^1.0.1-alpha.124",
"@deepkit/core-rxjs": "^1.0.1-alpha.124",
"@deepkit/desktop-ui": "^1.0.1-alpha.131",
"@deepkit/event": "^1.0.1-alpha.131",
"@deepkit/injector": "^1.0.1-alpha.131",
"@deepkit/logger": "^1.0.1-alpha.131",
"@deepkit/rpc": "^1.0.1-alpha.131",
"@deepkit/stopwatch": "^1.0.1-alpha.131",
"@deepkit/type": "^1.0.1-alpha.131",
"@deepkit/type-compiler": "^1.0.1-alpha.123",
"@deepkit/ui-library": "^1.0.1-alpha.56",
"@types/jasmine": "~4.3.0",
"@types/marked": "^4.0.3",
Expand Down
32 changes: 32 additions & 0 deletions packages/api-console-module/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,38 @@
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.131](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.130...v1.0.1-alpha.131) (2024-02-09)

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

## [1.0.1-alpha.130](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.129...v1.0.1-alpha.130) (2024-02-07)

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

## [1.0.1-alpha.129](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.128...v1.0.1-alpha.129) (2024-02-07)

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

## [1.0.1-alpha.128](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.127...v1.0.1-alpha.128) (2024-02-06)

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

## [1.0.1-alpha.126](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.125...v1.0.1-alpha.126) (2024-02-06)

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

## [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/api-console-module

## [1.0.1-alpha.123](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.122...v1.0.1-alpha.123) (2024-02-02)

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

## [1.0.1-alpha.122](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.121...v1.0.1-alpha.122) (2024-01-31)

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

## [1.0.1-alpha.121](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.120...v1.0.1-alpha.121) (2024-01-31)

**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.121",
"version": "1.0.1-alpha.131",
"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.121",
"@deepkit/api-console-gui": "^1.0.1-alpha.121"
"@deepkit/api-console-api": "^1.0.1-alpha.131",
"@deepkit/api-console-gui": "^1.0.1-alpha.131"
},
"devDependencies": {
"@deepkit/app": "^1.0.1-alpha.121",
"@deepkit/broker": "^1.0.1-alpha.121",
"@deepkit/bson": "^1.0.1-alpha.121",
"@deepkit/core": "^1.0.1-alpha.121",
"@deepkit/http": "^1.0.1-alpha.121",
"@deepkit/injector": "^1.0.1-alpha.121",
"@deepkit/logger": "^1.0.1-alpha.121",
"@deepkit/rpc": "^1.0.1-alpha.121",
"@deepkit/type": "^1.0.1-alpha.121",
"@deepkit/app": "^1.0.1-alpha.131",
"@deepkit/broker": "^1.0.1-alpha.131",
"@deepkit/bson": "^1.0.1-alpha.131",
"@deepkit/core": "^1.0.1-alpha.124",
"@deepkit/http": "^1.0.1-alpha.131",
"@deepkit/injector": "^1.0.1-alpha.131",
"@deepkit/logger": "^1.0.1-alpha.131",
"@deepkit/rpc": "^1.0.1-alpha.131",
"@deepkit/type": "^1.0.1-alpha.131",
"rxjs": "~7.8.0"
},
"jest": {
Expand Down
24 changes: 24 additions & 0 deletions packages/app/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,30 @@
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.131](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.130...v1.0.1-alpha.131) (2024-02-09)

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

## [1.0.1-alpha.128](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.127...v1.0.1-alpha.128) (2024-02-06)

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

## [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/app

## [1.0.1-alpha.123](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.122...v1.0.1-alpha.123) (2024-02-02)

### Bug Fixes

- **injector:** resolve deps of exported providers correctly ([c185b38](https://github.com/deepkit/deepkit-framework/commit/c185b383c3314f08c92b65c76776864a2065a2b8))

## [1.0.1-alpha.122](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.121...v1.0.1-alpha.122) (2024-01-31)

### Features

- **injector:** new Module.configureProvider<T>(Fn) with configuration callback ([1739b95](https://github.com/deepkit/deepkit-framework/commit/1739b9564dcf4d254dd3041dc71945290e06ad4c))

## [1.0.1-alpha.121](https://github.com/deepkit/deepkit-framework/compare/v1.0.1-alpha.120...v1.0.1-alpha.121) (2024-01-31)

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

0 comments on commit 645c625

Please sign in to comment.