OLD | NEW |
1 # changelog | 1 # changelog |
2 | 2 |
3 This file contains highlights of what changes on each version of the observe | 3 This file contains highlights of what changes on each version of the observe |
4 package. | 4 package. |
5 | 5 |
| 6 #### Pub version 0.11.0-dev |
| 7 * PathObserver.value= no longer discards changes (this is in combination with |
| 8 a change in template_binding and polymer to improve interop with JS custom |
| 9 elements). |
| 10 |
6 #### Pub version 0.10.0+3 | 11 #### Pub version 0.10.0+3 |
7 * minor changes to documentation, deprecated `discardListChages` in favor of | 12 * minor changes to documentation, deprecated `discardListChages` in favor of |
8 `discardListChanges` (the former had a typo). | 13 `discardListChanges` (the former had a typo). |
9 | 14 |
10 #### Pub version 0.10.0 | 15 #### Pub version 0.10.0 |
11 * package:observe no longer declares @MirrorsUsed. The package uses mirrors | 16 * package:observe no longer declares @MirrorsUsed. The package uses mirrors |
12 for development time, but assumes frameworks (like polymer) and apps that | 17 for development time, but assumes frameworks (like polymer) and apps that |
13 use it directly will either generate code that replaces the use of mirrors, | 18 use it directly will either generate code that replaces the use of mirrors, |
14 or add the @MirrorsUsed declaration themselves. For convinience, you can | 19 or add the @MirrorsUsed declaration themselves. For convinience, you can |
15 import 'package:observe/mirrors_used.dart', and that will add a @MirrorsUsed | 20 import 'package:observe/mirrors_used.dart', and that will add a @MirrorsUsed |
16 annotation that preserves properties and classes labeled with @reflectable | 21 annotation that preserves properties and classes labeled with @reflectable |
17 and properties labeled with @observable. | 22 and properties labeled with @observable. |
OLD | NEW |