Updated production and hot to Dart 3

This commit is contained in:
thomashii@dukefirehawk.com 2023-05-27 07:42:46 +08:00
parent 981397791a
commit 7a9362fc56
7 changed files with 67 additions and 53 deletions

View file

@ -19,6 +19,11 @@
* Updated: jael3 * Updated: jael3
* Updated: jael3_preprocessor * Updated: jael3_preprocessor
* Updated: jael3_language_server * Updated: jael3_language_server
* Updated: angel3_jael
* Updated: jael3_web
* Updated: angel3_production
* Updated: angel3_hot
* Updated: angel3_static
## 7.0.0 ## 7.0.0

View file

@ -1,5 +1,10 @@
# Change Log # Change Log
## 8.0.0
* Require Dart >= 3.0
* Updated `vm_service` to 11.6.0
## 7.0.1 ## 7.0.1
* Updated `server` header to `angel3` * Updated `server` header to `angel3`

View file

@ -17,8 +17,8 @@ In your `pubspec.yaml`:
```yaml ```yaml
dependencies: dependencies:
angel3_framework: ^7.0.0 angel3_framework: ^8.0.0
angel3_hot: ^7.0.0 angel3_hot: ^8.0.0
``` ```
## Usage ## Usage

View file

@ -1,41 +1,41 @@
name: angel3_hot name: angel3_hot
version: 7.0.1 version: 8.0.0
description: Supports hot reloading/hot code push of Angel3 servers on file changes. description: Supports hot reloading/hot code push of Angel3 servers on file changes.
homepage: https://angel3-framework.web.app/ homepage: https://angel3-framework.web.app/
repository: https://github.com/dukefirehawk/angel/tree/master/packages/hot repository: https://github.com/dukefirehawk/angel/tree/master/packages/hot
environment: environment:
sdk: '>=3.0.0 <4.0.0' sdk: '>=3.0.0 <4.0.0'
dependencies: dependencies:
angel3_framework: ^7.0.0 angel3_framework: ^8.0.0
angel3_websocket: ^7.0.0 angel3_websocket: ^8.0.0
belatuk_html_builder: ^4.0.0 belatuk_html_builder: ^5.0.0
charcode: ^1.2.0 charcode: ^1.3.0
glob: ^2.0.1 glob: ^2.1.0
io: ^1.0.0 io: ^1.0.0
path: ^1.8.0 path: ^1.8.0
vm_service: ^9.3.0 vm_service: ^11.6.0
watcher: ^1.0.0 watcher: ^1.0.0
dev_dependencies: dev_dependencies:
http: ^0.13.2 http: ^1.0.0
logging: ^1.0.1 logging: ^1.2.0
lints: ^2.0.0 lints: ^2.1.0
# dependency_overrides: dependency_overrides:
# angel3_container: angel3_container:
# path: ../container/angel_container path: ../container/angel_container
# angel3_framework: angel3_framework:
# path: ../framework path: ../framework
# angel3_http_exception: angel3_http_exception:
# path: ../http_exception path: ../http_exception
# angel3_model: angel3_model:
# path: ../model path: ../model
# angel3_route: angel3_route:
# path: ../route path: ../route
# angel3_mock_request: angel3_mock_request:
# path: ../mock_request path: ../mock_request
# angel3_auth: angel3_auth:
# path: ../auth path: ../auth
# angel3_client: angel3_client:
# path: ../client path: ../client
# angel3_websocket: angel3_websocket:
# path: ../websocket path: ../websocket

View file

@ -1,5 +1,9 @@
# Change Log # Change Log
## 8.0.0
* Require Dart >= 3.0
## 7.0.0 ## 7.0.0
* Require Dart >= 2.17 * Require Dart >= 2.17

View file

@ -1,30 +1,30 @@
name: angel3_production 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. description: Helpers for concurrency, message-passing, rotating loggers, and other production functionality in Angel3.
homepage: https://angel3-framework.web.app homepage: https://angel3-framework.web.app
repository: https://github.com/dukefirehawk/angel/tree/master/packages/production repository: https://github.com/dukefirehawk/angel/tree/master/packages/production
environment: environment:
sdk: '>=3.0.0 <4.0.0' sdk: '>=3.0.0 <4.0.0'
dependencies: dependencies:
angel3_container: ^7.0.0 angel3_container: ^8.0.0
angel3_framework: ^7.0.0 angel3_framework: ^8.0.0
belatuk_pub_sub: ^5.0.0 belatuk_pub_sub: ^6.0.0
args: ^2.3.0 args: ^2.4.0
io: ^1.0.0 io: ^1.0.0
logging: ^1.0.1 logging: ^1.2.0
intl: ^0.17.0 intl: ^0.18.0
dev_dependencies: dev_dependencies:
lints: ^2.0.0 lints: ^2.1.0
# dependency_overrides: dependency_overrides:
# angel3_container: angel3_container:
# path: ../container/angel_container path: ../container/angel_container
# angel3_framework: angel3_framework:
# path: ../framework path: ../framework
# angel3_http_exception: angel3_http_exception:
# path: ../http_exception path: ../http_exception
# angel3_model: angel3_model:
# path: ../model path: ../model
# angel3_route: angel3_route:
# path: ../route path: ../route
# angel3_mock_request: angel3_mock_request:
# path: ../mock_request path: ../mock_request

View file

@ -13,7 +13,7 @@ dev_dependencies:
angel3_mock_request: ^8.0.0 angel3_mock_request: ^8.0.0
build_runner: ^2.4.0 build_runner: ^2.4.0
build_web_compilers: ^4.0.0 build_web_compilers: ^4.0.0
logging: ^1.1.0 logging: ^1.2.0
lints: ^2.1.0 lints: ^2.1.0
test: ^1.24.0 test: ^1.24.0
dependency_overrides: dependency_overrides: