You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

317 lines
11 KiB

4 years ago
  1. # Chokidar 2.1.5 (Mar 22, 2019)
  2. * Revert 2.1.3 atomic writing changes.
  3. # Chokidar 2.1.4 (Mar 22, 2019)
  4. * Improve TypeScript type definitions for `on` method.
  5. # Chokidar 2.1.3 (Mar 22, 2019)
  6. * Improve atomic writes handling
  7. # Chokidar 2.1.2 (Feb 18, 2019)
  8. * Add TypeScript type definitions
  9. * More fixes for accessTime behavior (#800)
  10. # Chokidar 2.1.1 (Feb 8, 2019)
  11. * Handle simultaneous change of LastAccessTime and ModifiedTime (#793)
  12. # Chokidar 2.1.0 (Feb 5, 2019)
  13. * Ignore accessTime updates caused by read operations (#762).
  14. * Updated dependencies. Removed `lodash.debounce`.
  15. # Chokidar 2.0.4 (Jun 18, 2018)
  16. * Prevent watcher.close() from crashing (#730).
  17. # Chokidar 2.0.3 (Mar 22, 2018)
  18. * Fixes an issue that using fd = 0 is not closed in case
  19. Windows is used and a `EPERM` error is triggered.
  20. # Chokidar 2.0.2 (Feb 14, 2018)
  21. * Allow semver range updates for upath dependency
  22. # Chokidar 2.0.1 (Feb 8, 2018)
  23. * Fix #668 glob issue on Windows when using `ignore` and `cwd`. Thanks @remy!
  24. * Fix #546 possible uncaught exception when using `awaitWriteFinish`.
  25. Thanks @dsagal!
  26. # Chokidar 2.0.0 (Dec 29, 2017)
  27. * Breaking: Upgrade globbing dependencies which require globs to be more strict and always use POSIX-style slashes because Windows-style slashes are used as escape sequences
  28. * Update tests to work with upgraded globbing dependencies
  29. * Add ability to log FSEvents require error by setting `CHOKIDAR_PRINT_FSEVENTS_REQUIRE_ERROR` env
  30. * Fix for handling braces in globs
  31. * Add node 8 & 9 to CI configs
  32. * Allow node 0.10 failures on Windows
  33. # Chokidar 1.7.0 (May 8, 2017)
  34. * Add `disableGlobbing` option
  35. * Add ability to force interval value by setting CHOKIDAR_INTERVAL env
  36. variable
  37. * Fix issue with `.close()` being called before `ready`
  38. # Chokidar 1.6.0 (Jun 22, 2016)
  39. * Added ability for force `usePolling` mode by setting `CHOKIDAR_USEPOLLING`
  40. env variable
  41. # Chokidar 1.5.2 (Jun 7, 2016)
  42. * Fix missing `addDir` events when using `cwd` and `alwaysStat` options
  43. * Fix missing `add` events for files within a renamed directory
  44. # Chokidar 1.5.1 (May 20, 2016)
  45. * To help prevent exhaustion of FSEvents system limitations, consolidate watch
  46. instances to the common parent upon detection of separate watch instances on
  47. many siblings
  48. # Chokidar 1.5.0 (May 10, 2016)
  49. * Make debounce delay setting used with `atomic: true` user-customizable
  50. * Fixes and improvements to `awaitWriteFinish` features
  51. # Chokidar 1.4.3 (Feb 26, 2016)
  52. * Update async-each dependency to ^1.0.0
  53. # Chokidar 1.4.2 (Dec 30, 2015)
  54. * Now correctly emitting `stats` with `awaitWriteFinish` option.
  55. # Chokidar 1.4.1 (Dec 9, 2015)
  56. * The watcher could now be correctly subclassed with ES6 class syntax.
  57. # Chokidar 1.4.0 (Dec 3, 2015)
  58. * Add `.getWatched()` method, exposing all file system entries being watched
  59. * Apply `awaitWriteFinish` methodology to `change` events (in addition to `add`)
  60. * Fix handling of symlinks within glob paths (#293)
  61. * Fix `addDir` and `unlinkDir` events under globs (#337, #401)
  62. * Fix issues with `.unwatch()` (#374, #403)
  63. # Chokidar 1.3.0 (Nov 18, 2015)
  64. * Improve `awaitWriteFinish` option behavior
  65. * Fix some `cwd` option behavior on Windows
  66. * `awaitWriteFinish` and `cwd` are now compatible
  67. * Fix some race conditions.
  68. * #379: Recreating deleted directory doesn't trigger event
  69. * When adding a previously-deleted file, emit 'add', not 'change'
  70. # Chokidar 1.2.0 (Oct 1, 2015)
  71. * Allow nested arrays of paths to be provided to `.watch()` and `.add()`
  72. * Add `awaitWriteFinish` option
  73. # Chokidar 1.1.0 (Sep 23, 2015)
  74. * Dependency updates including fsevents@1.0.0, improving installation
  75. # Chokidar 1.0.6 (Sep 18, 2015)
  76. * Fix issue with `.unwatch()` method and relative paths
  77. # Chokidar 1.0.5 (Jul 20, 2015)
  78. * Fix regression with regexes/fns using in `ignored`
  79. # Chokidar 1.0.4 (Jul 15, 2015)
  80. * Fix bug with `ignored` files/globs while `cwd` option is set
  81. # Chokidar 1.0.3 (Jun 4, 2015)
  82. * Fix race issue with `alwaysStat` option and removed files
  83. # Chokidar 1.0.2 (May 30, 2015)
  84. * Fix bug with absolute paths and ENAMETOOLONG error
  85. # Chokidar 1.0.1 (Apr 8, 2015)
  86. * Fix bug with `.close()` method in `fs.watch` mode with `persistent: false`
  87. option
  88. # Chokidar 1.0.0 (Apr 7, 2015)
  89. * Glob support! Use globs in `watch`, `add`, and `unwatch` methods
  90. * Comprehensive symlink support
  91. * New `unwatch` method to turn off watching of previously watched paths
  92. * More flexible `ignored` option allowing regex, function, glob, or array
  93. courtesy of [anymatch](https://github.com/es128/anymatch)
  94. * New `cwd` option to set base dir from which relative paths are derived
  95. * New `depth` option for limiting recursion
  96. * New `alwaysStat` option to ensure
  97. [`fs.Stats`](https://nodejs.org/api/fs.html#fs_class_fs_stats) gets passed
  98. with every add/change event
  99. * New `ready` event emitted when initial fs tree scan is done and watcher is
  100. ready for changes
  101. * New `raw` event exposing data and events from the lower-level watch modules
  102. * New `followSymlinks` option to impact whether symlinks' targets or the symlink
  103. files themselves are watched
  104. * New `atomic` option for normalizing artifacts from text editors that use
  105. atomic write methods
  106. * Ensured watcher's stability with lots of bugfixes.
  107. # Chokidar 0.12.6 (Jan 6, 2015)
  108. * Fix bug which breaks `persistent: false` mode when change events occur
  109. # Chokidar 0.12.5 (Dec 17, 2014)
  110. * Fix bug with matching parent path detection for fsevents instance sharing
  111. * Fix bug with ignored watch path in nodefs modes
  112. # Chokidar 0.12.4 (Dec 14, 2014)
  113. * Fix bug in `fs.watch` mode that caused watcher to leak into `cwd`
  114. * Fix bug preventing ready event when there are symlinks to ignored paths
  115. # Chokidar 0.12.3 (Dec 13, 2014)
  116. * Fix handling of special files such as named pipes and sockets
  117. # Chokidar 0.12.2 (Dec 12, 2014)
  118. * Fix recursive symlink handling and some other path resolution problems
  119. # Chokidar 0.12.1 (Dec 10, 2014)
  120. * Fix a case where file symlinks were not followed properly
  121. # Chokidar 0.12.0 (Dec 8, 2014)
  122. * Symlink support
  123. * Add `followSymlinks` option, which defaults to `true`
  124. * Change default watch mode on Linux to non-polling `fs.watch`
  125. * Add `atomic` option to normalize events from editors using atomic writes
  126. * Particularly Vim and Sublime
  127. * Add `raw` event which exposes data from the underlying watch method
  128. # Chokidar 0.11.1 (Nov 19, 2014)
  129. * Fix a bug where an error is thrown when `fs.watch` instantiation fails
  130. # Chokidar 0.11.0 (Nov 16, 2014)
  131. * Add a `ready` event, which is emitted after initial file scan completes
  132. * Fix issue with options keys passed in defined as `undefined`
  133. * Rename some internal `FSWatcher` properties to indicate they're private
  134. # Chokidar 0.10.9 (Nov 15, 2014)
  135. * Fix some leftover issues from adding watcher reuse
  136. # Chokidar 0.10.8 (Nov 14, 2014)
  137. * Remove accidentally committed/published `console.log` statement.
  138. * Sry 'bout that :crying_cat_face:
  139. # Chokidar 0.10.7 (Nov 14, 2014)
  140. * Apply watcher reuse methodology to `fs.watch` and `fs.watchFile` as well
  141. # Chokidar 0.10.6 (Nov 12, 2014)
  142. * More efficient creation/reuse of FSEvents instances to avoid system limits
  143. * Reduce simultaneous FSEvents instances allowed in a process
  144. * Handle errors thrown by `fs.watch` upon invocation
  145. # Chokidar 0.10.5 (Nov 6, 2014)
  146. * Limit number of simultaneous FSEvents instances (fall back to other methods)
  147. * Prevent some cases of EMFILE errors during initialization
  148. * Fix ignored files emitting events in some fsevents-mode circumstances
  149. # Chokidar 0.10.4 (Nov 5, 2014)
  150. * Bump fsevents dependency to ~0.3.1
  151. * Should resolve build warnings and `npm rebuild` on non-Macs
  152. # Chokidar 0.10.3 (Oct 28, 2014)
  153. * Fix removed dir emitting as `unlink` instead of `unlinkDir`
  154. * Fix issues with file changing to dir or vice versa (gh-165)
  155. * Fix handling of `ignored` option in fsevents mode
  156. # Chokidar 0.10.2 (Oct 23, 2014)
  157. * Improve individual file watching
  158. * Fix fsevents keeping process alive when `persistent: false`
  159. # Chokidar 0.10.1 (19 October 2014)
  160. * Improve handling of text editor atomic writes
  161. # Chokidar 0.10.0 (Oct 18, 2014)
  162. * Many stability and consistency improvements
  163. * Resolve many cases of duplicate or wrong events
  164. * Correct for fsevents inconsistencies
  165. * Standardize handling of errors and relative paths
  166. * Fix issues with watching `./`
  167. # Chokidar 0.9.0 (Sep 25, 2014)
  168. * Updated fsevents to 0.3
  169. * Update per-system defaults
  170. * Fix issues with closing chokidar instance
  171. * Fix duplicate change events on win32
  172. # Chokidar 0.8.2 (Mar 26, 2014)
  173. * Fixed npm issues related to fsevents dep.
  174. * Updated fsevents to 0.2.
  175. # Chokidar 0.8.1 (Dec 16, 2013)
  176. * Optional deps are now truly optional on windows and
  177. linux.
  178. * Rewritten in JS, again.
  179. * Fixed some FSEvents-related bugs.
  180. # Chokidar 0.8.0 (Nov 29, 2013)
  181. * Added ultra-fast low-CPU OS X file watching with FSEvents.
  182. It is enabled by default.
  183. * Added `addDir` and `unlinkDir` events.
  184. * Polling is now disabled by default on all platforms.
  185. # Chokidar 0.7.1 (Nov 18, 2013)
  186. * `Watcher#close` now also removes all event listeners.
  187. # Chokidar 0.7.0 (Oct 22, 2013)
  188. * When `options.ignored` is two-argument function, it will
  189. also be called after stating the FS, with `stats` argument.
  190. * `unlink` is no longer emitted on directories.
  191. # Chokidar 0.6.3 (Aug 12, 2013)
  192. * Added `usePolling` option (default: `true`).
  193. When `false`, chokidar will use `fs.watch` as backend.
  194. `fs.watch` is much faster, but not like super reliable.
  195. # Chokidar 0.6.2 (Mar 19, 2013)
  196. * Fixed watching initially empty directories with `ignoreInitial` option.
  197. # Chokidar 0.6.1 (Mar 19, 2013)
  198. * Added node.js 0.10 support.
  199. # Chokidar 0.6.0 (Mar 10, 2013)
  200. * File attributes (stat()) are now passed to `add` and `change` events as second
  201. arguments.
  202. * Changed default polling interval for binary files to 300ms.
  203. # Chokidar 0.5.3 (Jan 13, 2013)
  204. * Removed emitting of `change` events before `unlink`.
  205. # Chokidar 0.5.2 (Jan 13, 2013)
  206. * Removed postinstall script to prevent various npm bugs.
  207. # Chokidar 0.5.1 (Jan 6, 2013)
  208. * When starting to watch non-existing paths, chokidar will no longer throw
  209. ENOENT error.
  210. * Fixed bug with absolute path.
  211. # Chokidar 0.5.0 (Dec 9, 2012)
  212. * Added a bunch of new options:
  213. * `ignoreInitial` that allows to ignore initial `add` events.
  214. * `ignorePermissionErrors` that allows to ignore ENOENT etc perm errors.
  215. * `interval` and `binaryInterval` that allow to change default
  216. fs polling intervals.
  217. # Chokidar 0.4.0 (Jul 26, 2012)
  218. * Added `all` event that receives two args (event name and path) that combines
  219. `add`, `change` and `unlink` events.
  220. * Switched to `fs.watchFile` on node.js 0.8 on windows.
  221. * Files are now correctly unwatched after unlink.
  222. # Chokidar 0.3.0 (Jun 24, 2012)
  223. * `unlink` event are no longer emitted for directories, for consistency with
  224. `add`.
  225. # Chokidar 0.2.6 (Jun 8, 2012)
  226. * Prevented creating of duplicate 'add' events.
  227. # Chokidar 0.2.5 (Jun 8, 2012)
  228. * Fixed a bug when new files in new directories hadn't been added.
  229. # Chokidar 0.2.4 (Jun 7, 2012)
  230. * Fixed a bug when unlinked files emitted events after unlink.
  231. # Chokidar 0.2.3 (May 12, 2012)
  232. * Fixed watching of files on windows.
  233. # Chokidar 0.2.2 (May 4, 2012)
  234. * Fixed watcher signature.
  235. # Chokidar 0.2.1 (May 4, 2012)
  236. * Fixed invalid API bug when using `watch()`.
  237. # Chokidar 0.2.0 (May 4, 2012)
  238. * Rewritten in js.
  239. # Chokidar 0.1.1 (Apr 26, 2012)
  240. * Changed api to `chokidar.watch()`.
  241. * Fixed compilation on windows.
  242. # Chokidar 0.1.0 (Apr 20, 2012)
  243. * Initial release, extracted from
  244. [Brunch](https://github.com/brunch/brunch/blob/9847a065aea300da99bd0753f90354cde9de1261/src/helpers.coffee#L66)