From 7a9362fc56a84b73f5e8cb3ab36d491597438c43 Mon Sep 17 00:00:00 2001 From: "thomashii@dukefirehawk.com" Date: Sat, 27 May 2023 07:42:46 +0800 Subject: [PATCH] Updated production and hot to Dart 3 --- CHANGELOG.md | 5 +++ packages/hot/CHANGELOG.md | 5 +++ packages/hot/README.md | 4 +-- packages/hot/pubspec.yaml | 58 ++++++++++++++++---------------- packages/production/CHANGELOG.md | 4 +++ packages/production/pubspec.yaml | 42 +++++++++++------------ packages/validate/pubspec.yaml | 2 +- 7 files changed, 67 insertions(+), 53 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b6bd159..a4e83a0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,11 @@ * Updated: jael3 * Updated: jael3_preprocessor * Updated: jael3_language_server +* Updated: angel3_jael +* Updated: jael3_web +* Updated: angel3_production +* Updated: angel3_hot +* Updated: angel3_static ## 7.0.0 diff --git a/packages/hot/CHANGELOG.md b/packages/hot/CHANGELOG.md index afcbb087..f029da3f 100644 --- a/packages/hot/CHANGELOG.md +++ b/packages/hot/CHANGELOG.md @@ -1,5 +1,10 @@ # Change Log +## 8.0.0 + +* Require Dart >= 3.0 +* Updated `vm_service` to 11.6.0 + ## 7.0.1 * Updated `server` header to `angel3` diff --git a/packages/hot/README.md b/packages/hot/README.md index 31e1bce6..45924623 100644 --- a/packages/hot/README.md +++ b/packages/hot/README.md @@ -17,8 +17,8 @@ In your `pubspec.yaml`: ```yaml dependencies: - angel3_framework: ^7.0.0 - angel3_hot: ^7.0.0 + angel3_framework: ^8.0.0 + angel3_hot: ^8.0.0 ``` ## Usage diff --git a/packages/hot/pubspec.yaml b/packages/hot/pubspec.yaml index baf50757..a22e40fd 100644 --- a/packages/hot/pubspec.yaml +++ b/packages/hot/pubspec.yaml @@ -1,41 +1,41 @@ name: angel3_hot -version: 7.0.1 +version: 8.0.0 description: Supports hot reloading/hot code push of Angel3 servers on file changes. homepage: https://angel3-framework.web.app/ repository: https://github.com/dukefirehawk/angel/tree/master/packages/hot environment: sdk: '>=3.0.0 <4.0.0' dependencies: - angel3_framework: ^7.0.0 - angel3_websocket: ^7.0.0 - belatuk_html_builder: ^4.0.0 - charcode: ^1.2.0 - glob: ^2.0.1 + angel3_framework: ^8.0.0 + angel3_websocket: ^8.0.0 + belatuk_html_builder: ^5.0.0 + charcode: ^1.3.0 + glob: ^2.1.0 io: ^1.0.0 path: ^1.8.0 - vm_service: ^9.3.0 + vm_service: ^11.6.0 watcher: ^1.0.0 dev_dependencies: - http: ^0.13.2 - logging: ^1.0.1 - lints: ^2.0.0 -# 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 + http: ^1.0.0 + logging: ^1.2.0 + lints: ^2.1.0 +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 \ No newline at end of file diff --git a/packages/production/CHANGELOG.md b/packages/production/CHANGELOG.md index c4830a4b..d875c098 100644 --- a/packages/production/CHANGELOG.md +++ b/packages/production/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## 8.0.0 + +* Require Dart >= 3.0 + ## 7.0.0 * Require Dart >= 2.17 diff --git a/packages/production/pubspec.yaml b/packages/production/pubspec.yaml index 7237deb8..810632fa 100644 --- a/packages/production/pubspec.yaml +++ b/packages/production/pubspec.yaml @@ -1,30 +1,30 @@ name: angel3_production -version: 7.0.0 +version: 8.0.0 description: Helpers for concurrency, message-passing, rotating loggers, and other production functionality in Angel3. homepage: https://angel3-framework.web.app repository: https://github.com/dukefirehawk/angel/tree/master/packages/production environment: sdk: '>=3.0.0 <4.0.0' dependencies: - angel3_container: ^7.0.0 - angel3_framework: ^7.0.0 - belatuk_pub_sub: ^5.0.0 - args: ^2.3.0 + angel3_container: ^8.0.0 + angel3_framework: ^8.0.0 + belatuk_pub_sub: ^6.0.0 + args: ^2.4.0 io: ^1.0.0 - logging: ^1.0.1 - intl: ^0.17.0 + logging: ^1.2.0 + intl: ^0.18.0 dev_dependencies: - lints: ^2.0.0 -# 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 + lints: ^2.1.0 +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 diff --git a/packages/validate/pubspec.yaml b/packages/validate/pubspec.yaml index 04d846bd..9b58e861 100644 --- a/packages/validate/pubspec.yaml +++ b/packages/validate/pubspec.yaml @@ -13,7 +13,7 @@ dev_dependencies: angel3_mock_request: ^8.0.0 build_runner: ^2.4.0 build_web_compilers: ^4.0.0 - logging: ^1.1.0 + logging: ^1.2.0 lints: ^2.1.0 test: ^1.24.0 dependency_overrides: