PageRenderTime 64ms CodeModel.GetById 36ms RepoModel.GetById 1ms app.codeStats 0ms

/node_modules/webpack/node_modules/watchpack/node_modules/chokidar/CHANGELOG.md

https://gitlab.com/jeaster12/fabby
Markdown | 219 lines | 167 code | 52 blank | 0 comment | 0 complexity | 89ca952b358de68758b471fd344981f9 MD5 | raw file
  1. # Chokidar 1.2.0 (1 October 2015)
  2. * Allow nested arrays of paths to be provided to `.watch()` and `.add()`
  3. * Add `awaitWriteFinish` option
  4. # Chokidar 1.1.0 (23 September 2015)
  5. * Dependency updates including fsevents@1.0.0, improving installation
  6. # Chokidar 1.0.6 (18 September 2015)
  7. * Fix issue with `.unwatch()` method and relative paths
  8. # Chokidar 1.0.5 (20 July 2015)
  9. * Fix regression with regexes/fns using in `ignored`
  10. # Chokidar 1.0.4 (15 July 2015)
  11. * Fix bug with `ignored` files/globs while `cwd` option is set
  12. # Chokidar 1.0.3 (4 June 2015)
  13. * Fix race issue with `alwaysStat` option and removed files
  14. # Chokidar 1.0.2 (30 May 2015)
  15. * Fix bug with absolute paths and ENAMETOOLONG error
  16. # Chokidar 1.0.1 (8 April 2015)
  17. * Fix bug with `.close()` method in `fs.watch` mode with `persistent: false` option
  18. # Chokidar 1.0.0 (7 April 2015)
  19. * Glob support! Use globs in `watch`, `add`, and `unwatch` methods
  20. * Comprehensive symlink support
  21. * New `unwatch` method to turn off watching of previously watched paths
  22. * More flexible `ignored` option allowing regex, function, glob, or array courtesy of [anymatch](https://github.com/es128/anymatch)
  23. * New `cwd` option to set base dir from which relative paths are derived
  24. * New `depth` option for limiting recursion
  25. * New `alwaysStat` option to ensure [`fs.Stats`](https://nodejs.org/api/fs.html#fs_class_fs_stats) gets passed with every add/change event
  26. * New `ready` event emitted when initial fs tree scan is done and watcher is ready for changes
  27. * New `raw` event exposing data and events from the lower-level watch modules
  28. * New `followSymlinks` option to impact whether symlinks' targets or the symlink files themselves are watched
  29. * New `atomic` option for normalizing artifacts from text editors that use atomic write methods
  30. * Ensured watcher's stability with lots of bugfixes.
  31. # Chokidar 0.12.6 (6 January 2015)
  32. * Fix bug which breaks `persistent: false` mode when change events occur
  33. # Chokidar 0.12.5 (17 December 2014)
  34. * Fix bug with matching parent path detection for fsevents instance sharing
  35. * Fix bug with ignored watch path in nodefs modes
  36. # Chokidar 0.12.4 (14 December 2014)
  37. * Fix bug in `fs.watch` mode that caused watcher to leak into `cwd`
  38. * Fix bug preventing ready event when there are symlinks to ignored paths
  39. # Chokidar 0.12.3 (13 December 2014)
  40. * Fix handling of special files such as named pipes and sockets
  41. # Chokidar 0.12.2 (12 December 2014)
  42. * Fix recursive symlink handling and some other path resolution problems
  43. # Chokidar 0.12.1 (10 December 2014)
  44. * Fix a case where file symlinks were not followed properly
  45. # Chokidar 0.12.0 (8 December 2014)
  46. * Symlink support
  47. * Add `followSymlinks` option, which defaults to `true`
  48. * Change default watch mode on Linux to non-polling `fs.watch`
  49. * Add `atomic` option to normalize events from editors using atomic writes
  50. * Particularly Vim and Sublime
  51. * Add `raw` event which exposes data from the underlying watch method
  52. # Chokidar 0.11.1 (19 November 2014)
  53. * Fix a bug where an error is thrown when `fs.watch` instantiation fails
  54. # Chokidar 0.11.0 (16 November 2014)
  55. * Add a `ready` event, which is emitted after initial file scan completes
  56. * Fix issue with options keys passed in defined as `undefined`
  57. * Rename some internal `FSWatcher` properties to indicate they're private
  58. # Chokidar 0.10.9 (15 November 2014)
  59. * Fix some leftover issues from adding watcher reuse
  60. # Chokidar 0.10.8 (14 November 2014)
  61. * Remove accidentally committed/published `console.log` statement.
  62. * Sry 'bout that :crying_cat_face:
  63. # Chokidar 0.10.7 (14 November 2014)
  64. * Apply watcher reuse methodology to `fs.watch` and `fs.watchFile` as well
  65. # Chokidar 0.10.6 (12 November 2014)
  66. * More efficient creation/reuse of FSEvents instances to avoid system limits
  67. * Reduce simultaneous FSEvents instances allowed in a process
  68. * Handle errors thrown by `fs.watch` upon invocation
  69. # Chokidar 0.10.5 (6 November 2014)
  70. * Limit number of simultaneous FSEvents instances (fall back to other methods)
  71. * Prevent some cases of EMFILE errors during initialization
  72. * Fix ignored files emitting events in some fsevents-mode circumstances
  73. # Chokidar 0.10.4 (5 November 2014)
  74. * Bump fsevents dependency to ~0.3.1
  75. * Should resolve build warnings and `npm rebuild` on non-Macs
  76. # Chokidar 0.10.3 (28 October 2014)
  77. * Fix removed dir emitting as `unlink` instead of `unlinkDir`
  78. * Fix issues with file changing to dir or vice versa (gh-165)
  79. * Fix handling of `ignored` option in fsevents mode
  80. # Chokidar 0.10.2 (23 October 2014)
  81. * Improve individual file watching
  82. * Fix fsevents keeping process alive when `persistent: false`
  83. # Chokidar 0.10.1 (19 October 2014)
  84. * Improve handling of text editor atomic writes
  85. # Chokidar 0.10.0 (18 October 2014)
  86. * Many stability and consistency improvements
  87. * Resolve many cases of duplicate or wrong events
  88. * Correct for fsevents inconsistencies
  89. * Standardize handling of errors and relative paths
  90. * Fix issues with watching `./`
  91. # Chokidar 0.9.0 (25 September 2014)
  92. * Updated fsevents to 0.3
  93. * Update per-system defaults
  94. * Fix issues with closing chokidar instance
  95. * Fix duplicate change events on win32
  96. # Chokidar 0.8.2 (26 March 2014)
  97. * Fixed npm issues related to fsevents dep.
  98. * Updated fsevents to 0.2.
  99. # Chokidar 0.8.1 (16 December 2013)
  100. * Optional deps are now truly optional on windows and
  101. linux.
  102. * Rewritten in JS, again.
  103. * Fixed some FSEvents-related bugs.
  104. # Chokidar 0.8.0 (29 November 2013)
  105. * Added ultra-fast low-CPU OS X file watching with FSEvents.
  106. It is enabled by default.
  107. * Added `addDir` and `unlinkDir` events.
  108. * Polling is now disabled by default on all platforms.
  109. # Chokidar 0.7.1 (18 November 2013)
  110. * `Watcher#close` now also removes all event listeners.
  111. # Chokidar 0.7.0 (22 October 2013)
  112. * When `options.ignored` is two-argument function, it will
  113. also be called after stating the FS, with `stats` argument.
  114. * `unlink` is no longer emitted on directories.
  115. # Chokidar 0.6.3 (12 August 2013)
  116. * Added `usePolling` option (default: `true`).
  117. When `false`, chokidar will use `fs.watch` as backend.
  118. `fs.watch` is much faster, but not like super reliable.
  119. # Chokidar 0.6.2 (19 March 2013)
  120. * Fixed watching initially empty directories with `ignoreInitial` option.
  121. # Chokidar 0.6.1 (19 March 2013)
  122. * Added node.js 0.10 support.
  123. # Chokidar 0.6.0 (10 March 2013)
  124. * File attributes (stat()) are now passed to `add` and `change` events
  125. as second arguments.
  126. * Changed default polling interval for binary files to 300ms.
  127. # Chokidar 0.5.3 (13 January 2013)
  128. * Removed emitting of `change` events before `unlink`.
  129. # Chokidar 0.5.2 (13 January 2013)
  130. * Removed postinstall script to prevent various npm bugs.
  131. # Chokidar 0.5.1 (6 January 2013)
  132. * When starting to watch non-existing paths, chokidar will no longer throw
  133. ENOENT error.
  134. * Fixed bug with absolute path.
  135. # Chokidar 0.5.0 (9 December 2012)
  136. * Added a bunch of new options:
  137. * `ignoreInitial` that allows to ignore initial `add` events.
  138. * `ignorePermissionErrors` that allows to ignore ENOENT etc perm errors.
  139. * `interval` and `binaryInterval` that allow to change default
  140. fs polling intervals.
  141. # Chokidar 0.4.0 (26 July 2012)
  142. * Added `all` event that receives two args (event name and path) that
  143. combines `add`, `change` and `unlink` events.
  144. * Switched to `fs.watchFile` on node.js 0.8 on windows.
  145. * Files are now correctly unwatched after unlink.
  146. # Chokidar 0.3.0 (24 June 2012)
  147. * `unlink` event are no longer emitted for directories, for consistency
  148. with `add`.
  149. # Chokidar 0.2.6 (8 June 2012)
  150. * Prevented creating of duplicate 'add' events.
  151. # Chokidar 0.2.5 (8 June 2012)
  152. * Fixed a bug when new files in new directories hadn't been added.
  153. # Chokidar 0.2.4 (7 June 2012)
  154. * Fixed a bug when unlinked files emitted events after unlink.
  155. # Chokidar 0.2.3 (12 May 2012)
  156. * Fixed watching of files on windows.
  157. # Chokidar 0.2.2 (4 May 2012)
  158. * Fixed watcher signature.
  159. # Chokidar 0.2.1 (4 May 2012)
  160. * Fixed invalid API bug when using `watch()`.
  161. # Chokidar 0.2.0 (4 May 2012)
  162. * Rewritten in js.
  163. # Chokidar 0.1.1 (26 April 2012)
  164. * Changed api to `chokidar.watch()`.
  165. * Fixed compilation on windows.
  166. # Chokidar 0.1.0 (20 April 2012)
  167. * Initial release.