Dieses Repository beinhaltet HTML- und Javascript Code zur einer NotizenWebApp auf Basis von Web Storage. Zudem sind Mocha/Chai Tests im Browser enthalten. https://meinenotizen.netlify.app/
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.

History.md 2.2KB

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