proxy_chain_rb 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (169) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +14 -0
  3. data/.rspec +3 -0
  4. data/.travis.yml +7 -0
  5. data/CODE_OF_CONDUCT.md +74 -0
  6. data/Gemfile +6 -0
  7. data/Gemfile.lock +41 -0
  8. data/LICENSE.txt +21 -0
  9. data/README.md +43 -0
  10. data/Rakefile +6 -0
  11. data/bin/console +15 -0
  12. data/bin/setup +8 -0
  13. data/lib/proxy_chain_rb.rb +7 -0
  14. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/.bin/portastic +1 -0
  15. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/LICENSE +21 -0
  16. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/README.md +57 -0
  17. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/changelog.md +1 -0
  18. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/browser/bluebird.core.js +3824 -0
  19. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/browser/bluebird.core.min.js +31 -0
  20. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/browser/bluebird.js +5666 -0
  21. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/browser/bluebird.min.js +31 -0
  22. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/any.js +21 -0
  23. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/assert.js +55 -0
  24. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/async.js +165 -0
  25. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/bind.js +67 -0
  26. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/bluebird.js +11 -0
  27. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/call_get.js +123 -0
  28. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/cancel.js +129 -0
  29. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/catch_filter.js +42 -0
  30. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/context.js +69 -0
  31. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/debuggability.js +934 -0
  32. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/direct_resolve.js +46 -0
  33. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/each.js +30 -0
  34. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/errors.js +116 -0
  35. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/es5.js +80 -0
  36. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/filter.js +12 -0
  37. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/finally.js +146 -0
  38. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/generators.js +223 -0
  39. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/join.js +168 -0
  40. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/map.js +168 -0
  41. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/method.js +55 -0
  42. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/nodeback.js +51 -0
  43. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/nodeify.js +58 -0
  44. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/promise.js +789 -0
  45. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/promise_array.js +185 -0
  46. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/promisify.js +314 -0
  47. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/props.js +118 -0
  48. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/queue.js +73 -0
  49. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/race.js +49 -0
  50. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/reduce.js +172 -0
  51. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/schedule.js +62 -0
  52. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/settle.js +43 -0
  53. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/some.js +148 -0
  54. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/synchronous_inspection.js +103 -0
  55. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/thenables.js +86 -0
  56. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/timers.js +93 -0
  57. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/using.js +226 -0
  58. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/js/release/util.js +389 -0
  59. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/bluebird/package.json +102 -0
  60. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/commander/CHANGELOG.md +408 -0
  61. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/commander/LICENSE +22 -0
  62. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/commander/Readme.md +428 -0
  63. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/commander/index.js +1224 -0
  64. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/commander/package.json +70 -0
  65. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/commander/typings/index.d.ts +310 -0
  66. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/debug/.coveralls.yml +1 -0
  67. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/debug/.eslintrc +11 -0
  68. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/debug/.npmignore +9 -0
  69. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/debug/.travis.yml +14 -0
  70. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/debug/CHANGELOG.md +362 -0
  71. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/debug/LICENSE +19 -0
  72. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/debug/Makefile +50 -0
  73. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/debug/README.md +312 -0
  74. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/debug/component.json +19 -0
  75. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/debug/karma.conf.js +70 -0
  76. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/debug/node.js +1 -0
  77. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/debug/package.json +88 -0
  78. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/debug/src/browser.js +185 -0
  79. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/debug/src/debug.js +202 -0
  80. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/debug/src/index.js +10 -0
  81. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/debug/src/inspector-log.js +15 -0
  82. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/debug/src/node.js +248 -0
  83. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/ms/index.js +152 -0
  84. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/ms/license.md +21 -0
  85. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/ms/package.json +69 -0
  86. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/ms/readme.md +51 -0
  87. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/LICENSE +13 -0
  88. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/README.md +148 -0
  89. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/bin/portastic +65 -0
  90. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/history.md +7 -0
  91. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/index.js +4 -0
  92. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/lib/monitor.js +59 -0
  93. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/lib/portastic.js +167 -0
  94. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/LICENSE +21 -0
  95. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/README.md +677 -0
  96. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/changelog.md +1730 -0
  97. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/browser/bluebird.js +4892 -0
  98. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/browser/bluebird.min.js +31 -0
  99. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/any.js +21 -0
  100. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/assert.js +55 -0
  101. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/async.js +150 -0
  102. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/bind.js +72 -0
  103. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/bluebird.js +11 -0
  104. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/call_get.js +123 -0
  105. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/cancel.js +48 -0
  106. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/captured_trace.js +493 -0
  107. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/catch_filter.js +66 -0
  108. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/context.js +38 -0
  109. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/debuggability.js +162 -0
  110. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/direct_resolve.js +63 -0
  111. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/each.js +12 -0
  112. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/errors.js +111 -0
  113. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/es5.js +80 -0
  114. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/filter.js +12 -0
  115. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/finally.js +98 -0
  116. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/generators.js +136 -0
  117. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/join.js +107 -0
  118. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/map.js +133 -0
  119. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/method.js +44 -0
  120. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/nodeify.js +59 -0
  121. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/progress.js +76 -0
  122. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/promise.js +759 -0
  123. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/promise_array.js +142 -0
  124. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/promise_resolver.js +123 -0
  125. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/promisify.js +307 -0
  126. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/props.js +79 -0
  127. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/queue.js +90 -0
  128. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/race.js +47 -0
  129. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/reduce.js +148 -0
  130. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/schedule.js +35 -0
  131. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/settle.js +40 -0
  132. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/some.js +125 -0
  133. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/synchronous_inspection.js +94 -0
  134. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/thenables.js +84 -0
  135. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/timers.js +64 -0
  136. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/using.js +213 -0
  137. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/js/main/util.js +321 -0
  138. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/node_modules/bluebird/package.json +103 -0
  139. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/portastic/package.json +69 -0
  140. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/CHANGELOG.md +109 -0
  141. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/LICENSE +201 -0
  142. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/README.md +278 -0
  143. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/build/anonymize_proxy.js +100 -0
  144. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/build/handler_base.js +319 -0
  145. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/build/handler_custom_response.js +96 -0
  146. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/build/handler_forward.js +173 -0
  147. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/build/handler_tunnel_chain.js +132 -0
  148. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/build/handler_tunnel_direct.js +89 -0
  149. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/build/handler_tunnel_tcp_chain.js +271 -0
  150. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/build/index.js +26 -0
  151. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/build/run_locally.js +66 -0
  152. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/build/server.js +595 -0
  153. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/build/tcp_tunnel.js +138 -0
  154. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/build/testing_tcp_service.js +37 -0
  155. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/build/tools.js +220 -0
  156. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/proxy-chain/package.json +104 -0
  157. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/underscore/LICENSE +23 -0
  158. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/underscore/README.md +28 -0
  159. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/underscore/package.json +81 -0
  160. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/underscore/underscore-min.js +5 -0
  161. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/underscore/underscore-min.js.map +1 -0
  162. data/lib/proxy_chain_rb/node_js/proxy-chain-server/node_modules/underscore/underscore.js +1692 -0
  163. data/lib/proxy_chain_rb/node_js/proxy-chain-server/package-lock.json +63 -0
  164. data/lib/proxy_chain_rb/node_js/proxy-chain-server/package.json +15 -0
  165. data/lib/proxy_chain_rb/node_js/proxy-chain-server/server.js +25 -0
  166. data/lib/proxy_chain_rb/server.rb +49 -0
  167. data/lib/proxy_chain_rb/version.rb +3 -0
  168. data/proxy_chain_rb.gemspec +31 -0
  169. metadata +266 -0
@@ -0,0 +1,1730 @@
1
+ ## 2.11.0 (2016-08-30)
2
+
3
+ Features:
4
+
5
+ - Add Promise.version
6
+ - Add Promise.getNewLibraryCopy
7
+
8
+ ## 2.10.2 (2015-10-01)
9
+
10
+ Features:
11
+
12
+ - `.timeout()` now takes a custom error object as second argument
13
+
14
+ ## 2.10.1 (2015-09-21)
15
+
16
+ - Fix error "Cannot promisify an API that has normal methods with 'Async'-suffix" when promisifying certain objects with a custom promisifier
17
+
18
+ ## 2.10.0 (2015-09-08)
19
+
20
+ Features:
21
+
22
+ - `Promise.using` can now take the promises-for-resources as an array ([#733](.)).
23
+ - Browser builds for minimal core are now hosted on CDN ([#724](.)).
24
+
25
+ Bugfixes:
26
+
27
+ - Disabling debug mode with `BLUEBIRD_DEBUG=0` environment variable now works ([#719](.)).
28
+ - Fix unhandled rejection reporting when passing rejected promise to `.return()` ([#721](.)).
29
+ - Fix unbound promise's then handlers being called with wrong `this` value ([#738](.)).
30
+
31
+ ## 2.9.34 (2015-07-15)
32
+
33
+ Bugfixes:
34
+
35
+ - Correct domain for .map, .each, .filter, .reduce callbacks ([#701](.)).
36
+ - Preserve bound-with-promise promises across the entire chain ([#702](.)).
37
+
38
+ ## 2.9.33 (2015-07-09)
39
+
40
+ Bugfixes:
41
+
42
+ - Methods on `Function.prototype` are no longer promisified ([#680](.)).
43
+
44
+ ## 2.9.32 (2015-07-03)
45
+
46
+ Bugfixes:
47
+
48
+ - Fix `.return(primitiveValue)` returning a wrapped version of the primitive value when a Node.js domain is active ([#689](.)).
49
+
50
+ ## 2.9.31 (2015-07-03)
51
+
52
+ Bugfixes:
53
+
54
+ - Fix Promises/A+ compliance issue regarding circular thenables: the correct behavior is to go into an infinite loop instead of warning with an error (Fixes [#682](.)).
55
+ - Fix "(node) warning: possible EventEmitter memory leak detected" ([#661](.)).
56
+ - Fix callbacks sometimes being called with a wrong node.js domain ([#664](.)).
57
+ - Fix callbacks sometimes not being called at all in iOS 8.1 WebApp mode ([#666](.), [#687](.)).
58
+
59
+ ## 2.9.30 (2015-06-14)
60
+
61
+ Bugfixes:
62
+
63
+ - Fix regression with `promisifyAll` not promisifying certain methods
64
+
65
+ ## 2.9.29 (2015-06-14)
66
+
67
+ Bugfixes:
68
+
69
+ - Improve `promisifyAll` detection of functions that are class constructors. Fixes mongodb 2.x promisification.
70
+
71
+ ## 2.9.28 (2015-06-14)
72
+
73
+ Bugfixes:
74
+
75
+ - Fix handled rejection being reported as unhandled in certain scenarios when using [.all](.) or [Promise.join](.) ([#645](.))
76
+ - Fix custom scheduler not being called in Google Chrome when long stack traces are enabled ([#650](.))
77
+
78
+ ## 2.9.27 (2015-05-30)
79
+
80
+ Bugfixes:
81
+
82
+ - Fix `sinon.useFakeTimers()` breaking scheduler ([#631](.))
83
+
84
+ Misc:
85
+
86
+ - Add nw testing facilities (`node tools/test --nw`)
87
+
88
+ ## 2.9.26 (2015-05-25)
89
+
90
+ Bugfixes:
91
+
92
+ - Fix crash in NW [#624](.)
93
+ - Fix [`.return()`](.) not supporting `undefined` as return value [#627](.)
94
+
95
+ ## 2.9.25 (2015-04-28)
96
+
97
+ Bugfixes:
98
+
99
+ - Fix crash in node 0.8
100
+
101
+ ## 2.9.24 (2015-04-02)
102
+
103
+ Bugfixes:
104
+
105
+ - Fix not being able to load multiple bluebird copies introduced in 2.9.22 ([#559](.), [#561](.), [#560](.)).
106
+
107
+ ## 2.9.23 (2015-04-02)
108
+
109
+ Bugfixes:
110
+
111
+ - Fix node.js domain propagation ([#521](.)).
112
+
113
+ ## 2.9.22 (2015-04-02)
114
+
115
+ - Fix `.promisify` crashing in phantom JS ([#556](.))
116
+
117
+ ## 2.9.21 (2015-03-30)
118
+
119
+ - Fix error object's `'stack'`' overwriting causing an error when its defined to be a setter that throws an error ([#552](.)).
120
+
121
+ ## 2.9.20 (2015-03-29)
122
+
123
+ Bugfixes:
124
+
125
+ - Fix regression where there is a long delay between calling `.cancel()` and promise actually getting cancelled in Chrome when long stack traces are enabled
126
+
127
+ ## 2.9.19 (2015-03-29)
128
+
129
+ Bugfixes:
130
+
131
+ - Fix crashing in Chrome when long stack traces are disabled
132
+
133
+ ## 2.9.18 (2015-03-29)
134
+
135
+ Bugfixes:
136
+
137
+ - Fix settlePromises using trampoline
138
+
139
+ ## 2.9.17 (2015-03-29)
140
+
141
+
142
+ Bugfixes:
143
+
144
+ - Fix Chrome DevTools async stack traceability ([#542](.)).
145
+
146
+ ## 2.9.16 (2015-03-28)
147
+
148
+ Features:
149
+
150
+ - Use setImmediate if available
151
+
152
+ ## 2.9.15 (2015-03-26)
153
+
154
+ Features:
155
+
156
+ - Added `.asCallback` alias for `.nodeify`.
157
+
158
+ Bugfixes:
159
+
160
+ - Don't always use nextTick, but try to pick up setImmediate or setTimeout in NW. Fixes [#534](.), [#525](.)
161
+ - Make progress a core feature. Fixes [#535](.) Note that progress has been removed in 3.x - this is only a fix necessary for 2.x custom builds.
162
+
163
+ ## 2.9.14 (2015-03-12)
164
+
165
+ Bugfixes:
166
+
167
+ - Always use process.nextTick. Fixes [#525](.)
168
+
169
+ ## 2.9.13 (2015-02-27)
170
+
171
+ Bugfixes:
172
+
173
+ - Fix .each, .filter, .reduce and .map callbacks being called synchornously if the input is immediate. ([#513](https://github.com/petkaantonov/bluebird/issues/513))
174
+
175
+ ## 2.9.12 (2015-02-19)
176
+
177
+ Bugfixes:
178
+
179
+ - Fix memory leak introduced in 2.9.0 ([#502](https://github.com/petkaantonov/bluebird/issues/502))
180
+
181
+ ## 2.9.11 (2015-02-19)
182
+
183
+ Bugfixes:
184
+
185
+ - Fix [#503](https://github.com/petkaantonov/bluebird/issues/503)
186
+
187
+ ## 2.9.10 (2015-02-18)
188
+
189
+ Bugfixes:
190
+
191
+ - Fix [#501](https://github.com/petkaantonov/bluebird/issues/501)
192
+
193
+ ## 2.9.9 (2015-02-12)
194
+
195
+ Bugfixes:
196
+
197
+ - Fix `TypeError: Cannot assign to read only property 'length'` when jsdom has declared a read-only length for all objects to inherit.
198
+
199
+ ## 2.9.8 (2015-02-10)
200
+
201
+ Bugfixes:
202
+
203
+ - Fix regression introduced in 2.9.7 where promisify didn't properly dynamically look up methods on `this`
204
+
205
+ ## 2.9.7 (2015-02-08)
206
+
207
+ Bugfixes:
208
+
209
+ - Fix `promisify` not retaining custom properties of the function. This enables promisifying the `"request"` module's export function and its methods at the same time.
210
+ - Fix `promisifyAll` methods being dependent on `this` when they are not originally dependent on `this`. This enables e.g. passing promisified `fs` functions directly as callbacks without having to bind them to `fs`.
211
+ - Fix `process.nextTick` being used over `setImmediate` in node.
212
+
213
+ ## 2.9.6 (2015-02-02)
214
+
215
+ Bugfixes:
216
+
217
+ - Node environment detection can no longer be fooled
218
+
219
+ ## 2.9.5 (2015-02-02)
220
+
221
+ Misc:
222
+
223
+ - Warn when [`.then()`](.) is passed non-functions
224
+
225
+ ## 2.9.4 (2015-01-30)
226
+
227
+ Bugfixes:
228
+
229
+ - Fix [.timeout()](.) not calling `clearTimeout` with the proper handle in node causing the process to wait for unneeded timeout. This was a regression introduced in 2.9.1.
230
+
231
+ ## 2.9.3 (2015-01-27)
232
+
233
+ Bugfixes:
234
+
235
+ - Fix node-webkit compatibility issue ([#467](https://github.com/petkaantonov/bluebird/pull/467))
236
+ - Fix long stack trace support in recent firefox versions
237
+
238
+ ## 2.9.2 (2015-01-26)
239
+
240
+ Bugfixes:
241
+
242
+ - Fix critical bug regarding to using promisifyAll in browser that was introduced in 2.9.0 ([#466](https://github.com/petkaantonov/bluebird/issues/466)).
243
+
244
+ Misc:
245
+
246
+ - Add `"browser"` entry point to package.json
247
+
248
+ ## 2.9.1 (2015-01-24)
249
+
250
+ Features:
251
+
252
+ - If a bound promise is returned by the callback to [`Promise.method`](#promisemethodfunction-fn---function) and [`Promise.try`](#promisetryfunction-fn--arraydynamicdynamic-arguments--dynamic-ctx----promise), the returned promise will be bound to the same value
253
+
254
+ ## 2.9.0 (2015-01-24)
255
+
256
+ Features:
257
+
258
+ - Add [`Promise.fromNode`](API.md#promisefromnodefunction-resolver---promise)
259
+ - Add new paramter `value` for [`Promise.bind`](API.md#promisebinddynamic-thisarg--dynamic-value---promise)
260
+
261
+ Bugfixes:
262
+
263
+ - Fix several issues with [`cancellation`](API.md#cancellation) and [`.bind()`](API.md#binddynamic-thisarg---promise) interoperation when `thisArg` is a promise or thenable
264
+ - Fix promises created in [`disposers`](API#disposerfunction-disposer---disposer) not having proper long stack trace context
265
+ - Fix [`Promise.join`](API.md#promisejoinpromisethenablevalue-promises-function-handler---promise) sometimes passing the passed in callback function as the last argument to itself.
266
+
267
+ Misc:
268
+
269
+ - Reduce minified full browser build file size by not including unused code generation functionality.
270
+ - Major internal refactoring related to testing code and source code file layout
271
+
272
+ ## 2.8.2 (2015-01-20)
273
+
274
+ Features:
275
+
276
+ - [Global rejection events](https://github.com/petkaantonov/bluebird/blob/master/API.md#global-rejection-events) are now fired both as DOM3 events and as legacy events in browsers
277
+
278
+ ## 2.8.1 (2015-01-20)
279
+
280
+ Bugfixes:
281
+
282
+ - Fix long stack trace stiching consistency when rejected from thenables
283
+
284
+ ## 2.8.0 (2015-01-19)
285
+
286
+ Features:
287
+
288
+ - Major debuggability improvements:
289
+ - Long stack traces have been re-designed. They are now much more readable,
290
+ succint, relevant and consistent across bluebird features.
291
+ - Long stack traces are supported now in IE10+
292
+
293
+ ## 2.7.1 (2015-01-15)
294
+
295
+ Bugfixes:
296
+
297
+ - Fix [#447](https://github.com/petkaantonov/bluebird/issues/447)
298
+
299
+ ## 2.7.0 (2015-01-15)
300
+
301
+ Features:
302
+
303
+ - Added more context to stack traces originating from coroutines ([#421](https://github.com/petkaantonov/bluebird/issues/421))
304
+ - Implemented [global rejection events](https://github.com/petkaantonov/bluebird/blob/master/API.md#global-rejection-events) ([#428](https://github.com/petkaantonov/bluebird/issues/428), [#357](https://github.com/petkaantonov/bluebird/issues/357))
305
+ - [Custom promisifiers](https://github.com/petkaantonov/bluebird/blob/master/API.md#option-promisifier) are now passed the default promisifier which can be used to add enhancements on top of normal node promisification
306
+ - [Promisification filters](https://github.com/petkaantonov/bluebird/blob/master/API.md#option-filter) are now passed `passesDefaultFilter` boolean
307
+
308
+ Bugfixes:
309
+
310
+ - Fix `.noConflict()` call signature ([#446](https://github.com/petkaantonov/bluebird/issues/446))
311
+ - Fix `Promise.method`ified functions being called with `undefined` when they were called with no arguments
312
+
313
+ ## 2.6.4 (2015-01-12)
314
+
315
+ Bugfixes:
316
+
317
+ - `OperationalErrors` thrown by promisified functions retain custom properties, such as `.code` and `.path`.
318
+
319
+ ## 2.6.3 (2015-01-12)
320
+
321
+ Bugfixes:
322
+
323
+ - Fix [#429](https://github.com/petkaantonov/bluebird/issues/429)
324
+ - Fix [#432](https://github.com/petkaantonov/bluebird/issues/432)
325
+ - Fix [#433](https://github.com/petkaantonov/bluebird/issues/433)
326
+
327
+ ## 2.6.2 (2015-01-07)
328
+
329
+ Bugfixes:
330
+
331
+ - Fix [#426](https://github.com/petkaantonov/bluebird/issues/426)
332
+
333
+ ## 2.6.1 (2015-01-07)
334
+
335
+ Bugfixes:
336
+
337
+ - Fixed built browser files not being included in the git tag release for bower
338
+
339
+ ## 2.6.0 (2015-01-06)
340
+
341
+ Features:
342
+
343
+ - Significantly improve parallel promise performance and memory usage (+50% faster, -50% less memory)
344
+
345
+
346
+ ## 2.5.3 (2014-12-30)
347
+
348
+ ## 2.5.2 (2014-12-29)
349
+
350
+ Bugfixes:
351
+
352
+ - Fix bug where already resolved promise gets attached more handlers while calling its handlers resulting in some handlers not being called
353
+ - Fix bug where then handlers are not called in the same order as they would run if Promises/A+ 2.3.2 was implemented as adoption
354
+ - Fix bug where using `Object.create(null)` as a rejection reason would crash bluebird
355
+
356
+ ## 2.5.1 (2014-12-29)
357
+
358
+ Bugfixes:
359
+
360
+ - Fix `.finally` throwing null error when it is derived from a promise that is resolved with a promise that is resolved with a promise
361
+
362
+ ## 2.5.0 (2014-12-28)
363
+
364
+ Features:
365
+
366
+ - [`.get`](#API.md#https://github.com/petkaantonov/bluebird/blob/master/API.md#getstring-propertyname---promise) now supports negative indexing.
367
+
368
+ Bugfixes:
369
+
370
+ - Fix bug with `Promise.method` wrapped function returning a promise that never resolves if the function returns a promise that is resolved with another promise
371
+ - Fix bug with `Promise.delay` never resolving if the value is a promise that is resolved with another promise
372
+
373
+ ## 2.4.3 (2014-12-28)
374
+
375
+ Bugfixes:
376
+
377
+ - Fix memory leak as described in [this Promises/A+ spec issue](https://github.com/promises-aplus/promises-spec/issues/179).
378
+
379
+ ## 2.4.2 (2014-12-21)
380
+
381
+ Bugfixes:
382
+
383
+ - Fix bug where spread rejected handler is ignored in case of rejection
384
+ - Fix synchronous scheduler passed to `setScheduler` causing infinite loop
385
+
386
+ ## 2.4.1 (2014-12-20)
387
+
388
+ Features:
389
+
390
+ - Error messages now have links to wiki pages for additional information
391
+ - Promises now clean up all references (to handlers, child promises etc) as soon as possible.
392
+
393
+ ## 2.4.0 (2014-12-18)
394
+
395
+ Features:
396
+
397
+ - Better filtering of bluebird internal calls in long stack traces, especially when using minified file in browsers
398
+ - Small performance improvements for all collection methods
399
+ - Promises now delete references to handlers attached to them as soon as possible
400
+ - Additional stack traces are now output on stderr/`console.warn` for errors that are thrown in the process/window from rejected `.done()` promises. See [#411](https://github.com/petkaantonov/bluebird/issues/411)
401
+
402
+ ## 2.3.11 (2014-10-31)
403
+
404
+ Bugfixes:
405
+
406
+ - Fix [#371](https://github.com/petkaantonov/bluebird/issues/371), [#373](https://github.com/petkaantonov/bluebird/issues/373)
407
+
408
+
409
+ ## 2.3.10 (2014-10-28)
410
+
411
+ Features:
412
+
413
+ - `Promise.method` no longer wraps primitive errors
414
+ - `Promise.try` no longer wraps primitive errors
415
+
416
+ ## 2.3.7 (2014-10-25)
417
+
418
+ Bugfixes:
419
+
420
+ - Fix [#359](https://github.com/petkaantonov/bluebird/issues/359), [#362](https://github.com/petkaantonov/bluebird/issues/362) and [#364](https://github.com/petkaantonov/bluebird/issues/364)
421
+
422
+ ## 2.3.6 (2014-10-15)
423
+
424
+ Features:
425
+
426
+ - Implement [`.reflect()`](API.md#reflect---promisepromiseinspection)
427
+
428
+ ## 2.3.5 (2014-10-06)
429
+
430
+ Bugfixes:
431
+
432
+ - Fix issue when promisifying methods whose names contain the string 'args'
433
+
434
+ ## 2.3.4 (2014-09-27)
435
+
436
+ - `P` alias was not declared inside WebWorkers
437
+
438
+ ## 2.3.3 (2014-09-27)
439
+
440
+ Bugfixes:
441
+
442
+ - Fix [#318](https://github.com/petkaantonov/bluebird/issues/318), [#314](https://github.com/petkaantonov/bluebird/issues/314)
443
+
444
+ ## 2.3.2 (2014-08-25)
445
+
446
+ Bugfixes:
447
+
448
+ - `P` alias for `Promise` now exists in global scope when using browser builds without a module loader, fixing an issue with firefox extensions
449
+
450
+ ## 2.3.1 (2014-08-23)
451
+
452
+ Features:
453
+
454
+ - `.using` can now be used with disposers created from different bluebird copy
455
+
456
+ ## 2.3.0 (2014-08-13)
457
+
458
+ Features:
459
+
460
+ - [`.bind()`](API.md#binddynamic-thisarg---promise) and [`Promise.bind()`](API.md#promisebinddynamic-thisarg---promise) now await for the resolution of the `thisArg` if it's a promise or a thenable
461
+
462
+ Bugfixes:
463
+
464
+ - Fix [#276](https://github.com/petkaantonov/bluebird/issues/276)
465
+
466
+ ## 2.2.2 (2014-07-14)
467
+
468
+ - Fix [#259](https://github.com/petkaantonov/bluebird/issues/259)
469
+
470
+ ## 2.2.1 (2014-07-07)
471
+
472
+ - Fix multiline error messages only showing the first line
473
+
474
+ ## 2.2.0 (2014-07-07)
475
+
476
+ Bugfixes:
477
+
478
+ - `.any` and `.some` now consistently reject with RangeError when input array contains too few promises
479
+ - Fix iteration bug with `.reduce` when input array contains already fulfilled promises
480
+
481
+ ## 2.1.3 (2014-06-18)
482
+
483
+ Bugfixes:
484
+
485
+ - Fix [#235](https://github.com/petkaantonov/bluebird/issues/235)
486
+
487
+ ## 2.1.2 (2014-06-15)
488
+
489
+ Bugfixes:
490
+
491
+ - Fix [#232](https://github.com/petkaantonov/bluebird/issues/232)
492
+
493
+ ## 2.1.1 (2014-06-11)
494
+
495
+ ## 2.1.0 (2014-06-11)
496
+
497
+ Features:
498
+
499
+ - Add [`promisifier`](API.md#option-promisifier) option to `Promise.promisifyAll()`
500
+ - Improve performance of `.props()` and collection methods when used with immediate values
501
+
502
+
503
+ Bugfixes:
504
+
505
+ - Fix a bug where .reduce calls the callback for an already visited item
506
+ - Fix a bug where stack trace limit is calculated to be too small, which resulted in too short stack traces
507
+
508
+ <sub>Add undocumented experimental `yieldHandler` option to `Promise.coroutine`</sub>
509
+
510
+ ## 2.0.7 (2014-06-08)
511
+ ## 2.0.6 (2014-06-07)
512
+ ## 2.0.5 (2014-06-05)
513
+ ## 2.0.4 (2014-06-05)
514
+ ## 2.0.3 (2014-06-05)
515
+ ## 2.0.2 (2014-06-04)
516
+ ## 2.0.1 (2014-06-04)
517
+
518
+ ## 2.0.0 (2014-06-04)
519
+
520
+ #What's new in 2.0
521
+
522
+ - [Resource management](API.md#resource-management) - never leak resources again
523
+ - [Promisification](API.md#promisification) on steroids - entire modules can now be promisified with one line of code
524
+ - [`.map()`](API.md#mapfunction-mapper--object-options---promise), [`.each()`](API.md#eachfunction-iterator---promise), [`.filter()`](API.md#filterfunction-filterer--object-options---promise), [`.reduce()`](API.md#reducefunction-reducer--dynamic-initialvalue---promise) reimagined from simple sugar to powerful concurrency coordination tools
525
+ - [API Documentation](API.md) has been reorganized and more elaborate examples added
526
+ - Deprecated [progression](#progression-migration) and [deferreds](#deferred-migration)
527
+ - Improved performance and readability
528
+
529
+ Features:
530
+
531
+ - Added [`using()`](API.md#promiseusingpromisedisposer-promise-promisedisposer-promise--function-handler---promise) and [`disposer()`](API.md#disposerfunction-disposer---disposer)
532
+ - [`.map()`](API.md#mapfunction-mapper--object-options---promise) now calls the handler as soon as items in the input array become fulfilled
533
+ - Added a concurrency option to [`.map()`](API.md#mapfunction-mapper--object-options---promise)
534
+ - [`.filter()`](API.md#filterfunction-filterer--object-options---promise) now calls the handler as soon as items in the input array become fulfilled
535
+ - Added a concurrency option to [`.filter()`](API.md#filterfunction-filterer--object-options---promise)
536
+ - [`.reduce()`](API.md#reducefunction-reducer--dynamic-initialvalue---promise) now calls the handler as soon as items in the input array become fulfilled, but in-order
537
+ - Added [`.each()`](API.md#eachfunction-iterator---promise)
538
+ - [`Promise.resolve()`](API.md#promiseresolvedynamic-value---promise) behaves like `Promise.cast`. `Promise.cast` deprecated.
539
+ - [Synchronous inspection](API.md#synchronous-inspection): Removed `.inspect()`, added [`.value()`](API.md#value---dynamic) and [`.reason()`](API.md#reason---dynamic)
540
+ - [`Promise.join()`](API.md#promisejoinpromisethenablevalue-promises-function-handler---promise) now takes a function as the last argument
541
+ - Added [`Promise.setScheduler()`](API.md#promisesetschedulerfunction-scheduler---void)
542
+ - [`.cancel()`](API.md#cancelerror-reason---promise) supports a custom cancellation reason
543
+ - [`.timeout()`](API.md#timeoutint-ms--string-message---promise) now cancels the promise instead of rejecting it
544
+ - [`.nodeify()`](API.md#nodeifyfunction-callback--object-options---promise) now supports passing multiple success results when mapping promises to nodebacks
545
+ - Added `suffix` and `filter` options to [`Promise.promisifyAll()`](API.md#promisepromisifyallobject-target--object-options---object)
546
+
547
+ Breaking changes:
548
+
549
+ - Sparse array holes are not skipped by collection methods but treated as existing elements with `undefined` value
550
+ - `.map()` and `.filter()` do not call the given mapper or filterer function in any specific order
551
+ - Removed the `.inspect()` method
552
+ - Yielding an array from a coroutine is not supported by default. You can use [`coroutine.addYieldHandler()`](API.md#promisecoroutineaddyieldhandlerfunction-handler---void) to configure the old behavior (or any behavior you want).
553
+ - [`.any()`](API.md#any---promise) and [`.some()`](API.md#someint-count---promise) no longer use an array as the rejection reason. [`AggregateError`](API.md#aggregateerror) is used instead.
554
+
555
+
556
+ ## 1.2.4 (2014-04-27)
557
+
558
+ Bugfixes:
559
+
560
+ - Fix promisifyAll causing a syntax error when a method name is not a valid identifier
561
+ - Fix syntax error when es5.js is used in strict mode
562
+
563
+ ## 1.2.3 (2014-04-17)
564
+
565
+ Bugfixes:
566
+
567
+ - Fix [#179](https://github.com/petkaantonov/bluebird/issues/179)
568
+
569
+ ## 1.2.2 (2014-04-09)
570
+
571
+ Bugfixes:
572
+
573
+ - Promisified methods from promisifyAll no longer call the original method when it is overriden
574
+ - Nodeify doesn't pass second argument to the callback if the promise is fulfilled with `undefined`
575
+
576
+ ## 1.2.1 (2014-03-31)
577
+
578
+ Bugfixes:
579
+
580
+ - Fix [#168](https://github.com/petkaantonov/bluebird/issues/168)
581
+
582
+ ## 1.2.0 (2014-03-29)
583
+
584
+ Features:
585
+
586
+ - New method: [`.value()`](https://github.com/petkaantonov/bluebird/blob/master/API.md#value---dynamic)
587
+ - New method: [`.reason()`](https://github.com/petkaantonov/bluebird/blob/master/API.md#reason---dynamic)
588
+ - New method: [`Promise.onUnhandledRejectionHandled()`](https://github.com/petkaantonov/bluebird/blob/master/API.md#promiseonunhandledrejectionhandledfunction-handler---undefined)
589
+ - `Promise.map()`, `.map()`, `Promise.filter()` and `.filter()` start calling their callbacks as soon as possible while retaining a correct order. See [`8085922f`](https://github.com/petkaantonov/bluebird/commit/8085922fb95a9987fda0cf2337598ab4a98dc315).
590
+
591
+ Bugfixes:
592
+
593
+ - Fix [#165](https://github.com/petkaantonov/bluebird/issues/165)
594
+ - Fix [#166](https://github.com/petkaantonov/bluebird/issues/166)
595
+
596
+ ## 1.1.1 (2014-03-18)
597
+
598
+ Bugfixes:
599
+
600
+ - [#138](https://github.com/petkaantonov/bluebird/issues/138)
601
+ - [#144](https://github.com/petkaantonov/bluebird/issues/144)
602
+ - [#148](https://github.com/petkaantonov/bluebird/issues/148)
603
+ - [#151](https://github.com/petkaantonov/bluebird/issues/151)
604
+
605
+ ## 1.1.0 (2014-03-08)
606
+
607
+ Features:
608
+
609
+ - Implement [`Promise.prototype.tap()`](https://github.com/petkaantonov/bluebird/blob/master/API.md#tapfunction-handler---promise)
610
+ - Implement [`Promise.coroutine.addYieldHandler()`](https://github.com/petkaantonov/bluebird/blob/master/API.md#promisecoroutineaddyieldhandlerfunction-handler---void)
611
+ - Deprecate `Promise.prototype.spawn`
612
+
613
+ Bugfixes:
614
+
615
+ - Fix already rejected promises being reported as unhandled when handled through collection methods
616
+ - Fix browserisfy crashing from checking `process.version.indexOf`
617
+
618
+ ## 1.0.8 (2014-03-03)
619
+
620
+ Bugfixes:
621
+
622
+ - Fix active domain being lost across asynchronous boundaries in Node.JS 10.xx
623
+
624
+ ## 1.0.7 (2014-02-25)
625
+
626
+ Bugfixes:
627
+
628
+ - Fix handled errors being reported
629
+
630
+ ## 1.0.6 (2014-02-17)
631
+
632
+ Bugfixes:
633
+
634
+ - Fix bug with unhandled rejections not being reported
635
+ when using `Promise.try` or `Promise.method` without
636
+ attaching further handlers
637
+
638
+ ## 1.0.5 (2014-02-15)
639
+
640
+ Features:
641
+
642
+ - Node.js performance: promisified functions try to check amount of passed arguments in most optimal order
643
+ - Node.js promisified functions will have same `.length` as the original function minus one (for the callback parameter)
644
+
645
+ ## 1.0.4 (2014-02-09)
646
+
647
+ Features:
648
+
649
+ - Possibly unhandled rejection handler will always get a stack trace, even if the rejection or thrown error was not an error
650
+ - Unhandled rejections are tracked per promise, not per error. So if you create multiple branches from a single ancestor and that ancestor gets rejected, each branch with no error handler with the end will cause a possibly unhandled rejection handler invocation
651
+
652
+ Bugfixes:
653
+
654
+ - Fix unhandled non-writable objects or primitives not reported by possibly unhandled rejection handler
655
+
656
+ ## 1.0.3 (2014-02-05)
657
+
658
+ Bugfixes:
659
+
660
+ - [#93](https://github.com/petkaantonov/bluebird/issues/93)
661
+
662
+ ## 1.0.2 (2014-02-04)
663
+
664
+ Features:
665
+
666
+ - Significantly improve performance of foreign bluebird thenables
667
+
668
+ Bugfixes:
669
+
670
+ - [#88](https://github.com/petkaantonov/bluebird/issues/88)
671
+
672
+ ## 1.0.1 (2014-01-28)
673
+
674
+ Features:
675
+
676
+ - Error objects that have property `.isAsync = true` will now be caught by `.error()`
677
+
678
+ Bugfixes:
679
+
680
+ - Fix TypeError and RangeError shims not working without `new` operator
681
+
682
+ ## 1.0.0 (2014-01-12)
683
+
684
+ Features:
685
+
686
+ - `.filter`, `.map`, and `.reduce` no longer skip sparse array holes. This is a backwards incompatible change.
687
+ - Like `.map` and `.filter`, `.reduce` now allows returning promises and thenables from the iteration function.
688
+
689
+ Bugfixes:
690
+
691
+ - [#58](https://github.com/petkaantonov/bluebird/issues/58)
692
+ - [#61](https://github.com/petkaantonov/bluebird/issues/61)
693
+ - [#64](https://github.com/petkaantonov/bluebird/issues/64)
694
+ - [#60](https://github.com/petkaantonov/bluebird/issues/60)
695
+
696
+ ## 0.11.6-1 (2013-12-29)
697
+
698
+ ## 0.11.6-0 (2013-12-29)
699
+
700
+ Features:
701
+
702
+ - You may now return promises and thenables from the filterer function used in `Promise.filter` and `Promise.prototype.filter`.
703
+
704
+ - `.error()` now catches additional sources of rejections:
705
+
706
+ - Rejections originating from `Promise.reject`
707
+
708
+ - Rejections originating from thenables using
709
+ the `reject` callback
710
+
711
+ - Rejections originating from promisified callbacks
712
+ which use the `errback` argument
713
+
714
+ - Rejections originating from `new Promise` constructor
715
+ where the `reject` callback is called explicitly
716
+
717
+ - Rejections originating from `PromiseResolver` where
718
+ `.reject()` method is called explicitly
719
+
720
+ Bugfixes:
721
+
722
+ - Fix `captureStackTrace` being called when it was `null`
723
+ - Fix `Promise.map` not unwrapping thenables
724
+
725
+ ## 0.11.5-1 (2013-12-15)
726
+
727
+ ## 0.11.5-0 (2013-12-03)
728
+
729
+ Features:
730
+
731
+ - Improve performance of collection methods
732
+ - Improve performance of promise chains
733
+
734
+ ## 0.11.4-1 (2013-12-02)
735
+
736
+ ## 0.11.4-0 (2013-12-02)
737
+
738
+ Bugfixes:
739
+
740
+ - Fix `Promise.some` behavior with arguments like negative integers, 0...
741
+ - Fix stack traces of synchronously throwing promisified functions'
742
+
743
+ ## 0.11.3-0 (2013-12-02)
744
+
745
+ Features:
746
+
747
+ - Improve performance of generators
748
+
749
+ Bugfixes:
750
+
751
+ - Fix critical bug with collection methods.
752
+
753
+ ## 0.11.2-0 (2013-12-02)
754
+
755
+ Features:
756
+
757
+ - Improve performance of all collection methods
758
+
759
+ ## 0.11.1-0 (2013-12-02)
760
+
761
+ Features:
762
+
763
+ - Improve overall performance.
764
+ - Improve performance of promisified functions.
765
+ - Improve performance of catch filters.
766
+ - Improve performance of .finally.
767
+
768
+ Bugfixes:
769
+
770
+ - Fix `.finally()` rejecting if passed non-function. It will now ignore non-functions like `.then`.
771
+ - Fix `.finally()` not converting thenables returned from the handler to promises.
772
+ - `.spread()` now rejects if the ultimate value given to it is not spreadable.
773
+
774
+ ## 0.11.0-0 (2013-12-02)
775
+
776
+ Features:
777
+
778
+ - Improve overall performance when not using `.bind()` or cancellation.
779
+ - Promises are now not cancellable by default. This is backwards incompatible change - see [`.cancellable()`](https://github.com/petkaantonov/bluebird/blob/master/API.md#cancellable---promise)
780
+ - [`Promise.delay`](https://github.com/petkaantonov/bluebird/blob/master/API.md#promisedelaydynamic-value-int-ms---promise)
781
+ - [`.delay()`](https://github.com/petkaantonov/bluebird/blob/master/API.md#delayint-ms---promise)
782
+ - [`.timeout()`](https://github.com/petkaantonov/bluebird/blob/master/API.md#timeoutint-ms--string-message---promise)
783
+
784
+ ## 0.10.14-0 (2013-12-01)
785
+
786
+ Bugfixes:
787
+
788
+ - Fix race condition when mixing 3rd party asynchrony.
789
+
790
+ ## 0.10.13-1 (2013-11-30)
791
+
792
+ ## 0.10.13-0 (2013-11-30)
793
+
794
+ Bugfixes:
795
+
796
+ - Fix another bug with progression.
797
+
798
+ ## 0.10.12-0 (2013-11-30)
799
+
800
+ Bugfixes:
801
+
802
+ - Fix bug with progression.
803
+
804
+ ## 0.10.11-4 (2013-11-29)
805
+
806
+ ## 0.10.11-2 (2013-11-29)
807
+
808
+ Bugfixes:
809
+
810
+ - Fix `.race()` not propagating bound values.
811
+
812
+ ## 0.10.11-1 (2013-11-29)
813
+
814
+ Features:
815
+
816
+ - Improve performance of `Promise.race`
817
+
818
+ ## 0.10.11-0 (2013-11-29)
819
+
820
+ Bugfixes:
821
+
822
+ - Fixed `Promise.promisifyAll` invoking property accessors. Only data properties with function values are considered.
823
+
824
+ ## 0.10.10-0 (2013-11-28)
825
+
826
+ Features:
827
+
828
+ - Disable long stack traces in browsers by default. Call `Promise.longStackTraces()` to enable them.
829
+
830
+ ## 0.10.9-1 (2013-11-27)
831
+
832
+ Bugfixes:
833
+
834
+ - Fail early when `new Promise` is constructed incorrectly
835
+
836
+ ## 0.10.9-0 (2013-11-27)
837
+
838
+ Bugfixes:
839
+
840
+ - Promise.props now takes a [thenable-for-collection](https://github.com/petkaantonov/bluebird/blob/f41edac61b7c421608ff439bb5a09b7cffeadcf9/test/mocha/props.js#L197-L217)
841
+ - All promise collection methods now reject when a promise-or-thenable-for-collection turns out not to give a collection
842
+
843
+ ## 0.10.8-0 (2013-11-25)
844
+
845
+ Features:
846
+
847
+ - All static collection methods take thenable-for-collection
848
+
849
+ ## 0.10.7-0 (2013-11-25)
850
+
851
+ Features:
852
+
853
+ - throw TypeError when thenable resolves with itself
854
+ - Make .race() and Promise.race() forever pending on empty collections
855
+
856
+ ## 0.10.6-0 (2013-11-25)
857
+
858
+ Bugfixes:
859
+
860
+ - Promise.resolve and PromiseResolver.resolve follow thenables too.
861
+
862
+ ## 0.10.5-0 (2013-11-24)
863
+
864
+ Bugfixes:
865
+
866
+ - Fix infinite loop when thenable resolves with itself
867
+
868
+ ## 0.10.4-1 (2013-11-24)
869
+
870
+ Bugfixes:
871
+
872
+ - Fix a file missing from build. (Critical fix)
873
+
874
+ ## 0.10.4-0 (2013-11-24)
875
+
876
+ Features:
877
+
878
+ - Remove dependency of es5-shim and es5-sham when using ES3.
879
+
880
+ ## 0.10.3-0 (2013-11-24)
881
+
882
+ Features:
883
+
884
+ - Improve performance of `Promise.method`
885
+
886
+ ## 0.10.2-1 (2013-11-24)
887
+
888
+ Features:
889
+
890
+ - Rename PromiseResolver#asCallback to PromiseResolver#callback
891
+
892
+ ## 0.10.2-0 (2013-11-24)
893
+
894
+ Features:
895
+
896
+ - Remove memoization of thenables
897
+
898
+ ## 0.10.1-0 (2013-11-21)
899
+
900
+ Features:
901
+
902
+ - Add methods `Promise.resolve()`, `Promise.reject()`, `Promise.defer()` and `.resolve()`.
903
+
904
+ ## 0.10.0-1 (2013-11-17)
905
+
906
+ ## 0.10.0-0 (2013-11-17)
907
+
908
+ Features:
909
+
910
+ - Implement `Promise.method()`
911
+ - Implement `.return()`
912
+ - Implement `.throw()`
913
+
914
+ Bugfixes:
915
+
916
+ - Fix promises being able to use themselves as resolution or follower value
917
+
918
+ ## 0.9.11-1 (2013-11-14)
919
+
920
+ Features:
921
+
922
+ - Implicit `Promise.all()` when yielding an array from generators
923
+
924
+ ## 0.9.11-0 (2013-11-13)
925
+
926
+ Bugfixes:
927
+
928
+ - Fix `.spread` not unwrapping thenables
929
+
930
+ ## 0.9.10-2 (2013-11-13)
931
+
932
+ Features:
933
+
934
+ - Improve performance of promisified functions on V8
935
+
936
+ Bugfixes:
937
+
938
+ - Report unhandled rejections even when long stack traces are disabled
939
+ - Fix `.error()` showing up in stack traces
940
+
941
+ ## 0.9.10-1 (2013-11-05)
942
+
943
+ Bugfixes:
944
+
945
+ - Catch filter method calls showing in stack traces
946
+
947
+ ## 0.9.10-0 (2013-11-05)
948
+
949
+ Bugfixes:
950
+
951
+ - Support primitives in catch filters
952
+
953
+ ## 0.9.9-0 (2013-11-05)
954
+
955
+ Features:
956
+
957
+ - Add `Promise.race()` and `.race()`
958
+
959
+ ## 0.9.8-0 (2013-11-01)
960
+
961
+ Bugfixes:
962
+
963
+ - Fix bug with `Promise.try` not unwrapping returned promises and thenables
964
+
965
+ ## 0.9.7-0 (2013-10-29)
966
+
967
+ Bugfixes:
968
+
969
+ - Fix bug with build files containing duplicated code for promise.js
970
+
971
+ ## 0.9.6-0 (2013-10-28)
972
+
973
+ Features:
974
+
975
+ - Improve output of reporting unhandled non-errors
976
+ - Implement RejectionError wrapping and `.error()` method
977
+
978
+ ## 0.9.5-0 (2013-10-27)
979
+
980
+ Features:
981
+
982
+ - Allow fresh copies of the library to be made
983
+
984
+ ## 0.9.4-1 (2013-10-27)
985
+
986
+ ## 0.9.4-0 (2013-10-27)
987
+
988
+ Bugfixes:
989
+
990
+ - Rollback non-working multiple fresh copies feature
991
+
992
+ ## 0.9.3-0 (2013-10-27)
993
+
994
+ Features:
995
+
996
+ - Allow fresh copies of the library to be made
997
+ - Add more components to customized builds
998
+
999
+ ## 0.9.2-1 (2013-10-25)
1000
+
1001
+ ## 0.9.2-0 (2013-10-25)
1002
+
1003
+ Features:
1004
+
1005
+ - Allow custom builds
1006
+
1007
+ ## 0.9.1-1 (2013-10-22)
1008
+
1009
+ Bugfixes:
1010
+
1011
+ - Fix unhandled rethrown exceptions not reported
1012
+
1013
+ ## 0.9.1-0 (2013-10-22)
1014
+
1015
+ Features:
1016
+
1017
+ - Improve performance of `Promise.try`
1018
+ - Extend `Promise.try` to accept arguments and ctx to make it more usable in promisification of synchronous functions.
1019
+
1020
+ ## 0.9.0-0 (2013-10-18)
1021
+
1022
+ Features:
1023
+
1024
+ - Implement `.bind` and `Promise.bind`
1025
+
1026
+ Bugfixes:
1027
+
1028
+ - Fix `.some()` when argument is a pending promise that later resolves to an array
1029
+
1030
+ ## 0.8.5-1 (2013-10-17)
1031
+
1032
+ Features:
1033
+
1034
+ - Enable process wide long stack traces through BLUEBIRD_DEBUG environment variable
1035
+
1036
+ ## 0.8.5-0 (2013-10-16)
1037
+
1038
+ Features:
1039
+
1040
+ - Improve performance of all collection methods
1041
+
1042
+ Bugfixes:
1043
+
1044
+ - Fix .finally passing the value to handlers
1045
+ - Remove kew from benchmarks due to bugs in the library breaking the benchmark
1046
+ - Fix some bluebird library calls potentially appearing in stack traces
1047
+
1048
+ ## 0.8.4-1 (2013-10-15)
1049
+
1050
+ Bugfixes:
1051
+
1052
+ - Fix .pending() call showing in long stack traces
1053
+
1054
+ ## 0.8.4-0 (2013-10-15)
1055
+
1056
+ Bugfixes:
1057
+
1058
+ - Fix PromiseArray and its sub-classes swallowing possibly unhandled rejections
1059
+
1060
+ ## 0.8.3-3 (2013-10-14)
1061
+
1062
+ Bugfixes:
1063
+
1064
+ - Fix AMD-declaration using named module.
1065
+
1066
+ ## 0.8.3-2 (2013-10-14)
1067
+
1068
+ Features:
1069
+
1070
+ - The mortals that can handle it may now release Zalgo by `require("bluebird/zalgo");`
1071
+
1072
+ ## 0.8.3-1 (2013-10-14)
1073
+
1074
+ Bugfixes:
1075
+
1076
+ - Fix memory leak when using the same promise to attach handlers over and over again
1077
+
1078
+ ## 0.8.3-0 (2013-10-13)
1079
+
1080
+ Features:
1081
+
1082
+ - Add `Promise.props()` and `Promise.prototype.props()`. They work like `.all()` for object properties.
1083
+
1084
+ Bugfixes:
1085
+
1086
+ - Fix bug with .some returning garbage when sparse arrays have rejections
1087
+
1088
+ ## 0.8.2-2 (2013-10-13)
1089
+
1090
+ Features:
1091
+
1092
+ - Improve performance of `.reduce()` when `initialValue` can be synchronously cast to a value
1093
+
1094
+ ## 0.8.2-1 (2013-10-12)
1095
+
1096
+ Bugfixes:
1097
+
1098
+ - Fix .npmignore having irrelevant files
1099
+
1100
+ ## 0.8.2-0 (2013-10-12)
1101
+
1102
+ Features:
1103
+
1104
+ - Improve performance of `.some()`
1105
+
1106
+ ## 0.8.1-0 (2013-10-11)
1107
+
1108
+ Bugfixes:
1109
+
1110
+ - Remove uses of dynamic evaluation (`new Function`, `eval` etc) when strictly not necessary. Use feature detection to use static evaluation to avoid errors when dynamic evaluation is prohibited.
1111
+
1112
+ ## 0.8.0-3 (2013-10-10)
1113
+
1114
+ Features:
1115
+
1116
+ - Add `.asCallback` property to `PromiseResolver`s
1117
+
1118
+ ## 0.8.0-2 (2013-10-10)
1119
+
1120
+ ## 0.8.0-1 (2013-10-09)
1121
+
1122
+ Features:
1123
+
1124
+ - Improve overall performance. Be able to sustain infinite recursion when using promises.
1125
+
1126
+ ## 0.8.0-0 (2013-10-09)
1127
+
1128
+ Bugfixes:
1129
+
1130
+ - Fix stackoverflow error when function calls itself "synchronously" from a promise handler
1131
+
1132
+ ## 0.7.12-2 (2013-10-09)
1133
+
1134
+ Bugfixes:
1135
+
1136
+ - Fix safari 6 not using `MutationObserver` as a scheduler
1137
+ - Fix process exceptions interfering with internal queue flushing
1138
+
1139
+ ## 0.7.12-1 (2013-10-09)
1140
+
1141
+ Bugfixes:
1142
+
1143
+ - Don't try to detect if generators are available to allow shims to be used
1144
+
1145
+ ## 0.7.12-0 (2013-10-08)
1146
+
1147
+ Features:
1148
+
1149
+ - Promisification now consider all functions on the object and its prototype chain
1150
+ - Individual promisifcation uses current `this` if no explicit receiver is given
1151
+ - Give better stack traces when promisified callbacks throw or errback primitives such as strings by wrapping them in an `Error` object.
1152
+
1153
+ Bugfixes:
1154
+
1155
+ - Fix runtime APIs throwing synchronous errors
1156
+
1157
+ ## 0.7.11-0 (2013-10-08)
1158
+
1159
+ Features:
1160
+
1161
+ - Deprecate `Promise.promisify(Object target)` in favor of `Promise.promisifyAll(Object target)` to avoid confusion with function objects
1162
+ - Coroutines now throw error when a non-promise is `yielded`
1163
+
1164
+ ## 0.7.10-1 (2013-10-05)
1165
+
1166
+ Features:
1167
+
1168
+ - Make tests pass Internet Explorer 8
1169
+
1170
+ ## 0.7.10-0 (2013-10-05)
1171
+
1172
+ Features:
1173
+
1174
+ - Create browser tests
1175
+
1176
+ ## 0.7.9-1 (2013-10-03)
1177
+
1178
+ Bugfixes:
1179
+
1180
+ - Fix promise cast bug when thenable fulfills using itself as the fulfillment value
1181
+
1182
+ ## 0.7.9-0 (2013-10-03)
1183
+
1184
+ Features:
1185
+
1186
+ - More performance improvements when long stack traces are enabled
1187
+
1188
+ ## 0.7.8-1 (2013-10-02)
1189
+
1190
+ Features:
1191
+
1192
+ - Performance improvements when long stack traces are enabled
1193
+
1194
+ ## 0.7.8-0 (2013-10-02)
1195
+
1196
+ Bugfixes:
1197
+
1198
+ - Fix promisified methods not turning synchronous exceptions into rejections
1199
+
1200
+ ## 0.7.7-1 (2013-10-02)
1201
+
1202
+ Features:
1203
+
1204
+ - feature
1205
+
1206
+ Bugfixes:
1207
+
1208
+ - bugfix
1209
+
1210
+ ## 0.7.7-0 (2013-10-01)
1211
+
1212
+ Features:
1213
+
1214
+ - feature
1215
+
1216
+ Bugfixes:
1217
+
1218
+ - bugfix
1219
+
1220
+ ## 0.7.6-0 (2013-09-29)
1221
+
1222
+ Features:
1223
+
1224
+ - feature
1225
+
1226
+ Bugfixes:
1227
+
1228
+ - bugfix
1229
+
1230
+ ## 0.7.5-0 (2013-09-28)
1231
+
1232
+ Features:
1233
+
1234
+ - feature
1235
+
1236
+ Bugfixes:
1237
+
1238
+ - bugfix
1239
+
1240
+ ## 0.7.4-1 (2013-09-28)
1241
+
1242
+ Features:
1243
+
1244
+ - feature
1245
+
1246
+ Bugfixes:
1247
+
1248
+ - bugfix
1249
+
1250
+ ## 0.7.4-0 (2013-09-28)
1251
+
1252
+ Features:
1253
+
1254
+ - feature
1255
+
1256
+ Bugfixes:
1257
+
1258
+ - bugfix
1259
+
1260
+ ## 0.7.3-1 (2013-09-28)
1261
+
1262
+ Features:
1263
+
1264
+ - feature
1265
+
1266
+ Bugfixes:
1267
+
1268
+ - bugfix
1269
+
1270
+ ## 0.7.3-0 (2013-09-27)
1271
+
1272
+ Features:
1273
+
1274
+ - feature
1275
+
1276
+ Bugfixes:
1277
+
1278
+ - bugfix
1279
+
1280
+ ## 0.7.2-0 (2013-09-27)
1281
+
1282
+ Features:
1283
+
1284
+ - feature
1285
+
1286
+ Bugfixes:
1287
+
1288
+ - bugfix
1289
+
1290
+ ## 0.7.1-5 (2013-09-26)
1291
+
1292
+ Features:
1293
+
1294
+ - feature
1295
+
1296
+ Bugfixes:
1297
+
1298
+ - bugfix
1299
+
1300
+ ## 0.7.1-4 (2013-09-25)
1301
+
1302
+ Features:
1303
+
1304
+ - feature
1305
+
1306
+ Bugfixes:
1307
+
1308
+ - bugfix
1309
+
1310
+ ## 0.7.1-3 (2013-09-25)
1311
+
1312
+ Features:
1313
+
1314
+ - feature
1315
+
1316
+ Bugfixes:
1317
+
1318
+ - bugfix
1319
+
1320
+ ## 0.7.1-2 (2013-09-24)
1321
+
1322
+ Features:
1323
+
1324
+ - feature
1325
+
1326
+ Bugfixes:
1327
+
1328
+ - bugfix
1329
+
1330
+ ## 0.7.1-1 (2013-09-24)
1331
+
1332
+ Features:
1333
+
1334
+ - feature
1335
+
1336
+ Bugfixes:
1337
+
1338
+ - bugfix
1339
+
1340
+ ## 0.7.1-0 (2013-09-24)
1341
+
1342
+ Features:
1343
+
1344
+ - feature
1345
+
1346
+ Bugfixes:
1347
+
1348
+ - bugfix
1349
+
1350
+ ## 0.7.0-1 (2013-09-23)
1351
+
1352
+ Features:
1353
+
1354
+ - feature
1355
+
1356
+ Bugfixes:
1357
+
1358
+ - bugfix
1359
+
1360
+ ## 0.7.0-0 (2013-09-23)
1361
+
1362
+ Features:
1363
+
1364
+ - feature
1365
+
1366
+ Bugfixes:
1367
+
1368
+ - bugfix
1369
+
1370
+ ## 0.6.5-2 (2013-09-20)
1371
+
1372
+ Features:
1373
+
1374
+ - feature
1375
+
1376
+ Bugfixes:
1377
+
1378
+ - bugfix
1379
+
1380
+ ## 0.6.5-1 (2013-09-18)
1381
+
1382
+ Features:
1383
+
1384
+ - feature
1385
+
1386
+ Bugfixes:
1387
+
1388
+ - bugfix
1389
+
1390
+ ## 0.6.5-0 (2013-09-18)
1391
+
1392
+ Features:
1393
+
1394
+ - feature
1395
+
1396
+ Bugfixes:
1397
+
1398
+ - bugfix
1399
+
1400
+ ## 0.6.4-1 (2013-09-18)
1401
+
1402
+ Features:
1403
+
1404
+ - feature
1405
+
1406
+ Bugfixes:
1407
+
1408
+ - bugfix
1409
+
1410
+ ## 0.6.4-0 (2013-09-18)
1411
+
1412
+ Features:
1413
+
1414
+ - feature
1415
+
1416
+ Bugfixes:
1417
+
1418
+ - bugfix
1419
+
1420
+ ## 0.6.3-4 (2013-09-18)
1421
+
1422
+ Features:
1423
+
1424
+ - feature
1425
+
1426
+ Bugfixes:
1427
+
1428
+ - bugfix
1429
+
1430
+ ## 0.6.3-3 (2013-09-18)
1431
+
1432
+ Features:
1433
+
1434
+ - feature
1435
+
1436
+ Bugfixes:
1437
+
1438
+ - bugfix
1439
+
1440
+ ## 0.6.3-2 (2013-09-16)
1441
+
1442
+ Features:
1443
+
1444
+ - feature
1445
+
1446
+ Bugfixes:
1447
+
1448
+ - bugfix
1449
+
1450
+ ## 0.6.3-1 (2013-09-16)
1451
+
1452
+ Features:
1453
+
1454
+ - feature
1455
+
1456
+ Bugfixes:
1457
+
1458
+ - bugfix
1459
+
1460
+ ## 0.6.3-0 (2013-09-15)
1461
+
1462
+ Features:
1463
+
1464
+ - feature
1465
+
1466
+ Bugfixes:
1467
+
1468
+ - bugfix
1469
+
1470
+ ## 0.6.2-1 (2013-09-14)
1471
+
1472
+ Features:
1473
+
1474
+ - feature
1475
+
1476
+ Bugfixes:
1477
+
1478
+ - bugfix
1479
+
1480
+ ## 0.6.2-0 (2013-09-14)
1481
+
1482
+ Features:
1483
+
1484
+ - feature
1485
+
1486
+ Bugfixes:
1487
+
1488
+ - bugfix
1489
+
1490
+ ## 0.6.1-0 (2013-09-14)
1491
+
1492
+ Features:
1493
+
1494
+ - feature
1495
+
1496
+ Bugfixes:
1497
+
1498
+ - bugfix
1499
+
1500
+ ## 0.6.0-0 (2013-09-13)
1501
+
1502
+ Features:
1503
+
1504
+ - feature
1505
+
1506
+ Bugfixes:
1507
+
1508
+ - bugfix
1509
+
1510
+ ## 0.5.9-6 (2013-09-12)
1511
+
1512
+ Features:
1513
+
1514
+ - feature
1515
+
1516
+ Bugfixes:
1517
+
1518
+ - bugfix
1519
+
1520
+ ## 0.5.9-5 (2013-09-12)
1521
+
1522
+ Features:
1523
+
1524
+ - feature
1525
+
1526
+ Bugfixes:
1527
+
1528
+ - bugfix
1529
+
1530
+ ## 0.5.9-4 (2013-09-12)
1531
+
1532
+ Features:
1533
+
1534
+ - feature
1535
+
1536
+ Bugfixes:
1537
+
1538
+ - bugfix
1539
+
1540
+ ## 0.5.9-3 (2013-09-11)
1541
+
1542
+ Features:
1543
+
1544
+ - feature
1545
+
1546
+ Bugfixes:
1547
+
1548
+ - bugfix
1549
+
1550
+ ## 0.5.9-2 (2013-09-11)
1551
+
1552
+ Features:
1553
+
1554
+ - feature
1555
+
1556
+ Bugfixes:
1557
+
1558
+ - bugfix
1559
+
1560
+ ## 0.5.9-1 (2013-09-11)
1561
+
1562
+ Features:
1563
+
1564
+ - feature
1565
+
1566
+ Bugfixes:
1567
+
1568
+ - bugfix
1569
+
1570
+ ## 0.5.9-0 (2013-09-11)
1571
+
1572
+ Features:
1573
+
1574
+ - feature
1575
+
1576
+ Bugfixes:
1577
+
1578
+ - bugfix
1579
+
1580
+ ## 0.5.8-1 (2013-09-11)
1581
+
1582
+ Features:
1583
+
1584
+ - feature
1585
+
1586
+ Bugfixes:
1587
+
1588
+ - bugfix
1589
+
1590
+ ## 0.5.8-0 (2013-09-11)
1591
+
1592
+ Features:
1593
+
1594
+ - feature
1595
+
1596
+ Bugfixes:
1597
+
1598
+ - bugfix
1599
+
1600
+ ## 0.5.7-0 (2013-09-11)
1601
+
1602
+ Features:
1603
+
1604
+ - feature
1605
+
1606
+ Bugfixes:
1607
+
1608
+ - bugfix
1609
+
1610
+ ## 0.5.6-1 (2013-09-10)
1611
+
1612
+ Features:
1613
+
1614
+ - feature
1615
+
1616
+ Bugfixes:
1617
+
1618
+ - bugfix
1619
+
1620
+ ## 0.5.6-0 (2013-09-10)
1621
+
1622
+ Features:
1623
+
1624
+ - feature
1625
+
1626
+ Bugfixes:
1627
+
1628
+ - bugfix
1629
+
1630
+ ## 0.5.5-1 (2013-09-10)
1631
+
1632
+ Features:
1633
+
1634
+ - feature
1635
+
1636
+ Bugfixes:
1637
+
1638
+ - bugfix
1639
+
1640
+ ## 0.5.5-0 (2013-09-09)
1641
+
1642
+ Features:
1643
+
1644
+ - feature
1645
+
1646
+ Bugfixes:
1647
+
1648
+ - bugfix
1649
+
1650
+ ## 0.5.4-1 (2013-09-08)
1651
+
1652
+ Features:
1653
+
1654
+ - feature
1655
+
1656
+ Bugfixes:
1657
+
1658
+ - bugfix
1659
+
1660
+ ## 0.5.4-0 (2013-09-08)
1661
+
1662
+ Features:
1663
+
1664
+ - feature
1665
+
1666
+ Bugfixes:
1667
+
1668
+ - bugfix
1669
+
1670
+ ## 0.5.3-0 (2013-09-07)
1671
+
1672
+ Features:
1673
+
1674
+ - feature
1675
+
1676
+ Bugfixes:
1677
+
1678
+ - bugfix
1679
+
1680
+ ## 0.5.2-0 (2013-09-07)
1681
+
1682
+ Features:
1683
+
1684
+ - feature
1685
+
1686
+ Bugfixes:
1687
+
1688
+ - bugfix
1689
+
1690
+ ## 0.5.1-0 (2013-09-07)
1691
+
1692
+ Features:
1693
+
1694
+ - feature
1695
+
1696
+ Bugfixes:
1697
+
1698
+ - bugfix
1699
+
1700
+ ## 0.5.0-0 (2013-09-07)
1701
+
1702
+ Features:
1703
+
1704
+ - feature
1705
+
1706
+ Bugfixes:
1707
+
1708
+ - bugfix
1709
+
1710
+ ## 0.4.0-0 (2013-09-06)
1711
+
1712
+ Features:
1713
+
1714
+ - feature
1715
+
1716
+ Bugfixes:
1717
+
1718
+ - bugfix
1719
+
1720
+ ## 0.3.0-1 (2013-09-06)
1721
+
1722
+ Features:
1723
+
1724
+ - feature
1725
+
1726
+ Bugfixes:
1727
+
1728
+ - bugfix
1729
+
1730
+ ## 0.3.0 (2013-09-06)