Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. 4.6.0 / 2015-07-09
  2. ==================
  3. * support passing the rest of the arguments to co into the generator
  4. ```js
  5. function *gen(...args) { }
  6. co(gen, ...args);
  7. ```
  8. 4.5.0 / 2015-03-17
  9. ==================
  10. * support regular functions (that return promises)
  11. 4.4.0 / 2015-02-14
  12. ==================
  13. * refactor `isGeneratorFunction`
  14. * expose generator function from `co.wrap()`
  15. * drop support for node < 0.12
  16. 4.3.0 / 2015-02-05
  17. ==================
  18. * check for generator functions in a ES5-transpiler-friendly way
  19. 4.2.0 / 2015-01-20
  20. ==================
  21. * support comparing generator functions with ES6 transpilers
  22. 4.1.0 / 2014-12-26
  23. ==================
  24. * fix memory leak #180
  25. 4.0.2 / 2014-12-18
  26. ==================
  27. * always return a global promise implementation
  28. 4.0.1 / 2014-11-30
  29. ==================
  30. * friendlier ES6 module exports
  31. 4.0.0 / 2014-11-15
  32. ==================
  33. * co now returns a promise and uses promises underneath
  34. * `co.wrap()` for wrapping generator functions
  35. 3.1.0 / 2014-06-30
  36. ==================
  37. * remove `setImmediate()` shim for node 0.8. semi-backwards breaking.
  38. Users are expected to shim themselves. Also returns CommonJS browser support.
  39. * added key order preservation for objects. thanks @greim
  40. * replace `q` with `bluebird` in benchmarks and tests
  41. 3.0.6 / 2014-05-03
  42. ==================
  43. * add `setImmediate()` fallback to `process.nextTick`
  44. * remove duplicate code in toThunk
  45. * update thunkify
  46. 3.0.5 / 2014-03-17
  47. ==================
  48. * fix object/array test failure which tries to enumerate dates. Closes #98
  49. * fix final callback error propagation. Closes #92
  50. 3.0.4 / 2014-02-17
  51. ==================
  52. * fix toThunk object check regression. Closes #89
  53. 3.0.3 / 2014-02-08
  54. ==================
  55. * refactor: arrayToThunk @AutoSponge #88
  56. 3.0.2 / 2014-01-01
  57. ==================
  58. * fixed: nil arguments replaced with error fn
  59. 3.0.1 / 2013-12-19
  60. ==================
  61. * fixed: callback passed as an argument to generators
  62. 3.0.0 / 2013-12-19
  63. ==================
  64. * fixed: callback passed as an argument to generators
  65. * change: `co(function *(){})` now returns a reusable thunk
  66. * change: `this` must now be passed through the returned thunk, ex. `co(function *(){}).call(this)`
  67. * fix "generator already finished" errors
  68. 2.3.0 / 2013-11-12
  69. ==================
  70. * add `yield object` support
  71. 2.2.0 / 2013-11-05
  72. ==================
  73. * change: make the `isGenerator()` function more generic
  74. 2.1.0 / 2013-10-21
  75. ==================
  76. * add passing of arguments into the generator. closes #33.
  77. 2.0.0 / 2013-10-14
  78. ==================
  79. * remove callback in favour of thunk-only co(). Closes #30 [breaking change]
  80. * remove `co.wrap()` [breaking change]
  81. 1.5.2 / 2013-09-02
  82. ==================
  83. * fix: preserve receiver with co.wrap()
  84. 1.5.1 / 2013-08-11
  85. ==================
  86. * remove setImmediate() usage - ~110% perf increase. Closes #14
  87. 0.5.0 / 2013-08-10
  88. ==================
  89. * add receiver propagation support
  90. * examples: update streams.js example to use `http.get()` and streams2 API
  91. 1.4.1 / 2013-07-01
  92. ==================
  93. * fix gen.next(val) for latest v8. Closes #8
  94. 1.4.0 / 2013-06-21
  95. ==================
  96. * add promise support to joins
  97. * add `yield generatorFunction` support
  98. * add `yield generator` support
  99. * add nested join support
  100. 1.3.0 / 2013-06-10
  101. ==================
  102. * add passing of arguments
  103. 1.2.1 / 2013-06-08
  104. ==================
  105. * fix join() of zero thunks
  106. 1.2.0 / 2013-06-08
  107. ==================
  108. * add array yielding support. great suggestion by @domenic
  109. 1.1.0 / 2013-06-06
  110. ==================
  111. * add promise support
  112. * change nextTick to setImmediate