urllib 2.38.1 → 3.0.0

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.
Files changed (55) hide show
  1. package/README.md +75 -264
  2. package/package.json +62 -59
  3. package/src/HttpAgent.ts +72 -0
  4. package/src/HttpClient.ts +514 -0
  5. package/src/Request.ts +118 -0
  6. package/src/Response.ts +41 -0
  7. package/src/cjs/HttpAgent.d.ts +16 -0
  8. package/src/cjs/HttpAgent.js +62 -0
  9. package/src/cjs/HttpAgent.js.map +1 -0
  10. package/src/cjs/HttpClient.d.ts +39 -0
  11. package/src/cjs/HttpClient.js +466 -0
  12. package/src/cjs/HttpClient.js.map +1 -0
  13. package/src/cjs/Request.d.ts +114 -0
  14. package/src/cjs/Request.js +3 -0
  15. package/src/cjs/Request.js.map +1 -0
  16. package/src/cjs/Response.d.ts +36 -0
  17. package/src/cjs/Response.js +3 -0
  18. package/src/cjs/Response.js.map +1 -0
  19. package/src/cjs/index.d.ts +7 -0
  20. package/src/cjs/index.js +18 -0
  21. package/src/cjs/index.js.map +1 -0
  22. package/src/cjs/package.json +3 -0
  23. package/src/cjs/utils.d.ts +3 -0
  24. package/src/cjs/utils.js +56 -0
  25. package/src/cjs/utils.js.map +1 -0
  26. package/src/esm/HttpAgent.d.ts +16 -0
  27. package/src/esm/HttpAgent.js +58 -0
  28. package/src/esm/HttpAgent.js.map +1 -0
  29. package/src/esm/HttpClient.d.ts +39 -0
  30. package/src/esm/HttpClient.js +462 -0
  31. package/src/esm/HttpClient.js.map +1 -0
  32. package/src/esm/Request.d.ts +114 -0
  33. package/src/esm/Request.js +2 -0
  34. package/src/esm/Request.js.map +1 -0
  35. package/src/esm/Response.d.ts +36 -0
  36. package/src/esm/Response.js +2 -0
  37. package/src/esm/Response.js.map +1 -0
  38. package/src/esm/index.d.ts +7 -0
  39. package/src/esm/index.js +13 -0
  40. package/src/esm/index.js.map +1 -0
  41. package/src/esm/package.json +3 -0
  42. package/src/esm/utils.d.ts +3 -0
  43. package/src/esm/utils.js +51 -0
  44. package/src/esm/utils.js.map +1 -0
  45. package/src/index.ts +16 -0
  46. package/src/utils.ts +53 -0
  47. package/History.md +0 -804
  48. package/lib/detect_proxy_agent.js +0 -31
  49. package/lib/get_proxy_from_uri.js +0 -81
  50. package/lib/httpclient.js +0 -61
  51. package/lib/httpclient2.js +0 -83
  52. package/lib/index.d.ts +0 -279
  53. package/lib/index.js +0 -21
  54. package/lib/index.test-d.ts +0 -19
  55. package/lib/urllib.js +0 -1317
package/History.md DELETED
@@ -1,804 +0,0 @@
1
-
2
- 2.38.1 / 2022-07-05
3
- ==================
4
-
5
- **fixes**
6
- * [[`f343daa`](http://github.com/node-modules/urllib/commit/f343daa6d1ffb91ebed00e0f858fcb4378921349)] - fix: ignore request error if request is done (#384) (killa <<killa123@126.com>>)
7
-
8
- **others**
9
- * [[`518d22c`](http://github.com/node-modules/urllib/commit/518d22c30e3888e6cffec0572f05af0fc30f824f)] - Create codeql-analysis.yml (fengmk2 <<fengmk2@gmail.com>>)
10
- * [[`7daf2fa`](http://github.com/node-modules/urllib/commit/7daf2fa599ac294ffc8a3adfe7015b667f13e59a)] - chore: update contributors (fengmk2 <<fengmk2@gmail.com>>)
11
- * [[`20451f2`](http://github.com/node-modules/urllib/commit/20451f2898fba90a72c9b953e518e2f67a3bddd7)] - test: add tsd for timing interface (#377) (fengmk2 <<fengmk2@gmail.com>>)
12
- * [[`f662c2b`](http://github.com/node-modules/urllib/commit/f662c2b066d3d4363491ee552a0976fe29a528cf)] - chore: update contributors (fengmk2 <<fengmk2@gmail.com>>)
13
-
14
- 2.38.0 / 2021-11-24
15
- ==================
16
-
17
- **others**
18
- * [[`6d19f99`](http://github.com/node-modules/urllib/commit/6d19f99f6490df67832d1d2a9c39743c0de1cbd5)] - tsd: add timing interface (#375) (弘树@阿里 <<dickeylth@users.noreply.github.com>>)
19
- * [[`9c9c65b`](http://github.com/node-modules/urllib/commit/9c9c65b0e8344c1a30c157628a675440b8a616c1)] - test: check TypeScript type definitions (#373) (fengmk2 <<fengmk2@gmail.com>>)
20
-
21
- 2.37.4 / 2021-09-07
22
- ==================
23
-
24
- **fixes**
25
- * [[`1e6622a`](http://github.com/node-modules/urllib/commit/1e6622a571b3e6f72c5f187a224bddedcbc382cf)] - fix: upgrade proxy-agent to fix the security vulnerability. (#368) (hyj1991 <<yeekwanvong@gmail.com>>)
26
-
27
- **others**
28
- * [[`ae27498`](http://github.com/node-modules/urllib/commit/ae2749811e40262da8bf2641599b066344fa6b05)] - docs: notes contentType's value (#349) (changzhi <<changzhiwin@gmail.com>>)
29
-
30
- 2.37.3 / 2021-07-05
31
- ==================
32
-
33
- **fixes**
34
- * [[`b730a6c`](http://github.com/node-modules/urllib/commit/b730a6cdc0465bea1c08d50bfa3b5e95bd17b31f)] - fix: 🐛 redirect status code (#363) (Hongcai Deng <<admin@dhchouse.com>>)
35
-
36
- 2.37.2 / 2021-06-07
37
- ==================
38
-
39
- **fixes**
40
- * [[`04734a1`](http://github.com/node-modules/urllib/commit/04734a13e146da501f4e38333d5de9f9bbb259d1)] - fix: 🐛 should trigger response event when follow redirect (#361) (Hongcai Deng <<admin@dhchouse.com>>)
41
-
42
- 2.37.1 / 2021-04-15
43
- ==================
44
-
45
- **others**
46
- * [[`d50afda`](http://github.com/node-modules/urllib/commit/d50afda91befff75f044a1ad83689f7a459c5d32)] - Update proxy-agent to v4 to resolve vulnerability (#355) (Chad McElligott <<chad.mcelligott@gmail.com>>)
47
-
48
- 2.37.0 / 2021-04-02
49
- ==================
50
-
51
- **features**
52
- * [[`2acf75b`](http://github.com/node-modules/urllib/commit/2acf75b75050667f7341e6990078e0330e704af1)] - feat: add unix domain socket file support (#352) (Khaidi Chu <<i@2333.moe>>)
53
-
54
- **others**
55
- * [[`f2a42d1`](http://github.com/node-modules/urllib/commit/f2a42d19d2236979c16eea13c229839e5a78b381)] - chore: LICENSE link typo (fengmk2 <<fengmk2@gmail.com>>)
56
- * [[`28a0152`](http://github.com/node-modules/urllib/commit/28a0152c0ae5d4470d88b8122724b6228b48b319)] - chore: update contributors (fengmk2 <<fengmk2@gmail.com>>)
57
- * [[`5674670`](http://github.com/node-modules/urllib/commit/56746704d61116d99846d94480d223a9e3c42913)] - test: add socket checker test case (#341) (fengmk2 <<fengmk2@gmail.com>>)
58
- * [[`d953ec0`](http://github.com/node-modules/urllib/commit/d953ec0e55ec28d553a24c5cf0fcb64715e7c8f9)] - test: add testcase for using retry and writeStream in HttpClient2 (#350) (Haoliang Gao <<sakura9515@gmail.com>>)
59
-
60
- 2.36.1 / 2020-06-09
61
- ==================
62
-
63
- **others**
64
- * [[`35eecc0`](http://github.com/node-modules/urllib/commit/35eecc021f55e324b2520f91a032a33517d94f29)] - chore: add type declaration for RequestOptions#keepHeaderCase (#345) (William <<willizm.cn@gmail.com>>)
65
-
66
- 2.36.0 / 2020-06-08
67
- ==================
68
-
69
- **fixes**
70
- * [[`15c4170`](http://github.com/node-modules/urllib/commit/15c4170beab4404b0576caa01e199f445c476b7d)] - fix: allow to keep origin header key case (#344) (TZ | 天猪 <<atian25@qq.com>>)
71
-
72
- **others**
73
- * [[`31c03b8`](http://github.com/node-modules/urllib/commit/31c03b853ae5db00c7223c0a1a545dfcf0b07aa5)] - chore: Update and rename LICENSE.txt to LICENSE (#343) (Yuxiang LIU <<david-khala@hotmail.com>>)
74
-
75
- 2.35.0 / 2020-05-15
76
- ==================
77
-
78
- **features**
79
- * [[`47c21bd`](http://github.com/node-modules/urllib/commit/47c21bd93648080589bdc6528d9e9cf3e0489951)] - feat: change header to lowercase (#337) (TZ | 天猪 <<atian25@qq.com>>)
80
-
81
- **fixes**
82
- * [[`8f2ca64`](http://github.com/node-modules/urllib/commit/8f2ca648608995d140d0ca3873ef728bdbd4ee41)] - fix: need to handle response data on close event (#340) (fengmk2 <<fengmk2@gmail.com>>)
83
- * [[`175ad2b`](http://github.com/node-modules/urllib/commit/175ad2b3e17196626c701ef72396dd6932d14c7a)] - fix: res.socket is null in node-v14.x (#339) (hyj1991 <<yeekwanvong@gmail.com>>)
84
-
85
- 2.34.2 / 2019-12-09
86
- ==================
87
-
88
- **fixes**
89
- * [[`67d5b1c`](http://github.com/node-modules/urllib/commit/67d5b1c35dc302778aa4b992ea4998fe427e3cc8)] - fix: index.d.ts (#334) (Daniels.Sun <<better.sunjian@gmail.com>>)
90
-
91
- 2.34.1 / 2019-09-02
92
- ==================
93
-
94
- **fixes**
95
- * [[`3da9339`](http://github.com/node-modules/urllib/commit/3da9339aacf4aa59c17b40ff1793d320bc9d9f61)] - fix: rejectUnauthorized under Node.js 12 (#328) (Khaidi Chu <<i@2333.moe>>)
96
-
97
- **others**
98
- * [[`061f600`](http://github.com/node-modules/urllib/commit/061f60075249c136b1ca7e1e2519dae25cb9e55d)] - test: add a test case for posting xml data to reflect #69 (#324) (Jeff <<jeff.tian@outlook.com>>)
99
-
100
- 2.34.0 / 2019-05-07
101
- ==================
102
-
103
- **features**
104
- * [[`11f5d34`](http://github.com/node-modules/urllib/commit/11f5d34ea3d8aafbda4f3f5345d6dcfe7e20daa2)] - feat: support multipart/form-data by default (#322) (fengmk2 <<fengmk2@gmail.com>>)
105
-
106
- **others**
107
- * [[`3c24781`](http://github.com/node-modules/urllib/commit/3c2478100f8490a0fd6f4c49772c682d38fcf43e)] - chore: update contributors (fengmk2 <<fengmk2@gmail.com>>)
108
-
109
- 2.33.4 / 2019-05-06
110
- ==================
111
-
112
- **fixes**
113
- * [[`1f9566c`](http://github.com/node-modules/urllib/commit/1f9566c3dbb0be02e895647ced2d8eba06ce28aa)] - fix: don't parse URL on node 4 (#321) (fengmk2 <<fengmk2@gmail.com>>)
114
- * [[`3384e53`](http://github.com/node-modules/urllib/commit/3384e53e8447a5cb06402a43d07d7eb19a24bb62)] - fix: normalize url with WHATWG URL to solve #319 (#320) (Chen Yangjian <<252317+cyjake@users.noreply.github.com>>)
115
-
116
- 2.33.3 / 2019-04-11
117
- ==================
118
-
119
- **others**
120
- * [[`e08f71a`](http://github.com/node-modules/urllib/commit/e08f71af8c261318289d056260a156eca9d6a274)] - upgrade: proxy-agent@3.1.0 (#315) (薛定谔的猫 <<weiran.zsd@outlook.com>>)
121
-
122
- 2.33.2 / 2019-03-26
123
- ==================
124
-
125
- **fixes**
126
- * [[`a2a8a1d`](http://github.com/node-modules/urllib/commit/a2a8a1de8088f1a1b6f96de9e9c2cee408bc165b)] - fix: only copy enumerable and ownProperty value of args.headers (#313) (fengmk2 <<fengmk2@gmail.com>>)
127
-
128
- 2.33.1 / 2019-03-21
129
- ==================
130
-
131
- **fixes**
132
- * [[`f8091ce`](http://github.com/node-modules/urllib/commit/f8091ce41885178f4a1b50d6daf79a77bdead9f0)] - fix: cancel connect timer when done is called (Daniel Wang <<danielwpz@gmail.com>>)
133
-
134
- 2.33.0 / 2019-01-09
135
- ==================
136
-
137
- **features**
138
- * [[`a5df9d5`](http://github.com/node-modules/urllib/commit/a5df9d5257a8d18dd0d71f7c76aff7f6464e9484)] - feat: add typescript definition (#308) (Haoliang Gao <<sakura9515@gmail.com>>)
139
-
140
- **others**
141
- * [[`47ad864`](http://github.com/node-modules/urllib/commit/47ad864eba92a1e0f5a730adad6e8582af3fdbd8)] - test: add test case for streaming timeout (#307) (Yiyu He <<dead_horse@qq.com>>)
142
-
143
- 2.32.0 / 2019-01-07
144
- ==================
145
-
146
- **features**
147
- * [[`a42445e`](http://github.com/node-modules/urllib/commit/a42445edfcaa17b9840afa8b4e06d1928d58ab53)] - feat: Expose status message from original Response (#306) (GP ✅ <<exchequer598@gmail.com>>)
148
-
149
- 2.31.3 / 2018-11-30
150
- ==================
151
-
152
- **fixes**
153
- * [[`98a1622`](http://github.com/node-modules/urllib/commit/98a16225aa21b37c2bfbfe318fe1803eedbd2d0c)] - fix: ensure timeout error is handled when request with stream (#305) (Yiyu He <<dead_horse@qq.com>>)
154
-
155
- **others**
156
- * [[`2bb86c0`](http://github.com/node-modules/urllib/commit/2bb86c0fe1f34cf8d12e397158e714a86f697093)] - test: only use junit report on azure-pipelines (#304) (fengmk2 <<fengmk2@gmail.com>>)
157
- * [[`bd869c7`](http://github.com/node-modules/urllib/commit/bd869c704387d3159ca50bf1976c6c70358b3ee4)] - test: Publish test results to Azure Pipelines (#303) (Rishav Sharan <<rishav.sharan@microsoft.com>>)
158
-
159
- 2.31.2 / 2018-11-13
160
- ==================
161
-
162
- **fixes**
163
- * [[`227618a`](http://github.com/node-modules/urllib/commit/227618ad0ceef68b409ba7ec9328bdcaba513b3e)] - fix: allow agent set to null (#301) (fengmk2 <<fengmk2@gmail.com>>)
164
-
165
- 2.31.1 / 2018-11-01
166
- ==================
167
-
168
- **fixes**
169
- * [[`83fc316`](http://github.com/node-modules/urllib/commit/83fc3165aa477bd7b034c075ae133a52627fc12b)] - fix: Omit the 'Accept-Encoding' header if it is explicitly set to 'null' (#298) (GP ✅ <<exchequer598@gmail.com>>)
170
- * [[`36c24c3`](http://github.com/node-modules/urllib/commit/36c24c3f54b6115c178540803a9ffae733bba063)] - fix: should autofix socket timeout by request.timeout (#300) (fengmk2 <<fengmk2@gmail.com>>)
171
-
172
- 2.31.0 / 2018-10-24
173
- ==================
174
-
175
- **features**
176
- * [[`28c38d2`](http://github.com/node-modules/urllib/commit/28c38d2451d85669decfdaf16ea07eaf958d41eb)] - feat: support agentkeepalive@4 (#297) (fengmk2 <<fengmk2@gmail.com>>)
177
- * [[`c79eefc`](http://github.com/node-modules/urllib/commit/c79eefc9843fb6a2aeb9e728ed4f8f912e8866ad)] - feat: Do not set User-Agent if the header is explicitly set to null (GP <<exchequer598@gmail.com>>)
178
-
179
- 2.30.0 / 2018-09-26
180
- ==================
181
-
182
- **features**
183
- * [[`b760530`](http://github.com/node-modules/urllib/commit/b76053020923f4d99a1c93cf2e16e0c5ba10bacf)] - feat: implement trace option like mysql client (#290) (killa <<killa123@126.com>>)
184
-
185
- **others**
186
- * [[`5e80ee8`](http://github.com/node-modules/urllib/commit/5e80ee8f3e8992da98b0a270de5a9298627841c7)] - test: run ci on azure-pipelines (#292) (azure-pipelines[bot] <<azure-pipelines[bot]@users.noreply.github.com>>)
187
-
188
- 2.29.1 / 2018-07-26
189
- ==================
190
-
191
- **fixes**
192
- * [[`ab39245`](http://github.com/node-modules/urllib/commit/ab39245ecb8d75f56b559c193b26c4a19e7bbbfe)] - fix: keep exists accept header on dataType = json (#289) (fengmk2 <<fengmk2@gmail.com>>)
193
-
194
- 2.29.0 / 2018-07-03
195
- ==================
196
-
197
- **features**
198
- * [[`4ca0c48`](http://github.com/node-modules/urllib/commit/4ca0c486699ff9e7e8b59f381a963a1133b59a96)] - feat: add socket handled request and response count (#288) (fengmk2 <<fengmk2@gmail.com>>)
199
-
200
- 2.28.1 / 2018-06-01
201
- ==================
202
-
203
- **fixes**
204
- * [[`6bc31b9`](http://github.com/node-modules/urllib/commit/6bc31b9af77bbf5c4acab7e430116b071160b6d5)] - fix: use pump to close request stream (#287) (fengmk2 <<fengmk2@gmail.com>>)
205
-
206
- **others**
207
- * [[`8087683`](http://github.com/node-modules/urllib/commit/8087683710118088891a580666b149181e1cab86)] - test: add node 10 support (#285) (fengmk2 <<fengmk2@gmail.com>>)
208
-
209
- 2.28.0 / 2018-05-25
210
- ==================
211
-
212
- **features**
213
- * [[`c0221ff`](http://github.com/node-modules/urllib/commit/c0221ff08934519bacbcf96660f126d5d6279c02)] - feat: support deflate compress for response (#283) (iSayme <<isaymeorg@gmail.com>>)
214
-
215
- **others**
216
- * [[`60ea1f6`](http://github.com/node-modules/urllib/commit/60ea1f653a29e0c8949fb3be5d82fe1fddf2a0f3)] - test: update url, the /:package/* not avalable anymore (#284) (iSayme <<isaymeorg@gmail.com>>)
217
-
218
- 2.27.0 / 2018-03-26
219
- ==================
220
-
221
- **features**
222
- * [[`a6c93fd`](http://github.com/node-modules/urllib/commit/a6c93fd07e75e45c6eda09c732d0b72ff5dc9199)] - feat: support args.checkAddress (#279) (Yiyu He <<dead_horse@qq.com>>)
223
-
224
- 2.26.0 / 2018-02-28
225
- ==================
226
-
227
- **features**
228
- * [[`d6e7c58`](http://github.com/node-modules/urllib/commit/d6e7c58b3688d415091ddc0c845b7cb8d57e20cc)] - feat: support Keep-Alive Header (#275) (fengmk2 <<fengmk2@gmail.com>>)
229
-
230
- 2.25.4 / 2018-01-18
231
- ==================
232
-
233
- **fixes**
234
- * [[`9c496a0`](http://github.com/node-modules/urllib/commit/9c496a0510ee17f72129e1298cf310a8b1aee327)] - fix: Changed to "new (require('proxy-agent'))(proxy)" (#273) (Nick Ng <<nick-ng@users.noreply.github.com>>)
235
-
236
- 2.25.3 / 2017-12-29
237
- ==================
238
-
239
- **fixes**
240
- * [[`e3df75e`](http://github.com/node-modules/urllib/commit/e3df75e249f67c943ac42d61abd1649291ba5f74)] - fix: res.requestUrls should be string array (#271) (hui <<kangpangpang@gmail.com>>)
241
-
242
- 2.25.2 / 2017-12-28
243
- ==================
244
-
245
- **fixes**
246
- * [[`2df6906`](http://github.com/node-modules/urllib/commit/2df6906d188bc53aa2d24efa0d318e52cccf9d78)] - fix: make sure request event url should be a string (#270) (hui <<kangpangpang@gmail.com>>)
247
-
248
- 2.25.1 / 2017-10-20
249
- ==================
250
-
251
- **fixes**
252
- * [[`ac9bc64`](http://github.com/node-modules/urllib/commit/ac9bc645149ffa5d9a1e8450ba00721a92d18f13)] - fix: don't change args.headers (#267) (fengmk2 <<fengmk2@gmail.com>>)
253
-
254
- **others**
255
- * [[`b798546`](http://github.com/node-modules/urllib/commit/b798546ef240de7a4dbe8ba5feb05536a4912b1b)] - docs: fixed spelling mistake (#266) (Axes <<whxaxes@qq.com>>)
256
-
257
- 2.25.0 / 2017-09-08
258
- ==================
259
-
260
- **features**
261
- * [[`95cabd6`](http://github.com/node-modules/urllib/commit/95cabd650ffb4996819570dea2518dea875d8452)] - feat: support custom fixJSONCtlChars function (#264) (fengmk2 <<fengmk2@gmail.com>>)
262
-
263
- 2.24.0 / 2017-07-31
264
- ==================
265
-
266
- * feat: support http(s) proxy (#226)
267
-
268
- 2.23.0 / 2017-07-18
269
- ==================
270
-
271
- * test: skip test.webdav.org test cases
272
- * feat: add defaultArgs on HttpClient
273
-
274
- 2.22.0 / 2017-04-10
275
- ==================
276
-
277
- * feat: add options.nestedQuerystring (#254)
278
-
279
- 2.21.2 / 2017-03-19
280
- ==================
281
-
282
- * fix: don't listen response aborted on node > 0.12 (#252)
283
-
284
- 2.21.1 / 2017-03-16
285
- ==================
286
-
287
- * fix: throw when write to stream timeout (#251)
288
-
289
- 2.21.0 / 2017-02-27
290
- ==================
291
-
292
- * fix: should pass options to httpclient2 (#249)
293
- * test: fix Promise not defined on 0.10
294
- * test: use assert instead of should
295
- * feat: add retry delay on httpclient2
296
-
297
- 2.20.0 / 2017-02-06
298
- ==================
299
-
300
- * deps: bump deps versions
301
- * fix: keep the same req object across request and response event
302
-
303
- 2.19.0 / 2016-12-14
304
- ==================
305
-
306
- * feat: add `dataAsQueryString` params for convert data to query string (#240)
307
-
308
- 2.18.0 / 2016-12-07
309
- ==================
310
-
311
- * fix: use nextTick to prevent promise handling error.
312
- * refactor: move to separated files
313
- * feat: add retry option
314
-
315
- 2.17.1 / 2016-11-25
316
- ==================
317
-
318
- * add environment detection for connect timer, because no socket event in browser env (#236)
319
-
320
- 2.17.0 / 2016-10-13
321
- ==================
322
-
323
- * feat: add -2 status for connect timeout (#224)
324
-
325
- 2.16.1 / 2016-10-10
326
- ==================
327
-
328
- * fix: parse content-type (#221)
329
-
330
- 2.16.0 / 2016-09-27
331
- ==================
332
-
333
- * feat: add custom dns lookup function (#220)
334
-
335
- 2.15.1 / 2016-09-26
336
- ==================
337
-
338
- * fix: httpclient support set agent to false (#219)
339
-
340
- 2.15.0 / 2016-09-21
341
- ==================
342
-
343
- * feat: export remoteAddress and remotePort (#216)
344
-
345
- 2.14.0 / 2016-09-19
346
- ==================
347
-
348
- * feat: allow user to rewrite redirect url (#214)
349
-
350
- 2.13.2 / 2016-09-18
351
- ==================
352
-
353
- * fix: response size should use last one (#213)
354
-
355
- 2.13.1 / 2016-09-10
356
- ==================
357
-
358
- * fix: add missing ctx on request event (#210)
359
-
360
- 2.13.0 / 2016-08-09
361
- ==================
362
-
363
- * feat: timing (#204)
364
- * docs: fix res.aborted description
365
-
366
- 2.12.0 / 2016-08-08
367
- ==================
368
-
369
- * feat: support connect and response timeouts (#201)
370
-
371
- 2.11.1 / 2016-08-04
372
- ==================
373
-
374
- * fix: catch http.request sync error (#199)
375
-
376
- 2.11.0 / 2016-06-26
377
- ==================
378
-
379
- * deps: upgrade deps from ~ to ^ (#189)
380
-
381
- 2.10.0 / 2016-06-21
382
- ==================
383
-
384
- * feat: add an options consumeWriteStream (#187)
385
- * chore(package): update statuses to version 1.3.0 (#174)
386
-
387
- 2.9.1 / 2016-05-09
388
- ==================
389
-
390
- * fix: check url before request (#172)
391
- * chore(package): update any-promise to version 1.2.0 (#171)
392
-
393
- 2.9.0 / 2016-04-21
394
- ==================
395
-
396
- * feat: log all requested urls (#169)
397
- * deps: agentkeepalive@2.1.1
398
-
399
- 2.8.0 / 2016-02-27
400
- ==================
401
-
402
- * test: improve coverage
403
- * feat: http default protocol for URL argument
404
-
405
- 2.7.3 / 2016-02-27
406
- ==================
407
-
408
- * deps: upgrade out of date deps
409
-
410
- 2.7.2 / 2016-02-25
411
- ==================
412
-
413
- * test: support windows
414
- * fix: keep headers.Host on `location: /foo` redirect
415
- * test: use npmjs.com on travis ci
416
- * fix: jshint style
417
- * deps: any-promise instead of native-or-blubird
418
-
419
- 2.7.1 / 2016-02-02
420
- ==================
421
-
422
- * fix: clean up headers.Host before redirect request start
423
- * chore: update authors
424
-
425
- 2.7.0 / 2016-01-14
426
- ==================
427
-
428
- * feat: response event include data property
429
- * chore: Add host info into debug
430
-
431
- 2.6.0 / 2015-12-09
432
- ==================
433
-
434
- * test: fix unstable test cases
435
- * feat: enhance global events
436
- * chore(package): update semver to version 5.1.0
437
- * chore(package): update should to version 7.1.1
438
-
439
- 2.5.0 / 2015-09-30
440
- ==================
441
-
442
- * test: fix test url
443
- * feat: remove request# in error message
444
- * test: add streaming upload test
445
- * test: use codecov.io
446
-
447
- 2.4.0 / 2015-08-20
448
- ==================
449
-
450
- * feat: add options.fixJSONCtlChars to fix JSON control characters
451
- * Fix a typo in comment
452
-
453
- 2.3.11 / 2015-08-12
454
- ==================
455
-
456
- * fix: httpclient support curl too
457
-
458
- 2.3.10 / 2015-08-12
459
- ==================
460
-
461
- * fix: add alias urllib.curl()
462
- * chore: add decodeBodyByCharset error debug log
463
-
464
- 2.3.9 / 2015-07-23
465
- ==================
466
-
467
- * feat: show json format data when json parse error
468
-
469
- 2.3.8 / 2015-06-06
470
- ==================
471
-
472
- * fix: need to clear timer after follow redirect
473
-
474
- 2.3.7 / 2015-06-04
475
- ==================
476
-
477
- * test: use cnpmjs.org instead of taobao.com
478
- * fix: need to resume res before next redirect request start
479
-
480
- 2.3.6 / 2015-06-03
481
- ==================
482
-
483
- * fix: support 303, 305, 307 redirect status code
484
-
485
- 2.3.5 / 2015-05-11
486
- ==================
487
-
488
- * fix: followRedirect support customResponse.
489
-
490
- 2.3.4 / 2015-04-19
491
- ==================
492
-
493
- * feat: show agent status message when request error
494
-
495
- 2.3.3 / 2015-03-30
496
- ==================
497
-
498
- * fix: add ciphers and secureProtocol params support for https request
499
-
500
- 2.3.2 / 2015-03-29
501
- ==================
502
-
503
- * refactor: httpclient custom agent property
504
-
505
- 2.3.1 / 2015-03-08
506
- ==================
507
-
508
- * fix: auto decode gzip content
509
-
510
- 2.3.0 / 2015-02-16
511
- ==================
512
-
513
- * feat: mark off connection state and response state
514
-
515
- 2.2.2 / 2015-01-21
516
- ==================
517
-
518
- * remove unuse event handlers
519
-
520
- 2.2.1 / 2014-12-10
521
- ==================
522
-
523
- * refactor and add more comments
524
- * add path to error (@coderhaoxin)
525
- * fix promise example in readme
526
-
527
- 2.2.0 / 2014-11-28
528
- ==================
529
-
530
- * add customResponse option (@fishbar)
531
-
532
- 2.1.0 / 2014-11-15
533
- ==================
534
-
535
- * humanize timeout
536
-
537
- 2.0.2 / 2014-11-01
538
- ==================
539
-
540
- * chore: bump deps version and make test more stable
541
- * refactor: dont add new property on res object
542
-
543
- 2.0.1 / 2014-10-15
544
- ==================
545
-
546
- * add args.contentType option (@coderhaoxin)
547
- * Simply the HTTPClient implementation (@JacksonTian)
548
- * refine urllib code (@JacksonTian)
549
-
550
- 2.0.0 / 2014-10-13
551
- ==================
552
-
553
- * support auto decode charset when dataType set
554
-
555
- 1.5.2 / 2014-09-15
556
- ==================
557
-
558
- * do not check ssl, fix hang up in some node version
559
-
560
- 1.5.1 / 2014-09-10
561
- ==================
562
-
563
- * httpclient add requestThunk()
564
-
565
- 1.5.0 / 2014-09-10
566
- ==================
567
-
568
- * add requestThunk to support co
569
-
570
- 1.4.1 / 2014-08-28
571
- ==================
572
-
573
- * HttpClient support agent and httpsAgent
574
-
575
- 1.4.0 / 2014-08-27
576
- ==================
577
-
578
- * add SocketAssignTimeoutError. #37
579
-
580
- 1.3.1 / 2014-08-27
581
- ==================
582
-
583
- * convert data to string when dataType is text
584
-
585
- 1.3.0 / 2014-08-26
586
- ==================
587
-
588
- * add urllib instance
589
-
590
- 1.2.1 / 2014-08-26
591
- ==================
592
-
593
- * add args.ctx for response event easy logging
594
-
595
- 1.2.0 / 2014-08-26
596
- ==================
597
-
598
- * format Response object fields
599
-
600
- 1.1.0 / 2014-08-25
601
- ==================
602
-
603
- * global `response` event. fixed #35
604
-
605
- 1.0.0 / 2014-08-25
606
- ==================
607
-
608
- * return Promise when callback missing. fixed #33
609
- * rm Makefile
610
- * use flat image
611
-
612
- 0.5.17 / 2014-08-08
613
- ==================
614
-
615
- * Remove aborted. joyent/node#7457
616
- * missing I in urllib logo
617
-
618
- 0.5.16 / 2014-05-15
619
- ==================
620
-
621
- * fix test cases
622
- * change .once to .on (@alsotang)
623
-
624
- 0.5.15 / 2014-05-04
625
- ==================
626
-
627
- * make callback is optional. close #29
628
- * rm 0.8 from travis
629
-
630
- 0.5.14 / 2014-04-21
631
- ==================
632
-
633
- * fix #28 user-agent logic bug
634
-
635
- 0.5.13 / 2014-03-31
636
- ==================
637
-
638
- * use digest-header module
639
-
640
- 0.5.12 / 2014-03-29
641
- ==================
642
-
643
- * support Digest access authentication. fix #27
644
- * add co-urllib desc
645
-
646
- 0.5.11 / 2014-03-13
647
- ==================
648
-
649
- * improve user-agent, add node version and plaform detail
650
-
651
- 0.5.10 / 2014-03-11
652
- ==================
653
-
654
- * if body not decode, dont touch it
655
-
656
- 0.5.9 / 2014-03-10
657
- ==================
658
-
659
- * Support `options.gzip = true` to handle gzip response. fixed #26
660
-
661
- 0.5.8 / 2014-03-07
662
- ==================
663
-
664
- * remove buffer-concat
665
-
666
- 0.5.7 / 2014-03-07
667
- ==================
668
-
669
- * no more deps on buffer-concat
670
- * add default User-Agent: node-urllib/x.x.x
671
- * add jshint
672
-
673
- 0.5.6 / 2014-03-05
674
- ==================
675
-
676
- * add data/res to error
677
- * fix typo (@coderhaoxin)
678
- * access npmjs.org https
679
- * fix test cases and use autod
680
- * install from cnpm
681
- * no more support on node 0.6.x
682
-
683
- 0.5.5 / 2013-12-10
684
- ==================
685
-
686
- * should pass done instead of callback and end the writeStream
687
- * support args.writeStream with follow redirect (@dead-horse)
688
-
689
- 0.5.4 / 2013-11-09
690
- ==================
691
-
692
- * fix timeout not effect bug
693
-
694
- 0.5.3 / 2013-10-18
695
- ==================
696
-
697
- * add args.beforeRequest(options) hook to change options before http send
698
-
699
- 0.5.2 / 2013-09-23
700
- ==================
701
-
702
- * add JSONResponseFormatError; append request url infomation to err.message
703
-
704
- 0.5.1 / 2013-08-23
705
- ==================
706
-
707
- * detect connect timeout or response timeout fixed #18
708
- * update doc
709
-
710
- 0.5.0 / 2013-08-11
711
- ==================
712
-
713
- * Support max redirects to protect loop redirect
714
- * Auto redirect handle (@ibigbug)
715
-
716
- 0.4.4 / 2013-08-10
717
- ==================
718
-
719
- * handle json response to null when data size is zero
720
-
721
- 0.4.3 / 2013-08-10
722
- ==================
723
-
724
- * Auto convert data to json string when content-type is 'json' fixed #15
725
- * add drone.io status build image
726
-
727
- 0.4.2 / 2013-08-10
728
- ==================
729
-
730
- * fix SELF_SIGNED_CERT_IN_CHAIN test case on node 0.8 and 0.6
731
- * [√] https & self-signed certificate
732
-
733
- 0.4.1 / 2013-08-05
734
- ==================
735
-
736
- * return RemoteSocketClosedError when Remote socket was terminated before `response.end()` was called
737
-
738
- 0.4.0 / 2013-08-05
739
- ==================
740
-
741
- * If the underlaying connection was terminated before `response.end()` was called, `res.aborted` should be `true`. fixed #14
742
- * fixed test case for 0.6
743
- * add res.socket.end() test cases
744
- * remove 0.11 from travis
745
-
746
- 0.3.8 / 2013-08-02
747
- ==================
748
-
749
- * add debug log
750
-
751
- 0.3.7 / 2013-07-11
752
- ==================
753
-
754
- * PATCH method is also "application/x-www-form-urlencoded" by default
755
- * replace logo
756
-
757
- 0.3.6 / 2013-07-11
758
- ==================
759
-
760
- * fixed bug in processing query string #13 (@xingrz)
761
- * updated readme example (@xingrz)
762
- * update authors
763
- * API docs (@xingrz)
764
-
765
- 0.3.5 / 2013-07-10
766
- ==================
767
-
768
- * fixed writeSteam receive incomplete bug
769
- * update makefile
770
- * add coveralls
771
- * remove 0.11 from travis
772
- * add patch for node 0.6
773
- * fixed https request timeout tests
774
- * use blanket instead of jscover
775
-
776
- 0.3.4 / 2013-03-06
777
- ==================
778
-
779
- * fixed #8 auto add application/x-www-form-urlencoded
780
- * fixed existsSync for node < 0.8
781
-
782
- 0.3.3 / 2012-12-14
783
- ==================
784
-
785
- * support writeStream
786
-
787
- 0.3.2 / 2012-11-08
788
- ==================
789
-
790
- * fixed #4 support urllib.request(options, args, callback)
791
- * fixed usage demo bug
792
- * fixed readme
793
-
794
- 0.3.1 / 2012-11-05
795
- ==================
796
-
797
- * fixed #2 support stream and return the req object.
798
- * use jscover instead of jscoverage
799
-
800
- 0.3.0 / 2012-10-10
801
- ==================
802
-
803
- * add coverage results
804
- * Bash auth support: `http://user:password@http://demo.com` .