Upgraded package auth

This commit is contained in:
thomashii 2021-03-06 22:47:56 +08:00
parent 00663ef667
commit ca275779d7
4 changed files with 62 additions and 30 deletions

View file

@ -6,6 +6,10 @@
* Upgrade angel_model to 1.3.0 * Upgrade angel_model to 1.3.0
* Upgrade angel_container to 1.3.0 * Upgrade angel_container to 1.3.0
* Upgrade angel_framework to 2.3.0 * Upgrade angel_framework to 2.3.0
* Upgrade angel_client to 2.2.0
* Upgrade angel_auth to 2.2.0
* Upgrade angel_websocket to 2.3.0
# 2.2.0 # 2.2.0

View file

@ -1,22 +1,32 @@
name: angel_auth name: angel_auth
description: A complete authentication plugin for Angel. Includes support for stateless JWT tokens, Basic Auth, and more. description: A complete authentication plugin for Angel. Includes support for stateless JWT tokens, Basic Auth, and more.
version: 2.1.5+1 version: 2.3.0
author: Tobe O <thosakwe@gmail.com> author: Tobe O <thosakwe@gmail.com>
homepage: https://github.com/angel-dart/angel_auth homepage: https://github.com/angel-dart/angel_auth
environment: environment:
sdk: ">=2.10.0 <2.12.0" sdk: ">=2.10.0 <3.0.0"
dependencies: dependencies:
angel_framework: # ^2.0.0-rc.6 angel_framework: ^2.3.0
path: ../framework
charcode: ^1.0.0 charcode: ^1.0.0
collection: ^1.0.0 collection: ^1.0.0
crypto: ^2.0.0 crypto: ^3.0.0
http_parser: ^3.0.0 http_parser: ^4.0.0
meta: ^1.0.0 meta: ^1.0.0
quiver_hashcode: ^2.0.0 quiver_hashcode: ^2.0.0
dev_dependencies: dev_dependencies:
http: ^0.12.0 http: ^0.13.0
io: ^0.3.2 io: ^1.0.0
logging: ^0.11.0 logging: ^1.0.0
pedantic: ^1.0.0 pedantic: ^1.0.0
test: ^1.15.7 test: ^1.15.7
dependency_overrides:
angel_framework:
path: ../framework
angel_route:
path: ../route
angel_model:
path: ../model
angel_http_exception:
path: ../http_exception
angel_container:
path: ../container/angel_container

View file

@ -1,13 +1,12 @@
name: angel_client name: angel_client
version: 2.0.2 version: 2.2.0
description: Support for querying Angel servers in the browser, Flutter, and command-line. description: Support for querying Angel servers in the browser, Flutter, and command-line.
author: Tobe O <thosakwe@gmail.com> author: Tobe O <thosakwe@gmail.com>
homepage: https://github.com/angel-dart/angel_client homepage: https://github.com/angel-dart/angel_client
environment: environment:
sdk: ">=2.10.0 <2.12.0" sdk: ">=2.10.0 <3.0.0"
dependencies: dependencies:
angel_http_exception: #^1.0.0 angel_http_exception: ^1.3.0
path: ../http_exception
collection: ^1.0.0 collection: ^1.0.0
http: ^0.12.0 http: ^0.12.0
json_god: ^2.0.0-beta json_god: ^2.0.0-beta
@ -15,13 +14,22 @@ dependencies:
meta: ^1.0.0 meta: ^1.0.0
path: ^1.0.0 path: ^1.0.0
dev_dependencies: dev_dependencies:
angel_framework: #^2.0.0-alpha angel_framework: ^2.3.0
path: ../framework angel_model: ^1.3.0
angel_model: #^1.0.0
path: ../model
async: ^2.0.0 async: ^2.0.0
build_runner: ^1.0.0 build_runner: ^1.0.0
build_web_compilers: ^2.12.2 build_web_compilers: ^2.12.2
mock_request: ^1.0.0 mock_request: ^1.0.0
pedantic: ^1.0.0 pedantic: ^1.0.0
test: ^1.15.7 test: ^1.15.7
dependency_overrides:
angel_framework:
path: ../framework
angel_http_exception:
path: ../http_exception
angel_container:
path: ../container/angel_container
angel_model:
path: ../model
angel_route:
path: ../route

View file

@ -1,29 +1,39 @@
name: angel_websocket name: angel_websocket
description: Support for using pkg:angel_client with WebSockets. Designed for Angel. description: Support for using pkg:angel_client with WebSockets. Designed for Angel.
environment: environment:
sdk: ">=2.10.0 <2.12.0" sdk: ">=2.10.0 <3.0.0"
version: 2.0.3 version: 2.2.0
author: Tobe O <thosakwe@gmail.com> author: Tobe O <thosakwe@gmail.com>
homepage: https://github.com/angel-dart/angel_websocket homepage: https://github.com/angel-dart/angel_websocket
publish_to: none
dependencies: dependencies:
angel_auth: # ^2.0.0-alpha angel_auth: ^2.2.0
path: ../auth
angel_client: # ^2.0.0-alpha angel_client: # ^2.0.0-alpha
path: ../client path: ../client
angel_framework: # ^2.0.0-rc.0 angel_framework: ^2.3.0
path: ../framework angel_http_exception: ^1.3.0
angel_http_exception: #^1.0.0
path: ../http_exception
http: ">=0.11.0 <0.13.0" http: ">=0.11.0 <0.13.0"
merge_map: ^1.0.0 merge_map: ^1.0.0
meta: ^1.0.0 meta: ^1.0.0
stream_channel: ^2.0.0 stream_channel: ^2.0.0
web_socket_channel: ^1.0.0 web_socket_channel: ^1.0.0
dev_dependencies: dev_dependencies:
angel_container: #^1.0.0-alpha angel_container: ^1.3.0
path: ../container/angel_container angel_model: ^1.3.0
angel_model: #^1.0.0 # logging: ^0.11.0
path: ../model
logging: ^0.11.0
pedantic: ^1.0.0 pedantic: ^1.0.0
test: ^1.15.7 test: ^1.15.7
dependency_overrides:
angel_framework:
path: ../framework
angel_http_exception:
path: ../http_exception
angel_container:
path: ../container/angel_container
angel_model:
path: ../model
angel_route:
path: ../route
angel_auth:
path: ../auth