|
| 1 | +## 1.1.1 |
| 2 | + |
| 3 | +- Ensure `PollingFileWatcher.ready` completes for files that do not exist. |
| 4 | +- Require Dart SDK `^3.1.0` |
| 5 | +- Move to `dart-lang/tools` monorepo. |
| 6 | + |
| 7 | +## 1.1.0 |
| 8 | + |
| 9 | +- Require Dart SDK >= 3.0.0 |
| 10 | +- Remove usage of redundant ConstructableFileSystemEvent classes. |
| 11 | + |
| 12 | +## 1.0.3-dev |
| 13 | + |
| 14 | +- Require Dart SDK >= 2.19 |
| 15 | + |
| 16 | +## 1.0.2 |
| 17 | + |
| 18 | +- Require Dart SDK >= 2.14 |
| 19 | +- Ensure `DirectoryWatcher.ready` completes even when errors occur that close the watcher. |
| 20 | +- Add markdown badges to the readme. |
| 21 | + |
| 22 | +## 1.0.1 |
| 23 | + |
| 24 | +* Drop package:pedantic and use package:lints instead. |
| 25 | + |
| 26 | +## 1.0.0 |
| 27 | + |
| 28 | +* Require Dart SDK >= 2.12 |
| 29 | +* Add the ability to create custom Watcher types for specific file paths. |
| 30 | + |
| 31 | +## 0.9.7+15 |
| 32 | + |
| 33 | +* Fix a bug on Mac where modifying a directory with a path exactly matching a |
| 34 | + prefix of a modified file would suppress change events for that file. |
| 35 | + |
| 36 | +## 0.9.7+14 |
| 37 | + |
| 38 | +* Prepare for breaking change in SDK where modified times for not found files |
| 39 | + becomes meaningless instead of null. |
| 40 | + |
| 41 | +## 0.9.7+13 |
| 42 | + |
| 43 | +* Catch & forward `FileSystemException` from unexpectedly closed file watchers |
| 44 | + on windows; the watcher will also be automatically restarted when this occurs. |
| 45 | + |
| 46 | +## 0.9.7+12 |
| 47 | + |
| 48 | +* Catch `FileSystemException` during `existsSync()` on Windows. |
| 49 | +* Internal cleanup. |
| 50 | + |
| 51 | +## 0.9.7+11 |
| 52 | + |
| 53 | +* Fix an analysis hint. |
| 54 | + |
| 55 | +## 0.9.7+10 |
| 56 | + |
| 57 | +* Set max SDK version to `<3.0.0`, and adjust other dependencies. |
| 58 | + |
| 59 | +## 0.9.7+9 |
| 60 | + |
| 61 | +* Internal changes only. |
| 62 | + |
| 63 | +## 0.9.7+8 |
| 64 | + |
| 65 | +* Fix Dart 2.0 type issues on Mac and Windows. |
| 66 | + |
| 67 | +## 0.9.7+7 |
| 68 | + |
| 69 | +* Updates to support Dart 2.0 core library changes (wave 2.2). |
| 70 | + See [issue 31847][sdk#31847] for details. |
| 71 | + |
| 72 | + [sdk#31847]: https://github.com/dart-lang/sdk/issues/31847 |
| 73 | + |
| 74 | + |
| 75 | +## 0.9.7+6 |
| 76 | + |
| 77 | +* Internal changes only, namely removing dep on scheduled test. |
| 78 | + |
| 79 | +## 0.9.7+5 |
| 80 | + |
| 81 | +* Fix an analysis warning. |
| 82 | + |
| 83 | +## 0.9.7+4 |
| 84 | + |
| 85 | +* Declare support for `async` 2.0.0. |
| 86 | + |
| 87 | +## 0.9.7+3 |
| 88 | + |
| 89 | +* Fix a crashing bug on Linux. |
| 90 | + |
| 91 | +## 0.9.7+2 |
| 92 | + |
| 93 | +* Narrow the constraint on `async` to reflect the APIs this package is actually |
| 94 | + using. |
| 95 | + |
| 96 | +## 0.9.7+1 |
| 97 | + |
| 98 | +* Fix all strong-mode warnings. |
| 99 | + |
| 100 | +## 0.9.7 |
| 101 | + |
| 102 | +* Fix a bug in `FileWatcher` where events could be added after watchers were |
| 103 | + closed. |
| 104 | + |
| 105 | +## 0.9.6 |
| 106 | + |
| 107 | +* Add a `Watcher` interface that encompasses watching both files and |
| 108 | + directories. |
| 109 | + |
| 110 | +* Add `FileWatcher` and `PollingFileWatcher` classes for watching changes to |
| 111 | + individual files. |
| 112 | + |
| 113 | +* Deprecate `DirectoryWatcher.directory`. Use `DirectoryWatcher.path` instead. |
| 114 | + |
| 115 | +## 0.9.5 |
| 116 | + |
| 117 | +* Fix bugs where events could be added after watchers were closed. |
| 118 | + |
| 119 | +## 0.9.4 |
| 120 | + |
| 121 | +* Treat add events for known files as modifications instead of discarding them |
| 122 | + on Mac OS. |
| 123 | + |
| 124 | +## 0.9.3 |
| 125 | + |
| 126 | +* Improved support for Windows via `WindowsDirectoryWatcher`. |
| 127 | + |
| 128 | +* Simplified `PollingDirectoryWatcher`. |
| 129 | + |
| 130 | +* Fixed bugs in `MacOSDirectoryWatcher` |
0 commit comments