2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-20 20:00:40 +03:00

chore(release): v1.3.5 (#5634)

Co-authored-by: DigitalBrainJS <DigitalBrainJS@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2023-04-05 21:01:58 +03:00
committed by GitHub
parent a56c866120
commit 4af78a72ee
17 changed files with 83 additions and 53 deletions
+12
View File
@@ -1,5 +1,17 @@
# Changelog # Changelog
## [1.3.5](https://github.com/axios/axios/compare/v1.3.4...v1.3.5) (2023-04-05)
### Bug Fixes
* **headers:** fixed isValidHeaderName to support full list of allowed characters; ([#5584](https://github.com/axios/axios/issues/5584)) ([e7decef](https://github.com/axios/axios/commit/e7decef6a99f4627e27ed9ea5b00ce8e201c3841))
* **params:** re-added the ability to set the function as `paramsSerializer` config; ([#5633](https://github.com/axios/axios/issues/5633)) ([a56c866](https://github.com/axios/axios/commit/a56c8661209d5ce5a645a05f294a0e08a6c1f6b3))
### Contributors to this release
- <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+28/-10 (#5633 #5584 )")
## [1.3.4](https://github.com/axios/axios/compare/v1.3.3...v1.3.4) (2023-02-22) ## [1.3.4](https://github.com/axios/axios/compare/v1.3.3...v1.3.4) (2023-02-22)
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "axios", "name": "axios",
"main": "./dist/axios.js", "main": "./dist/axios.js",
"version": "1.3.4", "version": "1.3.5",
"homepage": "https://axios-http.com", "homepage": "https://axios-http.com",
"authors": [ "authors": [
"Matt Zabriskie" "Matt Zabriskie"
+16 -10
View File
@@ -1,4 +1,4 @@
// Axios v1.3.4 Copyright (c) 2023 Matt Zabriskie and contributors // Axios v1.3.5 Copyright (c) 2023 Matt Zabriskie and contributors
(function (global, factory) { (function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) : typeof define === 'function' && define.amd ? define(factory) :
@@ -1537,9 +1537,9 @@
} }
return tokens; return tokens;
} }
function isValidHeaderName(str) { var isValidHeaderName = function isValidHeaderName(str) {
return /^[-_a-zA-Z]+$/.test(str.trim()); return /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(str.trim());
} };
function matchHeaderValue(context, value, header, filter, isHeaderNameFilter) { function matchHeaderValue(context, value, header, filter, isHeaderNameFilter) {
if (utils.isFunction(filter)) { if (utils.isFunction(filter)) {
return filter.call(this, value, header); return filter.call(this, value, header);
@@ -2428,7 +2428,7 @@
return config; return config;
} }
var VERSION = "1.3.4"; var VERSION = "1.3.5";
var validators$1 = {}; var validators$1 = {};
@@ -2555,11 +2555,17 @@
clarifyTimeoutError: validators.transitional(validators["boolean"]) clarifyTimeoutError: validators.transitional(validators["boolean"])
}, false); }, false);
} }
if (paramsSerializer !== undefined) { if (paramsSerializer != null) {
validator.assertOptions(paramsSerializer, { if (utils.isFunction(paramsSerializer)) {
encode: validators["function"], config.paramsSerializer = {
serialize: validators["function"] serialize: paramsSerializer
}, true); };
} else {
validator.assertOptions(paramsSerializer, {
encode: validators["function"],
serialize: validators["function"]
}, true);
}
} }
// Set config.method // Set config.method
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+14 -10
View File
@@ -1,4 +1,4 @@
// Axios v1.3.4 Copyright (c) 2023 Matt Zabriskie and contributors // Axios v1.3.5 Copyright (c) 2023 Matt Zabriskie and contributors
'use strict'; 'use strict';
function bind(fn, thisArg) { function bind(fn, thisArg) {
@@ -1612,9 +1612,7 @@ function parseTokens(str) {
return tokens; return tokens;
} }
function isValidHeaderName(str) { const isValidHeaderName = (str) => /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(str.trim());
return /^[-_a-zA-Z]+$/.test(str.trim());
}
function matchHeaderValue(context, value, header, filter, isHeaderNameFilter) { function matchHeaderValue(context, value, header, filter, isHeaderNameFilter) {
if (utils.isFunction(filter)) { if (utils.isFunction(filter)) {
@@ -2618,7 +2616,7 @@ function mergeConfig(config1, config2) {
return config; return config;
} }
const VERSION = "1.3.4"; const VERSION = "1.3.5";
const validators$1 = {}; const validators$1 = {};
@@ -2755,11 +2753,17 @@ class Axios {
}, false); }, false);
} }
if (paramsSerializer !== undefined) { if (paramsSerializer != null) {
validator.assertOptions(paramsSerializer, { if (utils.isFunction(paramsSerializer)) {
encode: validators.function, config.paramsSerializer = {
serialize: validators.function serialize: paramsSerializer
}, true); };
} else {
validator.assertOptions(paramsSerializer, {
encode: validators.function,
serialize: validators.function
}, true);
}
} }
// Set config.method // Set config.method
+1 -1
View File
File diff suppressed because one or more lines are too long
+14 -10
View File
@@ -1,4 +1,4 @@
// Axios v1.3.4 Copyright (c) 2023 Matt Zabriskie and contributors // Axios v1.3.5 Copyright (c) 2023 Matt Zabriskie and contributors
function bind(fn, thisArg) { function bind(fn, thisArg) {
return function wrap() { return function wrap() {
return fn.apply(thisArg, arguments); return fn.apply(thisArg, arguments);
@@ -1610,9 +1610,7 @@ function parseTokens(str) {
return tokens; return tokens;
} }
function isValidHeaderName(str) { const isValidHeaderName = (str) => /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(str.trim());
return /^[-_a-zA-Z]+$/.test(str.trim());
}
function matchHeaderValue(context, value, header, filter, isHeaderNameFilter) { function matchHeaderValue(context, value, header, filter, isHeaderNameFilter) {
if (utils.isFunction(filter)) { if (utils.isFunction(filter)) {
@@ -2616,7 +2614,7 @@ function mergeConfig$1(config1, config2) {
return config; return config;
} }
const VERSION$1 = "1.3.4"; const VERSION$1 = "1.3.5";
const validators$1 = {}; const validators$1 = {};
@@ -2753,11 +2751,17 @@ class Axios$1 {
}, false); }, false);
} }
if (paramsSerializer !== undefined) { if (paramsSerializer != null) {
validator.assertOptions(paramsSerializer, { if (utils.isFunction(paramsSerializer)) {
encode: validators.function, config.paramsSerializer = {
serialize: validators.function serialize: paramsSerializer
}, true); };
} else {
validator.assertOptions(paramsSerializer, {
encode: validators.function,
serialize: validators.function
}, true);
}
} }
// Set config.method // Set config.method
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+14 -10
View File
@@ -1,4 +1,4 @@
// Axios v1.3.4 Copyright (c) 2023 Matt Zabriskie and contributors // Axios v1.3.5 Copyright (c) 2023 Matt Zabriskie and contributors
'use strict'; 'use strict';
const FormData$1 = require('form-data'); const FormData$1 = require('form-data');
@@ -1577,9 +1577,7 @@ function parseTokens(str) {
return tokens; return tokens;
} }
function isValidHeaderName(str) { const isValidHeaderName = (str) => /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(str.trim());
return /^[-_a-zA-Z]+$/.test(str.trim());
}
function matchHeaderValue(context, value, header, filter, isHeaderNameFilter) { function matchHeaderValue(context, value, header, filter, isHeaderNameFilter) {
if (utils.isFunction(filter)) { if (utils.isFunction(filter)) {
@@ -1952,7 +1950,7 @@ function buildFullPath(baseURL, requestedURL) {
return requestedURL; return requestedURL;
} }
const VERSION = "1.3.4"; const VERSION = "1.3.5";
function parseProtocol(url) { function parseProtocol(url) {
const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url); const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url);
@@ -3754,11 +3752,17 @@ class Axios {
}, false); }, false);
} }
if (paramsSerializer !== undefined) { if (paramsSerializer != null) {
validator.assertOptions(paramsSerializer, { if (utils.isFunction(paramsSerializer)) {
encode: validators.function, config.paramsSerializer = {
serialize: validators.function serialize: paramsSerializer
}, true); };
} else {
validator.assertOptions(paramsSerializer, {
encode: validators.function,
serialize: validators.function
}, true);
}
} }
// Set config.method // Set config.method
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -1 +1 @@
export const VERSION = "1.3.4"; export const VERSION = "1.3.5";
+2 -2
View File
@@ -1,12 +1,12 @@
{ {
"name": "axios", "name": "axios",
"version": "1.3.4", "version": "1.3.5",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "axios", "name": "axios",
"version": "1.3.4", "version": "1.3.5",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"follow-redirects": "^1.15.0", "follow-redirects": "^1.15.0",
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "axios", "name": "axios",
"version": "1.3.4", "version": "1.3.5",
"description": "Promise based HTTP client for the browser and node.js", "description": "Promise based HTTP client for the browser and node.js",
"main": "index.js", "main": "index.js",
"exports": { "exports": {