| OLD | NEW |
| 1 ## 0.12.11 | 1 ## 0.12.11 |
| 2 | 2 |
| 3 * Add a `tags` field to the package configuration file that allows users to | 3 * Add a `tags` field to the package configuration file that allows users to |
| 4 provide configuration for specific tags. | 4 provide configuration for specific tags. |
| 5 | 5 |
| 6 * The `--tags` and `--exclude-tags` command-line flags now allow |
| 7 [boolean selector syntax][]. For example, you can now pass `--tags "(chrome || |
| 8 firefox) && !slow"` to select quick Chrome or Firefox tests. |
| 9 |
| 10 [boolean selector syntax]: https://github.com/dart-lang/boolean_selector/blob/ma
ster/README.md |
| 11 |
| 6 ## 0.12.10+2 | 12 ## 0.12.10+2 |
| 7 | 13 |
| 8 * Re-add help output separators. | 14 * Re-add help output separators. |
| 9 | 15 |
| 10 * Tighten the constraint on `args`. | 16 * Tighten the constraint on `args`. |
| 11 | 17 |
| 12 ## 0.12.10+1 | 18 ## 0.12.10+1 |
| 13 | 19 |
| 14 * Temporarily remove separators from the help output. Version 0.12.8 was | 20 * Temporarily remove separators from the help output. Version 0.12.8 was |
| 15 erroneously released without an appropriate `args` constraint for the features | 21 erroneously released without an appropriate `args` constraint for the features |
| (...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 412 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
| 407 `expectAsyncUntil1` and `expectAsyncUntil2` | 413 `expectAsyncUntil1` and `expectAsyncUntil2` |
| 408 * `TestCase`: | 414 * `TestCase`: |
| 409 * Removed properties: `setUp`, `tearDown`, `testFunction` | 415 * Removed properties: `setUp`, `tearDown`, `testFunction` |
| 410 * `enabled` is now get-only | 416 * `enabled` is now get-only |
| 411 * Removed methods: `pass`, `fail`, `error` | 417 * Removed methods: `pass`, `fail`, `error` |
| 412 * `interactive_html_config.dart` has been removed. | 418 * `interactive_html_config.dart` has been removed. |
| 413 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 419 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
| 414 `solo_group` now throw a `StateError` if called while tests are running. | 420 `solo_group` now throw a `StateError` if called while tests are running. |
| 415 * `rerunTests` has been removed. | 421 * `rerunTests` has been removed. |
| OLD | NEW |