File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## v0.1.4
2
+
3
+ * Fixed issue where query parameters were not being sent as part of requests.
4
+
1
5
## v0.1.3
2
6
3
7
* Updated SDK version upper bound to 3.0.0.
Original file line number Diff line number Diff line change @@ -93,7 +93,8 @@ class SyncHttpClientRequest {
93
93
queryString = query.toString ().substring (0 , query.length - 1 );
94
94
}
95
95
StringBuffer buffer = new StringBuffer ();
96
- buffer.write ('$method ${uri .path }${queryString } HTTP/$_protocolVersion \r\n ' );
96
+ buffer
97
+ .write ('$method ${uri .path }${queryString } HTTP/$_protocolVersion \r\n ' );
97
98
headers.forEach ((name, values) {
98
99
values.forEach ((value) {
99
100
buffer.write ('$name : $value \r\n ' );
Original file line number Diff line number Diff line change 1
1
name : sync_http
2
- version : 0.1.3
2
+ version : 0.1.4
3
3
author :
Dart Team <[email protected] >
4
4
description : Synchronous HTTP client for Dart.
5
5
homepage : https://github.com/dart-lang/sync_http
You can’t perform that action at this time.
0 commit comments