/ node_modules / depd / History.md
History.md
  1  2.0.0 / 2018-10-26
  2  ==================
  3  
  4    * Drop support for Node.js 0.6
  5    * Replace internal `eval` usage with `Function` constructor
  6    * Use instance methods on `process` to check for listeners
  7  
  8  1.1.2 / 2018-01-11
  9  ==================
 10  
 11    * perf: remove argument reassignment
 12    * Support Node.js 0.6 to 9.x
 13  
 14  1.1.1 / 2017-07-27
 15  ==================
 16  
 17    * Remove unnecessary `Buffer` loading
 18    * Support Node.js 0.6 to 8.x
 19  
 20  1.1.0 / 2015-09-14
 21  ==================
 22  
 23    * Enable strict mode in more places
 24    * Support io.js 3.x
 25    * Support io.js 2.x
 26    * Support web browser loading
 27      - Requires bundler like Browserify or webpack
 28  
 29  1.0.1 / 2015-04-07
 30  ==================
 31  
 32    * Fix `TypeError`s when under `'use strict'` code
 33    * Fix useless type name on auto-generated messages
 34    * Support io.js 1.x
 35    * Support Node.js 0.12
 36  
 37  1.0.0 / 2014-09-17
 38  ==================
 39  
 40    * No changes
 41  
 42  0.4.5 / 2014-09-09
 43  ==================
 44  
 45    * Improve call speed to functions using the function wrapper
 46    * Support Node.js 0.6
 47  
 48  0.4.4 / 2014-07-27
 49  ==================
 50  
 51    * Work-around v8 generating empty stack traces
 52  
 53  0.4.3 / 2014-07-26
 54  ==================
 55  
 56    * Fix exception when global `Error.stackTraceLimit` is too low
 57  
 58  0.4.2 / 2014-07-19
 59  ==================
 60  
 61    * Correct call site for wrapped functions and properties
 62  
 63  0.4.1 / 2014-07-19
 64  ==================
 65  
 66    * Improve automatic message generation for function properties
 67  
 68  0.4.0 / 2014-07-19
 69  ==================
 70  
 71    * Add `TRACE_DEPRECATION` environment variable
 72    * Remove non-standard grey color from color output
 73    * Support `--no-deprecation` argument
 74    * Support `--trace-deprecation` argument
 75    * Support `deprecate.property(fn, prop, message)`
 76  
 77  0.3.0 / 2014-06-16
 78  ==================
 79  
 80    * Add `NO_DEPRECATION` environment variable
 81  
 82  0.2.0 / 2014-06-15
 83  ==================
 84  
 85    * Add `deprecate.property(obj, prop, message)`
 86    * Remove `supports-color` dependency for node.js 0.8
 87  
 88  0.1.0 / 2014-06-15
 89  ==================
 90  
 91    * Add `deprecate.function(fn, message)`
 92    * Add `process.on('deprecation', fn)` emitter
 93    * Automatically generate message when omitted from `deprecate()`
 94  
 95  0.0.1 / 2014-06-15
 96  ==================
 97  
 98    * Fix warning for dynamic calls at singe call site
 99  
100  0.0.0 / 2014-06-15
101  ==================
102  
103    * Initial implementation