| OLD | NEW |
| 1 # changelog | 1 # changelog |
| 2 | 2 |
| 3 This file contains highlights of what changes on each version of the polymer | 3 This file contains highlights of what changes on each version of the polymer |
| 4 package. We will also note important changes to the polyfill packages (observe, | 4 package. We will also note important changes to the polyfill packages (observe, |
| 5 web_components, and template_binding) if they impact polymer. | 5 web_components, and template_binding) if they impact polymer. |
| 6 | 6 |
| 7 #### Pub version 0.12.1-dev | 7 #### Pub version 0.12.1-dev |
| 8 * Added the ability to override the stylesheet inlining behavior. There is now | 8 * Added the ability to override the stylesheet inlining behavior. There is now |
| 9 an option exposed in the pubspec.yaml called `inline_stylesheets`. There are | 9 an option exposed in the pubspec.yaml called `inline_stylesheets`. There are |
| 10 two possible values, a boolean or a map. If only a boolean is supplied then | 10 two possible values, a boolean or a map. If only a boolean is supplied then |
| 11 that will set the global default behavior. If a map is supplied, then the | 11 that will set the global default behavior. If a map is supplied, then the |
| 12 keys should be file paths, and the value is a boolean. You can use the | 12 keys should be file paths, and the value is a boolean. You can use the |
| 13 special key 'default' to set the default value. | 13 special key 'default' to set the default value. |
| 14 | 14 |
| 15 For example, the following would change the default to not inline any | 15 For example, the following would change the default to not inline any |
| 16 styles, except for the foo.css file in your web folder and the bar.css file | 16 styles, except for the foo.css file in your web folder and the bar.css file |
| 17 under the foo packages lib directory: | 17 under the foo packages lib directory: |
| 18 | 18 |
| 19 inline_stylesheets: | 19 inline_stylesheets: |
| 20 default: false | 20 default: false |
| 21 web/foo.css: true | 21 web/foo.css: true |
| 22 packages/foo/bar.css: true | 22 packages/foo/bar.css: true |
| 23 | 23 |
| 24 * Added `inject_build_logs_in_output` option to pubspec for polymer |
| 25 transformers. When set to `true`, this will inject a small element into your |
| 26 entry point pages that will display all log messages from the polymer |
| 27 transformers during the build step. This element is only injected when not |
| 28 running in release mode (ie: `pub serve` but not `pub build`). |
| 29 |
| 24 #### Pub version 0.12.0+7 | 30 #### Pub version 0.12.0+7 |
| 25 * Widen the constraint on `unittest`. | 31 * Widen the constraint on `unittest`. |
| 26 | 32 |
| 27 #### Pub version 0.12.0+6 | 33 #### Pub version 0.12.0+6 |
| 28 * Widen the constraint on analyzer. | 34 * Widen the constraint on analyzer. |
| 29 * Support for `_src` and similar attributes in polymer transformers. | 35 * Support for `_src` and similar attributes in polymer transformers. |
| 30 | 36 |
| 31 #### Pub version 0.12.0+5 | 37 #### Pub version 0.12.0+5 |
| 32 * Raise the lower bound on the source_maps constraint to exclude incompatible | 38 * Raise the lower bound on the source_maps constraint to exclude incompatible |
| 33 versions. | 39 versions. |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 #### Pub version 0.9.2+3 | 150 #### Pub version 0.9.2+3 |
| 145 * fix [15574](https://code.google.com/p/dart/issues/detail?id=15574), | 151 * fix [15574](https://code.google.com/p/dart/issues/detail?id=15574), |
| 146 event bindings in dart2js, by working around issue | 152 event bindings in dart2js, by working around issue |
| 147 [15573](https://code.google.com/p/dart/issues/detail?id=15573) | 153 [15573](https://code.google.com/p/dart/issues/detail?id=15573) |
| 148 | 154 |
| 149 #### Pub version 0.9.2+2 | 155 #### Pub version 0.9.2+2 |
| 150 * fix enteredView in dart2js, by using custom_element >= 0.9.1+1 | 156 * fix enteredView in dart2js, by using custom_element >= 0.9.1+1 |
| 151 | 157 |
| 152 [6ad2d61]:https://github.com/Polymer/polymer-dev/commit/6a3e1b0e2a0bbe546f6896b3
f4f064950d7aee8f | 158 [6ad2d61]:https://github.com/Polymer/polymer-dev/commit/6a3e1b0e2a0bbe546f6896b3
f4f064950d7aee8f |
| 153 [3b690ad]:https://github.com/Polymer/polymer-dev/commit/3b690ad0d995a7ea339ed601
075de2f84d92bafd | 159 [3b690ad]:https://github.com/Polymer/polymer-dev/commit/3b690ad0d995a7ea339ed601
075de2f84d92bafd |
| OLD | NEW |