diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c01f686..bb6ed856 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -42,6 +42,7 @@ * Updated angel_auth_cors to 3.0.0 * Updated angel_container_generator to 2.0.0 * Updated angel_file_service to 3.0.0 +* Updated angel_eventsource to 2.0.0 (use a fork of eventsource) # 2.2.0 * Changed Dart SDK requirements for all packages to ">=2.10.0 <2.12.0" diff --git a/packages/eventsource/pubspec.yaml b/packages/eventsource/pubspec.yaml index fb2e1d3c..78ed7476 100644 --- a/packages/eventsource/pubspec.yaml +++ b/packages/eventsource/pubspec.yaml @@ -1,18 +1,27 @@ name: angel_eventsource -version: 1.0.0 +version: 2.0.0 description: Server-sent Events (SSE) plugin for Angel. homepage: https://github.com/angel-dart/eventsource author: Tobe O +publish_to: none environment: - sdk: ">=2.10.0 <2.12.0" + sdk: ">=2.10.0 <3.0.0" dependencies: - angel_framework: #^2.0.0-alpha - path: ../framework - angel_websocket: #^2.0.0-alpha - path: ../websocket - eventsource: ^0.2.0 + angel_framework: + git: + url: https://github.com/dukefirehawk/angel.git + ref: sdk-2.12.x + path: packages/framework + angel_websocket: + git: + url: https://github.com/dukefirehawk/angel.git + ref: sdk-2.12.x + path: packages/websocket + eventsource: + git: + url: https://github.com/dukefirehawk/dart-eventsource.git stream_channel: ^2.0.0 dev_dependencies: - console: ^3.0.0 - logging: - test: ^1.15.7 + console: ^4.0.0 + logging: ^1.0.0 + test: ^1.16.5