File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
- ## 2.8.0
1
+ ## 2.8.1 - 2020-05-06
2
2
3
3
Much of the changes in this release are in preparation for non-nullable types,
4
4
which will arrive in a future version. In anticipation of that, we have made a
Original file line number Diff line number Diff line change @@ -713,10 +713,10 @@ class _HttpParser extends Stream<_HttpIncoming> {
713
713
(isUpgrade && isResponse && isUpgradeCode)) {
714
714
_connectionUpgrade = true ;
715
715
}
716
- _headers.add (headerField, tokens[i]);
716
+ _headers._add (headerField, tokens[i]);
717
717
}
718
718
} else {
719
- _headers.add (headerField, headerValue);
719
+ _headers._add (headerField, headerValue);
720
720
}
721
721
_headerField.clear ();
722
722
_headerValue.clear ();
Original file line number Diff line number Diff line change @@ -713,10 +713,10 @@ class _HttpParser extends Stream<_HttpIncoming> {
713
713
(isUpgrade && isResponse && isUpgradeCode)) {
714
714
_connectionUpgrade = true ;
715
715
}
716
- headers.add (headerField, tokens[i]);
716
+ headers._add (headerField, tokens[i]);
717
717
}
718
718
} else {
719
- headers.add (headerField, headerValue);
719
+ headers._add (headerField, headerValue);
720
720
}
721
721
_headerField.clear ();
722
722
_headerValue.clear ();
Original file line number Diff line number Diff line change 32
32
CHANNEL stable
33
33
MAJOR 2
34
34
MINOR 8
35
- PATCH 0
35
+ PATCH 1
36
36
PRERELEASE 0
37
37
PRERELEASE_PATCH 0
38
38
ABI_VERSION 32
You can’t perform that action at this time.
0 commit comments