| OLD | NEW |
| 1 # changelog | 1 #### 0.12.1-dev |
| 2 * Upgraded error messages to have a unique and stable identifier. |
| 2 | 3 |
| 3 This file contains highlights of what changes on each version of the observe | 4 #### 0.12.0 |
| 4 package. | |
| 5 | |
| 6 #### Pub version 0.12.0 | |
| 7 * Old transform.dart file removed. If you weren't use it it, this change is | 5 * Old transform.dart file removed. If you weren't use it it, this change is |
| 8 backwards compatible with version 0.11.0. | 6 backwards compatible with version 0.11.0. |
| 9 | 7 |
| 10 #### Pub version 0.11.0+5 | 8 #### 0.11.0+5 |
| 11 * Widen the constraint on analyzer. | 9 * Widen the constraint on analyzer. |
| 12 | 10 |
| 13 #### Pub version 0.11.0+4 | 11 #### 0.11.0+4 |
| 14 * Raise the lower bound on the source_maps constraint to exclude incompatible | 12 * Raise the lower bound on the source_maps constraint to exclude incompatible |
| 15 versions. | 13 versions. |
| 16 | 14 |
| 17 #### Pub version 0.11.0+3 | 15 #### 0.11.0+3 |
| 18 * Widen the constraint on source_maps. | 16 * Widen the constraint on source_maps. |
| 19 | 17 |
| 20 #### Pub version 0.11.0+2 | 18 #### 0.11.0+2 |
| 21 * Widen the constraint on barback. | 19 * Widen the constraint on barback. |
| 22 | 20 |
| 23 #### Pub version 0.11.0+1 | 21 #### 0.11.0+1 |
| 24 * Switch from `source_maps`' `Span` class to `source_span`'s `SourceSpan` | 22 * Switch from `source_maps`' `Span` class to `source_span`'s `SourceSpan` |
| 25 class. | 23 class. |
| 26 | 24 |
| 27 #### Pub version 0.11.0 | 25 #### 0.11.0 |
| 28 * Updated to match [observe-js#e212e74][e212e74] (release 0.3.4) | 26 * Updated to match [observe-js#e212e74][e212e74] (release 0.3.4) |
| 29 * ListPathObserver has been deprecated (it was deleted a while ago in | 27 * ListPathObserver has been deprecated (it was deleted a while ago in |
| 30 observe-js). We plan to delete it in a future release. You may copy the code | 28 observe-js). We plan to delete it in a future release. You may copy the code |
| 31 if you still need it. | 29 if you still need it. |
| 32 * PropertyPath now uses an expression syntax including indexers. For example, | 30 * PropertyPath now uses an expression syntax including indexers. For example, |
| 33 you can write `a.b["m"]` instead of `a.b.m`. | 31 you can write `a.b["m"]` instead of `a.b.m`. |
| 34 * **breaking change**: PropertyPath no longer allows numbers as fields, you | 32 * **breaking change**: PropertyPath no longer allows numbers as fields, you |
| 35 need to use indexers instead. For example, you now need to write `a[3].d` | 33 need to use indexers instead. For example, you now need to write `a[3].d` |
| 36 instead of `a.3.d`. | 34 instead of `a.3.d`. |
| 37 * **breaking change**: PathObserver.value= no longer discards changes (this is | 35 * **breaking change**: PathObserver.value= no longer discards changes (this is |
| 38 in combination with a change in template_binding and polymer to improve | 36 in combination with a change in template_binding and polymer to improve |
| 39 interop with JS custom elements). | 37 interop with JS custom elements). |
| 40 | 38 |
| 41 #### Pub version 0.10.0+3 | 39 #### 0.10.0+3 |
| 42 * minor changes to documentation, deprecated `discardListChages` in favor of | 40 * minor changes to documentation, deprecated `discardListChages` in favor of |
| 43 `discardListChanges` (the former had a typo). | 41 `discardListChanges` (the former had a typo). |
| 44 | 42 |
| 45 #### Pub version 0.10.0 | 43 #### 0.10.0 |
| 46 * package:observe no longer declares @MirrorsUsed. The package uses mirrors | 44 * package:observe no longer declares @MirrorsUsed. The package uses mirrors |
| 47 for development time, but assumes frameworks (like polymer) and apps that | 45 for development time, but assumes frameworks (like polymer) and apps that |
| 48 use it directly will either generate code that replaces the use of mirrors, | 46 use it directly will either generate code that replaces the use of mirrors, |
| 49 or add the @MirrorsUsed declaration themselves. For convinience, you can | 47 or add the @MirrorsUsed declaration themselves. For convinience, you can |
| 50 import 'package:observe/mirrors_used.dart', and that will add a @MirrorsUsed | 48 import 'package:observe/mirrors_used.dart', and that will add a @MirrorsUsed |
| 51 annotation that preserves properties and classes labeled with @reflectable | 49 annotation that preserves properties and classes labeled with @reflectable |
| 52 and properties labeled with @observable. | 50 and properties labeled with @observable. |
| 53 * Updated to match [observe-js#0152d54][0152d54] | 51 * Updated to match [observe-js#0152d54][0152d54] |
| 54 | 52 |
| 55 [0152d54]: https://github.com/Polymer/observe-js/blob/0152d542350239563d0f2cad39
d22d3254bd6c2a/src/observe.js | 53 [0152d54]: https://github.com/Polymer/observe-js/blob/0152d542350239563d0f2cad39
d22d3254bd6c2a/src/observe.js |
| 56 [e212e74]: https://github.com/Polymer/observe-js/blob/e212e7473962067c099a3d1859
595c2f8baa36d7/src/observe.js | 54 [e212e74]: https://github.com/Polymer/observe-js/blob/e212e7473962067c099a3d1859
595c2f8baa36d7/src/observe.js |
| OLD | NEW |