fsevents 1.1.3 → 1.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of fsevents might be problematic. Click here for more details.

Files changed (979) hide show
  1. package/.travis.yml +1 -1
  2. package/build/.target.mk +4 -2
  3. package/build/Makefile +2 -2
  4. package/build/Release/.deps/Release/.node.d +1 -1
  5. package/build/Release/.deps/Release/fse.node.d +1 -1
  6. package/build/Release/.deps/Release/obj.target/fse/fsevents.o.d +31 -29
  7. package/build/Release/.deps/Users/eshanker/Code/fsevents/lib/binding/Release/node-v64-darwin-x64/fse.node.d +1 -0
  8. package/build/Release/.node +0 -0
  9. package/build/Release/fse.node +0 -0
  10. package/build/Release/obj.target/fse/fsevents.o +0 -0
  11. package/build/action_after_build.target.mk +4 -4
  12. package/build/binding.Makefile +1 -1
  13. package/build/fse.target.mk +18 -13
  14. package/fsevents.cc +5 -7
  15. package/lib/binding/Release/node-v64-darwin-x64/fse.node +0 -0
  16. package/node_modules/abbrev/LICENSE +31 -0
  17. package/node_modules/abbrev/package.json +14 -11
  18. package/node_modules/ansi-regex/package.json +3 -1
  19. package/node_modules/aproba/README.md +16 -11
  20. package/node_modules/aproba/index.js +11 -9
  21. package/node_modules/aproba/package.json +15 -13
  22. package/node_modules/are-we-there-yet/package.json +3 -1
  23. package/node_modules/balanced-match/index.js +1 -0
  24. package/node_modules/balanced-match/package.json +15 -11
  25. package/node_modules/{asynckit → brace-expansion}/LICENSE +2 -2
  26. package/node_modules/brace-expansion/README.md +7 -1
  27. package/node_modules/brace-expansion/package.json +14 -12
  28. package/node_modules/{block-stream → chownr}/LICENSE +0 -0
  29. package/node_modules/chownr/README.md +3 -0
  30. package/node_modules/chownr/chownr.js +52 -0
  31. package/node_modules/chownr/package.json +59 -0
  32. package/node_modules/code-point-at/package.json +3 -1
  33. package/node_modules/concat-map/package.json +3 -1
  34. package/node_modules/console-control-strings/package.json +4 -1
  35. package/node_modules/core-util-is/package.json +3 -1
  36. package/node_modules/debug/CHANGELOG.md +5 -0
  37. package/node_modules/debug/component.json +1 -1
  38. package/node_modules/debug/package.json +13 -11
  39. package/node_modules/debug/src/inspector-log.js +15 -0
  40. package/node_modules/debug/src/node.js +3 -1
  41. package/node_modules/deep-extend/CHANGELOG.md +20 -3
  42. package/node_modules/deep-extend/LICENSE +1 -1
  43. package/node_modules/deep-extend/README.md +3 -0
  44. package/node_modules/deep-extend/lib/deep-extend.js +11 -5
  45. package/node_modules/deep-extend/package.json +26 -27
  46. package/node_modules/delegates/package.json +3 -1
  47. package/node_modules/detect-libc/lib/detect-libc.js +21 -14
  48. package/node_modules/detect-libc/package.json +17 -14
  49. package/node_modules/{fstream-ignore → fs-minipass}/LICENSE +0 -0
  50. package/node_modules/fs-minipass/README.md +70 -0
  51. package/node_modules/fs-minipass/index.js +386 -0
  52. package/node_modules/fs-minipass/package.json +65 -0
  53. package/node_modules/fs.realpath/package.json +3 -1
  54. package/node_modules/gauge/package.json +3 -1
  55. package/node_modules/glob/package.json +3 -1
  56. package/node_modules/has-unicode/package.json +3 -1
  57. package/node_modules/iconv-lite/.travis.yml +23 -0
  58. package/node_modules/iconv-lite/Changelog.md +146 -0
  59. package/node_modules/{punycode/LICENSE-MIT.txt → iconv-lite/LICENSE} +2 -1
  60. package/node_modules/iconv-lite/README.md +156 -0
  61. package/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
  62. package/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
  63. package/node_modules/iconv-lite/encodings/index.js +22 -0
  64. package/node_modules/iconv-lite/encodings/internal.js +188 -0
  65. package/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
  66. package/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  67. package/node_modules/iconv-lite/encodings/sbcs-data.js +169 -0
  68. package/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  69. package/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  70. package/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  71. package/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  72. package/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  73. package/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  74. package/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
  75. package/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  76. package/node_modules/iconv-lite/encodings/utf16.js +177 -0
  77. package/node_modules/iconv-lite/encodings/utf7.js +290 -0
  78. package/node_modules/iconv-lite/lib/bom-handling.js +52 -0
  79. package/node_modules/iconv-lite/lib/extend-node.js +217 -0
  80. package/node_modules/iconv-lite/lib/index.d.ts +24 -0
  81. package/node_modules/iconv-lite/lib/index.js +153 -0
  82. package/node_modules/iconv-lite/lib/streams.js +121 -0
  83. package/node_modules/iconv-lite/package.json +79 -0
  84. package/node_modules/{fstream → ignore-walk}/LICENSE +0 -0
  85. package/node_modules/ignore-walk/README.md +60 -0
  86. package/node_modules/ignore-walk/index.js +265 -0
  87. package/node_modules/ignore-walk/package.json +74 -0
  88. package/node_modules/inflight/package.json +3 -1
  89. package/node_modules/inherits/package.json +6 -1
  90. package/node_modules/ini/ini.js +66 -62
  91. package/node_modules/ini/package.json +20 -13
  92. package/node_modules/is-fullwidth-code-point/package.json +3 -1
  93. package/node_modules/isarray/package.json +3 -1
  94. package/node_modules/minimatch/package.json +4 -1
  95. package/node_modules/minimist/package.json +3 -1
  96. package/node_modules/minipass/README.md +46 -0
  97. package/node_modules/minipass/index.js +304 -0
  98. package/node_modules/minipass/package.json +72 -0
  99. package/node_modules/minizlib/LICENSE +26 -0
  100. package/node_modules/minizlib/README.md +44 -0
  101. package/node_modules/minizlib/constants.js +46 -0
  102. package/node_modules/minizlib/index.js +364 -0
  103. package/node_modules/minizlib/package.json +74 -0
  104. package/node_modules/mkdirp/package.json +5 -1
  105. package/node_modules/ms/package.json +3 -1
  106. package/node_modules/needle/README.md +593 -0
  107. package/node_modules/needle/bin/needle +40 -0
  108. package/node_modules/needle/examples/deflated-stream.js +22 -0
  109. package/node_modules/needle/examples/digest-auth.js +16 -0
  110. package/node_modules/needle/examples/download-to-file.js +18 -0
  111. package/node_modules/needle/examples/multipart-stream.js +25 -0
  112. package/node_modules/needle/examples/parsed-stream.js +23 -0
  113. package/node_modules/needle/examples/parsed-stream2.js +21 -0
  114. package/node_modules/needle/examples/stream-events.js +23 -0
  115. package/node_modules/needle/examples/stream-to-file.js +14 -0
  116. package/node_modules/needle/examples/upload-image.js +51 -0
  117. package/node_modules/needle/lib/auth.js +110 -0
  118. package/node_modules/needle/lib/cookies.js +77 -0
  119. package/node_modules/needle/lib/decoder.js +53 -0
  120. package/node_modules/needle/lib/multipart.js +98 -0
  121. package/node_modules/needle/lib/needle.js +783 -0
  122. package/node_modules/needle/lib/parsers.js +120 -0
  123. package/node_modules/needle/lib/querystring.js +49 -0
  124. package/node_modules/{delayed-stream/License → needle/license.txt} +2 -2
  125. package/node_modules/needle/package.json +105 -0
  126. package/node_modules/needle/test/basic_auth_spec.js +196 -0
  127. package/node_modules/needle/test/compression_spec.js +94 -0
  128. package/node_modules/needle/test/cookies_spec.js +305 -0
  129. package/node_modules/needle/test/decoder_spec.js +86 -0
  130. package/node_modules/needle/test/errors_spec.js +286 -0
  131. package/node_modules/needle/test/headers_spec.js +198 -0
  132. package/node_modules/needle/test/helpers.js +72 -0
  133. package/node_modules/needle/test/long_string_spec.js +34 -0
  134. package/node_modules/needle/test/output_spec.js +254 -0
  135. package/node_modules/needle/test/parsing_spec.js +494 -0
  136. package/node_modules/needle/test/post_data_spec.js +1021 -0
  137. package/node_modules/needle/test/proxy_spec.js +202 -0
  138. package/node_modules/needle/test/querystring_spec.js +128 -0
  139. package/node_modules/needle/test/redirect_spec.js +392 -0
  140. package/node_modules/needle/test/redirect_with_timeout.js +45 -0
  141. package/node_modules/needle/test/request_stream_spec.js +202 -0
  142. package/node_modules/needle/test/response_stream_spec.js +139 -0
  143. package/node_modules/needle/test/socket_pool_spec.js +66 -0
  144. package/node_modules/needle/test/url_spec.js +147 -0
  145. package/node_modules/needle/test/utils/formidable.js +17 -0
  146. package/node_modules/needle/test/utils/proxy.js +62 -0
  147. package/node_modules/needle/test/utils/test.js +104 -0
  148. package/node_modules/node-pre-gyp/CHANGELOG.md +36 -3
  149. package/node_modules/node-pre-gyp/README.md +83 -8
  150. package/node_modules/node-pre-gyp/appveyor.yml +1 -15
  151. package/node_modules/node-pre-gyp/contributing.md +2 -2
  152. package/node_modules/node-pre-gyp/lib/build.js +8 -0
  153. package/node_modules/node-pre-gyp/lib/clean.js +17 -8
  154. package/node_modules/node-pre-gyp/lib/configure.js +4 -0
  155. package/node_modules/node-pre-gyp/lib/install.js +58 -34
  156. package/node_modules/node-pre-gyp/lib/node-pre-gyp.js +9 -0
  157. package/node_modules/node-pre-gyp/lib/package.js +23 -13
  158. package/node_modules/node-pre-gyp/lib/pre-binding.js +6 -1
  159. package/node_modules/node-pre-gyp/lib/publish.js +3 -1
  160. package/node_modules/node-pre-gyp/lib/rebuild.js +12 -4
  161. package/node_modules/node-pre-gyp/lib/reinstall.js +8 -1
  162. package/node_modules/node-pre-gyp/lib/reveal.js +4 -2
  163. package/node_modules/node-pre-gyp/lib/testbinary.js +3 -1
  164. package/node_modules/node-pre-gyp/lib/testpackage.js +22 -16
  165. package/node_modules/node-pre-gyp/lib/unpublish.js +3 -1
  166. package/node_modules/node-pre-gyp/lib/util/abi_crosswalk.json +156 -0
  167. package/node_modules/node-pre-gyp/lib/util/handle_gyp_opts.js +8 -2
  168. package/node_modules/node-pre-gyp/lib/util/napi.js +156 -0
  169. package/node_modules/node-pre-gyp/lib/util/versioning.js +7 -2
  170. package/node_modules/node-pre-gyp/package.json +16 -16
  171. package/node_modules/nopt/package.json +3 -1
  172. package/node_modules/npm-bundled/README.md +46 -0
  173. package/node_modules/npm-bundled/index.js +227 -0
  174. package/node_modules/npm-bundled/package.json +63 -0
  175. package/node_modules/{json-stringify-safe → npm-packlist}/LICENSE +0 -0
  176. package/node_modules/npm-packlist/README.md +68 -0
  177. package/node_modules/npm-packlist/index.js +220 -0
  178. package/node_modules/npm-packlist/package.json +69 -0
  179. package/node_modules/npmlog/log.js +6 -1
  180. package/node_modules/npmlog/package.json +13 -11
  181. package/node_modules/number-is-nan/package.json +3 -1
  182. package/node_modules/object-assign/package.json +3 -1
  183. package/node_modules/once/package.json +4 -1
  184. package/node_modules/os-homedir/package.json +3 -1
  185. package/node_modules/os-tmpdir/package.json +3 -1
  186. package/node_modules/osenv/package.json +20 -12
  187. package/node_modules/path-is-absolute/package.json +3 -1
  188. package/node_modules/process-nextick-args/index.js +3 -2
  189. package/node_modules/process-nextick-args/package.json +16 -11
  190. package/node_modules/process-nextick-args/readme.md +2 -2
  191. package/node_modules/rc/README.md +80 -2
  192. package/node_modules/rc/cli.js +4 -0
  193. package/node_modules/rc/index.js +0 -7
  194. package/node_modules/rc/node_modules/minimist/package.json +3 -1
  195. package/node_modules/rc/package.json +20 -19
  196. package/node_modules/readable-stream/.travis.yml +26 -20
  197. package/node_modules/readable-stream/README.md +3 -2
  198. package/node_modules/readable-stream/lib/_stream_duplex.js +69 -13
  199. package/node_modules/readable-stream/lib/_stream_passthrough.js +21 -0
  200. package/node_modules/readable-stream/lib/_stream_readable.js +194 -110
  201. package/node_modules/readable-stream/lib/_stream_transform.js +64 -32
  202. package/node_modules/readable-stream/lib/_stream_writable.js +198 -55
  203. package/node_modules/readable-stream/lib/internal/streams/BufferList.js +68 -53
  204. package/node_modules/readable-stream/lib/internal/streams/destroy.js +74 -0
  205. package/node_modules/readable-stream/package.json +23 -23
  206. package/node_modules/readable-stream/writable.js +2 -2
  207. package/node_modules/rimraf/package.json +13 -11
  208. package/node_modules/rimraf/rimraf.js +3 -2
  209. package/node_modules/safe-buffer/README.md +12 -9
  210. package/node_modules/safe-buffer/index.js +10 -6
  211. package/node_modules/safe-buffer/package.json +17 -13
  212. package/node_modules/safe-buffer/test.js +2 -0
  213. package/node_modules/{ajv → safer-buffer}/LICENSE +2 -3
  214. package/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  215. package/node_modules/safer-buffer/Readme.md +156 -0
  216. package/node_modules/safer-buffer/dangerous.js +58 -0
  217. package/node_modules/safer-buffer/package.json +63 -0
  218. package/node_modules/safer-buffer/safer.js +77 -0
  219. package/node_modules/safer-buffer/tests.js +406 -0
  220. package/node_modules/sax/LICENSE +41 -0
  221. package/node_modules/sax/README.md +225 -0
  222. package/node_modules/sax/lib/sax.js +1565 -0
  223. package/node_modules/sax/package.json +64 -0
  224. package/node_modules/semver/README.md +75 -37
  225. package/node_modules/semver/bin/semver +12 -2
  226. package/node_modules/semver/package.json +15 -13
  227. package/node_modules/semver/range.bnf +2 -2
  228. package/node_modules/semver/semver.js +134 -13
  229. package/node_modules/set-blocking/package.json +3 -1
  230. package/node_modules/signal-exit/package.json +3 -1
  231. package/node_modules/string-width/package.json +4 -1
  232. package/node_modules/string_decoder/.travis.yml +50 -0
  233. package/node_modules/string_decoder/README.md +22 -3
  234. package/node_modules/string_decoder/lib/string_decoder.js +35 -11
  235. package/node_modules/string_decoder/package.json +21 -16
  236. package/node_modules/strip-ansi/package.json +4 -1
  237. package/node_modules/strip-json-comments/package.json +3 -1
  238. package/node_modules/tar/LICENSE +3 -0
  239. package/node_modules/tar/README.md +929 -30
  240. package/node_modules/tar/index.js +18 -0
  241. package/node_modules/tar/lib/buffer.js +11 -0
  242. package/node_modules/tar/lib/create.js +105 -0
  243. package/node_modules/tar/lib/extract.js +97 -79
  244. package/node_modules/tar/lib/header.js +236 -348
  245. package/node_modules/tar/lib/high-level-opt.js +29 -0
  246. package/node_modules/tar/lib/large-numbers.js +92 -0
  247. package/node_modules/tar/lib/list.js +130 -0
  248. package/node_modules/tar/lib/mkdir.js +206 -0
  249. package/node_modules/tar/lib/pack.js +354 -187
  250. package/node_modules/tar/lib/parse.js +393 -246
  251. package/node_modules/tar/lib/pax.js +146 -0
  252. package/node_modules/tar/lib/read-entry.js +94 -0
  253. package/node_modules/tar/lib/replace.js +220 -0
  254. package/node_modules/tar/lib/types.js +44 -0
  255. package/node_modules/tar/lib/unpack.js +560 -0
  256. package/node_modules/tar/lib/update.js +36 -0
  257. package/node_modules/tar/lib/warn-mixin.js +14 -0
  258. package/node_modules/tar/lib/winchars.js +23 -0
  259. package/node_modules/tar/lib/write-entry.js +403 -0
  260. package/node_modules/tar/package.json +44 -23
  261. package/node_modules/util-deprecate/package.json +3 -1
  262. package/node_modules/wide-align/package.json +3 -1
  263. package/node_modules/wrappy/package.json +4 -1
  264. package/node_modules/yallist/LICENSE +15 -0
  265. package/node_modules/yallist/README.md +204 -0
  266. package/node_modules/yallist/iterator.js +8 -0
  267. package/node_modules/yallist/package.json +66 -0
  268. package/node_modules/yallist/yallist.js +376 -0
  269. package/package.json +3 -3
  270. package/src/methods.cc +9 -7
  271. package/.npmignore +0 -1
  272. package/build/Release/.deps/Users/eshanker/Code/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node.d +0 -1
  273. package/build/stage/v1.1.2/fse-v1.1.2-node-v48-darwin-x64.tar.gz +0 -0
  274. package/node_modules/ajv/.tonic_example.js +0 -20
  275. package/node_modules/ajv/README.md +0 -1213
  276. package/node_modules/ajv/dist/ajv.bundle.js +0 -8023
  277. package/node_modules/ajv/dist/ajv.min.js +0 -6
  278. package/node_modules/ajv/dist/ajv.min.js.map +0 -1
  279. package/node_modules/ajv/dist/nodent.min.js +0 -8
  280. package/node_modules/ajv/dist/regenerator.min.js +0 -32
  281. package/node_modules/ajv/lib/ajv.d.ts +0 -284
  282. package/node_modules/ajv/lib/ajv.js +0 -420
  283. package/node_modules/ajv/lib/async.js +0 -218
  284. package/node_modules/ajv/lib/cache.js +0 -26
  285. package/node_modules/ajv/lib/compile/_rules.js +0 -28
  286. package/node_modules/ajv/lib/compile/equal.js +0 -45
  287. package/node_modules/ajv/lib/compile/formats.js +0 -164
  288. package/node_modules/ajv/lib/compile/index.js +0 -390
  289. package/node_modules/ajv/lib/compile/resolve.js +0 -267
  290. package/node_modules/ajv/lib/compile/rules.js +0 -40
  291. package/node_modules/ajv/lib/compile/schema_obj.js +0 -9
  292. package/node_modules/ajv/lib/compile/ucs2length.js +0 -20
  293. package/node_modules/ajv/lib/compile/util.js +0 -257
  294. package/node_modules/ajv/lib/compile/validation_error.js +0 -14
  295. package/node_modules/ajv/lib/dot/_limit.jst +0 -49
  296. package/node_modules/ajv/lib/dot/_limitItems.jst +0 -10
  297. package/node_modules/ajv/lib/dot/_limitLength.jst +0 -10
  298. package/node_modules/ajv/lib/dot/_limitProperties.jst +0 -10
  299. package/node_modules/ajv/lib/dot/allOf.jst +0 -34
  300. package/node_modules/ajv/lib/dot/anyOf.jst +0 -48
  301. package/node_modules/ajv/lib/dot/coerce.def +0 -61
  302. package/node_modules/ajv/lib/dot/custom.jst +0 -184
  303. package/node_modules/ajv/lib/dot/defaults.def +0 -32
  304. package/node_modules/ajv/lib/dot/definitions.def +0 -182
  305. package/node_modules/ajv/lib/dot/dependencies.jst +0 -69
  306. package/node_modules/ajv/lib/dot/enum.jst +0 -30
  307. package/node_modules/ajv/lib/dot/errors.def +0 -185
  308. package/node_modules/ajv/lib/dot/format.jst +0 -100
  309. package/node_modules/ajv/lib/dot/items.jst +0 -101
  310. package/node_modules/ajv/lib/dot/missing.def +0 -34
  311. package/node_modules/ajv/lib/dot/multipleOf.jst +0 -20
  312. package/node_modules/ajv/lib/dot/not.jst +0 -43
  313. package/node_modules/ajv/lib/dot/oneOf.jst +0 -44
  314. package/node_modules/ajv/lib/dot/pattern.jst +0 -14
  315. package/node_modules/ajv/lib/dot/properties.jst +0 -319
  316. package/node_modules/ajv/lib/dot/ref.jst +0 -86
  317. package/node_modules/ajv/lib/dot/required.jst +0 -96
  318. package/node_modules/ajv/lib/dot/uniqueItems.jst +0 -38
  319. package/node_modules/ajv/lib/dot/v5/_formatLimit.jst +0 -116
  320. package/node_modules/ajv/lib/dot/v5/constant.jst +0 -10
  321. package/node_modules/ajv/lib/dot/v5/patternRequired.jst +0 -28
  322. package/node_modules/ajv/lib/dot/v5/switch.jst +0 -73
  323. package/node_modules/ajv/lib/dot/validate.jst +0 -210
  324. package/node_modules/ajv/lib/dotjs/README.md +0 -3
  325. package/node_modules/ajv/lib/dotjs/_formatLimit.js +0 -176
  326. package/node_modules/ajv/lib/dotjs/_limit.js +0 -124
  327. package/node_modules/ajv/lib/dotjs/_limitItems.js +0 -76
  328. package/node_modules/ajv/lib/dotjs/_limitLength.js +0 -81
  329. package/node_modules/ajv/lib/dotjs/_limitProperties.js +0 -76
  330. package/node_modules/ajv/lib/dotjs/allOf.js +0 -43
  331. package/node_modules/ajv/lib/dotjs/anyOf.js +0 -65
  332. package/node_modules/ajv/lib/dotjs/constant.js +0 -52
  333. package/node_modules/ajv/lib/dotjs/custom.js +0 -220
  334. package/node_modules/ajv/lib/dotjs/dependencies.js +0 -147
  335. package/node_modules/ajv/lib/dotjs/enum.js +0 -65
  336. package/node_modules/ajv/lib/dotjs/format.js +0 -138
  337. package/node_modules/ajv/lib/dotjs/items.js +0 -144
  338. package/node_modules/ajv/lib/dotjs/multipleOf.js +0 -76
  339. package/node_modules/ajv/lib/dotjs/not.js +0 -83
  340. package/node_modules/ajv/lib/dotjs/oneOf.js +0 -76
  341. package/node_modules/ajv/lib/dotjs/pattern.js +0 -74
  342. package/node_modules/ajv/lib/dotjs/patternRequired.js +0 -51
  343. package/node_modules/ajv/lib/dotjs/properties.js +0 -445
  344. package/node_modules/ajv/lib/dotjs/ref.js +0 -119
  345. package/node_modules/ajv/lib/dotjs/required.js +0 -249
  346. package/node_modules/ajv/lib/dotjs/switch.js +0 -128
  347. package/node_modules/ajv/lib/dotjs/uniqueItems.js +0 -71
  348. package/node_modules/ajv/lib/dotjs/validate.js +0 -375
  349. package/node_modules/ajv/lib/keyword.js +0 -129
  350. package/node_modules/ajv/lib/refs/json-schema-draft-04.json +0 -150
  351. package/node_modules/ajv/lib/refs/json-schema-v5.json +0 -328
  352. package/node_modules/ajv/lib/v5.js +0 -52
  353. package/node_modules/ajv/package.json +0 -132
  354. package/node_modules/ajv/scripts/.eslintrc.yml +0 -3
  355. package/node_modules/ajv/scripts/bundle.js +0 -54
  356. package/node_modules/ajv/scripts/compile-dots.js +0 -73
  357. package/node_modules/ajv/scripts/info +0 -10
  358. package/node_modules/ajv/scripts/prepare-tests +0 -9
  359. package/node_modules/ajv/scripts/travis-gh-pages +0 -23
  360. package/node_modules/asn1/.npmignore +0 -2
  361. package/node_modules/asn1/.travis.yml +0 -4
  362. package/node_modules/asn1/LICENSE +0 -19
  363. package/node_modules/asn1/README.md +0 -50
  364. package/node_modules/asn1/lib/ber/errors.js +0 -13
  365. package/node_modules/asn1/lib/ber/index.js +0 -27
  366. package/node_modules/asn1/lib/ber/reader.js +0 -261
  367. package/node_modules/asn1/lib/ber/types.js +0 -36
  368. package/node_modules/asn1/lib/ber/writer.js +0 -316
  369. package/node_modules/asn1/lib/index.js +0 -20
  370. package/node_modules/asn1/package.json +0 -66
  371. package/node_modules/asn1/tst/ber/reader.test.js +0 -208
  372. package/node_modules/asn1/tst/ber/writer.test.js +0 -370
  373. package/node_modules/assert-plus/AUTHORS +0 -6
  374. package/node_modules/assert-plus/CHANGES.md +0 -8
  375. package/node_modules/assert-plus/README.md +0 -155
  376. package/node_modules/assert-plus/assert.js +0 -206
  377. package/node_modules/assert-plus/package.json +0 -83
  378. package/node_modules/asynckit/README.md +0 -233
  379. package/node_modules/asynckit/bench.js +0 -76
  380. package/node_modules/asynckit/index.js +0 -6
  381. package/node_modules/asynckit/lib/abort.js +0 -29
  382. package/node_modules/asynckit/lib/async.js +0 -34
  383. package/node_modules/asynckit/lib/defer.js +0 -26
  384. package/node_modules/asynckit/lib/iterate.js +0 -75
  385. package/node_modules/asynckit/lib/readable_asynckit.js +0 -91
  386. package/node_modules/asynckit/lib/readable_parallel.js +0 -25
  387. package/node_modules/asynckit/lib/readable_serial.js +0 -25
  388. package/node_modules/asynckit/lib/readable_serial_ordered.js +0 -29
  389. package/node_modules/asynckit/lib/state.js +0 -37
  390. package/node_modules/asynckit/lib/streamify.js +0 -141
  391. package/node_modules/asynckit/lib/terminator.js +0 -29
  392. package/node_modules/asynckit/package.json +0 -92
  393. package/node_modules/asynckit/parallel.js +0 -43
  394. package/node_modules/asynckit/serial.js +0 -17
  395. package/node_modules/asynckit/serialOrdered.js +0 -75
  396. package/node_modules/asynckit/stream.js +0 -21
  397. package/node_modules/aws-sign2/LICENSE +0 -55
  398. package/node_modules/aws-sign2/README.md +0 -4
  399. package/node_modules/aws-sign2/index.js +0 -212
  400. package/node_modules/aws-sign2/package.json +0 -51
  401. package/node_modules/aws4/.npmignore +0 -4
  402. package/node_modules/aws4/.tern-port +0 -1
  403. package/node_modules/aws4/.travis.yml +0 -5
  404. package/node_modules/aws4/LICENSE +0 -19
  405. package/node_modules/aws4/README.md +0 -523
  406. package/node_modules/aws4/aws4.js +0 -332
  407. package/node_modules/aws4/lru.js +0 -96
  408. package/node_modules/aws4/package.json +0 -105
  409. package/node_modules/bcrypt-pbkdf/README.md +0 -39
  410. package/node_modules/bcrypt-pbkdf/index.js +0 -556
  411. package/node_modules/bcrypt-pbkdf/package.json +0 -38
  412. package/node_modules/block-stream/LICENCE +0 -25
  413. package/node_modules/block-stream/README.md +0 -14
  414. package/node_modules/block-stream/block-stream.js +0 -209
  415. package/node_modules/block-stream/package.json +0 -61
  416. package/node_modules/boom/.npmignore +0 -18
  417. package/node_modules/boom/.travis.yml +0 -8
  418. package/node_modules/boom/CONTRIBUTING.md +0 -1
  419. package/node_modules/boom/LICENSE +0 -28
  420. package/node_modules/boom/README.md +0 -652
  421. package/node_modules/boom/images/boom.png +0 -0
  422. package/node_modules/boom/lib/index.js +0 -318
  423. package/node_modules/boom/package.json +0 -59
  424. package/node_modules/boom/test/index.js +0 -654
  425. package/node_modules/buffer-shims/index.js +0 -108
  426. package/node_modules/buffer-shims/license.md +0 -19
  427. package/node_modules/buffer-shims/package.json +0 -50
  428. package/node_modules/buffer-shims/readme.md +0 -21
  429. package/node_modules/caseless/LICENSE +0 -28
  430. package/node_modules/caseless/README.md +0 -45
  431. package/node_modules/caseless/index.js +0 -67
  432. package/node_modules/caseless/package.json +0 -57
  433. package/node_modules/caseless/test.js +0 -67
  434. package/node_modules/co/History.md +0 -172
  435. package/node_modules/co/LICENSE +0 -22
  436. package/node_modules/co/Readme.md +0 -212
  437. package/node_modules/co/index.js +0 -237
  438. package/node_modules/co/package.json +0 -67
  439. package/node_modules/combined-stream/License +0 -19
  440. package/node_modules/combined-stream/Readme.md +0 -138
  441. package/node_modules/combined-stream/lib/combined_stream.js +0 -188
  442. package/node_modules/combined-stream/package.json +0 -58
  443. package/node_modules/cryptiles/.npmignore +0 -18
  444. package/node_modules/cryptiles/.travis.yml +0 -8
  445. package/node_modules/cryptiles/LICENSE +0 -28
  446. package/node_modules/cryptiles/README.md +0 -16
  447. package/node_modules/cryptiles/lib/index.js +0 -68
  448. package/node_modules/cryptiles/package.json +0 -60
  449. package/node_modules/cryptiles/test/index.js +0 -102
  450. package/node_modules/dashdash/CHANGES.md +0 -364
  451. package/node_modules/dashdash/LICENSE.txt +0 -24
  452. package/node_modules/dashdash/README.md +0 -574
  453. package/node_modules/dashdash/etc/dashdash.bash_completion.in +0 -389
  454. package/node_modules/dashdash/lib/dashdash.js +0 -1055
  455. package/node_modules/dashdash/node_modules/assert-plus/AUTHORS +0 -6
  456. package/node_modules/dashdash/node_modules/assert-plus/CHANGES.md +0 -14
  457. package/node_modules/dashdash/node_modules/assert-plus/README.md +0 -162
  458. package/node_modules/dashdash/node_modules/assert-plus/assert.js +0 -211
  459. package/node_modules/dashdash/node_modules/assert-plus/package.json +0 -83
  460. package/node_modules/dashdash/package.json +0 -68
  461. package/node_modules/delayed-stream/.npmignore +0 -1
  462. package/node_modules/delayed-stream/Makefile +0 -7
  463. package/node_modules/delayed-stream/Readme.md +0 -141
  464. package/node_modules/delayed-stream/lib/delayed_stream.js +0 -107
  465. package/node_modules/delayed-stream/package.json +0 -63
  466. package/node_modules/ecc-jsbn/.npmignore +0 -15
  467. package/node_modules/ecc-jsbn/LICENSE +0 -21
  468. package/node_modules/ecc-jsbn/README.md +0 -8
  469. package/node_modules/ecc-jsbn/index.js +0 -57
  470. package/node_modules/ecc-jsbn/lib/LICENSE-jsbn +0 -40
  471. package/node_modules/ecc-jsbn/lib/ec.js +0 -561
  472. package/node_modules/ecc-jsbn/lib/sec.js +0 -170
  473. package/node_modules/ecc-jsbn/package.json +0 -66
  474. package/node_modules/ecc-jsbn/test.js +0 -14
  475. package/node_modules/extend/.eslintrc +0 -17
  476. package/node_modules/extend/.jscs.json +0 -175
  477. package/node_modules/extend/.npmignore +0 -1
  478. package/node_modules/extend/.travis.yml +0 -179
  479. package/node_modules/extend/CHANGELOG.md +0 -77
  480. package/node_modules/extend/LICENSE +0 -23
  481. package/node_modules/extend/README.md +0 -81
  482. package/node_modules/extend/component.json +0 -32
  483. package/node_modules/extend/index.js +0 -86
  484. package/node_modules/extend/package.json +0 -76
  485. package/node_modules/extsprintf/.gitmodules +0 -6
  486. package/node_modules/extsprintf/LICENSE +0 -19
  487. package/node_modules/extsprintf/Makefile +0 -23
  488. package/node_modules/extsprintf/Makefile.deps +0 -39
  489. package/node_modules/extsprintf/Makefile.targ +0 -285
  490. package/node_modules/extsprintf/README.md +0 -39
  491. package/node_modules/extsprintf/examples/simple.js +0 -2
  492. package/node_modules/extsprintf/jsl.node.conf +0 -137
  493. package/node_modules/extsprintf/lib/extsprintf.js +0 -166
  494. package/node_modules/extsprintf/package.json +0 -43
  495. package/node_modules/forever-agent/LICENSE +0 -55
  496. package/node_modules/forever-agent/README.md +0 -4
  497. package/node_modules/forever-agent/index.js +0 -138
  498. package/node_modules/forever-agent/package.json +0 -51
  499. package/node_modules/form-data/License +0 -19
  500. package/node_modules/form-data/README.md +0 -217
  501. package/node_modules/form-data/lib/browser.js +0 -2
  502. package/node_modules/form-data/lib/form_data.js +0 -444
  503. package/node_modules/form-data/lib/populate.js +0 -10
  504. package/node_modules/form-data/package.json +0 -99
  505. package/node_modules/fstream/.npmignore +0 -5
  506. package/node_modules/fstream/.travis.yml +0 -9
  507. package/node_modules/fstream/README.md +0 -76
  508. package/node_modules/fstream/examples/filter-pipe.js +0 -134
  509. package/node_modules/fstream/examples/pipe.js +0 -118
  510. package/node_modules/fstream/examples/reader.js +0 -68
  511. package/node_modules/fstream/examples/symlink-write.js +0 -27
  512. package/node_modules/fstream/fstream.js +0 -35
  513. package/node_modules/fstream/lib/abstract.js +0 -85
  514. package/node_modules/fstream/lib/collect.js +0 -70
  515. package/node_modules/fstream/lib/dir-reader.js +0 -252
  516. package/node_modules/fstream/lib/dir-writer.js +0 -174
  517. package/node_modules/fstream/lib/file-reader.js +0 -150
  518. package/node_modules/fstream/lib/file-writer.js +0 -107
  519. package/node_modules/fstream/lib/get-type.js +0 -33
  520. package/node_modules/fstream/lib/link-reader.js +0 -53
  521. package/node_modules/fstream/lib/link-writer.js +0 -95
  522. package/node_modules/fstream/lib/proxy-reader.js +0 -95
  523. package/node_modules/fstream/lib/proxy-writer.js +0 -111
  524. package/node_modules/fstream/lib/reader.js +0 -255
  525. package/node_modules/fstream/lib/socket-reader.js +0 -36
  526. package/node_modules/fstream/lib/writer.js +0 -390
  527. package/node_modules/fstream/package.json +0 -62
  528. package/node_modules/fstream-ignore/README.md +0 -22
  529. package/node_modules/fstream-ignore/ignore.js +0 -275
  530. package/node_modules/fstream-ignore/package.json +0 -62
  531. package/node_modules/getpass/.npmignore +0 -8
  532. package/node_modules/getpass/.travis.yml +0 -9
  533. package/node_modules/getpass/LICENSE +0 -18
  534. package/node_modules/getpass/README.md +0 -32
  535. package/node_modules/getpass/lib/index.js +0 -123
  536. package/node_modules/getpass/node_modules/assert-plus/AUTHORS +0 -6
  537. package/node_modules/getpass/node_modules/assert-plus/CHANGES.md +0 -14
  538. package/node_modules/getpass/node_modules/assert-plus/README.md +0 -162
  539. package/node_modules/getpass/node_modules/assert-plus/assert.js +0 -211
  540. package/node_modules/getpass/node_modules/assert-plus/package.json +0 -83
  541. package/node_modules/getpass/package.json +0 -51
  542. package/node_modules/graceful-fs/LICENSE +0 -15
  543. package/node_modules/graceful-fs/README.md +0 -133
  544. package/node_modules/graceful-fs/fs.js +0 -21
  545. package/node_modules/graceful-fs/graceful-fs.js +0 -262
  546. package/node_modules/graceful-fs/legacy-streams.js +0 -118
  547. package/node_modules/graceful-fs/package.json +0 -77
  548. package/node_modules/graceful-fs/polyfills.js +0 -330
  549. package/node_modules/har-schema/LICENSE +0 -13
  550. package/node_modules/har-schema/README.md +0 -49
  551. package/node_modules/har-schema/lib/afterRequest.json +0 -29
  552. package/node_modules/har-schema/lib/beforeRequest.json +0 -29
  553. package/node_modules/har-schema/lib/browser.json +0 -19
  554. package/node_modules/har-schema/lib/cache.json +0 -20
  555. package/node_modules/har-schema/lib/content.json +0 -28
  556. package/node_modules/har-schema/lib/cookie.json +0 -35
  557. package/node_modules/har-schema/lib/creator.json +0 -19
  558. package/node_modules/har-schema/lib/entry.json +0 -52
  559. package/node_modules/har-schema/lib/har.json +0 -12
  560. package/node_modules/har-schema/lib/header.json +0 -19
  561. package/node_modules/har-schema/lib/index.js +0 -22
  562. package/node_modules/har-schema/lib/log.json +0 -35
  563. package/node_modules/har-schema/lib/page.json +0 -31
  564. package/node_modules/har-schema/lib/pageTimings.json +0 -17
  565. package/node_modules/har-schema/lib/postData.json +0 -42
  566. package/node_modules/har-schema/lib/query.json +0 -19
  567. package/node_modules/har-schema/lib/request.json +0 -56
  568. package/node_modules/har-schema/lib/response.json +0 -53
  569. package/node_modules/har-schema/lib/timings.json +0 -41
  570. package/node_modules/har-schema/package.json +0 -87
  571. package/node_modules/har-validator/LICENSE +0 -13
  572. package/node_modules/har-validator/README.md +0 -75
  573. package/node_modules/har-validator/lib/browser/async.js +0 -96
  574. package/node_modules/har-validator/lib/browser/error.js +0 -15
  575. package/node_modules/har-validator/lib/browser/promise.js +0 -93
  576. package/node_modules/har-validator/lib/node4/async.js +0 -136
  577. package/node_modules/har-validator/lib/node4/error.js +0 -22
  578. package/node_modules/har-validator/lib/node4/promise.js +0 -132
  579. package/node_modules/har-validator/lib/node6/async.js +0 -133
  580. package/node_modules/har-validator/lib/node6/error.js +0 -22
  581. package/node_modules/har-validator/lib/node6/promise.js +0 -130
  582. package/node_modules/har-validator/lib/node7/async.js +0 -133
  583. package/node_modules/har-validator/lib/node7/error.js +0 -22
  584. package/node_modules/har-validator/lib/node7/promise.js +0 -130
  585. package/node_modules/har-validator/package.json +0 -102
  586. package/node_modules/har-validator/src/async.js +0 -96
  587. package/node_modules/har-validator/src/error.js +0 -15
  588. package/node_modules/har-validator/src/promise.js +0 -93
  589. package/node_modules/hawk/.npmignore +0 -20
  590. package/node_modules/hawk/.travis.yml +0 -5
  591. package/node_modules/hawk/LICENSE +0 -28
  592. package/node_modules/hawk/README.md +0 -634
  593. package/node_modules/hawk/bower.json +0 -24
  594. package/node_modules/hawk/component.json +0 -19
  595. package/node_modules/hawk/dist/client.js +0 -343
  596. package/node_modules/hawk/example/usage.js +0 -78
  597. package/node_modules/hawk/images/hawk.png +0 -0
  598. package/node_modules/hawk/images/logo.png +0 -0
  599. package/node_modules/hawk/lib/browser.js +0 -637
  600. package/node_modules/hawk/lib/client.js +0 -369
  601. package/node_modules/hawk/lib/crypto.js +0 -126
  602. package/node_modules/hawk/lib/index.js +0 -15
  603. package/node_modules/hawk/lib/server.js +0 -548
  604. package/node_modules/hawk/lib/utils.js +0 -184
  605. package/node_modules/hawk/package.json +0 -71
  606. package/node_modules/hawk/test/browser.js +0 -1492
  607. package/node_modules/hawk/test/client.js +0 -440
  608. package/node_modules/hawk/test/crypto.js +0 -70
  609. package/node_modules/hawk/test/index.js +0 -378
  610. package/node_modules/hawk/test/readme.js +0 -95
  611. package/node_modules/hawk/test/server.js +0 -1329
  612. package/node_modules/hawk/test/uri.js +0 -838
  613. package/node_modules/hawk/test/utils.js +0 -149
  614. package/node_modules/hoek/.npmignore +0 -18
  615. package/node_modules/hoek/.travis.yml +0 -7
  616. package/node_modules/hoek/CONTRIBUTING.md +0 -1
  617. package/node_modules/hoek/LICENSE +0 -31
  618. package/node_modules/hoek/README.md +0 -584
  619. package/node_modules/hoek/images/hoek.png +0 -0
  620. package/node_modules/hoek/lib/escape.js +0 -132
  621. package/node_modules/hoek/lib/index.js +0 -993
  622. package/node_modules/hoek/package.json +0 -56
  623. package/node_modules/hoek/test/escaper.js +0 -88
  624. package/node_modules/hoek/test/index.js +0 -2513
  625. package/node_modules/hoek/test/modules/ignore.txt +0 -0
  626. package/node_modules/hoek/test/modules/test1.js +0 -1
  627. package/node_modules/hoek/test/modules/test2.js +0 -1
  628. package/node_modules/hoek/test/modules/test3.js +0 -1
  629. package/node_modules/http-signature/.dir-locals.el +0 -6
  630. package/node_modules/http-signature/.npmignore +0 -7
  631. package/node_modules/http-signature/CHANGES.md +0 -46
  632. package/node_modules/http-signature/LICENSE +0 -18
  633. package/node_modules/http-signature/README.md +0 -79
  634. package/node_modules/http-signature/http_signing.md +0 -363
  635. package/node_modules/http-signature/lib/index.js +0 -29
  636. package/node_modules/http-signature/lib/parser.js +0 -318
  637. package/node_modules/http-signature/lib/signer.js +0 -399
  638. package/node_modules/http-signature/lib/utils.js +0 -112
  639. package/node_modules/http-signature/lib/verify.js +0 -88
  640. package/node_modules/http-signature/package.json +0 -78
  641. package/node_modules/is-typedarray/LICENSE.md +0 -18
  642. package/node_modules/is-typedarray/README.md +0 -16
  643. package/node_modules/is-typedarray/index.js +0 -41
  644. package/node_modules/is-typedarray/package.json +0 -60
  645. package/node_modules/is-typedarray/test.js +0 -34
  646. package/node_modules/isstream/.jshintrc +0 -59
  647. package/node_modules/isstream/.npmignore +0 -1
  648. package/node_modules/isstream/.travis.yml +0 -12
  649. package/node_modules/isstream/LICENSE.md +0 -11
  650. package/node_modules/isstream/README.md +0 -66
  651. package/node_modules/isstream/isstream.js +0 -27
  652. package/node_modules/isstream/package.json +0 -62
  653. package/node_modules/isstream/test.js +0 -168
  654. package/node_modules/jodid25519/.npmignore +0 -11
  655. package/node_modules/jodid25519/.travis.yml +0 -7
  656. package/node_modules/jodid25519/AUTHORS.md +0 -3
  657. package/node_modules/jodid25519/LICENSE +0 -23
  658. package/node_modules/jodid25519/README.md +0 -51
  659. package/node_modules/jodid25519/almond.0 +0 -42
  660. package/node_modules/jodid25519/almond.1 +0 -13
  661. package/node_modules/jodid25519/index.js +0 -35
  662. package/node_modules/jodid25519/jsdoc.json +0 -19
  663. package/node_modules/jodid25519/lib/core.js +0 -481
  664. package/node_modules/jodid25519/lib/curve255.js +0 -221
  665. package/node_modules/jodid25519/lib/dh.js +0 -111
  666. package/node_modules/jodid25519/lib/eddsa.js +0 -573
  667. package/node_modules/jodid25519/lib/utils.js +0 -198
  668. package/node_modules/jodid25519/package.json +0 -76
  669. package/node_modules/jsbn/.npmignore +0 -2
  670. package/node_modules/jsbn/LICENSE +0 -40
  671. package/node_modules/jsbn/README.md +0 -175
  672. package/node_modules/jsbn/example.html +0 -12
  673. package/node_modules/jsbn/example.js +0 -3
  674. package/node_modules/jsbn/index.js +0 -1357
  675. package/node_modules/jsbn/package.json +0 -54
  676. package/node_modules/json-schema/README.md +0 -5
  677. package/node_modules/json-schema/draft-00/hyper-schema +0 -68
  678. package/node_modules/json-schema/draft-00/json-ref +0 -26
  679. package/node_modules/json-schema/draft-00/links +0 -33
  680. package/node_modules/json-schema/draft-00/schema +0 -155
  681. package/node_modules/json-schema/draft-01/hyper-schema +0 -68
  682. package/node_modules/json-schema/draft-01/json-ref +0 -26
  683. package/node_modules/json-schema/draft-01/links +0 -33
  684. package/node_modules/json-schema/draft-01/schema +0 -155
  685. package/node_modules/json-schema/draft-02/hyper-schema +0 -68
  686. package/node_modules/json-schema/draft-02/json-ref +0 -26
  687. package/node_modules/json-schema/draft-02/links +0 -35
  688. package/node_modules/json-schema/draft-02/schema +0 -166
  689. package/node_modules/json-schema/draft-03/examples/address +0 -20
  690. package/node_modules/json-schema/draft-03/examples/calendar +0 -53
  691. package/node_modules/json-schema/draft-03/examples/card +0 -105
  692. package/node_modules/json-schema/draft-03/examples/geo +0 -8
  693. package/node_modules/json-schema/draft-03/examples/interfaces +0 -23
  694. package/node_modules/json-schema/draft-03/hyper-schema +0 -60
  695. package/node_modules/json-schema/draft-03/json-ref +0 -26
  696. package/node_modules/json-schema/draft-03/links +0 -35
  697. package/node_modules/json-schema/draft-03/schema +0 -174
  698. package/node_modules/json-schema/draft-04/hyper-schema +0 -60
  699. package/node_modules/json-schema/draft-04/links +0 -41
  700. package/node_modules/json-schema/draft-04/schema +0 -189
  701. package/node_modules/json-schema/draft-zyp-json-schema-03.xml +0 -1120
  702. package/node_modules/json-schema/draft-zyp-json-schema-04.xml +0 -1072
  703. package/node_modules/json-schema/lib/links.js +0 -66
  704. package/node_modules/json-schema/lib/validate.js +0 -273
  705. package/node_modules/json-schema/package.json +0 -72
  706. package/node_modules/json-schema/test/tests.js +0 -95
  707. package/node_modules/json-stable-stringify/.npmignore +0 -1
  708. package/node_modules/json-stable-stringify/.travis.yml +0 -4
  709. package/node_modules/json-stable-stringify/LICENSE +0 -18
  710. package/node_modules/json-stable-stringify/example/key_cmp.js +0 -7
  711. package/node_modules/json-stable-stringify/example/nested.js +0 -3
  712. package/node_modules/json-stable-stringify/example/str.js +0 -3
  713. package/node_modules/json-stable-stringify/example/value_cmp.js +0 -7
  714. package/node_modules/json-stable-stringify/index.js +0 -84
  715. package/node_modules/json-stable-stringify/package.json +0 -75
  716. package/node_modules/json-stable-stringify/readme.markdown +0 -130
  717. package/node_modules/json-stable-stringify/test/cmp.js +0 -11
  718. package/node_modules/json-stable-stringify/test/nested.js +0 -35
  719. package/node_modules/json-stable-stringify/test/replacer.js +0 -74
  720. package/node_modules/json-stable-stringify/test/space.js +0 -59
  721. package/node_modules/json-stable-stringify/test/str.js +0 -32
  722. package/node_modules/json-stable-stringify/test/to-json.js +0 -20
  723. package/node_modules/json-stringify-safe/.npmignore +0 -1
  724. package/node_modules/json-stringify-safe/CHANGELOG.md +0 -14
  725. package/node_modules/json-stringify-safe/Makefile +0 -35
  726. package/node_modules/json-stringify-safe/README.md +0 -52
  727. package/node_modules/json-stringify-safe/package.json +0 -67
  728. package/node_modules/json-stringify-safe/stringify.js +0 -27
  729. package/node_modules/json-stringify-safe/test/mocha.opts +0 -2
  730. package/node_modules/json-stringify-safe/test/stringify_test.js +0 -246
  731. package/node_modules/jsonify/README.markdown +0 -34
  732. package/node_modules/jsonify/index.js +0 -2
  733. package/node_modules/jsonify/lib/parse.js +0 -273
  734. package/node_modules/jsonify/lib/stringify.js +0 -154
  735. package/node_modules/jsonify/package.json +0 -60
  736. package/node_modules/jsonify/test/parse.js +0 -16
  737. package/node_modules/jsonify/test/stringify.js +0 -15
  738. package/node_modules/jsprim/CHANGES.md +0 -43
  739. package/node_modules/jsprim/LICENSE +0 -19
  740. package/node_modules/jsprim/README.md +0 -292
  741. package/node_modules/jsprim/lib/jsprim.js +0 -735
  742. package/node_modules/jsprim/node_modules/assert-plus/AUTHORS +0 -6
  743. package/node_modules/jsprim/node_modules/assert-plus/CHANGES.md +0 -14
  744. package/node_modules/jsprim/node_modules/assert-plus/README.md +0 -162
  745. package/node_modules/jsprim/node_modules/assert-plus/assert.js +0 -211
  746. package/node_modules/jsprim/node_modules/assert-plus/package.json +0 -83
  747. package/node_modules/jsprim/package.json +0 -50
  748. package/node_modules/mime-db/HISTORY.md +0 -412
  749. package/node_modules/mime-db/LICENSE +0 -22
  750. package/node_modules/mime-db/README.md +0 -82
  751. package/node_modules/mime-db/db.json +0 -6805
  752. package/node_modules/mime-db/index.js +0 -11
  753. package/node_modules/mime-db/package.json +0 -99
  754. package/node_modules/mime-types/HISTORY.md +0 -223
  755. package/node_modules/mime-types/LICENSE +0 -23
  756. package/node_modules/mime-types/README.md +0 -108
  757. package/node_modules/mime-types/index.js +0 -188
  758. package/node_modules/mime-types/package.json +0 -85
  759. package/node_modules/oauth-sign/LICENSE +0 -55
  760. package/node_modules/oauth-sign/README.md +0 -4
  761. package/node_modules/oauth-sign/index.js +0 -136
  762. package/node_modules/oauth-sign/package.json +0 -57
  763. package/node_modules/osenv/.npmignore +0 -13
  764. package/node_modules/osenv/.travis.yml +0 -9
  765. package/node_modules/osenv/test/unix.js +0 -71
  766. package/node_modules/osenv/test/windows.js +0 -74
  767. package/node_modules/osenv/x.tap +0 -39
  768. package/node_modules/performance-now/.npmignore +0 -1
  769. package/node_modules/performance-now/.tm_properties +0 -7
  770. package/node_modules/performance-now/.travis.yml +0 -4
  771. package/node_modules/performance-now/Makefile +0 -25
  772. package/node_modules/performance-now/README.md +0 -30
  773. package/node_modules/performance-now/lib/performance-now.js +0 -32
  774. package/node_modules/performance-now/license.txt +0 -7
  775. package/node_modules/performance-now/package.json +0 -58
  776. package/node_modules/performance-now/src/performance-now.coffee +0 -15
  777. package/node_modules/performance-now/test/mocha.opts +0 -3
  778. package/node_modules/performance-now/test/performance-now.coffee +0 -38
  779. package/node_modules/process-nextick-args/.travis.yml +0 -12
  780. package/node_modules/process-nextick-args/test.js +0 -24
  781. package/node_modules/punycode/README.md +0 -176
  782. package/node_modules/punycode/package.json +0 -92
  783. package/node_modules/punycode/punycode.js +0 -533
  784. package/node_modules/qs/.eslintignore +0 -1
  785. package/node_modules/qs/.eslintrc +0 -18
  786. package/node_modules/qs/.jscs.json +0 -176
  787. package/node_modules/qs/CHANGELOG.md +0 -175
  788. package/node_modules/qs/LICENSE +0 -28
  789. package/node_modules/qs/README.md +0 -440
  790. package/node_modules/qs/dist/qs.js +0 -597
  791. package/node_modules/qs/lib/formats.js +0 -18
  792. package/node_modules/qs/lib/index.js +0 -11
  793. package/node_modules/qs/lib/parse.js +0 -167
  794. package/node_modules/qs/lib/stringify.js +0 -207
  795. package/node_modules/qs/lib/utils.js +0 -182
  796. package/node_modules/qs/package.json +0 -79
  797. package/node_modules/qs/test/.eslintrc +0 -11
  798. package/node_modules/qs/test/index.js +0 -7
  799. package/node_modules/qs/test/parse.js +0 -519
  800. package/node_modules/qs/test/stringify.js +0 -567
  801. package/node_modules/qs/test/utils.js +0 -22
  802. package/node_modules/rc/.npmignore +0 -3
  803. package/node_modules/readable-stream/.npmignore +0 -9
  804. package/node_modules/request/CHANGELOG.md +0 -674
  805. package/node_modules/request/LICENSE +0 -55
  806. package/node_modules/request/README.md +0 -1115
  807. package/node_modules/request/index.js +0 -156
  808. package/node_modules/request/lib/auth.js +0 -168
  809. package/node_modules/request/lib/cookies.js +0 -39
  810. package/node_modules/request/lib/getProxyFromURI.js +0 -79
  811. package/node_modules/request/lib/har.js +0 -215
  812. package/node_modules/request/lib/helpers.js +0 -66
  813. package/node_modules/request/lib/multipart.js +0 -113
  814. package/node_modules/request/lib/oauth.js +0 -148
  815. package/node_modules/request/lib/querystring.js +0 -51
  816. package/node_modules/request/lib/redirect.js +0 -157
  817. package/node_modules/request/lib/tunnel.js +0 -176
  818. package/node_modules/request/package.json +0 -119
  819. package/node_modules/request/request.js +0 -1565
  820. package/node_modules/safe-buffer/browser.js +0 -1
  821. package/node_modules/sntp/.npmignore +0 -18
  822. package/node_modules/sntp/.travis.yml +0 -5
  823. package/node_modules/sntp/LICENSE +0 -28
  824. package/node_modules/sntp/Makefile +0 -9
  825. package/node_modules/sntp/README.md +0 -68
  826. package/node_modules/sntp/examples/offset.js +0 -16
  827. package/node_modules/sntp/examples/time.js +0 -25
  828. package/node_modules/sntp/index.js +0 -1
  829. package/node_modules/sntp/lib/index.js +0 -412
  830. package/node_modules/sntp/package.json +0 -69
  831. package/node_modules/sntp/test/index.js +0 -435
  832. package/node_modules/sshpk/.npmignore +0 -9
  833. package/node_modules/sshpk/.travis.yml +0 -11
  834. package/node_modules/sshpk/LICENSE +0 -18
  835. package/node_modules/sshpk/README.md +0 -698
  836. package/node_modules/sshpk/bin/sshpk-conv +0 -201
  837. package/node_modules/sshpk/bin/sshpk-sign +0 -191
  838. package/node_modules/sshpk/bin/sshpk-verify +0 -166
  839. package/node_modules/sshpk/lib/algs.js +0 -168
  840. package/node_modules/sshpk/lib/certificate.js +0 -377
  841. package/node_modules/sshpk/lib/dhe.js +0 -410
  842. package/node_modules/sshpk/lib/ed-compat.js +0 -96
  843. package/node_modules/sshpk/lib/errors.js +0 -84
  844. package/node_modules/sshpk/lib/fingerprint.js +0 -161
  845. package/node_modules/sshpk/lib/formats/auto.js +0 -73
  846. package/node_modules/sshpk/lib/formats/openssh-cert.js +0 -322
  847. package/node_modules/sshpk/lib/formats/pem.js +0 -186
  848. package/node_modules/sshpk/lib/formats/pkcs1.js +0 -320
  849. package/node_modules/sshpk/lib/formats/pkcs8.js +0 -505
  850. package/node_modules/sshpk/lib/formats/rfc4253.js +0 -146
  851. package/node_modules/sshpk/lib/formats/ssh-private.js +0 -261
  852. package/node_modules/sshpk/lib/formats/ssh.js +0 -114
  853. package/node_modules/sshpk/lib/formats/x509-pem.js +0 -77
  854. package/node_modules/sshpk/lib/formats/x509.js +0 -726
  855. package/node_modules/sshpk/lib/identity.js +0 -277
  856. package/node_modules/sshpk/lib/index.js +0 -39
  857. package/node_modules/sshpk/lib/key.js +0 -274
  858. package/node_modules/sshpk/lib/private-key.js +0 -255
  859. package/node_modules/sshpk/lib/signature.js +0 -313
  860. package/node_modules/sshpk/lib/ssh-buffer.js +0 -148
  861. package/node_modules/sshpk/lib/utils.js +0 -288
  862. package/node_modules/sshpk/man/man1/sshpk-conv.1 +0 -135
  863. package/node_modules/sshpk/man/man1/sshpk-sign.1 +0 -81
  864. package/node_modules/sshpk/man/man1/sshpk-verify.1 +0 -68
  865. package/node_modules/sshpk/node_modules/assert-plus/AUTHORS +0 -6
  866. package/node_modules/sshpk/node_modules/assert-plus/CHANGES.md +0 -14
  867. package/node_modules/sshpk/node_modules/assert-plus/README.md +0 -162
  868. package/node_modules/sshpk/node_modules/assert-plus/assert.js +0 -211
  869. package/node_modules/sshpk/node_modules/assert-plus/package.json +0 -83
  870. package/node_modules/sshpk/package.json +0 -103
  871. package/node_modules/string_decoder/.npmignore +0 -2
  872. package/node_modules/stringstream/.npmignore +0 -15
  873. package/node_modules/stringstream/.travis.yml +0 -4
  874. package/node_modules/stringstream/LICENSE.txt +0 -22
  875. package/node_modules/stringstream/README.md +0 -38
  876. package/node_modules/stringstream/example.js +0 -27
  877. package/node_modules/stringstream/package.json +0 -52
  878. package/node_modules/stringstream/stringstream.js +0 -102
  879. package/node_modules/tar/.npmignore +0 -5
  880. package/node_modules/tar/.travis.yml +0 -4
  881. package/node_modules/tar/examples/extracter.js +0 -19
  882. package/node_modules/tar/examples/packer.js +0 -24
  883. package/node_modules/tar/examples/reader.js +0 -36
  884. package/node_modules/tar/lib/buffer-entry.js +0 -30
  885. package/node_modules/tar/lib/entry-writer.js +0 -169
  886. package/node_modules/tar/lib/entry.js +0 -220
  887. package/node_modules/tar/lib/extended-header-writer.js +0 -191
  888. package/node_modules/tar/lib/extended-header.js +0 -140
  889. package/node_modules/tar/lib/global-header-writer.js +0 -14
  890. package/node_modules/tar/tar.js +0 -173
  891. package/node_modules/tar/test/00-setup-fixtures.js +0 -53
  892. package/node_modules/tar/test/cb-never-called-1.0.1.tgz +0 -0
  893. package/node_modules/tar/test/dir-normalization.js +0 -177
  894. package/node_modules/tar/test/dir-normalization.tar +0 -0
  895. package/node_modules/tar/test/error-on-broken.js +0 -33
  896. package/node_modules/tar/test/extract-move.js +0 -132
  897. package/node_modules/tar/test/extract.js +0 -367
  898. package/node_modules/tar/test/fixtures.tgz +0 -0
  899. package/node_modules/tar/test/header.js +0 -183
  900. package/node_modules/tar/test/pack-no-proprietary.js +0 -886
  901. package/node_modules/tar/test/pack.js +0 -952
  902. package/node_modules/tar/test/parse-discard.js +0 -29
  903. package/node_modules/tar/test/parse.js +0 -359
  904. package/node_modules/tar/test/zz-cleanup.js +0 -20
  905. package/node_modules/tar-pack/.npmignore +0 -14
  906. package/node_modules/tar-pack/.travis.yml +0 -7
  907. package/node_modules/tar-pack/LICENSE +0 -23
  908. package/node_modules/tar-pack/README.md +0 -84
  909. package/node_modules/tar-pack/index.js +0 -245
  910. package/node_modules/tar-pack/package.json +0 -58
  911. package/node_modules/tar-pack/test/fixtures/packed-file.txt +0 -1
  912. package/node_modules/tar-pack/test/fixtures/packed.tar +0 -0
  913. package/node_modules/tar-pack/test/fixtures/packed.tar.gz +0 -0
  914. package/node_modules/tar-pack/test/fixtures/to-pack/bar.txt +0 -1
  915. package/node_modules/tar-pack/test/fixtures/to-pack/foo.txt +0 -1
  916. package/node_modules/tar-pack/test/index.js +0 -109
  917. package/node_modules/tough-cookie/LICENSE +0 -27
  918. package/node_modules/tough-cookie/README.md +0 -506
  919. package/node_modules/tough-cookie/lib/cookie.js +0 -1336
  920. package/node_modules/tough-cookie/lib/memstore.js +0 -170
  921. package/node_modules/tough-cookie/lib/pathMatch.js +0 -61
  922. package/node_modules/tough-cookie/lib/permuteDomain.js +0 -56
  923. package/node_modules/tough-cookie/lib/pubsuffix.js +0 -98
  924. package/node_modules/tough-cookie/lib/store.js +0 -71
  925. package/node_modules/tough-cookie/package.json +0 -93
  926. package/node_modules/tunnel-agent/LICENSE +0 -55
  927. package/node_modules/tunnel-agent/README.md +0 -4
  928. package/node_modules/tunnel-agent/index.js +0 -244
  929. package/node_modules/tunnel-agent/package.json +0 -56
  930. package/node_modules/tweetnacl/.npmignore +0 -4
  931. package/node_modules/tweetnacl/AUTHORS.md +0 -28
  932. package/node_modules/tweetnacl/CHANGELOG.md +0 -221
  933. package/node_modules/tweetnacl/LICENSE +0 -24
  934. package/node_modules/tweetnacl/PULL_REQUEST_TEMPLATE.md +0 -20
  935. package/node_modules/tweetnacl/README.md +0 -459
  936. package/node_modules/tweetnacl/nacl-fast.js +0 -2388
  937. package/node_modules/tweetnacl/nacl-fast.min.js +0 -2
  938. package/node_modules/tweetnacl/nacl.d.ts +0 -98
  939. package/node_modules/tweetnacl/nacl.js +0 -1175
  940. package/node_modules/tweetnacl/nacl.min.js +0 -1
  941. package/node_modules/tweetnacl/package.json +0 -87
  942. package/node_modules/uid-number/LICENSE +0 -15
  943. package/node_modules/uid-number/README.md +0 -17
  944. package/node_modules/uid-number/get-uid-gid.js +0 -24
  945. package/node_modules/uid-number/package.json +0 -52
  946. package/node_modules/uid-number/uid-number.js +0 -59
  947. package/node_modules/uuid/.npmignore +0 -8
  948. package/node_modules/uuid/.travis.yml +0 -5
  949. package/node_modules/uuid/AUTHORS +0 -5
  950. package/node_modules/uuid/HISTORY.md +0 -28
  951. package/node_modules/uuid/LICENSE.md +0 -21
  952. package/node_modules/uuid/README.md +0 -132
  953. package/node_modules/uuid/bin/uuid +0 -26
  954. package/node_modules/uuid/index.js +0 -8
  955. package/node_modules/uuid/lib/bytesToUuid.js +0 -23
  956. package/node_modules/uuid/lib/rng-browser.js +0 -33
  957. package/node_modules/uuid/lib/rng.js +0 -10
  958. package/node_modules/uuid/package.json +0 -79
  959. package/node_modules/uuid/test/mocha.opts +0 -3
  960. package/node_modules/uuid/test/test.js +0 -96
  961. package/node_modules/uuid/v1.js +0 -103
  962. package/node_modules/uuid/v4.js +0 -29
  963. package/node_modules/verror/.gitmodules +0 -0
  964. package/node_modules/verror/.npmignore +0 -1
  965. package/node_modules/verror/LICENSE +0 -19
  966. package/node_modules/verror/Makefile +0 -35
  967. package/node_modules/verror/Makefile.targ +0 -285
  968. package/node_modules/verror/README.md +0 -120
  969. package/node_modules/verror/examples/levels-verror.js +0 -36
  970. package/node_modules/verror/examples/levels-werror.js +0 -34
  971. package/node_modules/verror/examples/varargs.js +0 -6
  972. package/node_modules/verror/examples/verror.js +0 -13
  973. package/node_modules/verror/examples/werror.js +0 -14
  974. package/node_modules/verror/jsl.node.conf +0 -139
  975. package/node_modules/verror/lib/verror.js +0 -157
  976. package/node_modules/verror/package.json +0 -49
  977. package/node_modules/verror/tests/tst.inherit.js +0 -100
  978. package/node_modules/verror/tests/tst.verror.js +0 -156
  979. package/node_modules/verror/tests/tst.werror.js +0 -179
@@ -1,674 +0,0 @@
1
- ## Change Log
2
-
3
- ### v2.81.0 (2017/03/09)
4
- - [#2584](https://github.com/request/request/pull/2584) Security issue: Upgrade qs to version 6.4.0 (@sergejmueller)
5
- - [#2574](https://github.com/request/request/pull/2574) Migrating to safe-buffer for improved security. (@mikeal)
6
- - [#2573](https://github.com/request/request/pull/2573) fixes #2572 (@ahmadnassri)
7
-
8
- ### v2.80.0 (2017/03/04)
9
- - [#2571](https://github.com/request/request/pull/2571) Correctly format the Host header for IPv6 addresses (@JamesMGreene)
10
- - [#2558](https://github.com/request/request/pull/2558) Update README.md example snippet (@FredKSchott)
11
- - [#2221](https://github.com/request/request/pull/2221) Adding a simple Response object reference in argument specification (@calamarico)
12
- - [#2452](https://github.com/request/request/pull/2452) Adds .timings array with DNC, TCP, request and response times (@nicjansma)
13
- - [#2553](https://github.com/request/request/pull/2553) add ISSUE_TEMPLATE, move PR template (@FredKSchott)
14
- - [#2539](https://github.com/request/request/pull/2539) Create PULL_REQUEST_TEMPLATE.md (@FredKSchott)
15
- - [#2524](https://github.com/request/request/pull/2524) Update caseless to version 0.12.0 🚀 (@greenkeeperio-bot)
16
- - [#2460](https://github.com/request/request/pull/2460) Fix wrong MIME type in example (@OwnageIsMagic)
17
- - [#2514](https://github.com/request/request/pull/2514) Change tags to keywords in package.json (@humphd)
18
- - [#2492](https://github.com/request/request/pull/2492) More lenient gzip decompression (@addaleax)
19
-
20
- ### v2.79.0 (2016/11/18)
21
- - [#2368](https://github.com/request/request/pull/2368) Fix typeof check in test-pool.js (@forivall)
22
- - [#2394](https://github.com/request/request/pull/2394) Use `files` in package.json (@SimenB)
23
- - [#2463](https://github.com/request/request/pull/2463) AWS support for session tokens for temporary credentials (@simov)
24
- - [#2467](https://github.com/request/request/pull/2467) Migrate to uuid (@simov, @antialias)
25
- - [#2459](https://github.com/request/request/pull/2459) Update taper to version 0.5.0 🚀 (@greenkeeperio-bot)
26
- - [#2448](https://github.com/request/request/pull/2448) Make other connect timeout test more reliable too (@mscdex)
27
-
28
- ### v2.78.0 (2016/11/03)
29
- - [#2447](https://github.com/request/request/pull/2447) Always set request timeout on keep-alive connections (@mscdex)
30
-
31
- ### v2.77.0 (2016/11/03)
32
- - [#2439](https://github.com/request/request/pull/2439) Fix socket 'connect' listener handling (@mscdex)
33
- - [#2442](https://github.com/request/request/pull/2442) 👻😱 Node.js 0.10 is unmaintained 😱👻 (@greenkeeperio-bot)
34
- - [#2435](https://github.com/request/request/pull/2435) Add followOriginalHttpMethod to redirect to original HTTP method (@kirrg001)
35
- - [#2414](https://github.com/request/request/pull/2414) Improve test-timeout reliability (@mscdex)
36
-
37
- ### v2.76.0 (2016/10/25)
38
- - [#2424](https://github.com/request/request/pull/2424) Handle buffers directly instead of using "bl" (@zertosh)
39
- - [#2415](https://github.com/request/request/pull/2415) Re-enable timeout tests on Travis + other fixes (@mscdex)
40
- - [#2431](https://github.com/request/request/pull/2431) Improve timeouts accuracy and node v6.8.0+ compatibility (@mscdex, @greenkeeperio-bot)
41
- - [#2428](https://github.com/request/request/pull/2428) Update qs to version 6.3.0 🚀 (@greenkeeperio-bot)
42
- - [#2420](https://github.com/request/request/pull/2420) change .on to .once, remove possible memory leaks (@duereg)
43
- - [#2426](https://github.com/request/request/pull/2426) Remove "isFunction" helper in favor of "typeof" check (@zertosh)
44
- - [#2425](https://github.com/request/request/pull/2425) Simplify "defer" helper creation (@zertosh)
45
- - [#2402](https://github.com/request/request/pull/2402) form-data@2.1.1 breaks build 🚨 (@greenkeeperio-bot)
46
- - [#2393](https://github.com/request/request/pull/2393) Update form-data to version 2.1.0 🚀 (@greenkeeperio-bot)
47
-
48
- ### v2.75.0 (2016/09/17)
49
- - [#2381](https://github.com/request/request/pull/2381) Drop support for Node 0.10 (@simov)
50
- - [#2377](https://github.com/request/request/pull/2377) Update form-data to version 2.0.0 🚀 (@greenkeeperio-bot)
51
- - [#2353](https://github.com/request/request/pull/2353) Add greenkeeper ignored packages (@simov)
52
- - [#2351](https://github.com/request/request/pull/2351) Update karma-tap to version 3.0.1 🚀 (@greenkeeperio-bot)
53
- - [#2348](https://github.com/request/request/pull/2348) form-data@1.0.1 breaks build 🚨 (@greenkeeperio-bot)
54
- - [#2349](https://github.com/request/request/pull/2349) Check error type instead of string (@scotttrinh)
55
-
56
- ### v2.74.0 (2016/07/22)
57
- - [#2295](https://github.com/request/request/pull/2295) Update tough-cookie to 2.3.0 (@stash-sfdc)
58
- - [#2280](https://github.com/request/request/pull/2280) Update karma-tap to version 2.0.1 🚀 (@greenkeeperio-bot)
59
-
60
- ### v2.73.0 (2016/07/09)
61
- - [#2240](https://github.com/request/request/pull/2240) Remove connectionErrorHandler to fix #1903 (@zarenner)
62
- - [#2251](https://github.com/request/request/pull/2251) tape@4.6.0 breaks build 🚨 (@greenkeeperio-bot)
63
- - [#2225](https://github.com/request/request/pull/2225) Update docs (@ArtskydJ)
64
- - [#2203](https://github.com/request/request/pull/2203) Update browserify to version 13.0.1 🚀 (@greenkeeperio-bot)
65
- - [#2275](https://github.com/request/request/pull/2275) Update karma to version 1.1.1 🚀 (@greenkeeperio-bot)
66
- - [#2204](https://github.com/request/request/pull/2204) Add codecov.yml and disable PR comments (@simov)
67
- - [#2212](https://github.com/request/request/pull/2212) Fix link to http.IncomingMessage documentation (@nazieb)
68
- - [#2208](https://github.com/request/request/pull/2208) Update to form-data RC4 and pass null values to it (@simov)
69
- - [#2207](https://github.com/request/request/pull/2207) Move aws4 require statement to the top (@simov)
70
- - [#2199](https://github.com/request/request/pull/2199) Update karma-coverage to version 1.0.0 🚀 (@greenkeeperio-bot)
71
- - [#2206](https://github.com/request/request/pull/2206) Update qs to version 6.2.0 🚀 (@greenkeeperio-bot)
72
- - [#2205](https://github.com/request/request/pull/2205) Use server-destory to close hanging sockets in tests (@simov)
73
- - [#2200](https://github.com/request/request/pull/2200) Update karma-cli to version 1.0.0 🚀 (@greenkeeperio-bot)
74
-
75
- ### v2.72.0 (2016/04/17)
76
- - [#2176](https://github.com/request/request/pull/2176) Do not try to pipe Gzip responses with no body (@simov)
77
- - [#2175](https://github.com/request/request/pull/2175) Add 'delete' alias for the 'del' API method (@simov, @MuhanZou)
78
- - [#2172](https://github.com/request/request/pull/2172) Add support for deflate content encoding (@czardoz)
79
- - [#2169](https://github.com/request/request/pull/2169) Add callback option (@simov)
80
- - [#2165](https://github.com/request/request/pull/2165) Check for self.req existence inside the write method (@simov)
81
- - [#2167](https://github.com/request/request/pull/2167) Fix TravisCI badge reference master branch (@a0viedo)
82
-
83
- ### v2.71.0 (2016/04/12)
84
- - [#2164](https://github.com/request/request/pull/2164) Catch errors from the underlying http module (@simov)
85
-
86
- ### v2.70.0 (2016/04/05)
87
- - [#2147](https://github.com/request/request/pull/2147) Update eslint to version 2.5.3 🚀 (@simov, @greenkeeperio-bot)
88
- - [#2009](https://github.com/request/request/pull/2009) Support JSON stringify replacer argument. (@elyobo)
89
- - [#2142](https://github.com/request/request/pull/2142) Update eslint to version 2.5.1 🚀 (@greenkeeperio-bot)
90
- - [#2128](https://github.com/request/request/pull/2128) Update browserify-istanbul to version 2.0.0 🚀 (@greenkeeperio-bot)
91
- - [#2115](https://github.com/request/request/pull/2115) Update eslint to version 2.3.0 🚀 (@simov, @greenkeeperio-bot)
92
- - [#2089](https://github.com/request/request/pull/2089) Fix badges (@simov)
93
- - [#2092](https://github.com/request/request/pull/2092) Update browserify-istanbul to version 1.0.0 🚀 (@greenkeeperio-bot)
94
- - [#2079](https://github.com/request/request/pull/2079) Accept read stream as body option (@simov)
95
- - [#2070](https://github.com/request/request/pull/2070) Update bl to version 1.1.2 🚀 (@greenkeeperio-bot)
96
- - [#2063](https://github.com/request/request/pull/2063) Up bluebird and oauth-sign (@simov)
97
- - [#2058](https://github.com/request/request/pull/2058) Karma fixes for latest versions (@eiriksm)
98
- - [#2057](https://github.com/request/request/pull/2057) Update contributing guidelines (@simov)
99
- - [#2054](https://github.com/request/request/pull/2054) Update qs to version 6.1.0 🚀 (@greenkeeperio-bot)
100
-
101
- ### v2.69.0 (2016/01/27)
102
- - [#2041](https://github.com/request/request/pull/2041) restore aws4 as regular dependency (@rmg)
103
-
104
- ### v2.68.0 (2016/01/27)
105
- - [#2036](https://github.com/request/request/pull/2036) Add AWS Signature Version 4 (@simov, @mirkods)
106
- - [#2022](https://github.com/request/request/pull/2022) Convert numeric multipart bodies to string (@simov, @feross)
107
- - [#2024](https://github.com/request/request/pull/2024) Update har-validator dependency for nsp advisory #76 (@TylerDixon)
108
- - [#2016](https://github.com/request/request/pull/2016) Update qs to version 6.0.2 🚀 (@greenkeeperio-bot)
109
- - [#2007](https://github.com/request/request/pull/2007) Use the `extend` module instead of util._extend (@simov)
110
- - [#2003](https://github.com/request/request/pull/2003) Update browserify to version 13.0.0 🚀 (@greenkeeperio-bot)
111
- - [#1989](https://github.com/request/request/pull/1989) Update buffer-equal to version 1.0.0 🚀 (@greenkeeperio-bot)
112
- - [#1956](https://github.com/request/request/pull/1956) Check form-data content-length value before setting up the header (@jongyoonlee)
113
- - [#1958](https://github.com/request/request/pull/1958) Use IncomingMessage.destroy method (@simov)
114
- - [#1952](https://github.com/request/request/pull/1952) Adds example for Tor proxy (@prometheansacrifice)
115
- - [#1943](https://github.com/request/request/pull/1943) Update eslint to version 1.10.3 🚀 (@simov, @greenkeeperio-bot)
116
- - [#1924](https://github.com/request/request/pull/1924) Update eslint to version 1.10.1 🚀 (@greenkeeperio-bot)
117
- - [#1915](https://github.com/request/request/pull/1915) Remove content-length and transfer-encoding headers from defaultProxyHeaderWhiteList (@yaxia)
118
-
119
- ### v2.67.0 (2015/11/19)
120
- - [#1913](https://github.com/request/request/pull/1913) Update http-signature to version 1.1.0 🚀 (@greenkeeperio-bot)
121
-
122
- ### v2.66.0 (2015/11/18)
123
- - [#1906](https://github.com/request/request/pull/1906) Update README URLs based on HTTP redirects (@ReadmeCritic)
124
- - [#1905](https://github.com/request/request/pull/1905) Convert typed arrays into regular buffers (@simov)
125
- - [#1902](https://github.com/request/request/pull/1902) node-uuid@1.4.7 breaks build 🚨 (@greenkeeperio-bot)
126
- - [#1894](https://github.com/request/request/pull/1894) Fix tunneling after redirection from https (Original: #1881) (@simov, @falms)
127
- - [#1893](https://github.com/request/request/pull/1893) Update eslint to version 1.9.0 🚀 (@greenkeeperio-bot)
128
- - [#1852](https://github.com/request/request/pull/1852) Update eslint to version 1.7.3 🚀 (@simov, @greenkeeperio-bot, @paulomcnally, @michelsalib, @arbaaz, @nsklkn, @LoicMahieu, @JoshWillik, @jzaefferer, @ryanwholey, @djchie, @thisconnect, @mgenereu, @acroca, @Sebmaster, @KoltesDigital)
129
- - [#1876](https://github.com/request/request/pull/1876) Implement loose matching for har mime types (@simov)
130
- - [#1875](https://github.com/request/request/pull/1875) Update bluebird to version 3.0.2 🚀 (@simov, @greenkeeperio-bot)
131
- - [#1871](https://github.com/request/request/pull/1871) Update browserify to version 12.0.1 🚀 (@greenkeeperio-bot)
132
- - [#1866](https://github.com/request/request/pull/1866) Add missing quotes on x-token property in README (@miguelmota)
133
- - [#1874](https://github.com/request/request/pull/1874) Fix typo in README.md (@gswalden)
134
- - [#1860](https://github.com/request/request/pull/1860) Improve referer header tests and docs (@simov)
135
- - [#1861](https://github.com/request/request/pull/1861) Remove redundant call to Stream constructor (@watson)
136
- - [#1857](https://github.com/request/request/pull/1857) Fix Referer header to point to the original host name (@simov)
137
- - [#1850](https://github.com/request/request/pull/1850) Update karma-coverage to version 0.5.3 🚀 (@greenkeeperio-bot)
138
- - [#1847](https://github.com/request/request/pull/1847) Use node's latest version when building (@simov)
139
- - [#1836](https://github.com/request/request/pull/1836) Tunnel: fix wrong property name (@KoltesDigital)
140
- - [#1820](https://github.com/request/request/pull/1820) Set href as request.js uses it (@mgenereu)
141
- - [#1840](https://github.com/request/request/pull/1840) Update http-signature to version 1.0.2 🚀 (@greenkeeperio-bot)
142
- - [#1845](https://github.com/request/request/pull/1845) Update istanbul to version 0.4.0 🚀 (@greenkeeperio-bot)
143
-
144
- ### v2.65.0 (2015/10/11)
145
- - [#1833](https://github.com/request/request/pull/1833) Update aws-sign2 to version 0.6.0 🚀 (@greenkeeperio-bot)
146
- - [#1811](https://github.com/request/request/pull/1811) Enable loose cookie parsing in tough-cookie (@Sebmaster)
147
- - [#1830](https://github.com/request/request/pull/1830) Bring back tilde ranges for all dependencies (@simov)
148
- - [#1821](https://github.com/request/request/pull/1821) Implement support for RFC 2617 MD5-sess algorithm. (@BigDSK)
149
- - [#1828](https://github.com/request/request/pull/1828) Updated qs dependency to 5.2.0 (@acroca)
150
- - [#1818](https://github.com/request/request/pull/1818) Extract `readResponseBody` method out of `onRequestResponse` (@pvoisin)
151
- - [#1819](https://github.com/request/request/pull/1819) Run stringify once (@mgenereu)
152
- - [#1814](https://github.com/request/request/pull/1814) Updated har-validator to version 2.0.2 (@greenkeeperio-bot)
153
- - [#1807](https://github.com/request/request/pull/1807) Updated tough-cookie to version 2.1.0 (@greenkeeperio-bot)
154
- - [#1800](https://github.com/request/request/pull/1800) Add caret ranges for devDependencies, except eslint (@simov)
155
- - [#1799](https://github.com/request/request/pull/1799) Updated karma-browserify to version 4.4.0 (@greenkeeperio-bot)
156
- - [#1797](https://github.com/request/request/pull/1797) Updated tape to version 4.2.0 (@greenkeeperio-bot)
157
- - [#1788](https://github.com/request/request/pull/1788) Pinned all dependencies (@greenkeeperio-bot)
158
-
159
- ### v2.64.0 (2015/09/25)
160
- - [#1787](https://github.com/request/request/pull/1787) npm ignore examples, release.sh and disabled.appveyor.yml (@thisconnect)
161
- - [#1775](https://github.com/request/request/pull/1775) Fix typo in README.md (@djchie)
162
- - [#1776](https://github.com/request/request/pull/1776) Changed word 'conjuction' to read 'conjunction' in README.md (@ryanwholey)
163
- - [#1785](https://github.com/request/request/pull/1785) Revert: Set default application/json content-type when using json option #1772 (@simov)
164
-
165
- ### v2.63.0 (2015/09/21)
166
- - [#1772](https://github.com/request/request/pull/1772) Set default application/json content-type when using json option (@jzaefferer)
167
-
168
- ### v2.62.0 (2015/09/15)
169
- - [#1768](https://github.com/request/request/pull/1768) Add node 4.0 to the list of build targets (@simov)
170
- - [#1767](https://github.com/request/request/pull/1767) Query strings now cooperate with unix sockets (@JoshWillik)
171
- - [#1750](https://github.com/request/request/pull/1750) Revert doc about installation of tough-cookie added in #884 (@LoicMahieu)
172
- - [#1746](https://github.com/request/request/pull/1746) Missed comma in Readme (@nsklkn)
173
- - [#1743](https://github.com/request/request/pull/1743) Fix options not being initialized in defaults method (@simov)
174
-
175
- ### v2.61.0 (2015/08/19)
176
- - [#1721](https://github.com/request/request/pull/1721) Minor fix in README.md (@arbaaz)
177
- - [#1733](https://github.com/request/request/pull/1733) Avoid useless Buffer transformation (@michelsalib)
178
- - [#1726](https://github.com/request/request/pull/1726) Update README.md (@paulomcnally)
179
- - [#1715](https://github.com/request/request/pull/1715) Fix forever option in node > 0.10 #1709 (@calibr)
180
- - [#1716](https://github.com/request/request/pull/1716) Do not create Buffer from Object in setContentLength(iojs v3.0 issue) (@calibr)
181
- - [#1711](https://github.com/request/request/pull/1711) Add ability to detect connect timeouts (@kevinburke)
182
- - [#1712](https://github.com/request/request/pull/1712) Set certificate expiration to August 2, 2018 (@kevinburke)
183
- - [#1700](https://github.com/request/request/pull/1700) debug() when JSON.parse() on a response body fails (@phillipj)
184
-
185
- ### v2.60.0 (2015/07/21)
186
- - [#1687](https://github.com/request/request/pull/1687) Fix caseless bug - content-type not being set for multipart/form-data (@simov, @garymathews)
187
-
188
- ### v2.59.0 (2015/07/20)
189
- - [#1671](https://github.com/request/request/pull/1671) Add tests and docs for using the agent, agentClass, agentOptions and forever options.
190
  Forever option defaults to using http(s).Agent in node 0.12+ (@simov)
191
- - [#1679](https://github.com/request/request/pull/1679) Fix - do not remove OAuth param when using OAuth realm (@simov, @jhalickman)
192
- - [#1668](https://github.com/request/request/pull/1668) updated dependencies (@deamme)
193
- - [#1656](https://github.com/request/request/pull/1656) Fix form method (@simov)
194
- - [#1651](https://github.com/request/request/pull/1651) Preserve HEAD method when using followAllRedirects (@simov)
195
- - [#1652](https://github.com/request/request/pull/1652) Update `encoding` option documentation in README.md (@daniel347x)
196
- - [#1650](https://github.com/request/request/pull/1650) Allow content-type overriding when using the `form` option (@simov)
197
- - [#1646](https://github.com/request/request/pull/1646) Clarify the nature of setting `ca` in `agentOptions` (@jeffcharles)
198
-
199
- ### v2.58.0 (2015/06/16)
200
- - [#1638](https://github.com/request/request/pull/1638) Use the `extend` module to deep extend in the defaults method (@simov)
201
- - [#1631](https://github.com/request/request/pull/1631) Move tunnel logic into separate module (@simov)
202
- - [#1634](https://github.com/request/request/pull/1634) Fix OAuth query transport_method (@simov)
203
- - [#1603](https://github.com/request/request/pull/1603) Add codecov (@simov)
204
-
205
- ### v2.57.0 (2015/05/31)
206
- - [#1615](https://github.com/request/request/pull/1615) Replace '.client' with '.socket' as the former was deprecated in 2.2.0. (@ChALkeR)
207
-
208
- ### v2.56.0 (2015/05/28)
209
- - [#1610](https://github.com/request/request/pull/1610) Bump module dependencies (@simov)
210
- - [#1600](https://github.com/request/request/pull/1600) Extract the querystring logic into separate module (@simov)
211
- - [#1607](https://github.com/request/request/pull/1607) Re-generate certificates (@simov)
212
- - [#1599](https://github.com/request/request/pull/1599) Move getProxyFromURI logic below the check for Invaild URI (#1595) (@simov)
213
- - [#1598](https://github.com/request/request/pull/1598) Fix the way http verbs are defined in order to please intellisense IDEs (@simov, @flannelJesus)
214
- - [#1591](https://github.com/request/request/pull/1591) A few minor fixes: (@simov)
215
- - [#1584](https://github.com/request/request/pull/1584) Refactor test-default tests (according to comments in #1430) (@simov)
216
- - [#1585](https://github.com/request/request/pull/1585) Fixing documentation regarding TLS options (#1583) (@mainakae)
217
- - [#1574](https://github.com/request/request/pull/1574) Refresh the oauth_nonce on redirect (#1573) (@simov)
218
- - [#1570](https://github.com/request/request/pull/1570) Discovered tests that weren't properly running (@seanstrom)
219
- - [#1569](https://github.com/request/request/pull/1569) Fix pause before response arrives (@kevinoid)
220
- - [#1558](https://github.com/request/request/pull/1558) Emit error instead of throw (@simov)
221
- - [#1568](https://github.com/request/request/pull/1568) Fix stall when piping gzipped response (@kevinoid)
222
- - [#1560](https://github.com/request/request/pull/1560) Update combined-stream (@apechimp)
223
- - [#1543](https://github.com/request/request/pull/1543) Initial support for oauth_body_hash on json payloads (@simov, @aesopwolf)
224
- - [#1541](https://github.com/request/request/pull/1541) Fix coveralls (@simov)
225
- - [#1540](https://github.com/request/request/pull/1540) Fix recursive defaults for convenience methods (@simov)
226
- - [#1536](https://github.com/request/request/pull/1536) More eslint style rules (@froatsnook)
227
- - [#1533](https://github.com/request/request/pull/1533) Adding dependency status bar to README.md (@YasharF)
228
- - [#1539](https://github.com/request/request/pull/1539) ensure the latest version of har-validator is included (@ahmadnassri)
229
- - [#1516](https://github.com/request/request/pull/1516) forever+pool test (@devTristan)
230
-
231
- ### v2.55.0 (2015/04/05)
232
- - [#1520](https://github.com/request/request/pull/1520) Refactor defaults (@simov)
233
- - [#1525](https://github.com/request/request/pull/1525) Delete request headers with undefined value. (@froatsnook)
234
- - [#1521](https://github.com/request/request/pull/1521) Add promise tests (@simov)
235
- - [#1518](https://github.com/request/request/pull/1518) Fix defaults (@simov)
236
- - [#1515](https://github.com/request/request/pull/1515) Allow static invoking of convenience methods (@simov)
237
- - [#1505](https://github.com/request/request/pull/1505) Fix multipart boundary extraction regexp (@simov)
238
- - [#1510](https://github.com/request/request/pull/1510) Fix basic auth form data (@simov)
239
-
240
- ### v2.54.0 (2015/03/24)
241
- - [#1501](https://github.com/request/request/pull/1501) HTTP Archive 1.2 support (@ahmadnassri)
242
- - [#1486](https://github.com/request/request/pull/1486) Add a test for the forever agent (@akshayp)
243
- - [#1500](https://github.com/request/request/pull/1500) Adding handling for no auth method and null bearer (@philberg)
244
- - [#1498](https://github.com/request/request/pull/1498) Add table of contents in readme (@simov)
245
- - [#1477](https://github.com/request/request/pull/1477) Add support for qs options via qsOptions key (@simov)
246
- - [#1496](https://github.com/request/request/pull/1496) Parameters encoded to base 64 should be decoded as UTF-8, not ASCII. (@albanm)
247
- - [#1494](https://github.com/request/request/pull/1494) Update eslint (@froatsnook)
248
- - [#1474](https://github.com/request/request/pull/1474) Require Colon in Basic Auth (@erykwalder)
249
- - [#1481](https://github.com/request/request/pull/1481) Fix baseUrl and redirections. (@burningtree)
250
- - [#1469](https://github.com/request/request/pull/1469) Feature/base url (@froatsnook)
251
- - [#1459](https://github.com/request/request/pull/1459) Add option to time request/response cycle (including rollup of redirects) (@aaron-em)
252
- - [#1468](https://github.com/request/request/pull/1468) Re-enable io.js/node 0.12 build (@simov, @mikeal, @BBB)
253
- - [#1442](https://github.com/request/request/pull/1442) Fixed the issue with strictSSL tests on 0.12 & io.js by explicitly setting a cipher that matches the cert. (@BBB, @nickmccurdy, @demohi, @simov, @0x4139)
254
- - [#1460](https://github.com/request/request/pull/1460) localAddress or proxy config is lost when redirecting (@simov, @0x4139)
255
- - [#1453](https://github.com/request/request/pull/1453) Test on Node.js 0.12 and io.js with allowed failures (@nickmccurdy, @demohi)
256
- - [#1426](https://github.com/request/request/pull/1426) Fixing tests to pass on io.js and node 0.12 (only test-https.js stiff failing) (@mikeal)
257
- - [#1446](https://github.com/request/request/pull/1446) Missing HTTP referer header with redirects Fixes #1038 (@simov, @guimon)
258
- - [#1428](https://github.com/request/request/pull/1428) Deprecate Node v0.8.x (@nylen)
259
- - [#1436](https://github.com/request/request/pull/1436) Add ability to set a requester without setting default options (@tikotzky)
260
- - [#1435](https://github.com/request/request/pull/1435) dry up verb methods (@sethpollack)
261
- - [#1423](https://github.com/request/request/pull/1423) Allow fully qualified multipart content-type header (@simov)
262
- - [#1430](https://github.com/request/request/pull/1430) Fix recursive requester (@tikotzky)
263
- - [#1429](https://github.com/request/request/pull/1429) Throw error when making HEAD request with a body (@tikotzky)
264
- - [#1419](https://github.com/request/request/pull/1419) Add note that the project is broken in 0.12.x (@nylen)
265
- - [#1413](https://github.com/request/request/pull/1413) Fix basic auth (@simov)
266
- - [#1397](https://github.com/request/request/pull/1397) Improve pipe-from-file tests (@nylen)
267
-
268
- ### v2.53.0 (2015/02/02)
269
- - [#1396](https://github.com/request/request/pull/1396) Do not rfc3986 escape JSON bodies (@nylen, @simov)
270
- - [#1392](https://github.com/request/request/pull/1392) Improve `timeout` option description (@watson)
271
-
272
- ### v2.52.0 (2015/02/02)
273
- - [#1383](https://github.com/request/request/pull/1383) Add missing HTTPS options that were not being passed to tunnel (@brichard19) (@nylen)
274
- - [#1388](https://github.com/request/request/pull/1388) Upgrade mime-types package version (@roderickhsiao)
275
- - [#1389](https://github.com/request/request/pull/1389) Revise Setup Tunnel Function (@seanstrom)
276
- - [#1374](https://github.com/request/request/pull/1374) Allow explicitly disabling tunneling for proxied https destinations (@nylen)
277
- - [#1376](https://github.com/request/request/pull/1376) Use karma-browserify for tests. Add browser test coverage reporter. (@eiriksm)
278
- - [#1366](https://github.com/request/request/pull/1366) Refactor OAuth into separate module (@simov)
279
- - [#1373](https://github.com/request/request/pull/1373) Rewrite tunnel test to be pure Node.js (@nylen)
280
- - [#1371](https://github.com/request/request/pull/1371) Upgrade test reporter (@nylen)
281
- - [#1360](https://github.com/request/request/pull/1360) Refactor basic, bearer, digest auth logic into separate class (@simov)
282
- - [#1354](https://github.com/request/request/pull/1354) Remove circular dependency from debugging code (@nylen)
283
- - [#1351](https://github.com/request/request/pull/1351) Move digest auth into private prototype method (@simov)
284
- - [#1352](https://github.com/request/request/pull/1352) Update hawk dependency to ~2.3.0 (@mridgway)
285
- - [#1353](https://github.com/request/request/pull/1353) Correct travis-ci badge (@dogancelik)
286
- - [#1349](https://github.com/request/request/pull/1349) Make sure we return on errored browser requests. (@eiriksm)
287
- - [#1346](https://github.com/request/request/pull/1346) getProxyFromURI Extraction Refactor (@seanstrom)
288
- - [#1337](https://github.com/request/request/pull/1337) Standardize test ports on 6767 (@nylen)
289
- - [#1341](https://github.com/request/request/pull/1341) Emit FormData error events as Request error events (@nylen, @rwky)
290
- - [#1343](https://github.com/request/request/pull/1343) Clean up readme badges, and add Travis and Coveralls badges (@nylen)
291
- - [#1345](https://github.com/request/request/pull/1345) Update README.md (@Aaron-Hartwig)
292
- - [#1338](https://github.com/request/request/pull/1338) Always wait for server.close() callback in tests (@nylen)
293
- - [#1342](https://github.com/request/request/pull/1342) Add mock https server and redo start of browser tests for this purpose. (@eiriksm)
294
- - [#1339](https://github.com/request/request/pull/1339) Improve auth docs (@nylen)
295
- - [#1335](https://github.com/request/request/pull/1335) Add support for OAuth plaintext signature method (@simov)
296
- - [#1332](https://github.com/request/request/pull/1332) Add clean script to remove test-browser.js after the tests run (@seanstrom)
297
- - [#1327](https://github.com/request/request/pull/1327) Fix errors generating coverage reports. (@nylen)
298
- - [#1330](https://github.com/request/request/pull/1330) Return empty buffer upon empty response body and encoding is set to null (@seanstrom)
299
- - [#1326](https://github.com/request/request/pull/1326) Use faster container-based infrastructure on Travis (@nylen)
300
- - [#1315](https://github.com/request/request/pull/1315) Implement rfc3986 option (@simov, @nylen, @apoco, @DullReferenceException, @mmalecki, @oliamb, @cliffcrosland, @LewisJEllis, @eiriksm, @poislagarde)
301
- - [#1314](https://github.com/request/request/pull/1314) Detect urlencoded form data header via regex (@simov)
302
- - [#1317](https://github.com/request/request/pull/1317) Improve OAuth1.0 server side flow example (@simov)
303
-
304
- ### v2.51.0 (2014/12/10)
305
- - [#1310](https://github.com/request/request/pull/1310) Revert changes introduced in https://github.com/request/request/pull/1282 (@simov)
306
-
307
- ### v2.50.0 (2014/12/09)
308
- - [#1308](https://github.com/request/request/pull/1308) Add browser test to keep track of browserify compability. (@eiriksm)
309
- - [#1299](https://github.com/request/request/pull/1299) Add optional support for jsonReviver (@poislagarde)
310
- - [#1277](https://github.com/request/request/pull/1277) Add Coveralls configuration (@simov)
311
- - [#1307](https://github.com/request/request/pull/1307) Upgrade form-data, add back browserify compability. Fixes #455. (@eiriksm)
312
- - [#1305](https://github.com/request/request/pull/1305) Fix typo in README.md (@LewisJEllis)
313
- - [#1288](https://github.com/request/request/pull/1288) Update README.md to explain custom file use case (@cliffcrosland)
314
-
315
- ### v2.49.0 (2014/11/28)
316
- - [#1295](https://github.com/request/request/pull/1295) fix(proxy): no-proxy false positive (@oliamb)
317
- - [#1292](https://github.com/request/request/pull/1292) Upgrade `caseless` to 0.8.1 (@mmalecki)
318
- - [#1276](https://github.com/request/request/pull/1276) Set transfer encoding for multipart/related to chunked by default (@simov)
319
- - [#1275](https://github.com/request/request/pull/1275) Fix multipart content-type headers detection (@simov)
320
- - [#1269](https://github.com/request/request/pull/1269) adds streams example for review (@tbuchok)
321
- - [#1238](https://github.com/request/request/pull/1238) Add examples README.md (@simov)
322
-
323
- ### v2.48.0 (2014/11/12)
324
- - [#1263](https://github.com/request/request/pull/1263) Fixed a syntax error / typo in README.md (@xna2)
325
- - [#1253](https://github.com/request/request/pull/1253) Add multipart chunked flag (@simov, @nylen)
326
- - [#1251](https://github.com/request/request/pull/1251) Clarify that defaults() does not modify global defaults (@nylen)
327
- - [#1250](https://github.com/request/request/pull/1250) Improve documentation for pool and maxSockets options (@nylen)
328
- - [#1237](https://github.com/request/request/pull/1237) Documenting error handling when using streams (@vmattos)
329
- - [#1244](https://github.com/request/request/pull/1244) Finalize changelog command (@nylen)
330
- - [#1241](https://github.com/request/request/pull/1241) Fix typo (@alexanderGugel)
331
- - [#1223](https://github.com/request/request/pull/1223) Show latest version number instead of "upcoming" in changelog (@nylen)
332
- - [#1236](https://github.com/request/request/pull/1236) Document how to use custom CA in README (#1229) (@hypesystem)
333
- - [#1228](https://github.com/request/request/pull/1228) Support for oauth with RSA-SHA1 signing (@nylen)
334
- - [#1216](https://github.com/request/request/pull/1216) Made json and multipart options coexist (@nylen, @simov)
335
- - [#1225](https://github.com/request/request/pull/1225) Allow header white/exclusive lists in any case. (@RReverser)
336
-
337
- ### v2.47.0 (2014/10/26)
338
- - [#1222](https://github.com/request/request/pull/1222) Move from mikeal/request to request/request (@nylen)
339
- - [#1220](https://github.com/request/request/pull/1220) update qs dependency to 2.3.1 (@FredKSchott)
340
- - [#1212](https://github.com/request/request/pull/1212) Improve tests/test-timeout.js (@nylen)
341
- - [#1219](https://github.com/request/request/pull/1219) remove old globalAgent workaround for node 0.4 (@request)
342
- - [#1214](https://github.com/request/request/pull/1214) Remove cruft left over from optional dependencies (@nylen)
343
- - [#1215](https://github.com/request/request/pull/1215) Add proxyHeaderExclusiveList option for proxy-only headers. (@RReverser)
344
- - [#1211](https://github.com/request/request/pull/1211) Allow 'Host' header instead of 'host' and remember case across redirects (@nylen)
345
- - [#1208](https://github.com/request/request/pull/1208) Improve release script (@nylen)
346
- - [#1213](https://github.com/request/request/pull/1213) Support for custom cookie store (@nylen, @mitsuru)
347
- - [#1197](https://github.com/request/request/pull/1197) Clean up some code around setting the agent (@FredKSchott)
348
- - [#1209](https://github.com/request/request/pull/1209) Improve multipart form append test (@simov)
349
- - [#1207](https://github.com/request/request/pull/1207) Update changelog (@nylen)
350
- - [#1185](https://github.com/request/request/pull/1185) Stream multipart/related bodies (@simov)
351
-
352
- ### v2.46.0 (2014/10/23)
353
- - [#1198](https://github.com/request/request/pull/1198) doc for TLS/SSL protocol options (@shawnzhu)
354
- - [#1200](https://github.com/request/request/pull/1200) Add a Gitter chat badge to README.md (@gitter-badger)
355
- - [#1196](https://github.com/request/request/pull/1196) Upgrade taper test reporter to v0.3.0 (@nylen)
356
- - [#1199](https://github.com/request/request/pull/1199) Fix lint error: undeclared var i (@nylen)
357
- - [#1191](https://github.com/request/request/pull/1191) Move self.proxy decision logic out of init and into a helper (@FredKSchott)
358
- - [#1190](https://github.com/request/request/pull/1190) Move _buildRequest() logic back into init (@FredKSchott)
359
- - [#1186](https://github.com/request/request/pull/1186) Support Smarter Unix URL Scheme (@FredKSchott)
360
- - [#1178](https://github.com/request/request/pull/1178) update form documentation for new usage (@FredKSchott)
361
- - [#1180](https://github.com/request/request/pull/1180) Enable no-mixed-requires linting rule (@nylen)
362
- - [#1184](https://github.com/request/request/pull/1184) Don't forward authorization header across redirects to different hosts (@nylen)
363
- - [#1183](https://github.com/request/request/pull/1183) Correct README about pre and postamble CRLF using multipart and not mult... (@netpoetica)
364
- - [#1179](https://github.com/request/request/pull/1179) Lint tests directory (@nylen)
365
- - [#1169](https://github.com/request/request/pull/1169) add metadata for form-data file field (@dotcypress)
366
- - [#1173](https://github.com/request/request/pull/1173) remove optional dependencies (@seanstrom)
367
- - [#1165](https://github.com/request/request/pull/1165) Cleanup event listeners and remove function creation from init (@FredKSchott)
368
- - [#1174](https://github.com/request/request/pull/1174) update the request.cookie docs to have a valid cookie example (@seanstrom)
369
- - [#1168](https://github.com/request/request/pull/1168) create a detach helper and use detach helper in replace of nextTick (@seanstrom)
370
- - [#1171](https://github.com/request/request/pull/1171) in post can send form data and use callback (@MiroRadenovic)
371
- - [#1159](https://github.com/request/request/pull/1159) accept charset for x-www-form-urlencoded content-type (@seanstrom)
372
- - [#1157](https://github.com/request/request/pull/1157) Update README.md: body with json=true (@Rob--W)
373
- - [#1164](https://github.com/request/request/pull/1164) Disable tests/test-timeout.js on Travis (@nylen)
374
- - [#1153](https://github.com/request/request/pull/1153) Document how to run a single test (@nylen)
375
- - [#1144](https://github.com/request/request/pull/1144) adds documentation for the "response" event within the streaming section (@tbuchok)
376
- - [#1162](https://github.com/request/request/pull/1162) Update eslintrc file to no longer allow past errors (@FredKSchott)
377
- - [#1155](https://github.com/request/request/pull/1155) Support/use self everywhere (@seanstrom)
378
- - [#1161](https://github.com/request/request/pull/1161) fix no-use-before-define lint warnings (@emkay)
379
- - [#1156](https://github.com/request/request/pull/1156) adding curly brackets to get rid of lint errors (@emkay)
380
- - [#1151](https://github.com/request/request/pull/1151) Fix localAddress test on OS X (@nylen)
381
- - [#1145](https://github.com/request/request/pull/1145) documentation: fix outdated reference to setCookieSync old name in README (@FredKSchott)
382
- - [#1131](https://github.com/request/request/pull/1131) Update pool documentation (@FredKSchott)
383
- - [#1143](https://github.com/request/request/pull/1143) Rewrite all tests to use tape (@nylen)
384
- - [#1137](https://github.com/request/request/pull/1137) Add ability to specifiy querystring lib in options. (@jgrund)
385
- - [#1138](https://github.com/request/request/pull/1138) allow hostname and port in place of host on uri (@cappslock)
386
- - [#1134](https://github.com/request/request/pull/1134) Fix multiple redirects and `self.followRedirect` (@blakeembrey)
387
- - [#1130](https://github.com/request/request/pull/1130) documentation fix: add note about npm test for contributing (@FredKSchott)
388
- - [#1120](https://github.com/request/request/pull/1120) Support/refactor request setup tunnel (@seanstrom)
389
- - [#1129](https://github.com/request/request/pull/1129) linting fix: convert double quote strings to use single quotes (@FredKSchott)
390
- - [#1124](https://github.com/request/request/pull/1124) linting fix: remove unneccesary semi-colons (@FredKSchott)
391
-
392
- ### v2.45.0 (2014/10/06)
393
- - [#1128](https://github.com/request/request/pull/1128) Add test for setCookie regression (@nylen)
394
- - [#1127](https://github.com/request/request/pull/1127) added tests around using objects as values in a query string (@bcoe)
395
- - [#1103](https://github.com/request/request/pull/1103) Support/refactor request constructor (@nylen, @seanstrom)
396
- - [#1119](https://github.com/request/request/pull/1119) add basic linting to request library (@FredKSchott)
397
- - [#1121](https://github.com/request/request/pull/1121) Revert "Explicitly use sync versions of cookie functions" (@nylen)
398
- - [#1118](https://github.com/request/request/pull/1118) linting fix: Restructure bad empty if statement (@FredKSchott)
399
- - [#1117](https://github.com/request/request/pull/1117) Fix a bad check for valid URIs (@FredKSchott)
400
- - [#1113](https://github.com/request/request/pull/1113) linting fix: space out operators (@FredKSchott)
401
- - [#1116](https://github.com/request/request/pull/1116) Fix typo in `noProxyHost` definition (@FredKSchott)
402
- - [#1114](https://github.com/request/request/pull/1114) linting fix: Added a `new` operator that was missing when creating and throwing a new error (@FredKSchott)
403
- - [#1096](https://github.com/request/request/pull/1096) No_proxy support (@samcday)
404
- - [#1107](https://github.com/request/request/pull/1107) linting-fix: remove unused variables (@FredKSchott)
405
- - [#1112](https://github.com/request/request/pull/1112) linting fix: Make return values consistent and more straitforward (@FredKSchott)
406
- - [#1111](https://github.com/request/request/pull/1111) linting fix: authPieces was getting redeclared (@FredKSchott)
407
- - [#1105](https://github.com/request/request/pull/1105) Use strict mode in request (@FredKSchott)
408
- - [#1110](https://github.com/request/request/pull/1110) linting fix: replace lazy '==' with more strict '===' (@FredKSchott)
409
- - [#1109](https://github.com/request/request/pull/1109) linting fix: remove function call from if-else conditional statement (@FredKSchott)
410
- - [#1102](https://github.com/request/request/pull/1102) Fix to allow setting a `requester` on recursive calls to `request.defaults` (@tikotzky)
411
- - [#1095](https://github.com/request/request/pull/1095) Tweaking engines in package.json (@pdehaan)
412
- - [#1082](https://github.com/request/request/pull/1082) Forward the socket event from the httpModule request (@seanstrom)
413
- - [#972](https://github.com/request/request/pull/972) Clarify gzip handling in the README (@kevinoid)
414
- - [#1089](https://github.com/request/request/pull/1089) Mention that encoding defaults to utf8, not Buffer (@stuartpb)
415
- - [#1088](https://github.com/request/request/pull/1088) Fix cookie example in README.md and make it more clear (@pipi32167)
416
- - [#1027](https://github.com/request/request/pull/1027) Add support for multipart form data in request options. (@crocket)
417
- - [#1076](https://github.com/request/request/pull/1076) use Request.abort() to abort the request when the request has timed-out (@seanstrom)
418
- - [#1068](https://github.com/request/request/pull/1068) add optional postamble required by .NET multipart requests (@netpoetica)
419
-
420
- ### v2.43.0 (2014/09/18)
421
- - [#1057](https://github.com/request/request/pull/1057) Defaults should not overwrite defined options (@davidwood)
422
- - [#1046](https://github.com/request/request/pull/1046) Propagate datastream errors, useful in case gzip fails. (@ZJONSSON, @Janpot)
423
- - [#1063](https://github.com/request/request/pull/1063) copy the input headers object #1060 (@finnp)
424
- - [#1031](https://github.com/request/request/pull/1031) Explicitly use sync versions of cookie functions (@ZJONSSON)
425
- - [#1056](https://github.com/request/request/pull/1056) Fix redirects when passing url.parse(x) as URL to convenience method (@nylen)
426
-
427
- ### v2.42.0 (2014/09/04)
428
- - [#1053](https://github.com/request/request/pull/1053) Fix #1051 Parse auth properly when using non-tunneling proxy (@isaacs)
429
-
430
- ### v2.41.0 (2014/09/04)
431
- - [#1050](https://github.com/request/request/pull/1050) Pass whitelisted headers to tunneling proxy. Organize all tunneling logic. (@isaacs, @Feldhacker)
432
- - [#1035](https://github.com/request/request/pull/1035) souped up nodei.co badge (@rvagg)
433
- - [#1048](https://github.com/request/request/pull/1048) Aws is now possible over a proxy (@steven-aerts)
434
- - [#1039](https://github.com/request/request/pull/1039) extract out helper functions to a helper file (@seanstrom)
435
- - [#1021](https://github.com/request/request/pull/1021) Support/refactor indexjs (@seanstrom)
436
- - [#1033](https://github.com/request/request/pull/1033) Improve and document debug options (@nylen)
437
- - [#1034](https://github.com/request/request/pull/1034) Fix readme headings (@nylen)
438
- - [#1030](https://github.com/request/request/pull/1030) Allow recursive request.defaults (@tikotzky)
439
- - [#1029](https://github.com/request/request/pull/1029) Fix a couple of typos (@nylen)
440
- - [#675](https://github.com/request/request/pull/675) Checking for SSL fault on connection before reading SSL properties (@VRMink)
441
- - [#989](https://github.com/request/request/pull/989) Added allowRedirect function. Should return true if redirect is allowed or false otherwise (@doronin)
442
- - [#1025](https://github.com/request/request/pull/1025) [fixes #1023] Set self._ended to true once response has ended (@mridgway)
443
- - [#1020](https://github.com/request/request/pull/1020) Add back removed debug metadata (@FredKSchott)
444
- - [#1008](https://github.com/request/request/pull/1008) Moving to module instead of cutomer buffer concatenation. (@mikeal)
445
- - [#770](https://github.com/request/request/pull/770) Added dependency badge for README file; (@timgluz, @mafintosh, @lalitkapoor, @stash, @bobyrizov)
446
- - [#1016](https://github.com/request/request/pull/1016) toJSON no longer results in an infinite loop, returns simple objects (@FredKSchott)
447
- - [#1018](https://github.com/request/request/pull/1018) Remove pre-0.4.4 HTTPS fix (@mmalecki)
448
- - [#1006](https://github.com/request/request/pull/1006) Migrate to caseless, fixes #1001 (@mikeal)
449
- - [#995](https://github.com/request/request/pull/995) Fix parsing array of objects (@sjonnet19)
450
- - [#999](https://github.com/request/request/pull/999) Fix fallback for browserify for optional modules. (@eiriksm)
451
- - [#996](https://github.com/request/request/pull/996) Wrong oauth signature when multiple same param keys exist [updated] (@bengl)
452
-
453
- ### v2.40.0 (2014/08/06)
454
- - [#992](https://github.com/request/request/pull/992) Fix security vulnerability. Update qs (@poeticninja)
455
- - [#988](https://github.com/request/request/pull/988) “--” -> “—” (@upisfree)
456
- - [#987](https://github.com/request/request/pull/987) Show optional modules as being loaded by the module that reqeusted them (@iarna)
457
-
458
- ### v2.39.0 (2014/07/24)
459
- - [#976](https://github.com/request/request/pull/976) Update README.md (@pvoznenko)
460
-
461
- ### v2.38.0 (2014/07/22)
462
- - [#952](https://github.com/request/request/pull/952) Adding support to client certificate with proxy use case (@ofirshaked)
463
- - [#884](https://github.com/request/request/pull/884) Documented tough-cookie installation. (@wbyoung)
464
- - [#935](https://github.com/request/request/pull/935) Correct repository url (@fritx)
465
- - [#963](https://github.com/request/request/pull/963) Update changelog (@nylen)
466
- - [#960](https://github.com/request/request/pull/960) Support gzip with encoding on node pre-v0.9.4 (@kevinoid)
467
- - [#953](https://github.com/request/request/pull/953) Add async Content-Length computation when using form-data (@LoicMahieu)
468
- - [#844](https://github.com/request/request/pull/844) Add support for HTTP[S]_PROXY environment variables. Fixes #595. (@jvmccarthy)
469
- - [#946](https://github.com/request/request/pull/946) defaults: merge headers (@aj0strow)
470
-
471
- ### v2.37.0 (2014/07/07)
472
- - [#957](https://github.com/request/request/pull/957) Silence EventEmitter memory leak warning #311 (@watson)
473
- - [#955](https://github.com/request/request/pull/955) check for content-length header before setting it in nextTick (@camilleanne)
474
- - [#951](https://github.com/request/request/pull/951) Add support for gzip content decoding (@kevinoid)
475
- - [#949](https://github.com/request/request/pull/949) Manually enter querystring in form option (@charlespwd)
476
- - [#944](https://github.com/request/request/pull/944) Make request work with browserify (@eiriksm)
477
- - [#943](https://github.com/request/request/pull/943) New mime module (@eiriksm)
478
- - [#927](https://github.com/request/request/pull/927) Bump version of hawk dep. (@samccone)
479
- - [#907](https://github.com/request/request/pull/907) append secureOptions to poolKey (@medovob)
480
-
481
- ### v2.35.0 (2014/05/17)
482
- - [#901](https://github.com/request/request/pull/901) Fixes #555 (@pigulla)
483
- - [#897](https://github.com/request/request/pull/897) merge with default options (@vohof)
484
- - [#891](https://github.com/request/request/pull/891) fixes 857 - options object is mutated by calling request (@lalitkapoor)
485
- - [#869](https://github.com/request/request/pull/869) Pipefilter test (@tgohn)
486
- - [#866](https://github.com/request/request/pull/866) Fix typo (@dandv)
487
- - [#861](https://github.com/request/request/pull/861) Add support for RFC 6750 Bearer Tokens (@phedny)
488
- - [#809](https://github.com/request/request/pull/809) upgrade tunnel-proxy to 0.4.0 (@ksato9700)
489
- - [#850](https://github.com/request/request/pull/850) Fix word consistency in readme (@0xNobody)
490
- - [#810](https://github.com/request/request/pull/810) add some exposition to mpu example in README.md (@mikermcneil)
491
- - [#840](https://github.com/request/request/pull/840) improve error reporting for invalid protocols (@FND)
492
- - [#821](https://github.com/request/request/pull/821) added secureOptions back (@nw)
493
- - [#815](https://github.com/request/request/pull/815) Create changelog based on pull requests (@lalitkapoor)
494
-
495
- ### v2.34.0 (2014/02/18)
496
- - [#516](https://github.com/request/request/pull/516) UNIX Socket URL Support (@lyuzashi)
497
- - [#801](https://github.com/request/request/pull/801) 794 ignore cookie parsing and domain errors (@lalitkapoor)
498
- - [#802](https://github.com/request/request/pull/802) Added the Apache license to the package.json. (@keskival)
499
- - [#793](https://github.com/request/request/pull/793) Adds content-length calculation when submitting forms using form-data li... (@Juul)
500
- - [#785](https://github.com/request/request/pull/785) Provide ability to override content-type when `json` option used (@vvo)
501
- - [#781](https://github.com/request/request/pull/781) simpler isReadStream function (@joaojeronimo)
502
-
503
- ### v2.32.0 (2014/01/16)
504
- - [#767](https://github.com/request/request/pull/767) Use tough-cookie CookieJar sync API (@stash)
505
- - [#764](https://github.com/request/request/pull/764) Case-insensitive authentication scheme (@bobyrizov)
506
- - [#763](https://github.com/request/request/pull/763) Upgrade tough-cookie to 0.10.0 (@stash)
507
- - [#744](https://github.com/request/request/pull/744) Use Cookie.parse (@lalitkapoor)
508
- - [#757](https://github.com/request/request/pull/757) require aws-sign2 (@mafintosh)
509
-
510
- ### v2.31.0 (2014/01/08)
511
- - [#645](https://github.com/request/request/pull/645) update twitter api url to v1.1 (@mick)
512
- - [#746](https://github.com/request/request/pull/746) README: Markdown code highlight (@weakish)
513
- - [#745](https://github.com/request/request/pull/745) updating setCookie example to make it clear that the callback is required (@emkay)
514
- - [#742](https://github.com/request/request/pull/742) Add note about JSON output body type (@iansltx)
515
- - [#741](https://github.com/request/request/pull/741) README example is using old cookie jar api (@emkay)
516
- - [#736](https://github.com/request/request/pull/736) Fix callback arguments documentation (@mmalecki)
517
- - [#732](https://github.com/request/request/pull/732) JSHINT: Creating global 'for' variable. Should be 'for (var ...'. (@Fritz-Lium)
518
- - [#730](https://github.com/request/request/pull/730) better HTTP DIGEST support (@dai-shi)
519
- - [#728](https://github.com/request/request/pull/728) Fix TypeError when calling request.cookie (@scarletmeow)
520
- - [#727](https://github.com/request/request/pull/727) fix requester bug (@jchris)
521
- - [#724](https://github.com/request/request/pull/724) README.md: add custom HTTP Headers example. (@tcort)
522
- - [#719](https://github.com/request/request/pull/719) Made a comment gender neutral. (@unsetbit)
523
- - [#715](https://github.com/request/request/pull/715) Request.multipart no longer crashes when header 'Content-type' present (@pastaclub)
524
- - [#710](https://github.com/request/request/pull/710) Fixing listing in callback part of docs. (@lukasz-zak)
525
- - [#696](https://github.com/request/request/pull/696) Edited README.md for formatting and clarity of phrasing (@Zearin)
526
- - [#694](https://github.com/request/request/pull/694) Typo in README (@VRMink)
527
- - [#690](https://github.com/request/request/pull/690) Handle blank password in basic auth. (@diversario)
528
- - [#682](https://github.com/request/request/pull/682) Optional dependencies (@Turbo87)
529
- - [#683](https://github.com/request/request/pull/683) Travis CI support (@Turbo87)
530
- - [#674](https://github.com/request/request/pull/674) change cookie module,to tough-cookie.please check it . (@sxyizhiren)
531
- - [#666](https://github.com/request/request/pull/666) make `ciphers` and `secureProtocol` to work in https request (@richarddong)
532
- - [#656](https://github.com/request/request/pull/656) Test case for #304. (@diversario)
533
- - [#662](https://github.com/request/request/pull/662) option.tunnel to explicitly disable tunneling (@seanmonstar)
534
- - [#659](https://github.com/request/request/pull/659) fix failure when running with NODE_DEBUG=request, and a test for that (@jrgm)
535
- - [#630](https://github.com/request/request/pull/630) Send random cnonce for HTTP Digest requests (@wprl)
536
- - [#619](https://github.com/request/request/pull/619) decouple things a bit (@joaojeronimo)
537
- - [#613](https://github.com/request/request/pull/613) Fixes #583, moved initialization of self.uri.pathname (@lexander)
538
- - [#605](https://github.com/request/request/pull/605) Only include ":" + pass in Basic Auth if it's defined (fixes #602) (@bendrucker)
539
- - [#596](https://github.com/request/request/pull/596) Global agent is being used when pool is specified (@Cauldrath)
540
- - [#594](https://github.com/request/request/pull/594) Emit complete event when there is no callback (@RomainLK)
541
- - [#601](https://github.com/request/request/pull/601) Fixed a small typo (@michalstanko)
542
- - [#589](https://github.com/request/request/pull/589) Prevent setting headers after they are sent (@geek)
543
- - [#587](https://github.com/request/request/pull/587) Global cookie jar disabled by default (@threepointone)
544
- - [#544](https://github.com/request/request/pull/544) Update http-signature version. (@davidlehn)
545
- - [#581](https://github.com/request/request/pull/581) Fix spelling of "ignoring." (@bigeasy)
546
- - [#568](https://github.com/request/request/pull/568) use agentOptions to create agent when specified in request (@SamPlacette)
547
- - [#564](https://github.com/request/request/pull/564) Fix redirections (@criloz)
548
- - [#541](https://github.com/request/request/pull/541) The exported request function doesn't have an auth method (@tschaub)
549
- - [#542](https://github.com/request/request/pull/542) Expose Request class (@regality)
550
- - [#536](https://github.com/request/request/pull/536) Allow explicitly empty user field for basic authentication. (@mikeando)
551
- - [#532](https://github.com/request/request/pull/532) fix typo (@fredericosilva)
552
- - [#497](https://github.com/request/request/pull/497) Added redirect event (@Cauldrath)
553
- - [#503](https://github.com/request/request/pull/503) Fix basic auth for passwords that contain colons (@tonistiigi)
554
- - [#521](https://github.com/request/request/pull/521) Improving test-localAddress.js (@noway)
555
- - [#529](https://github.com/request/request/pull/529) dependencies versions bump (@jodaka)
556
- - [#523](https://github.com/request/request/pull/523) Updating dependencies (@noway)
557
- - [#520](https://github.com/request/request/pull/520) Fixing test-tunnel.js (@noway)
558
- - [#519](https://github.com/request/request/pull/519) Update internal path state on post-creation QS changes (@jblebrun)
559
- - [#510](https://github.com/request/request/pull/510) Add HTTP Signature support. (@davidlehn)
560
- - [#502](https://github.com/request/request/pull/502) Fix POST (and probably other) requests that are retried after 401 Unauthorized (@nylen)
561
- - [#508](https://github.com/request/request/pull/508) Honor the .strictSSL option when using proxies (tunnel-agent) (@jhs)
562
- - [#512](https://github.com/request/request/pull/512) Make password optional to support the format: http://username@hostname/ (@pajato1)
563
- - [#513](https://github.com/request/request/pull/513) add 'localAddress' support (@yyfrankyy)
564
- - [#498](https://github.com/request/request/pull/498) Moving response emit above setHeaders on destination streams (@kenperkins)
565
- - [#490](https://github.com/request/request/pull/490) Empty response body (3-rd argument) must be passed to callback as an empty string (@Olegas)
566
- - [#479](https://github.com/request/request/pull/479) Changing so if Accept header is explicitly set, sending json does not ov... (@RoryH)
567
- - [#475](https://github.com/request/request/pull/475) Use `unescape` from `querystring` (@shimaore)
568
- - [#473](https://github.com/request/request/pull/473) V0.10 compat (@isaacs)
569
- - [#471](https://github.com/request/request/pull/471) Using querystring library from visionmedia (@kbackowski)
570
- - [#461](https://github.com/request/request/pull/461) Strip the UTF8 BOM from a UTF encoded response (@kppullin)
571
- - [#460](https://github.com/request/request/pull/460) hawk 0.10.0 (@hueniverse)
572
- - [#462](https://github.com/request/request/pull/462) if query params are empty, then request path shouldn't end with a '?' (merges cleanly now) (@jaipandya)
573
- - [#456](https://github.com/request/request/pull/456) hawk 0.9.0 (@hueniverse)
574
- - [#429](https://github.com/request/request/pull/429) Copy options before adding callback. (@nrn, @nfriedly, @youurayy, @jplock, @kapetan, @landeiro, @othiym23, @mmalecki)
575
- - [#454](https://github.com/request/request/pull/454) Destroy the response if present when destroying the request (clean merge) (@mafintosh)
576
- - [#310](https://github.com/request/request/pull/310) Twitter Oauth Stuff Out of Date; Now Updated (@joemccann, @isaacs, @mscdex)
577
- - [#413](https://github.com/request/request/pull/413) rename googledoodle.png to .jpg (@nfriedly, @youurayy, @jplock, @kapetan, @landeiro, @othiym23, @mmalecki)
578
- - [#448](https://github.com/request/request/pull/448) Convenience method for PATCH (@mloar)
579
- - [#444](https://github.com/request/request/pull/444) protect against double callbacks on error path (@spollack)
580
- - [#433](https://github.com/request/request/pull/433) Added support for HTTPS cert & key (@mmalecki)
581
- - [#430](https://github.com/request/request/pull/430) Respect specified {Host,host} headers, not just {host} (@andrewschaaf)
582
- - [#415](https://github.com/request/request/pull/415) Fixed a typo. (@jerem)
583
- - [#338](https://github.com/request/request/pull/338) Add more auth options, including digest support (@nylen)
584
- - [#403](https://github.com/request/request/pull/403) Optimize environment lookup to happen once only (@mmalecki)
585
- - [#398](https://github.com/request/request/pull/398) Add more reporting to tests (@mmalecki)
586
- - [#388](https://github.com/request/request/pull/388) Ensure "safe" toJSON doesn't break EventEmitters (@othiym23)
587
- - [#381](https://github.com/request/request/pull/381) Resolving "Invalid signature. Expected signature base string: " (@landeiro)
588
- - [#380](https://github.com/request/request/pull/380) Fixes missing host header on retried request when using forever agent (@mac-)
589
- - [#376](https://github.com/request/request/pull/376) Headers lost on redirect (@kapetan)
590
- - [#375](https://github.com/request/request/pull/375) Fix for missing oauth_timestamp parameter (@jplock)
591
- - [#374](https://github.com/request/request/pull/374) Correct Host header for proxy tunnel CONNECT (@youurayy)
592
- - [#370](https://github.com/request/request/pull/370) Twitter reverse auth uses x_auth_mode not x_auth_type (@drudge)
593
- - [#369](https://github.com/request/request/pull/369) Don't remove x_auth_mode for Twitter reverse auth (@drudge)
594
- - [#344](https://github.com/request/request/pull/344) Make AWS auth signing find headers correctly (@nlf)
595
- - [#363](https://github.com/request/request/pull/363) rfc3986 on base_uri, now passes tests (@jeffmarshall)
596
- - [#362](https://github.com/request/request/pull/362) Running `rfc3986` on `base_uri` in `oauth.hmacsign` instead of just `encodeURIComponent` (@jeffmarshall)
597
- - [#361](https://github.com/request/request/pull/361) Don't create a Content-Length header if we already have it set (@danjenkins)
598
- - [#360](https://github.com/request/request/pull/360) Delete self._form along with everything else on redirect (@jgautier)
599
- - [#355](https://github.com/request/request/pull/355) stop sending erroneous headers on redirected requests (@azylman)
600
- - [#332](https://github.com/request/request/pull/332) Fix #296 - Only set Content-Type if body exists (@Marsup)
601
- - [#343](https://github.com/request/request/pull/343) Allow AWS to work in more situations, added a note in the README on its usage (@nlf)
602
- - [#320](https://github.com/request/request/pull/320) request.defaults() doesn't need to wrap jar() (@StuartHarris)
603
- - [#322](https://github.com/request/request/pull/322) Fix + test for piped into request bumped into redirect. #321 (@alexindigo)
604
- - [#326](https://github.com/request/request/pull/326) Do not try to remove listener from an undefined connection (@CartoDB)
605
- - [#318](https://github.com/request/request/pull/318) Pass servername to tunneling secure socket creation (@isaacs)
606
- - [#317](https://github.com/request/request/pull/317) Workaround for #313 (@isaacs)
607
- - [#293](https://github.com/request/request/pull/293) Allow parser errors to bubble up to request (@mscdex)
608
- - [#290](https://github.com/request/request/pull/290) A test for #289 (@isaacs)
609
- - [#280](https://github.com/request/request/pull/280) Like in node.js print options if NODE_DEBUG contains the word request (@Filirom1)
610
- - [#207](https://github.com/request/request/pull/207) Fix #206 Change HTTP/HTTPS agent when redirecting between protocols (@isaacs)
611
- - [#214](https://github.com/request/request/pull/214) documenting additional behavior of json option (@jphaas, @vpulim)
612
- - [#272](https://github.com/request/request/pull/272) Boundary begins with CRLF? (@elspoono, @timshadel, @naholyr, @nanodocumet, @TehShrike)
613
- - [#284](https://github.com/request/request/pull/284) Remove stray `console.log()` call in multipart generator. (@bcherry)
614
- - [#241](https://github.com/request/request/pull/241) Composability updates suggested by issue #239 (@polotek)
615
- - [#282](https://github.com/request/request/pull/282) OAuth Authorization header contains non-"oauth_" parameters (@jplock)
616
- - [#279](https://github.com/request/request/pull/279) fix tests with boundary by injecting boundry from header (@benatkin)
617
- - [#273](https://github.com/request/request/pull/273) Pipe back pressure issue (@mafintosh)
618
- - [#268](https://github.com/request/request/pull/268) I'm not OCD seriously (@TehShrike)
619
- - [#263](https://github.com/request/request/pull/263) Bug in OAuth key generation for sha1 (@nanodocumet)
620
- - [#265](https://github.com/request/request/pull/265) uncaughtException when redirected to invalid URI (@naholyr)
621
- - [#262](https://github.com/request/request/pull/262) JSON test should check for equality (@timshadel)
622
- - [#261](https://github.com/request/request/pull/261) Setting 'pool' to 'false' does NOT disable Agent pooling (@timshadel)
623
- - [#249](https://github.com/request/request/pull/249) Fix for the fix of your (closed) issue #89 where self.headers[content-length] is set to 0 for all methods (@sethbridges, @polotek, @zephrax, @jeromegn)
624
- - [#255](https://github.com/request/request/pull/255) multipart allow body === '' ( the empty string ) (@Filirom1)
625
- - [#260](https://github.com/request/request/pull/260) fixed just another leak of 'i' (@sreuter)
626
- - [#246](https://github.com/request/request/pull/246) Fixing the set-cookie header (@jeromegn)
627
- - [#243](https://github.com/request/request/pull/243) Dynamic boundary (@zephrax)
628
- - [#240](https://github.com/request/request/pull/240) don't error when null is passed for options (@polotek)
629
- - [#211](https://github.com/request/request/pull/211) Replace all occurrences of special chars in RFC3986 (@chriso, @vpulim)
630
- - [#224](https://github.com/request/request/pull/224) Multipart content-type change (@janjongboom)
631
- - [#217](https://github.com/request/request/pull/217) need to use Authorization (titlecase) header with Tumblr OAuth (@visnup)
632
- - [#203](https://github.com/request/request/pull/203) Fix cookie and redirect bugs and add auth support for HTTPS tunnel (@vpulim)
633
- - [#199](https://github.com/request/request/pull/199) Tunnel (@isaacs)
634
- - [#198](https://github.com/request/request/pull/198) Bugfix on forever usage of util.inherits (@isaacs)
635
- - [#197](https://github.com/request/request/pull/197) Make ForeverAgent work with HTTPS (@isaacs)
636
- - [#193](https://github.com/request/request/pull/193) Fixes GH-119 (@goatslacker)
637
- - [#188](https://github.com/request/request/pull/188) Add abort support to the returned request (@itay)
638
- - [#176](https://github.com/request/request/pull/176) Querystring option (@csainty)
639
- - [#182](https://github.com/request/request/pull/182) Fix request.defaults to support (uri, options, callback) api (@twilson63)
640
- - [#180](https://github.com/request/request/pull/180) Modified the post, put, head and del shortcuts to support uri optional param (@twilson63)
641
- - [#179](https://github.com/request/request/pull/179) fix to add opts in .pipe(stream, opts) (@substack)
642
- - [#177](https://github.com/request/request/pull/177) Issue #173 Support uri as first and optional config as second argument (@twilson63)
643
- - [#170](https://github.com/request/request/pull/170) can't create a cookie in a wrapped request (defaults) (@fabianonunes)
644
- - [#168](https://github.com/request/request/pull/168) Picking off an EasyFix by adding some missing mimetypes. (@serby)
645
- - [#161](https://github.com/request/request/pull/161) Fix cookie jar/headers.cookie collision (#125) (@papandreou)
646
- - [#162](https://github.com/request/request/pull/162) Fix issue #159 (@dpetukhov)
647
- - [#90](https://github.com/request/request/pull/90) add option followAllRedirects to follow post/put redirects (@jroes)
648
- - [#148](https://github.com/request/request/pull/148) Retry Agent (@thejh)
649
- - [#146](https://github.com/request/request/pull/146) Multipart should respect content-type if previously set (@apeace)
650
- - [#144](https://github.com/request/request/pull/144) added "form" option to readme (@petejkim)
651
- - [#133](https://github.com/request/request/pull/133) Fixed cookies parsing (@afanasy)
652
- - [#135](https://github.com/request/request/pull/135) host vs hostname (@iangreenleaf)
653
- - [#132](https://github.com/request/request/pull/132) return the body as a Buffer when encoding is set to null (@jahewson)
654
- - [#112](https://github.com/request/request/pull/112) Support using a custom http-like module (@jhs)
655
- - [#104](https://github.com/request/request/pull/104) Cookie handling contains bugs (@janjongboom)
656
- - [#121](https://github.com/request/request/pull/121) Another patch for cookie handling regression (@jhurliman)
657
- - [#117](https://github.com/request/request/pull/117) Remove the global `i` (@3rd-Eden)
658
- - [#110](https://github.com/request/request/pull/110) Update to Iris Couch URL (@jhs)
659
- - [#86](https://github.com/request/request/pull/86) Can't post binary to multipart requests (@kkaefer)
660
- - [#105](https://github.com/request/request/pull/105) added test for proxy option. (@dominictarr)
661
- - [#102](https://github.com/request/request/pull/102) Implemented cookies - closes issue 82: https://github.com/mikeal/request/issues/82 (@alessioalex)
662
- - [#97](https://github.com/request/request/pull/97) Typo in previous pull causes TypeError in non-0.5.11 versions (@isaacs)
663
- - [#96](https://github.com/request/request/pull/96) Authless parsed url host support (@isaacs)
664
- - [#81](https://github.com/request/request/pull/81) Enhance redirect handling (@danmactough)
665
- - [#78](https://github.com/request/request/pull/78) Don't try to do strictSSL for non-ssl connections (@isaacs)
666
- - [#76](https://github.com/request/request/pull/76) Bug when a request fails and a timeout is set (@Marsup)
667
- - [#70](https://github.com/request/request/pull/70) add test script to package.json (@isaacs, @aheckmann)
668
- - [#73](https://github.com/request/request/pull/73) Fix #71 Respect the strictSSL flag (@isaacs)
669
- - [#69](https://github.com/request/request/pull/69) Flatten chunked requests properly (@isaacs)
670
- - [#67](https://github.com/request/request/pull/67) fixed global variable leaks (@aheckmann)
671
- - [#66](https://github.com/request/request/pull/66) Do not overwrite established content-type headers for read stream deliver (@voodootikigod)
672
- - [#53](https://github.com/request/request/pull/53) Parse json: Issue #51 (@benatkin)
673
- - [#45](https://github.com/request/request/pull/45) Added timeout option (@mbrevoort)
674
- - [#35](https://github.com/request/request/pull/35) The "end" event isn't emitted for some responses (@voxpelli)
675
- - [#31](https://github.com/request/request/pull/31) Error on piping a request to a destination (@tobowers)