PageRenderTime 53ms CodeModel.GetById 25ms RepoModel.GetById 1ms app.codeStats 0ms

/node_modules/chokidar/CHANGELOG.md

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