diff --git a/packages/auth/pubspec.yaml b/packages/auth/pubspec.yaml index 37261985..ca9536b4 100644 --- a/packages/auth/pubspec.yaml +++ b/packages/auth/pubspec.yaml @@ -1,12 +1,12 @@ name: angel_auth description: A complete authentication plugin for Angel. Includes support for stateless JWT tokens, Basic Auth, and more. -version: 2.3.0 +version: 3.0.0 author: Tobe O homepage: https://github.com/angel-dart/angel_auth environment: sdk: ">=2.10.0 <3.0.0" dependencies: - angel_framework: ^2.3.0 + angel_framework: ^3.0.0 charcode: ^1.0.0 collection: ^1.0.0 crypto: ^3.0.0 @@ -21,12 +21,7 @@ dev_dependencies: 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 + git: + url: https://github.com/dukefirehawk/angel.git + ref: sdk-2.12.x + path: packages/framework diff --git a/packages/cli/pubspec.yaml b/packages/cli/pubspec.yaml index 638564ba..d8d35e6c 100644 --- a/packages/cli/pubspec.yaml +++ b/packages/cli/pubspec.yaml @@ -2,7 +2,7 @@ description: Command-line tools for the Angel framework, including scaffolding. homepage: https://github.com/dukefirehawk/angel/packages/angel_cli name: angel_cli -version: 2.3.0 +version: 3.0.0 environment: sdk: ">=2.10.0 <3.0.0" dependencies: diff --git a/packages/client/pubspec.yaml b/packages/client/pubspec.yaml index c2eb35b6..f7425786 100644 --- a/packages/client/pubspec.yaml +++ b/packages/client/pubspec.yaml @@ -1,5 +1,5 @@ name: angel_client -version: 2.2.0 +version: 3.0.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 @@ -24,12 +24,27 @@ dev_dependencies: test: ^1.15.7 dependency_overrides: angel_framework: - path: ../framework + git: + url: https://github.com/dukefirehawk/angel.git + ref: sdk-2.12.x + path: packages/framework angel_http_exception: - path: ../http_exception + git: + url: https://github.com/dukefirehawk/angel.git + ref: sdk-2.12.x + path: packages/http_exception angel_container: - path: ../container/angel_container + git: + url: https://github.com/dukefirehawk/angel.git + ref: sdk-2.12.x + path: packages/container/angel_container angel_model: - path: ../model + git: + url: https://github.com/dukefirehawk/angel.git + ref: sdk-2.12.x + path: packages/model angel_route: - path: ../route + git: + url: https://github.com/dukefirehawk/angel.git + ref: sdk-2.12.x + path: packages/route diff --git a/packages/container/angel_container/pubspec.yaml b/packages/container/angel_container/pubspec.yaml index 7ac64d52..d2b83669 100644 --- a/packages/container/angel_container/pubspec.yaml +++ b/packages/container/angel_container/pubspec.yaml @@ -1,5 +1,5 @@ name: angel_container -version: 1.3.0 +version: 2.0.0 author: Tobe O description: A hierarchical DI container, and pluggable backends for reflection. homepage: https://github.com/angel-dart/container.git diff --git a/packages/framework/pubspec.yaml b/packages/framework/pubspec.yaml index fdb969d1..79a56577 100644 --- a/packages/framework/pubspec.yaml +++ b/packages/framework/pubspec.yaml @@ -1,5 +1,5 @@ name: angel_framework -version: 2.3.0 +version: 3.0.0 description: A high-powered HTTP server with dependency injection, routing and much more. author: Tobe O homepage: https://github.com/angel-dart/angel_framework @@ -7,10 +7,10 @@ publish_to: none environment: sdk: ">=2.10.0 <3.0.0" dependencies: - angel_container: ^1.3.0 - angel_http_exception: ^1.3.0 - angel_model: ^1.3.0 - angel_route: ^3.3.0 + angel_container: ^2.0.0 + angel_http_exception: ^2.0.0 + angel_model: ^2.0.0 + angel_route: ^4.0.0 charcode: ^1.0.0 combinator: ^1.0.0 file: ^6.1.0 @@ -38,11 +38,23 @@ dev_dependencies: test: ^1.15.7 dependency_overrides: angel_route: - path: ../route + git: + url: https://github.com/dukefirehawk/angel.git + ref: sdk-2.12.x + path: packages/route angel_http_exception: - path: ../http_exception + git: + url: https://github.com/dukefirehawk/angel.git + ref: sdk-2.12.x + path: packages/http_exception angel_model: - path: ../model + git: + url: https://github.com/dukefirehawk/angel.git + ref: sdk-2.12.x + path: packages/model angel_container: - path: ../container/angel_container + git: + url: https://github.com/dukefirehawk/angel.git + ref: sdk-2.12.x + path: packages/container/angel_container diff --git a/packages/http_exception/pubspec.yaml b/packages/http_exception/pubspec.yaml index 30e5b0fa..6a4de47a 100644 --- a/packages/http_exception/pubspec.yaml +++ b/packages/http_exception/pubspec.yaml @@ -1,5 +1,5 @@ name: angel_http_exception -version: 1.3.0 +version: 2.0.0 description: Exception class that can be serialized to JSON and serialized to clients. #author: Tobe O homepage: https://github.com/dukefirehawk/angel/packages/http_exception diff --git a/packages/model/pubspec.yaml b/packages/model/pubspec.yaml index a98d5d32..25b77639 100644 --- a/packages/model/pubspec.yaml +++ b/packages/model/pubspec.yaml @@ -1,5 +1,5 @@ name: angel_model -version: 1.3.0 +version: 2.0.0 description: Angel's basic data model class, no longer with the added weight of the whole framework. author: Tobe O homepage: https://github.com/dukefirehawk/angel/packages/model diff --git a/packages/route/pubspec.yaml b/packages/route/pubspec.yaml index cf3c7ace..2f2874dd 100644 --- a/packages/route/pubspec.yaml +++ b/packages/route/pubspec.yaml @@ -1,6 +1,6 @@ name: angel_route description: A powerful, isomorphic routing library for Dart. It is mainly used in the Angel framework, but can be used in Flutter and on the Web. -version: 3.3.0 +version: 4.0.0 author: Tobe O homepage: https://github.com/angel-dart/angel_route environment: diff --git a/packages/websocket/pubspec.yaml b/packages/websocket/pubspec.yaml index 97bd0b89..99bb58e0 100644 --- a/packages/websocket/pubspec.yaml +++ b/packages/websocket/pubspec.yaml @@ -2,38 +2,60 @@ name: angel_websocket description: Support for using pkg:angel_client with WebSockets. Designed for Angel. environment: sdk: ">=2.10.0 <3.0.0" -version: 2.2.0 +version: 3.0.0 author: Tobe O homepage: https://github.com/angel-dart/angel_websocket publish_to: none dependencies: - angel_auth: ^2.2.0 - angel_client: # ^2.0.0-alpha - path: ../client - angel_framework: ^2.3.0 - angel_http_exception: ^1.3.0 + angel_auth: ^3.0.0 + angel_client: ^3.0.0 + angel_framework: ^3.0.0 + angel_http_exception: ^2.0.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.3.0 - angel_model: ^1.3.0 + angel_container: ^2.0.0 + angel_model: ^2.0.0 # logging: ^0.11.0 pedantic: ^1.0.0 test: ^1.15.7 dependency_overrides: angel_framework: - path: ../framework + git: + url: https://github.com/dukefirehawk/angel.git + ref: sdk-2.12.x + path: packages/framework angel_http_exception: - path: ../http_exception + git: + url: https://github.com/dukefirehawk/angel.git + ref: sdk-2.12.x + path: packages/http_exception angel_container: - path: ../container/angel_container + git: + url: https://github.com/dukefirehawk/angel.git + ref: sdk-2.12.x + path: packages/container/angel_container angel_model: - path: ../model + git: + url: https://github.com/dukefirehawk/angel.git + ref: sdk-2.12.x + path: packages/model angel_route: - path: ../route + git: + url: https://github.com/dukefirehawk/angel.git + ref: sdk-2.12.x + path: packages/route angel_auth: - path: ../auth + git: + url: https://github.com/dukefirehawk/angel.git + ref: sdk-2.12.x + path: packages/auth + angel_client: + git: + url: https://github.com/dukefirehawk/angel.git + ref: sdk-2.12.x + path: packages/angel_client \ No newline at end of file