File tree 4 files changed +17
-5
lines changed
4 files changed +17
-5
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.4.2
2
+
3
+ - Undeprecate some APIs and helpers library that were deprecated in 0.4.1.
4
+ Because deprecations are breaking in Flutter, they should be done in a
5
+ breaking change.
6
+
1
7
## 0.4.1
2
8
3
9
- Exported the helper libraries from ` web.dart ` .
Original file line number Diff line number Diff line change 2
2
// for details. All rights reserved. Use of this source code is governed by a
3
3
// BSD-style license that can be found in the LICENSE file.
4
4
5
- @Deprecated ('See instead package:web/web.dart.' )
6
- library ;
5
+ // TODO(srujzs): Deprecate in 0.5.0 instead. This results in failures in Flutter
6
+ // CI.
7
+ // @Deprecated('See instead package:web/web.dart.')
8
+ // library;
7
9
8
10
export 'web.dart' ;
Original file line number Diff line number Diff line change @@ -67,9 +67,13 @@ extension CanvasRenderingContext2DGlue on CanvasRenderingContext2D {
67
67
68
68
extension NodeGlue on Node {
69
69
set text (String s) => textContent = s;
70
- @Deprecated ('See Node.appendChild()' )
70
+ // TODO(srujzs): Deprecate in 0.5.0 instead. Deprecations are breaking for
71
+ // Flutter CI.
72
+ // @Deprecated('See Node.appendChild()')
71
73
Node append (Node other) => appendChild (other);
72
- @Deprecated ('See Node.cloneNode()' )
74
+ // TODO(srujzs): Deprecate in 0.5.0 instead. Deprecations are breaking for
75
+ // Flutter CI.
76
+ // @Deprecated('See Node.cloneNode()')
73
77
Node clone (bool ? deep) => cloneNode (deep ?? false );
74
78
}
75
79
Original file line number Diff line number Diff line change 1
1
name : web
2
- version : 0.4.1
2
+ version : 0.4.2
3
3
description : Lightweight browser API bindings built around JS static interop.
4
4
repository : https://github.com/dart-lang/web
5
5
You can’t perform that action at this time.
0 commit comments