2.0.0-alpha.6 - http fixes
This commit is contained in:
parent
11877cc0d8
commit
7092cb764e
4 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
# 2.0.0-alpha.6
|
||||||
|
* Explicit import of `import 'package:http/io_client.dart' as http;`
|
||||||
|
|
||||||
# 2.0.0-alpha.5
|
# 2.0.0-alpha.5
|
||||||
* Update `http` dependency.
|
* Update `http` dependency.
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@ library angel_websocket.flutter;
|
||||||
import 'dart:async';
|
import 'dart:async';
|
||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
import 'package:http/http.dart' as http;
|
import 'package:http/http.dart' as http;
|
||||||
|
import 'package:http/io_client.dart' as http;
|
||||||
import 'package:web_socket_channel/web_socket_channel.dart';
|
import 'package:web_socket_channel/web_socket_channel.dart';
|
||||||
import 'package:web_socket_channel/io.dart';
|
import 'package:web_socket_channel/io.dart';
|
||||||
import 'base_websocket_client.dart';
|
import 'base_websocket_client.dart';
|
||||||
|
|
|
@ -5,6 +5,7 @@ import 'dart:async';
|
||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
import 'package:angel_client/angel_client.dart';
|
import 'package:angel_client/angel_client.dart';
|
||||||
import 'package:http/http.dart' as http;
|
import 'package:http/http.dart' as http;
|
||||||
|
import 'package:http/io_client.dart' as http;
|
||||||
import 'package:web_socket_channel/web_socket_channel.dart';
|
import 'package:web_socket_channel/web_socket_channel.dart';
|
||||||
import 'package:web_socket_channel/io.dart';
|
import 'package:web_socket_channel/io.dart';
|
||||||
import 'base_websocket_client.dart';
|
import 'base_websocket_client.dart';
|
||||||
|
|
|
@ -2,7 +2,7 @@ name: angel_websocket
|
||||||
description: WebSocket plugin for Angel.
|
description: WebSocket plugin for Angel.
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=2.0.0-dev <3.0.0"
|
sdk: ">=2.0.0-dev <3.0.0"
|
||||||
version: 2.0.0-alpha.5
|
version: 2.0.0-alpha.6
|
||||||
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
|
||||||
dependencies:
|
dependencies:
|
||||||
|
@ -10,7 +10,7 @@ dependencies:
|
||||||
angel_client: ^2.0.0-alpha
|
angel_client: ^2.0.0-alpha
|
||||||
angel_framework: ^2.0.0-alpha
|
angel_framework: ^2.0.0-alpha
|
||||||
angel_http_exception: ^1.0.0
|
angel_http_exception: ^1.0.0
|
||||||
http: ">=0.11.0 <2.0.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: ^1.0.0
|
stream_channel: ^1.0.0
|
||||||
|
|
Loading…
Reference in a new issue