Updated to support dart 3
This commit is contained in:
parent
d440ebd649
commit
82b78fdaef
15 changed files with 201 additions and 162 deletions
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -36,6 +36,21 @@
|
||||||
* Updated: angel3_orm_test
|
* Updated: angel3_orm_test
|
||||||
* Updated: angel3_orm_cache
|
* Updated: angel3_orm_cache
|
||||||
* Updated: angel3_orm_cors
|
* Updated: angel3_orm_cors
|
||||||
|
* Updated: angel3_mustache
|
||||||
|
* Updated: angel3_proxy
|
||||||
|
* Updated: angel3_redis
|
||||||
|
* Updated: angel3_oauth2 (issue: oauth2 don't support http 1.0.0)
|
||||||
|
* Updated: angel3_markdown (issue: markdown don't support file 7.0.0)
|
||||||
|
* Updated: angel3_auth_oauth2 (issue: oauth2 don't support http 1.0.0)
|
||||||
|
* Updated: angel3_mongo (issue: mongo_dart don't support http 1.0.0)
|
||||||
|
* Updated: angel3_jinja (issue: 2 errors)
|
||||||
|
* Updated: angel3_user_agent (todo)
|
||||||
|
* Updated: angel3_sync (todo)
|
||||||
|
* Updated: angel3_shelf (todo)
|
||||||
|
* Updated: angel3_sembast (todo)
|
||||||
|
* Updated: angel3_security (todo)
|
||||||
|
* Updated: angel3_seo (todo)
|
||||||
|
* Updated: angel3_auth_twitter (todo)
|
||||||
|
|
||||||
## 7.0.0
|
## 7.0.0
|
||||||
|
|
||||||
|
|
|
@ -14,6 +14,8 @@ dev_dependencies:
|
||||||
logging: ^1.2.0
|
logging: ^1.2.0
|
||||||
lints: ^2.1.0
|
lints: ^2.1.0
|
||||||
dependency_overrides:
|
dependency_overrides:
|
||||||
|
oauth2:
|
||||||
|
path: ../../../oauth2
|
||||||
angel3_container:
|
angel3_container:
|
||||||
path: ../container/angel_container
|
path: ../container/angel_container
|
||||||
angel3_framework:
|
angel3_framework:
|
||||||
|
|
|
@ -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,27 +1,27 @@
|
||||||
name: angel3_file_service
|
name: angel3_file_service
|
||||||
version: 7.0.0
|
version: 8.0.0
|
||||||
description: Angel service that persists data to a file on disk, stored as a JSON list.
|
description: Angel service that persists data to a file on disk, stored as a JSON list.
|
||||||
homepage: https://angel3-framework.web.app/
|
homepage: https://angel3-framework.web.app/
|
||||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/file_service
|
repository: https://github.com/dukefirehawk/angel/tree/master/packages/file_service
|
||||||
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
|
||||||
file: ^6.1.1
|
file: ^7.0.0
|
||||||
pool: ^1.5.0
|
pool: ^1.5.0
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
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
|
||||||
|
|
|
@ -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_jinja
|
name: angel3_jinja
|
||||||
version: 7.0.0
|
version: 8.0.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: ^7.0.0
|
angel3_framework: ^8.0.0
|
||||||
jinja: ^0.3.4
|
jinja: ^0.4.2
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
angel3_test: ^7.0.0
|
angel3_test: ^8.0.0
|
||||||
path: ^1.8.0
|
path: ^1.8.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,38 +1,38 @@
|
||||||
name: angel3_markdown
|
name: angel3_markdown
|
||||||
version: 7.0.0
|
version: 8.0.0
|
||||||
description: Angel3 Markdown view generator. Write static sites, with no build step.
|
description: Angel3 Markdown view generator. Write static sites, with no build step.
|
||||||
homepage: https://angel3-framework.web.app/
|
homepage: https://angel3-framework.web.app/
|
||||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/markdown
|
repository: https://github.com/dukefirehawk/angel/tree/master/packages/markdown
|
||||||
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
|
||||||
file: ^6.1.2
|
file: ^6.1.2
|
||||||
markdown: ^6.0.0
|
markdown: ^7.1.0
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
angel3_test: ^7.0.0
|
angel3_test: ^8.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_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,29 +1,29 @@
|
||||||
name: angel3_mongo
|
name: angel3_mongo
|
||||||
version: 7.0.0
|
version: 8.0.0
|
||||||
description: MongoDB-enabled services for the Angel3 framework. Well-tested.
|
description: MongoDB-enabled services for the Angel3 framework. Well-tested.
|
||||||
homepage: https://angel3-framework.web.app/
|
homepage: https://angel3-framework.web.app/
|
||||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/mongo
|
repository: https://github.com/dukefirehawk/angel/tree/master/packages/mongo
|
||||||
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
|
||||||
belatuk_json_serializer: ^6.0.0
|
belatuk_json_serializer: ^7.0.0
|
||||||
belatuk_merge_map: ^4.0.0
|
belatuk_merge_map: ^5.0.0
|
||||||
mongo_dart: ^0.7.0
|
mongo_dart: ^0.7.0
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
http: ^0.13.0
|
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
|
|
@ -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
|
||||||
|
|
|
@ -6,24 +6,24 @@ repository: https://github.com/dukefirehawk/angel/tree/master/packages/mustache
|
||||||
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
|
||||||
file: ^6.1.2
|
file: ^7.0.0
|
||||||
mustache_template: ^2.0.0
|
mustache_template: ^2.0.0
|
||||||
path: ^1.8.0
|
path: ^1.8.0
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
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
|
|
@ -19,6 +19,8 @@ dev_dependencies:
|
||||||
test: ^1.24.0
|
test: ^1.24.0
|
||||||
uuid: ^3.0.0
|
uuid: ^3.0.0
|
||||||
dependency_overrides:
|
dependency_overrides:
|
||||||
|
oauth2:
|
||||||
|
path: ../../../oauth2
|
||||||
angel3_container:
|
angel3_container:
|
||||||
path: ../container/angel_container
|
path: ../container/angel_container
|
||||||
angel3_framework:
|
angel3_framework:
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 8.0.0
|
||||||
|
|
||||||
|
* Require Dart >= 3.0
|
||||||
|
|
||||||
## 7.0.1
|
## 7.0.1
|
||||||
|
|
||||||
* Fixed `BytesBuilder` warnings
|
* Fixed `BytesBuilder` warnings
|
||||||
|
|
|
@ -6,36 +6,36 @@ repository: https://github.com/dukefirehawk/angel/tree/master/packages/proxy
|
||||||
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
|
||||||
http: ^0.13.3
|
http: ^1.0.0
|
||||||
http_parser: ^4.0.0
|
http_parser: ^4.0.0
|
||||||
path: ^1.8.0
|
path: ^1.8.0
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
angel3_test: ^7.0.0
|
angel3_test: ^8.0.0
|
||||||
angel3_mock_request: ^7.0.0
|
angel3_mock_request: ^8.0.0
|
||||||
logging: ^1.0.1
|
logging: ^1.2.0
|
||||||
lints: ^2.0.0
|
lints: ^2.1.0
|
||||||
test: ^1.21.0
|
test: ^1.24.0
|
||||||
# dependency_overrides:
|
dependency_overrides:
|
||||||
# angel3_framework:
|
angel3_framework:
|
||||||
# path: ../framework
|
path: ../framework
|
||||||
# angel3_container:
|
angel3_container:
|
||||||
# path: ../container/angel_container
|
path: ../container/angel_container
|
||||||
# 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,27 +1,27 @@
|
||||||
name: angel3_redis
|
name: angel3_redis
|
||||||
version: 7.0.0
|
version: 8.0.0
|
||||||
description: An Angel3 service provider for Redis. Works well for caching volatile data.
|
description: An Angel3 service provider for Redis. Works well for caching volatile data.
|
||||||
homepage: https://angel3-framework.web.app/
|
homepage: https://angel3-framework.web.app/
|
||||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/redis
|
repository: https://github.com/dukefirehawk/angel/tree/master/packages/redis
|
||||||
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_http_exception: ^7.0.0
|
angel3_http_exception: ^8.0.0
|
||||||
resp_client: ^1.2.0
|
resp_client: ^1.2.0
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
test: ^1.21.0
|
test: ^1.24.0
|
||||||
lints: ^2.0.0
|
lints: ^2.1.0
|
||||||
# dependency_overrides:
|
dependency_overrides:
|
||||||
# angel3_framework:
|
angel3_framework:
|
||||||
# path: ../framework
|
path: ../framework
|
||||||
# angel3_container:
|
angel3_container:
|
||||||
# path: ../container/angel_container
|
path: ../container/angel_container
|
||||||
# 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
|
Loading…
Reference in a new issue