diff --git a/CHANGELOG.md b/CHANGELOG.md index ae39bd83..65fad42c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ * Upgrade angel_model to 1.3.0 * Upgrade angel_container to 1.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 diff --git a/packages/auth/pubspec.yaml b/packages/auth/pubspec.yaml index 398dfc5f..37261985 100644 --- a/packages/auth/pubspec.yaml +++ b/packages/auth/pubspec.yaml @@ -1,22 +1,32 @@ name: angel_auth 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 homepage: https://github.com/angel-dart/angel_auth environment: - sdk: ">=2.10.0 <2.12.0" + sdk: ">=2.10.0 <3.0.0" dependencies: - angel_framework: # ^2.0.0-rc.6 - path: ../framework + angel_framework: ^2.3.0 charcode: ^1.0.0 collection: ^1.0.0 - crypto: ^2.0.0 - http_parser: ^3.0.0 + crypto: ^3.0.0 + http_parser: ^4.0.0 meta: ^1.0.0 quiver_hashcode: ^2.0.0 dev_dependencies: - http: ^0.12.0 - io: ^0.3.2 - logging: ^0.11.0 + http: ^0.13.0 + io: ^1.0.0 + logging: ^1.0.0 pedantic: ^1.0.0 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 diff --git a/packages/client/pubspec.yaml b/packages/client/pubspec.yaml index 74d0eb1b..c2eb35b6 100644 --- a/packages/client/pubspec.yaml +++ b/packages/client/pubspec.yaml @@ -1,13 +1,12 @@ name: angel_client -version: 2.0.2 +version: 2.2.0 description: Support for querying Angel servers in the browser, Flutter, and command-line. author: Tobe O homepage: https://github.com/angel-dart/angel_client environment: - sdk: ">=2.10.0 <2.12.0" + sdk: ">=2.10.0 <3.0.0" dependencies: - angel_http_exception: #^1.0.0 - path: ../http_exception + angel_http_exception: ^1.3.0 collection: ^1.0.0 http: ^0.12.0 json_god: ^2.0.0-beta @@ -15,13 +14,22 @@ dependencies: meta: ^1.0.0 path: ^1.0.0 dev_dependencies: - angel_framework: #^2.0.0-alpha - path: ../framework - angel_model: #^1.0.0 - path: ../model + angel_framework: ^2.3.0 + angel_model: ^1.3.0 async: ^2.0.0 build_runner: ^1.0.0 build_web_compilers: ^2.12.2 mock_request: ^1.0.0 pedantic: ^1.0.0 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 diff --git a/packages/websocket/pubspec.yaml b/packages/websocket/pubspec.yaml index a010b826..97bd0b89 100644 --- a/packages/websocket/pubspec.yaml +++ b/packages/websocket/pubspec.yaml @@ -1,29 +1,39 @@ name: angel_websocket description: Support for using pkg:angel_client with WebSockets. Designed for Angel. environment: - sdk: ">=2.10.0 <2.12.0" -version: 2.0.3 + sdk: ">=2.10.0 <3.0.0" +version: 2.2.0 author: Tobe O homepage: https://github.com/angel-dart/angel_websocket +publish_to: none dependencies: - angel_auth: # ^2.0.0-alpha - path: ../auth + angel_auth: ^2.2.0 angel_client: # ^2.0.0-alpha path: ../client - angel_framework: # ^2.0.0-rc.0 - path: ../framework - angel_http_exception: #^1.0.0 - path: ../http_exception + angel_framework: ^2.3.0 + angel_http_exception: ^1.3.0 http: ">=0.11.0 <0.13.0" merge_map: ^1.0.0 meta: ^1.0.0 stream_channel: ^2.0.0 web_socket_channel: ^1.0.0 dev_dependencies: - angel_container: #^1.0.0-alpha - path: ../container/angel_container - angel_model: #^1.0.0 - path: ../model - logging: ^0.11.0 + angel_container: ^1.3.0 + angel_model: ^1.3.0 +# logging: ^0.11.0 pedantic: ^1.0.0 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 + \ No newline at end of file