Updated min SDK to 2.17
This commit is contained in:
parent
d1d63ca834
commit
1560e147cc
52 changed files with 578 additions and 383 deletions
|
@ -143,3 +143,7 @@ You can also view the [Angel3 API](http://www.dartdocs.org/documentation/angel_f
|
|||
## Contributing
|
||||
|
||||
Interested in contributing to Angel3? See the contribution guide [here](CONTRIBUTING.md).
|
||||
|
||||
## Support
|
||||
|
||||
If you like this project and want to support the author, you can [donate](https://paypal.me/dukefirehawk?country.x=MY&locale.x=en_US) me via paypal donations service.
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
name: angel3_auth
|
||||
description: A complete authentication plugin for Angel3. Includes support for stateless JWT tokens, Basic Auth, and more.
|
||||
version: 6.0.0
|
||||
version: 7.0.0
|
||||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/auth
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_framework: ^6.0.0
|
||||
angel3_framework: ^7.0.0
|
||||
charcode: ^1.2.0
|
||||
collection: ^1.15.0
|
||||
crypto: ^3.0.0
|
||||
|
@ -15,21 +15,21 @@ dependencies:
|
|||
quiver: ^3.0.0
|
||||
logging: ^1.0.0
|
||||
dev_dependencies:
|
||||
angel3_container: ^6.0.0
|
||||
angel3_container: ^7.0.0
|
||||
http: ^0.13.1
|
||||
io: ^1.0.0
|
||||
test: ^1.21.0
|
||||
lints: ^1.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.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
|
|
@ -1,15 +1,22 @@
|
|||
name: angel3_auth_oauth2
|
||||
version: 6.0.0
|
||||
version: 7.0.0
|
||||
description: Angel3 library for authenticating users with external identity providers via OAuth2.
|
||||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/auth_oauth2
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_auth: ^6.0.0
|
||||
angel3_framework: ^6.0.0
|
||||
angel3_auth: ^7.0.0
|
||||
angel3_framework: ^7.0.0
|
||||
http_parser: ^4.0.0
|
||||
oauth2: ^2.0.0
|
||||
dev_dependencies:
|
||||
logging: ^1.0.1
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
dependency_overrides:
|
||||
angel3_container:
|
||||
path: ../container/angel_container
|
||||
angel3_framework:
|
||||
path: ../framework
|
||||
angel3_auth:
|
||||
path: ../auth
|
||||
|
|
4
packages/cache/pubspec.yaml
vendored
4
packages/cache/pubspec.yaml
vendored
|
@ -4,7 +4,7 @@ description: A service that provides HTTP caching to the response data for Angel
|
|||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/cache
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_framework: ^6.0.0
|
||||
collection: ^1.15.0
|
||||
|
@ -16,4 +16,4 @@ dev_dependencies:
|
|||
glob: ^2.0.1
|
||||
http: ^0.13.3
|
||||
test: ^1.21.0
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
|
|
|
@ -1,41 +1,41 @@
|
|||
name: angel3_client
|
||||
version: 6.0.0
|
||||
version: 7.0.0
|
||||
description: A browser, mobile and command line based client that supports querying Angel3 servers
|
||||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/client
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_http_exception: ^6.0.0
|
||||
belatuk_json_serializer: ^5.0.0
|
||||
angel3_http_exception: ^7.0.0
|
||||
belatuk_json_serializer: ^6.0.0
|
||||
collection: ^1.15.0
|
||||
http: ^0.13.1
|
||||
meta: ^1.3.0
|
||||
path: ^1.8.0
|
||||
logging: ^1.0.0
|
||||
dev_dependencies:
|
||||
angel3_framework: ^6.0.0
|
||||
angel3_model: ^6.0.0
|
||||
angel3_mock_request: ^6.0.0
|
||||
angel3_container: ^6.0.0
|
||||
angel3_auth: ^6.0.0
|
||||
angel3_framework: ^7.0.0
|
||||
angel3_model: ^7.0.0
|
||||
angel3_mock_request: ^7.0.0
|
||||
angel3_container: ^7.0.0
|
||||
angel3_auth: ^7.0.0
|
||||
async: ^2.6.1
|
||||
build_runner: ^2.1.2
|
||||
build_web_compilers: ^3.2.1
|
||||
test: ^1.21.0
|
||||
lints: ^1.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
|
||||
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
|
|
@ -1,32 +1,32 @@
|
|||
name: angel3_configuration
|
||||
version: 6.0.0
|
||||
version: 7.0.0
|
||||
description: Automatic YAML application configuration loader for Angel 3, with .env support.
|
||||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/configuration
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_framework: ^6.0.0
|
||||
belatuk_merge_map: ^3.0.0
|
||||
angel3_framework: ^7.0.0
|
||||
belatuk_merge_map: ^4.0.0
|
||||
dotenv: ^3.0.0
|
||||
file: ^6.1.0
|
||||
yaml: ^3.1.0
|
||||
dev_dependencies:
|
||||
io: ^1.0.0
|
||||
logging: ^1.0.1
|
||||
lints: ^1.0.0
|
||||
belatuk_pretty_logging: ^4.0.0
|
||||
lints: ^2.0.0
|
||||
belatuk_pretty_logging: ^5.0.0
|
||||
test: ^1.21.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
|
||||
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
|
|
@ -1,13 +1,13 @@
|
|||
name: angel3_container
|
||||
version: 6.0.0
|
||||
version: 7.0.0
|
||||
description: Angel3 hierarchical DI container, and pluggable backends for reflection.
|
||||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/container/angel_container
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
collection: ^1.15.0
|
||||
quiver: ^3.0.1
|
||||
dev_dependencies:
|
||||
test: ^1.21.0
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
|
@ -1,18 +1,18 @@
|
|||
name: angel3_container_generator
|
||||
version: 6.0.0
|
||||
version: 7.0.0
|
||||
description: Codegen support for using pkg:reflectable with pkg:angel3_container.
|
||||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/container/angel_container_generator
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_container: ^6.0.0
|
||||
angel3_container: ^7.0.0
|
||||
reflectable: ^3.0.4
|
||||
dev_dependencies:
|
||||
build_runner: ^2.1.2
|
||||
build_test: ^2.1.3
|
||||
test: ^1.21.0
|
||||
lints: ^1.0.1
|
||||
# dependency_overrides:
|
||||
# angel3_container:
|
||||
# path: ../angel_container
|
||||
dependency_overrides:
|
||||
angel3_container:
|
||||
path: ../angel_container
|
||||
|
|
|
@ -4,13 +4,13 @@ description: Angel3 CORS middleware. Ported from expressjs/cors to Angel3 framew
|
|||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/cors
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_framework: ^6.0.0
|
||||
dev_dependencies:
|
||||
angel3_test: ^6.0.0
|
||||
http: ^0.13.3
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
test: ^1.21.0
|
||||
# dependency_overrides:
|
||||
# angel3_container:
|
||||
|
|
|
@ -4,14 +4,14 @@ description: Angel service that persists data to a file on disk, stored as a JSO
|
|||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/file_service
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_framework: ^6.0.0
|
||||
file: ^6.1.1
|
||||
pool: ^1.5.0
|
||||
dev_dependencies:
|
||||
test: ^1.21.0
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
# dependency_overrides:
|
||||
# angel3_container:
|
||||
# path: ../container/angel_container
|
||||
|
|
|
@ -1,19 +1,19 @@
|
|||
name: angel3_framework
|
||||
version: 6.0.0
|
||||
version: 7.0.0
|
||||
description: A high-powered HTTP server extensible framework with dependency injection, routing and much more.
|
||||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/framework
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_container: ^6.0.0
|
||||
angel3_http_exception: ^6.0.0
|
||||
angel3_model: ^6.0.0
|
||||
angel3_route: ^6.0.0
|
||||
angel3_mock_request: ^6.0.0
|
||||
belatuk_merge_map: ^3.0.0
|
||||
belatuk_combinator: ^3.0.0
|
||||
belatuk_http_server: ^2.1.0
|
||||
angel3_container: ^7.0.0
|
||||
angel3_http_exception: ^7.0.0
|
||||
angel3_model: ^7.0.0
|
||||
angel3_route: ^7.0.0
|
||||
angel3_mock_request: ^7.0.0
|
||||
belatuk_merge_map: ^4.0.0
|
||||
belatuk_combinator: ^4.0.0
|
||||
belatuk_http_server: ^3.0.0
|
||||
charcode: ^1.2.0
|
||||
file: ^6.1.0
|
||||
http_parser: ^4.0.0
|
||||
|
@ -34,15 +34,16 @@ dev_dependencies:
|
|||
http: ^0.13.1
|
||||
io: ^1.0.0
|
||||
test: ^1.21.0
|
||||
lints: ^1.0.0
|
||||
# dependency_overrides:
|
||||
# angel3_container:
|
||||
# path: ../container/angel_container
|
||||
# angel3_http_exception:
|
||||
# path: ../http_exception
|
||||
# angel3_model:
|
||||
# path: ../model
|
||||
# angel3_route:
|
||||
# path: ../route
|
||||
# angel3_mock_request:
|
||||
# path: ../mock_request
|
||||
lints: ^2.0.0
|
||||
dependency_overrides:
|
||||
angel3_container:
|
||||
path: ../container/angel_container
|
||||
angel3_http_exception:
|
||||
path: ../http_exception
|
||||
angel3_model:
|
||||
path: ../model
|
||||
angel3_route:
|
||||
path: ../route
|
||||
angel3_mock_request:
|
||||
path: ../mock_request
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ description: Supports hot reloading/hot code push of Angel3 servers on file chan
|
|||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/hot
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_framework: ^6.0.0
|
||||
angel3_websocket: ^6.0.0
|
||||
|
@ -18,7 +18,7 @@ dependencies:
|
|||
dev_dependencies:
|
||||
http: ^0.13.2
|
||||
logging: ^1.0.1
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
# dependency_overrides:
|
||||
# angel3_container:
|
||||
# path: ../container/angel_container
|
||||
|
|
|
@ -4,7 +4,7 @@ description: Support for rendering html_builder AST's as responses in Angel.
|
|||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/angel3/packages/html_builder
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_framework: ^6.0.0
|
||||
belatuk_html_builder: ^3.0.0
|
||||
|
@ -13,7 +13,7 @@ dev_dependencies:
|
|||
html: ^0.15.0
|
||||
logging: ^1.0.1
|
||||
test: ^1.21.0
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
# dependency_overrides:
|
||||
# angel3_container:
|
||||
# path: ../container/angel_container
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
name: angel3_http_exception
|
||||
version: 6.0.1
|
||||
version: 7.0.0
|
||||
description: Exception class that can be serialized to JSON and serialized to clients.
|
||||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/http_exception
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dev_dependencies:
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
|
@ -4,7 +4,7 @@ description: Angel support for the Jael templating engine, similar to Blade or L
|
|||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/jael/angel_jael
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_framework: ^6.0.0
|
||||
jael3: ^6.0.0
|
||||
|
@ -17,7 +17,7 @@ dev_dependencies:
|
|||
angel3_test: ^6.0.0
|
||||
html: ^0.15.0
|
||||
test: ^1.21.0
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
# dependency_overrides:
|
||||
# angel3_container:
|
||||
# path: ../../container/angel_container
|
||||
|
|
|
@ -4,7 +4,7 @@ description: A simple server-side HTML templating engine for Dart. Comparable t
|
|||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/jael/jael
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
args: ^2.0.0
|
||||
charcode: ^1.0.0
|
||||
|
@ -15,7 +15,7 @@ dependencies:
|
|||
collection: ^1.15.0
|
||||
matcher: ^0.12.10
|
||||
dev_dependencies:
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
test: ^1.21.0
|
||||
executables:
|
||||
jaelfmt: jaelfmt
|
|
@ -4,7 +4,7 @@ description: Language Server Protocol implementation for the Jael templating eng
|
|||
homepage: https://github.com/angel-dart/vscode
|
||||
publish_to: none
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
args: ^2.1.1
|
||||
# dart_language_server: ^0.1.16
|
||||
|
@ -18,7 +18,7 @@ dependencies:
|
|||
source_span: ^1.8.1
|
||||
string_scanner: ^1.1.0
|
||||
belatuk_symbol_table: ^3.0.0
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
executables:
|
||||
jael3_language_server: jael3_language_server
|
||||
|
|
@ -4,7 +4,7 @@ description: A pre-processor for resolving blocks and includes within Jael templ
|
|||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/jael/jael_preprocessor
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
file: ^6.1.0
|
||||
jael3: ^6.0.0
|
||||
|
@ -13,7 +13,7 @@ dependencies:
|
|||
dev_dependencies:
|
||||
belatuk_code_buffer: ^3.0.0
|
||||
test: ^1.21.0
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
# dependency_overrides:
|
||||
# jael3:
|
||||
# path: ../jael
|
||||
|
|
|
@ -3,7 +3,7 @@ version: 6.0.0
|
|||
description: Experimental virtual DOM/SPA engine built on Jael3. Supports SSR.
|
||||
publish_to: none
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
build: ^2.0.2
|
||||
build_config: ^1.0.0
|
||||
|
@ -14,7 +14,7 @@ dependencies:
|
|||
dev_dependencies:
|
||||
build_runner: ^2.0.4
|
||||
build_web_compilers: ^3.0.0
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
# dependency_overrides:
|
||||
# jael3:
|
||||
# path: ../jael
|
||||
|
|
|
@ -3,7 +3,7 @@ version: 6.0.0
|
|||
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
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_framework: ^6.0.0
|
||||
jinja: ^0.3.4
|
||||
|
@ -11,4 +11,4 @@ dev_dependencies:
|
|||
angel3_test: ^6.0.0
|
||||
path: ^1.8.0
|
||||
test: ^1.21.0
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
|
@ -4,12 +4,12 @@ description: Angel3 Markdown view generator. Write static sites, with no build s
|
|||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/markdown
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_framework: ^6.0.0
|
||||
file: ^6.1.2
|
||||
markdown: ^5.0.0
|
||||
dev_dependencies:
|
||||
angel3_test: ^6.0.0
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
test: ^1.21.0
|
||||
|
|
|
@ -1,17 +1,25 @@
|
|||
name: angel3_mock_request
|
||||
version: 6.0.0
|
||||
version: 7.0.0
|
||||
description: Manufacture dart:io HttpRequests, HttpResponses, HttpHeaders, etc.
|
||||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/mock_request
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
charcode: ^1.2.0
|
||||
dev_dependencies:
|
||||
angel3_framework: ^6.0.0
|
||||
angel3_framework: ^7.0.0
|
||||
http: ^0.13.2
|
||||
test: ^1.21.0
|
||||
lints: ^1.0.0
|
||||
# dependency_overrides:
|
||||
# angel3_framework:
|
||||
# path: ../framework
|
||||
lints: ^2.0.0
|
||||
dependency_overrides:
|
||||
angel3_framework:
|
||||
path: ../framework
|
||||
angel3_route:
|
||||
path: ../route
|
||||
angel3_model:
|
||||
path: ../model
|
||||
angel3_http_exception:
|
||||
path: ../http_exception
|
||||
angel3_container:
|
||||
path: ../container/angel_container
|
|
@ -1,9 +1,9 @@
|
|||
name: angel3_model
|
||||
version: 6.0.0
|
||||
version: 7.0.0
|
||||
description: Angel3 basic data model class, no longer with the added weight of the whole framework.
|
||||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/model
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dev_dependencies:
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
|
|
|
@ -4,7 +4,7 @@ description: MongoDB-enabled services for the Angel3 framework. Well-tested.
|
|||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/mongo
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_framework: ^6.0.0
|
||||
belatuk_json_serializer: ^5.0.0
|
||||
|
@ -13,7 +13,7 @@ dependencies:
|
|||
dev_dependencies:
|
||||
http: ^0.13.0
|
||||
test: ^1.21.0
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
# dependency_overrides:
|
||||
# angel3_container:
|
||||
# path: ../container/angel_container
|
||||
|
|
|
@ -4,7 +4,7 @@ description: A service that renders Mustache template into HTML view for Angel3
|
|||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/mustache
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_framework: ^6.0.0
|
||||
file: ^6.1.2
|
||||
|
@ -13,4 +13,4 @@ dependencies:
|
|||
dev_dependencies:
|
||||
http: ^0.13.3
|
||||
test: ^1.21.0
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
|
|
|
@ -4,7 +4,7 @@ description: A class containing handlers that can be used within Angel to build
|
|||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/oauth2
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_framework: ^6.0.0
|
||||
angel3_http_exception: ^6.0.0
|
||||
|
@ -15,6 +15,6 @@ dev_dependencies:
|
|||
angel3_test: ^6.0.0
|
||||
logging: ^1.0.1
|
||||
oauth2: ^2.0.0
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
test: ^1.21.0
|
||||
uuid: ^3.0.4
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
name: angel3_migration
|
||||
version: 6.1.0
|
||||
version: 7.0.0
|
||||
description: Database migration runtime for Angel3 ORM. Use this package to define schemas.
|
||||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/orm/angel_migration
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_orm: ^6.0.0
|
||||
angel3_orm: ^7.0.0
|
||||
dev_dependencies:
|
||||
lints: ^1.0.0
|
||||
# dependency_overrides:
|
||||
# angel3_orm:
|
||||
# path: ../angel_orm
|
||||
lints: ^2.0.0
|
||||
dependency_overrides:
|
||||
angel3_orm:
|
||||
path: ../angel_orm
|
||||
|
|
|
@ -4,7 +4,7 @@ description: Command-line based database migration runner for Angel3's ORM.
|
|||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/orm/angel_migration_runner
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_migration: ^6.0.0
|
||||
angel3_orm: ^6.0.0
|
||||
|
@ -15,7 +15,7 @@ dependencies:
|
|||
mysql1: ^0.20.0
|
||||
logging: ^1.0.0
|
||||
dev_dependencies:
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
# dependency_overrides:
|
||||
# angel3_orm:
|
||||
# path: ../angel_orm
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
name: angel3_orm
|
||||
version: 6.1.0
|
||||
version: 7.0.0
|
||||
description: Runtime support for Angel3 ORM. Includes base classes for queries.
|
||||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/orm/angel_orm
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
charcode: ^1.2.0
|
||||
intl: ^0.17.0
|
||||
|
@ -13,16 +13,16 @@ dependencies:
|
|||
optional: ^6.0.0
|
||||
logging: ^1.0.0
|
||||
dev_dependencies:
|
||||
angel3_model: ^6.0.0
|
||||
angel3_serialize: ^6.0.0
|
||||
angel3_serialize_generator: ^6.0.0
|
||||
angel3_model: ^7.0.0
|
||||
angel3_serialize: ^7.0.0
|
||||
angel3_serialize_generator: ^7.0.0
|
||||
build_runner: ^2.1.1
|
||||
test: ^1.17.4
|
||||
lints: ^1.0.0
|
||||
# dependency_overrides:
|
||||
# angel3_serialize:
|
||||
# path: ../../serialize/angel_serialize
|
||||
# angel3_serialize_generator:
|
||||
# path: ../../serialize/angel_serialize_generator
|
||||
# angel3_model:
|
||||
# path: ../../model
|
||||
lints: ^2.0.0
|
||||
dependency_overrides:
|
||||
angel3_serialize:
|
||||
path: ../../serialize/angel_serialize
|
||||
angel3_serialize_generator:
|
||||
path: ../../serialize/angel_serialize_generator
|
||||
angel3_model:
|
||||
path: ../../model
|
|
@ -4,7 +4,7 @@ description: Code generators for Angel3 ORM. Generates query builder classes.
|
|||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/orm/angel_orm_generator
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_model: ^6.0.0
|
||||
angel3_serialize: ^6.0.0
|
||||
|
@ -29,7 +29,7 @@ dev_dependencies:
|
|||
build_runner: ^2.0.1
|
||||
postgres: ^2.4.0
|
||||
test: ^1.21.0
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
# dependency_overrides:
|
||||
# angel3_container:
|
||||
# path: ../../container/angel_container
|
||||
|
|
|
@ -4,7 +4,7 @@ description: MySQL support for Angel3 ORM. Includes functionality for querying a
|
|||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/orm/angel_orm_mysql
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_orm: ^6.0.0
|
||||
logging: ^1.0.0
|
||||
|
@ -16,7 +16,7 @@ dev_dependencies:
|
|||
angel3_orm_test: ^6.0.0
|
||||
build_runner: ^2.0.1
|
||||
test: ^1.21.0
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
# dependency_overrides:
|
||||
# angel3_serialize:
|
||||
# path: ../../serialize/angel_serialize
|
||||
|
|
|
@ -4,7 +4,7 @@ description: PostgreSQL support for Angel3 ORM. Includes functionality for query
|
|||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/orm/angel_orm_postgres
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_orm: ^6.0.0
|
||||
logging: ^1.0.1
|
||||
|
@ -15,7 +15,7 @@ dev_dependencies:
|
|||
belatuk_pretty_logging: ^4.0.0
|
||||
angel3_orm_test: ^6.0.0
|
||||
test: ^1.21.0
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
# dependency_overrides:
|
||||
# angel3_serialize:
|
||||
# path: ../../serialize/angel_serialize
|
||||
|
|
|
@ -4,7 +4,7 @@ description: Service implementation that wraps over Angel3 ORM Query classes.
|
|||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/orm/angel_orm_service
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_framework: ^6.0.0
|
||||
angel3_orm: ^6.0.0
|
||||
|
@ -20,7 +20,7 @@ dev_dependencies:
|
|||
build_runner: ^2.0.4
|
||||
logging: ^1.0.1
|
||||
test: ^1.21.0
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
# dependency_overrides:
|
||||
# angel3_container:
|
||||
# path: ../../container/angel_container
|
||||
|
|
|
@ -4,7 +4,7 @@ description: Common tests for Angel3 ORM. Reference implmentation of the generat
|
|||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/orm/angel_orm_test
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_migration: ^6.0.0
|
||||
angel3_model: ^6.0.0
|
||||
|
@ -18,7 +18,7 @@ dev_dependencies:
|
|||
angel3_orm_generator: ^6.0.0
|
||||
angel3_framework: ^6.0.0
|
||||
build_runner: ^2.0.1
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
# dependency_overrides:
|
||||
# angel3_container:
|
||||
# path: ../../container/angel_container
|
||||
|
|
|
@ -1,14 +1,37 @@
|
|||
name: angel3_paginate
|
||||
version: 6.0.0
|
||||
version: 7.0.0
|
||||
description: Platform-agnostic pagination library, with custom support for the Angel3 framework.
|
||||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/paginate
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_framework: ^6.0.0
|
||||
angel3_framework: ^7.0.0
|
||||
dev_dependencies:
|
||||
angel3_test: ^6.0.0
|
||||
angel3_test: ^7.0.0
|
||||
logging: ^1.0.1
|
||||
test: ^1.21.0
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
dependency_overrides:
|
||||
angel3_framework:
|
||||
path: ../framework
|
||||
angel3_test:
|
||||
path: ../test
|
||||
angel3_container:
|
||||
path: ../container/angel_container
|
||||
angel3_http_exception:
|
||||
path: ../http_exception
|
||||
angel3_model:
|
||||
path: ../model
|
||||
angel3_route:
|
||||
path: ../route
|
||||
angel3_mock_request:
|
||||
path: ../mock_request
|
||||
angel3_websocket:
|
||||
path: ../websocket
|
||||
angel3_client:
|
||||
path: ../client
|
||||
angel3_auth:
|
||||
path: ../auth
|
||||
angel3_validate:
|
||||
path: ../validate
|
|
@ -1,30 +1,30 @@
|
|||
name: angel3_production
|
||||
version: 6.0.0
|
||||
version: 7.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: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_container: ^6.0.0
|
||||
angel3_framework: ^6.0.0
|
||||
belatuk_pub_sub: ^4.0.0
|
||||
angel3_container: ^7.0.0
|
||||
angel3_framework: ^7.0.0
|
||||
belatuk_pub_sub: ^5.0.0
|
||||
args: ^2.3.0
|
||||
io: ^1.0.0
|
||||
logging: ^1.0.1
|
||||
intl: ^0.17.0
|
||||
dev_dependencies:
|
||||
lints: ^1.0.1
|
||||
# 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.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
|
||||
|
|
|
@ -1,19 +1,41 @@
|
|||
name: angel3_proxy
|
||||
version: 6.0.1
|
||||
version: 7.0.0
|
||||
description: Angel middleware to forward requests to another server (i.e. pub serve).
|
||||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/proxy
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_framework: ^6.0.0
|
||||
angel3_framework: ^7.0.0
|
||||
http: ^0.13.3
|
||||
http_parser: ^4.0.0
|
||||
path: ^1.8.0
|
||||
dev_dependencies:
|
||||
angel3_test: ^6.0.0
|
||||
angel3_mock_request: ^6.0.0
|
||||
angel3_test: ^7.0.0
|
||||
angel3_mock_request: ^7.0.0
|
||||
logging: ^1.0.1
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
test: ^1.21.0
|
||||
|
||||
dependency_overrides:
|
||||
angel3_framework:
|
||||
path: ../framework
|
||||
angel3_container:
|
||||
path: ../container/angel_container
|
||||
angel3_http_exception:
|
||||
path: ../http_exception
|
||||
angel3_model:
|
||||
path: ../model
|
||||
angel3_route:
|
||||
path: ../route
|
||||
angel3_mock_request:
|
||||
path: ../mock_request
|
||||
angel3_test:
|
||||
path: ../test
|
||||
angel3_websocket:
|
||||
path: ../websocket
|
||||
angel3_client:
|
||||
path: ../client
|
||||
angel3_auth:
|
||||
path: ../auth
|
||||
angel3_validate:
|
||||
path: ../validate
|
|
@ -1,14 +1,27 @@
|
|||
name: angel3_redis
|
||||
version: 6.0.0
|
||||
version: 7.0.0
|
||||
description: An Angel3 service provider for Redis. Works well for caching volatile data.
|
||||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/redis
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_framework: ^6.0.0
|
||||
angel3_http_exception: ^6.0.0
|
||||
angel3_framework: ^7.0.0
|
||||
angel3_http_exception: ^7.0.0
|
||||
resp_client: ^1.2.0
|
||||
dev_dependencies:
|
||||
test: ^1.21.0
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
dependency_overrides:
|
||||
angel3_framework:
|
||||
path: ../framework
|
||||
angel3_container:
|
||||
path: ../container/angel_container
|
||||
angel3_http_exception:
|
||||
path: ../http_exception
|
||||
angel3_model:
|
||||
path: ../model
|
||||
angel3_route:
|
||||
path: ../route
|
||||
angel3_mock_request:
|
||||
path: ../mock_request
|
|
@ -1,12 +1,12 @@
|
|||
name: angel3_route
|
||||
version: 6.0.0
|
||||
version: 7.0.0
|
||||
description: A powerful, isomorphic routing library for Dart. It is mainly used in the Angel3 framework, but can be used in Flutter and on the Web.
|
||||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/route
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
belatuk_combinator: ^3.0.0
|
||||
belatuk_combinator: ^4.0.0
|
||||
string_scanner: ^1.1.0
|
||||
path: ^1.8.0
|
||||
dev_dependencies:
|
||||
|
@ -14,4 +14,4 @@ dev_dependencies:
|
|||
build_web_compilers: ^3.2.1
|
||||
http: ^0.13.3
|
||||
test: ^1.21.0
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
|
|
|
@ -1,22 +1,46 @@
|
|||
name: angel3_security
|
||||
version: 6.0.1
|
||||
version: 7.0.0
|
||||
description: Angel3 infrastructure for improving security, rate limiting, and more
|
||||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/security
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_framework: ^6.0.0
|
||||
angel3_framework: ^7.0.0
|
||||
crypto: ^3.0.1
|
||||
dev_dependencies:
|
||||
angel3_auth: ^6.0.0
|
||||
angel3_production: ^6.0.0
|
||||
angel3_redis: ^6.0.0
|
||||
angel3_test: ^6.0.0
|
||||
angel3_validate: ^6.0.0
|
||||
belatuk_pretty_logging: ^4.0.0
|
||||
angel3_auth: ^7.0.0
|
||||
angel3_production: ^7.0.0
|
||||
angel3_redis: ^7.0.0
|
||||
angel3_test: ^7.0.0
|
||||
angel3_validate: ^7.0.0
|
||||
belatuk_pretty_logging: ^5.0.0
|
||||
test: ^1.21.0
|
||||
lints: ^1.0.0
|
||||
#dependency_overrides:
|
||||
# angel3_auth:
|
||||
# path: ../auth
|
||||
lints: ^2.0.0
|
||||
dependency_overrides:
|
||||
angel3_production:
|
||||
path: ../production
|
||||
angel3_redis:
|
||||
path: ../redis
|
||||
angel3_test:
|
||||
path: ../test
|
||||
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
|
||||
angel3_validate:
|
||||
path: ../validate
|
|
@ -1,16 +1,28 @@
|
|||
name: angel3_sembast
|
||||
version: 6.0.0
|
||||
version: 7.0.0
|
||||
description: A plugin service that persist data to Sembast for Angel3 framework.
|
||||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/sembast
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_framework: ^6.0.0
|
||||
angel3_framework: ^7.0.0
|
||||
sembast: ^3.1.1
|
||||
dev_dependencies:
|
||||
angel3_http_exception: ^6.0.0
|
||||
angel3_http_exception: ^7.0.0
|
||||
logging: ^1.0.1
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
test: ^1.21.0
|
||||
|
||||
dependency_overrides:
|
||||
angel3_framework:
|
||||
path: ../framework
|
||||
angel3_container:
|
||||
path: ../container/angel_container
|
||||
angel3_http_exception:
|
||||
path: ../http_exception
|
||||
angel3_model:
|
||||
path: ../model
|
||||
angel3_route:
|
||||
path: ../route
|
||||
angel3_mock_request:
|
||||
path: ../mock_request
|
||||
|
|
|
@ -1,19 +1,44 @@
|
|||
name: angel3_seo
|
||||
version: 6.0.0
|
||||
version: 7.0.0
|
||||
description: Helper infrastructure for building SEO-friendly Web backends in Angel3.
|
||||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/angel3/packages/seo
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_framework: ^6.0.0
|
||||
angel3_static: ^6.0.0
|
||||
angel3_framework: ^7.0.0
|
||||
angel3_static: ^7.0.0
|
||||
file: ^6.1.2
|
||||
html: ^0.15.0
|
||||
http_parser: ^4.0.0
|
||||
path: ^1.8.0
|
||||
dev_dependencies:
|
||||
angel3_test: ^6.0.0
|
||||
angel3_test: ^7.0.0
|
||||
logging: ^1.0.1
|
||||
test: ^1.21.0
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
dependency_overrides:
|
||||
angel3_static:
|
||||
path: ../static
|
||||
angel3_websocket:
|
||||
path: ../websocket
|
||||
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_test:
|
||||
path: ../test
|
||||
angel3_validate:
|
||||
path: ../validate
|
|
@ -1,18 +1,18 @@
|
|||
name: angel3_serialize
|
||||
version: 6.0.0
|
||||
version: 7.0.0
|
||||
description: Static annotations powering Angel3 model serialization. Combine with angel3_serialize_generator for flexible modeling.
|
||||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/serialize/angel_serialize
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_model: ^6.0.0
|
||||
angel3_model: ^7.0.0
|
||||
collection: ^1.15.0
|
||||
meta: ^1.3.0
|
||||
quiver: ^3.0.1
|
||||
dev_dependencies:
|
||||
lints: ^1.0.0
|
||||
# dependency_overrides:
|
||||
# angel3_model:
|
||||
# path: ../../model
|
||||
lints: ^2.0.0
|
||||
dependency_overrides:
|
||||
angel3_model:
|
||||
path: ../../model
|
||||
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
name: angel3_serialize_generator
|
||||
version: 6.1.1
|
||||
version: 7.0.0
|
||||
description: Angel3 model serialization generators, designed for use with Angel. Combine with angel_serialize for flexible modeling.
|
||||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/serialize/angel_serialize_generator
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
analyzer: ^4.1.0
|
||||
angel3_model: ^6.0.0
|
||||
angel3_serialize: ^6.0.0
|
||||
belatuk_code_buffer: ^3.0.0
|
||||
angel3_model: ^7.0.0
|
||||
angel3_serialize: ^7.0.0
|
||||
belatuk_code_buffer: ^4.0.0
|
||||
build: ^2.0.1
|
||||
build_config: ^1.0.0
|
||||
code_builder: ^4.0.0
|
||||
|
@ -22,10 +22,10 @@ dependencies:
|
|||
dev_dependencies:
|
||||
build_runner: ^2.0.1
|
||||
collection: ^1.15.0
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
test: ^1.21.0
|
||||
# dependency_overrides:
|
||||
# angel3_model:
|
||||
# path: ../../model
|
||||
# angel3_serialize:
|
||||
# path: ../angel_serialize
|
||||
dependency_overrides:
|
||||
angel3_model:
|
||||
path: ../../model
|
||||
angel3_serialize:
|
||||
path: ../angel_serialize
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
name: angel3_shelf
|
||||
version: 6.0.0-beta.2
|
||||
version: 7.0.0-beta.1
|
||||
description: Shelf interop with Angel3. Use this to wrap existing server code.
|
||||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/shelf
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_framework: ^6.0.0
|
||||
angel3_container: ^6.0.0
|
||||
angel3_mock_request: ^6.0.0
|
||||
angel3_framework: ^7.0.0
|
||||
angel3_container: ^7.0.0
|
||||
angel3_mock_request: ^7.0.0
|
||||
path: ^1.8.0
|
||||
shelf: ^1.3.0
|
||||
stream_channel: ^2.1.0
|
||||
|
@ -16,8 +16,31 @@ dependencies:
|
|||
charcode: ^1.3.0
|
||||
http: ^0.13.0
|
||||
dev_dependencies:
|
||||
angel3_test: ^6.0.0
|
||||
belatuk_pretty_logging: ^4.0.0
|
||||
angel3_test: ^7.0.0
|
||||
belatuk_pretty_logging: ^5.0.0
|
||||
shelf_static: ^1.1.0
|
||||
test: ^1.21.0
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
dependency_overrides:
|
||||
angel3_test:
|
||||
path: ../test
|
||||
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
|
||||
angel3_validate:
|
||||
path: ../validate
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
name: angel3_static
|
||||
version: 6.0.0
|
||||
version: 7.0.0
|
||||
description: This library provides a virtual directory to serve static files for Angel3 framework.
|
||||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/angel3/packages/static
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_framework: ^6.0.0
|
||||
belatuk_range_header: ^4.0.0
|
||||
angel3_framework: ^7.0.0
|
||||
belatuk_range_header: ^5.0.0
|
||||
convert: ^3.0.0
|
||||
crypto: ^3.0.1
|
||||
file: ^6.1.0
|
||||
|
@ -15,32 +15,32 @@ dependencies:
|
|||
path: ^1.8.0
|
||||
logging: ^1.0.1
|
||||
dev_dependencies:
|
||||
angel3_test: ^6.0.0
|
||||
angel3_test: ^7.0.0
|
||||
http: ^0.13.2
|
||||
matcher: ^0.12.10
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
test: ^1.21.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
|
||||
# angel3_validate:
|
||||
# path: ../validate
|
||||
# angel3_test:
|
||||
# path: ../test
|
||||
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
|
||||
angel3_validate:
|
||||
path: ../validate
|
||||
angel3_test:
|
||||
path: ../test
|
||||
|
||||
|
|
|
@ -4,16 +4,36 @@ description: Easily synchronize and scale WebSockets using belatuk_pub_sub in An
|
|||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/angel3/packages/sync
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_framework: ^6.0.0
|
||||
angel3_websocket: ^6.0.0
|
||||
belatuk_pub_sub: ^4.0.0
|
||||
angel3_framework: ^7.0.0
|
||||
angel3_websocket: ^7.0.0
|
||||
belatuk_pub_sub: ^5.0.0
|
||||
stream_channel: ^2.1.0
|
||||
dev_dependencies:
|
||||
angel3_test: ^6.0.0
|
||||
angel3_test: ^7.0.0
|
||||
test: ^1.21.0
|
||||
lints: ^1.0.0
|
||||
#dependency_overrides:
|
||||
# angel3_websocket:
|
||||
# path: ../websocket
|
||||
lints: ^2.0.0
|
||||
dependency_overrides:
|
||||
angel3_websocket:
|
||||
path: ../websocket
|
||||
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_test:
|
||||
path: ../test
|
||||
angel3_validate:
|
||||
path: ../validate
|
|
@ -1,42 +1,42 @@
|
|||
name: angel3_test
|
||||
version: 6.0.0
|
||||
version: 7.0.0
|
||||
description: Testing utility library for the Angel3 framework. Use with package:test.
|
||||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/test
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_client: ^6.0.0
|
||||
angel3_framework: ^6.0.0
|
||||
angel3_http_exception: ^6.0.0
|
||||
angel3_validate: ^6.0.0
|
||||
angel3_websocket: ^6.0.0
|
||||
angel3_mock_request: ^6.0.0
|
||||
angel3_container: ^6.0.0
|
||||
angel3_client: ^7.0.0
|
||||
angel3_framework: ^7.0.0
|
||||
angel3_http_exception: ^7.0.0
|
||||
angel3_validate: ^7.0.0
|
||||
angel3_websocket: ^7.0.0
|
||||
angel3_mock_request: ^7.0.0
|
||||
angel3_container: ^7.0.0
|
||||
http: ^0.13.1
|
||||
matcher: ^0.12.10
|
||||
web_socket_channel: ^2.0.0
|
||||
dev_dependencies:
|
||||
test: ^1.21.0
|
||||
lints: ^1.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
|
||||
# angel3_validate:
|
||||
# path: ../validate
|
||||
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
|
||||
angel3_validate:
|
||||
path: ../validate
|
|
@ -1,11 +1,24 @@
|
|||
name: angel3_user_agent
|
||||
version: 6.0.0-beta.1
|
||||
version: 7.0.0-beta.1
|
||||
description: Angel3 middleware to parse and inject a User Agent object into requests.
|
||||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/angel3/packages/user_agent/angel_user_agent
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_framework: ^6.0.0
|
||||
angel3_framework: ^7.0.0
|
||||
user_agent_analyzer: ^3.0.0
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
dependency_overrides:
|
||||
angel3_container:
|
||||
path: ../../container/angel_container
|
||||
angel3_http_exception:
|
||||
path: ../../http_exception
|
||||
angel3_model:
|
||||
path: ../../model
|
||||
angel3_route:
|
||||
path: ../../route
|
||||
angel3_mock_request:
|
||||
path: ../../mock_request
|
||||
angel3_framework:
|
||||
path: ../../framework
|
|
@ -1,31 +1,31 @@
|
|||
name: angel3_validate
|
||||
description: Cross-platform request body validation library based on `matcher`.
|
||||
version: 6.0.0
|
||||
version: 7.0.0
|
||||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/validate
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_framework: ^6.0.0
|
||||
angel3_http_exception: ^6.0.0
|
||||
angel3_framework: ^7.0.0
|
||||
angel3_http_exception: ^7.0.0
|
||||
matcher: ^0.12.0
|
||||
dev_dependencies:
|
||||
angel3_mock_request: ^6.0.0
|
||||
angel3_mock_request: ^7.0.0
|
||||
build_runner: ^2.1.0
|
||||
build_web_compilers: ^3.2.0
|
||||
logging: ^1.0.1
|
||||
lints: ^1.0.0
|
||||
lints: ^2.0.0
|
||||
test: ^1.21.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
|
||||
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
|
|
@ -1,16 +1,16 @@
|
|||
name: angel3_websocket
|
||||
version: 6.0.0
|
||||
version: 7.0.0
|
||||
description: This library provides WebSockets support for Angel3 framework.
|
||||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/websocket
|
||||
environment:
|
||||
sdk: '>=2.16.0 <3.0.0'
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
dependencies:
|
||||
angel3_auth: ^6.0.0
|
||||
angel3_client: ^6.0.0
|
||||
angel3_framework: ^6.0.0
|
||||
angel3_http_exception: ^6.0.0
|
||||
belatuk_merge_map: ^3.0.0
|
||||
angel3_auth: ^7.0.0
|
||||
angel3_client: ^7.0.0
|
||||
angel3_framework: ^7.0.0
|
||||
angel3_http_exception: ^7.0.0
|
||||
belatuk_merge_map: ^4.0.0
|
||||
http: ^0.13.1
|
||||
meta: ^1.3.0
|
||||
stream_channel: ^2.1.0
|
||||
|
@ -18,24 +18,24 @@ dependencies:
|
|||
collection: ^1.15.0
|
||||
logging: ^1.0.1
|
||||
dev_dependencies:
|
||||
angel3_container: ^6.0.0
|
||||
angel3_model: ^6.0.0
|
||||
angel3_container: ^7.0.0
|
||||
angel3_model: ^7.0.0
|
||||
test: ^1.21.0
|
||||
lints: ^1.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
|
||||
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
|
Loading…
Reference in a new issue