diff --git a/packages/cli/README.md b/packages/cli/README.md deleted file mode 100644 index 1f112426..00000000 --- a/packages/cli/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# Angel3 CLI - -Moved to [`Angel3 CLI Repository`](https://github.com/dukefirehawk/angel3-cli) diff --git a/packages/configuration/CHANGELOG.md b/packages/configuration/CHANGELOG.md index 7dd61067..53c98f03 100644 --- a/packages/configuration/CHANGELOG.md +++ b/packages/configuration/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## 6.0.0 + +* Updated to min SDK 2.15.x + +## 5.0.0 + +* No release. Skipped + ## 4.1.0 * Updated to use `package:belatuk_merge_map` diff --git a/packages/configuration/README.md b/packages/configuration/README.md index e6691452..18c42b68 100644 --- a/packages/configuration/README.md +++ b/packages/configuration/README.md @@ -21,7 +21,7 @@ In `pubspec.yaml`: ```yaml dependencies: - angel3_configuration: ^3.0.0 + angel3_configuration: ^6.0.0 ``` ## Usage diff --git a/packages/configuration/pubspec.yaml b/packages/configuration/pubspec.yaml index 464d6f74..c92f2ac9 100644 --- a/packages/configuration/pubspec.yaml +++ b/packages/configuration/pubspec.yaml @@ -1,12 +1,12 @@ name: angel3_configuration -version: 4.1.0 +version: 6.0.0 description: Automatic YAML application configuration loader for Angel 3, with .env support. homepage: https://angel3-framework.web.app/ repository: https://github.com/dukefirehawk/angel/tree/master/packages/configuration environment: - sdk: '>=2.12.0 <3.0.0' + sdk: '>=2.15.0 <3.0.0' dependencies: - angel3_framework: ^4.2.0 + angel3_framework: ^6.0.0 belatuk_merge_map: ^3.0.0 dotenv: ^3.0.0 file: ^6.1.0 @@ -17,6 +17,16 @@ dev_dependencies: lints: ^1.0.0 belatuk_pretty_logging: ^4.0.0 test: ^1.17.5 -#dependency_overrides: -# angel3_framework: -# path: ../framework \ No newline at end of file +dependency_overrides: + angel3_container: + path: ../container/angel_container + angel3_framework: + path: ../framework + angel3_http_exception: + path: ../http_exception + angel3_model: + path: ../model + angel3_route: + path: ../route + angel3_mock_request: + path: ../mock_request \ No newline at end of file diff --git a/packages/cors/CHANGELOG.md b/packages/cors/CHANGELOG.md index fc4ac49e..734293a0 100644 --- a/packages/cors/CHANGELOG.md +++ b/packages/cors/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## 6.0.0 + +* Updated to min SDK 2.15.x + +## 5.0.0 + +* No release. Skipped + ## 4.1.0 * Upgraded to `lints` linter diff --git a/packages/cors/pubspec.yaml b/packages/cors/pubspec.yaml index 051266f0..4a9de265 100644 --- a/packages/cors/pubspec.yaml +++ b/packages/cors/pubspec.yaml @@ -1,14 +1,37 @@ name: angel3_cors -version: 4.1.0 +version: 6.0.0 description: Angel3 CORS middleware. Ported from expressjs/cors to Angel3 framework. homepage: https://angel3-framework.web.app/ repository: https://github.com/dukefirehawk/angel/tree/master/packages/cors environment: sdk: '>=2.12.0 <3.0.0' dependencies: - angel3_framework: ^4.2.0 + angel3_framework: ^6.0.0 dev_dependencies: - angel3_test: ^4.0.0 + angel3_test: ^6.0.0 http: ^0.13.3 lints: ^1.0.0 test: ^1.17.5 +dependency_overrides: + angel3_container: + path: ../container/angel_container + angel3_framework: + path: ../framework + angel3_http_exception: + path: ../http_exception + angel3_model: + path: ../model + angel3_route: + path: ../route + angel3_mock_request: + path: ../mock_request + angel3_auth: + path: ../auth + angel3_client: + path: ../client + angel3_websocket: + path: ../websocket + angel3_validate: + path: ../validate + angel3_test: + path: ../test