Updated cache and cors to Dart 3
This commit is contained in:
parent
79b3417fcc
commit
dad2106021
5 changed files with 77 additions and 61 deletions
|
@ -28,6 +28,14 @@
|
||||||
* Updated: angel3_serialize_generator
|
* Updated: angel3_serialize_generator
|
||||||
* Updated: angel3_orm
|
* Updated: angel3_orm
|
||||||
* Updated: angel3_orm_generator
|
* Updated: angel3_orm_generator
|
||||||
|
* Updated: angel3_migration
|
||||||
|
* Updated: angel3_migration_generator
|
||||||
|
* Updated: angel3_orm_postgresql
|
||||||
|
* Updated: angel3_orm_mysql
|
||||||
|
* Updated: angel3_orm_service
|
||||||
|
* Updated: angel3_orm_test
|
||||||
|
* Updated: angel3_orm_cache
|
||||||
|
* Updated: angel3_orm_cors
|
||||||
|
|
||||||
## 7.0.0
|
## 7.0.0
|
||||||
|
|
||||||
|
|
4
packages/cache/CHANGELOG.md
vendored
4
packages/cache/CHANGELOG.md
vendored
|
@ -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
|
||||||
|
|
64
packages/cache/pubspec.yaml
vendored
64
packages/cache/pubspec.yaml
vendored
|
@ -1,42 +1,42 @@
|
||||||
name: angel3_cache
|
name: angel3_cache
|
||||||
version: 7.0.0
|
version: 8.0.0
|
||||||
description: A service that provides HTTP caching to the response data for Angel3
|
description: A service that provides HTTP caching to the response data for Angel3
|
||||||
homepage: https://angel3-framework.web.app/
|
homepage: https://angel3-framework.web.app/
|
||||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/cache
|
repository: https://github.com/dukefirehawk/angel/tree/master/packages/cache
|
||||||
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
|
||||||
collection: ^1.15.0
|
collection: ^1.17.0
|
||||||
meta: ^1.4.0
|
meta: ^1.9.0
|
||||||
pool: ^1.5.0
|
pool: ^1.5.0
|
||||||
logging: ^1.0.0
|
logging: ^1.2.0
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
angel3_test: ^7.0.0
|
angel3_test: ^8.0.0
|
||||||
glob: ^2.0.1
|
glob: ^2.0.1
|
||||||
http: ^0.13.3
|
http: ^1.0.0
|
||||||
test: ^1.21.0
|
test: ^1.24.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_test:
|
angel3_test:
|
||||||
# path: ../test
|
path: ../test
|
||||||
# angel3_websocket:
|
angel3_websocket:
|
||||||
# path: ../websocket
|
path: ../websocket
|
||||||
# angel3_client:
|
angel3_client:
|
||||||
# path: ../client
|
path: ../client
|
||||||
# angel3_auth:
|
angel3_auth:
|
||||||
# path: ../auth
|
path: ../auth
|
||||||
# angel3_validate:
|
angel3_validate:
|
||||||
# path: ../validate
|
path: ../validate
|
|
@ -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
|
||||||
|
|
|
@ -1,37 +1,37 @@
|
||||||
name: angel3_cors
|
name: angel3_cors
|
||||||
version: 7.0.0
|
version: 8.0.0
|
||||||
description: Angel3 CORS middleware. Ported from expressjs/cors to Angel3 framework.
|
description: Angel3 CORS middleware. Ported from expressjs/cors to Angel3 framework.
|
||||||
homepage: https://angel3-framework.web.app/
|
homepage: https://angel3-framework.web.app/
|
||||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/cors
|
repository: https://github.com/dukefirehawk/angel/tree/master/packages/cors
|
||||||
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
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
angel3_test: ^7.0.0
|
angel3_test: ^8.0.0
|
||||||
http: ^0.13.3
|
http: ^1.0.0
|
||||||
lints: ^2.0.0
|
lints: ^2.1.0
|
||||||
test: ^1.21.0
|
test: ^1.24.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
|
||||||
# angel3_validate:
|
angel3_validate:
|
||||||
# path: ../validate
|
path: ../validate
|
||||||
# angel3_test:
|
angel3_test:
|
||||||
# path: ../test
|
path: ../test
|
||||||
|
|
Loading…
Reference in a new issue