Updated libraries

This commit is contained in:
thomashii@dukefirehawk.com 2023-09-22 00:24:50 +08:00
parent bfd05b6854
commit 4dcf6883d0
8 changed files with 37 additions and 20 deletions

View file

@ -1,5 +1,9 @@
# Change Log # Change Log
## 8.1.0
* Updated `uuid` to 4.0.0
## 8.0.0 ## 8.0.0
* Require Dart >= 3.0 * Require Dart >= 3.0

View file

@ -1,5 +1,5 @@
name: angel3_framework name: angel3_framework
version: 8.0.0 version: 8.1.0
description: A high-powered HTTP server extensible framework with dependency injection, routing and much more. description: A high-powered HTTP server extensible framework with dependency injection, routing and much more.
homepage: https://angel3-framework.web.app/ homepage: https://angel3-framework.web.app/
repository: https://github.com/dukefirehawk/angel/tree/master/packages/framework repository: https://github.com/dukefirehawk/angel/tree/master/packages/framework
@ -28,7 +28,7 @@ dependencies:
stack_trace: ^1.11.0 stack_trace: ^1.11.0
string_scanner: ^1.2.0 string_scanner: ^1.2.0
tuple: ^2.0.0 tuple: ^2.0.0
uuid: ^3.0.0 uuid: ^4.0.0
collection: ^1.17.0 collection: ^1.17.0
dev_dependencies: dev_dependencies:
http: ^1.0.0 http: ^1.0.0

View file

@ -1,5 +1,9 @@
# Change Log # Change Log
## 8.1.0
* Update `jinja` to 0.5.0
## 8.0.0 ## 8.0.0
* Require Dart >= 3.0 * Require Dart >= 3.0

View file

@ -1,12 +1,12 @@
name: angel3_jinja name: angel3_jinja
version: 8.0.0 version: 8.1.0
description: A service that renders Jinja2 template into HTML view for Angel3. Ported from Python to Dart. description: A service that renders Jinja2 template into HTML view for Angel3. Ported from Python to Dart.
homepage: https://github.com/dukefirehawk/angel/tree/master/packages/jinja homepage: https://github.com/dukefirehawk/angel/tree/master/packages/jinja
environment: environment:
sdk: '>=3.0.0 <4.0.0' sdk: '>=3.0.0 <4.0.0'
dependencies: dependencies:
angel3_framework: ^8.0.0 angel3_framework: ^8.0.0
jinja: ^0.4.2 jinja: ^0.5.0
dev_dependencies: dev_dependencies:
angel3_test: ^8.0.0 angel3_test: ^8.0.0
path: ^1.8.0 path: ^1.8.0

View file

@ -1,5 +1,10 @@
# Change Log # Change Log
## 8.0.0
* Require Dart >= 3.0
* Upgraded `mongo_dart` to 0.9.3
## 7.0.0 ## 7.0.0
* Require Dart >= 2.17 * Require Dart >= 2.17

View file

@ -9,21 +9,21 @@ dependencies:
angel3_framework: ^8.0.0 angel3_framework: ^8.0.0
belatuk_json_serializer: ^7.0.0 belatuk_json_serializer: ^7.0.0
belatuk_merge_map: ^5.0.0 belatuk_merge_map: ^5.0.0
mongo_dart: ^0.7.0 mongo_dart: ^0.9.0
dev_dependencies: dev_dependencies:
http: ^1.0.0 http: ^1.0.0
test: ^1.24.0 test: ^1.24.0
lints: ^2.1.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

@ -1,5 +1,9 @@
# Change Log # Change Log
## 8.1.0
* Updated to `uuid`
## 8.0.0 ## 8.0.0
* Require Dart >= 3.0 * Require Dart >= 3.0

View file

@ -1,5 +1,5 @@
name: angel3_oauth2 name: angel3_oauth2
version: 8.0.0 version: 8.1.0
description: A class containing handlers that can be used within Angel to build a spec-compliant OAuth 2.0 server. description: A class containing handlers that can be used within Angel to build a spec-compliant OAuth 2.0 server.
homepage: https://angel3-framework.web.app/ homepage: https://angel3-framework.web.app/
repository: https://github.com/dukefirehawk/angel/tree/master/packages/oauth2 repository: https://github.com/dukefirehawk/angel/tree/master/packages/oauth2
@ -18,7 +18,7 @@ dev_dependencies:
oauth2: ^2.0.0 oauth2: ^2.0.0
lints: ^2.1.0 lints: ^2.1.0
test: ^1.24.0 test: ^1.24.0
uuid: ^3.0.0 uuid: ^4.0.0
dependency_overrides: dependency_overrides:
angel3_container: angel3_container:
path: ../container/angel_container path: ../container/angel_container