axios 1.2.1 → 1.2.2

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 axios might be problematic. Click here for more details.

package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.2.2] - 2022-12-29
4
+
5
+ ### Fixed
6
+ - fix(ci): fix release script inputs [#5392](https://github.com/axios/axios/pull/5392)
7
+ - fix(ci): prerelease scipts [#5377](https://github.com/axios/axios/pull/5377)
8
+ - fix(ci): release scripts [#5376](https://github.com/axios/axios/pull/5376)
9
+ - fix(ci): typescript tests [#5375](https://github.com/axios/axios/pull/5375)
10
+ - fix: Brotli decompression [#5353](https://github.com/axios/axios/pull/5353)
11
+ - fix: add missing HttpStatusCode [#5345](https://github.com/axios/axios/pull/5345)
12
+
13
+ ### Chores
14
+ - chore(ci): set conventional-changelog header config [#5406](https://github.com/axios/axios/pull/5406)
15
+ - chore(ci): fix automatic contributors resolving [#5403](https://github.com/axios/axios/pull/5403)
16
+ - chore(ci): improved logging for the contributors list generator [#5398](https://github.com/axios/axios/pull/5398)
17
+ - chore(ci): fix release action [#5397](https://github.com/axios/axios/pull/5397)
18
+ - chore(ci): fix version bump script by adding bump argument for target version [#5393](https://github.com/axios/axios/pull/5393)
19
+ - chore(deps): bump decode-uri-component from 0.2.0 to 0.2.2 [#5342](https://github.com/axios/axios/pull/5342)
20
+ - chore(ci): GitHub Actions Release script [#5384](https://github.com/axios/axios/pull/5384)
21
+ - chore(ci): release scripts [#5364](https://github.com/axios/axios/pull/5364)
22
+
23
+ ### Contributors to this release
24
+ - ![avatar](https://avatars.githubusercontent.com/u/12586868?v=4&s=16) [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS)
25
+ - ![avatar](https://avatars.githubusercontent.com/u/1652293?v=4&s=16) [Winnie](https://github.com/winniehell)
26
+
3
27
  ## [1.2.1] - 2022-12-05
4
28
 
5
29
  ### Changed
@@ -21,15 +45,14 @@
21
45
 
22
46
  ### Contributors to this release
23
47
 
24
- - [](https://github.com/DigitalBrainJS)
25
- - [](https://github.com/zachlysobey)
26
- - [](https://github.com/kevincennis)
27
- - [](https://github.com/phloose)
28
- - [](https://github.com/secondl1ght)
29
- - [](https://github.com/0x30)
30
- - [](https://github.com/ovarn)
31
- - [](https://github.com/arthurfiorette)
32
- - [](https://github.com/0x30)
48
+ - [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS)
49
+ - [Zachary Lysobey](https://github.com/zachlysobey)
50
+ - [Kevin Ennis](https://github.com/kevincennis)
51
+ - [Philipp Loose](https://github.com/phloose)
52
+ - [secondl1ght](https://github.com/secondl1ght)
53
+ - [wenzheng](https://github.com/0x30)
54
+ - [Ivan Barsukov](https://github.com/ovarn)
55
+ - [Arthur Fiorette](https://github.com/arthurfiorette)
33
56
 
34
57
  ## [1.2.0] - 2022-11-10
35
58
 
package/dist/axios.js CHANGED
@@ -1,4 +1,4 @@
1
- // Axios v1.2.1 Copyright (c) 2022 Matt Zabriskie and contributors
1
+ // Axios v1.2.2 Copyright (c) 2022 Matt Zabriskie and contributors
2
2
  (function (global, factory) {
3
3
  typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
4
4
  typeof define === 'function' && define.amd ? define(factory) :
@@ -367,7 +367,11 @@
367
367
  }
368
368
  return null;
369
369
  }
370
- var _global = typeof self === "undefined" ? typeof global === "undefined" ? undefined : global : self;
370
+ var _global = function () {
371
+ /*eslint no-undef:0*/
372
+ if (typeof globalThis !== "undefined") return globalThis;
373
+ return typeof self !== "undefined" ? self : typeof window !== 'undefined' ? window : global;
374
+ }();
371
375
  var isContextDefined = function isContextDefined(context) {
372
376
  return !isUndefined(context) && context !== _global;
373
377
  };
@@ -1223,7 +1227,9 @@
1223
1227
  * This leads to a problem when axios post `FormData` in webWorker
1224
1228
  */
1225
1229
  var isStandardBrowserWebWorkerEnv = function () {
1226
- return typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope && typeof self.importScripts === 'function';
1230
+ return typeof WorkerGlobalScope !== 'undefined' &&
1231
+ // eslint-disable-next-line no-undef
1232
+ self instanceof WorkerGlobalScope && typeof self.importScripts === 'function';
1227
1233
  }();
1228
1234
  var platform = {
1229
1235
  isBrowser: true,
@@ -2391,7 +2397,7 @@
2391
2397
  return config;
2392
2398
  }
2393
2399
 
2394
- var VERSION = "1.2.1";
2400
+ var VERSION = "1.2.2";
2395
2401
 
2396
2402
  var validators$1 = {};
2397
2403
 
@@ -2783,6 +2789,79 @@
2783
2789
  return utils.isObject(payload) && payload.isAxiosError === true;
2784
2790
  }
2785
2791
 
2792
+ var HttpStatusCode = {
2793
+ Continue: 100,
2794
+ SwitchingProtocols: 101,
2795
+ Processing: 102,
2796
+ EarlyHints: 103,
2797
+ Ok: 200,
2798
+ Created: 201,
2799
+ Accepted: 202,
2800
+ NonAuthoritativeInformation: 203,
2801
+ NoContent: 204,
2802
+ ResetContent: 205,
2803
+ PartialContent: 206,
2804
+ MultiStatus: 207,
2805
+ AlreadyReported: 208,
2806
+ ImUsed: 226,
2807
+ MultipleChoices: 300,
2808
+ MovedPermanently: 301,
2809
+ Found: 302,
2810
+ SeeOther: 303,
2811
+ NotModified: 304,
2812
+ UseProxy: 305,
2813
+ Unused: 306,
2814
+ TemporaryRedirect: 307,
2815
+ PermanentRedirect: 308,
2816
+ BadRequest: 400,
2817
+ Unauthorized: 401,
2818
+ PaymentRequired: 402,
2819
+ Forbidden: 403,
2820
+ NotFound: 404,
2821
+ MethodNotAllowed: 405,
2822
+ NotAcceptable: 406,
2823
+ ProxyAuthenticationRequired: 407,
2824
+ RequestTimeout: 408,
2825
+ Conflict: 409,
2826
+ Gone: 410,
2827
+ LengthRequired: 411,
2828
+ PreconditionFailed: 412,
2829
+ PayloadTooLarge: 413,
2830
+ UriTooLong: 414,
2831
+ UnsupportedMediaType: 415,
2832
+ RangeNotSatisfiable: 416,
2833
+ ExpectationFailed: 417,
2834
+ ImATeapot: 418,
2835
+ MisdirectedRequest: 421,
2836
+ UnprocessableEntity: 422,
2837
+ Locked: 423,
2838
+ FailedDependency: 424,
2839
+ TooEarly: 425,
2840
+ UpgradeRequired: 426,
2841
+ PreconditionRequired: 428,
2842
+ TooManyRequests: 429,
2843
+ RequestHeaderFieldsTooLarge: 431,
2844
+ UnavailableForLegalReasons: 451,
2845
+ InternalServerError: 500,
2846
+ NotImplemented: 501,
2847
+ BadGateway: 502,
2848
+ ServiceUnavailable: 503,
2849
+ GatewayTimeout: 504,
2850
+ HttpVersionNotSupported: 505,
2851
+ VariantAlsoNegotiates: 506,
2852
+ InsufficientStorage: 507,
2853
+ LoopDetected: 508,
2854
+ NotExtended: 510,
2855
+ NetworkAuthenticationRequired: 511
2856
+ };
2857
+ Object.entries(HttpStatusCode).forEach(function (_ref) {
2858
+ var _ref2 = _slicedToArray(_ref, 2),
2859
+ key = _ref2[0],
2860
+ value = _ref2[1];
2861
+ HttpStatusCode[value] = key;
2862
+ });
2863
+ var HttpStatusCode$1 = HttpStatusCode;
2864
+
2786
2865
  /**
2787
2866
  * Create an instance of Axios
2788
2867
  *
@@ -2845,6 +2924,7 @@
2845
2924
  axios.formToJSON = function (thing) {
2846
2925
  return formDataToJSON(utils.isHTMLForm(thing) ? new FormData(thing) : thing);
2847
2926
  };
2927
+ axios.HttpStatusCode = HttpStatusCode$1;
2848
2928
  axios["default"] = axios;
2849
2929
 
2850
2930
  return axios;