Skip to content

Commit 666bad6

Browse files
committed
Prepare for release 1.2.39
1 parent 4966c0a commit 666bad6

6 files changed

+72
-61
lines changed

Diff for: dist/netlicensing-client.js

+14-28
Original file line numberDiff line numberDiff line change
@@ -5059,7 +5059,7 @@ var _default = exports["default"] = {
50595059
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
50605060

50615061
"use strict";
5062-
// Axios v1.7.9 Copyright (c) 2024 Matt Zabriskie and contributors
5062+
/*! Axios v1.8.2 Copyright (c) 2025 Matt Zabriskie and contributors */
50635063

50645064

50655065
function bind(fn, thisArg) {
@@ -5668,26 +5668,6 @@ const toFiniteNumber = (value, defaultValue) => {
56685668
return value != null && Number.isFinite(value = +value) ? value : defaultValue;
56695669
};
56705670

5671-
const ALPHA = 'abcdefghijklmnopqrstuvwxyz';
5672-
5673-
const DIGIT = '0123456789';
5674-
5675-
const ALPHABET = {
5676-
DIGIT,
5677-
ALPHA,
5678-
ALPHA_DIGIT: ALPHA + ALPHA.toUpperCase() + DIGIT
5679-
};
5680-
5681-
const generateString = (size = 16, alphabet = ALPHABET.ALPHA_DIGIT) => {
5682-
let str = '';
5683-
const {length} = alphabet;
5684-
while (size--) {
5685-
str += alphabet[Math.random() * length|0];
5686-
}
5687-
5688-
return str;
5689-
};
5690-
56915671
/**
56925672
* If the thing is a FormData object, return true, otherwise return false.
56935673
*
@@ -5815,8 +5795,6 @@ var utils$1 = {
58155795
findKey,
58165796
global: _global,
58175797
isContextDefined,
5818-
ALPHABET,
5819-
generateString,
58205798
isSpecCompliantForm,
58215799
toJSONObject,
58225800
isAsyncFn,
@@ -7309,8 +7287,9 @@ function combineURLs(baseURL, relativeURL) {
73097287
*
73107288
* @returns {string} The combined full path
73117289
*/
7312-
function buildFullPath(baseURL, requestedURL) {
7313-
if (baseURL && !isAbsoluteURL(requestedURL)) {
7290+
function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
7291+
let isRelativeUrl = !isAbsoluteURL(requestedURL);
7292+
if (baseURL && isRelativeUrl || allowAbsoluteUrls == false) {
73147293
return combineURLs(baseURL, requestedURL);
73157294
}
73167295
return requestedURL;
@@ -8150,7 +8129,7 @@ function dispatchRequest(config) {
81508129
});
81518130
}
81528131

8153-
const VERSION = "1.7.9";
8132+
const VERSION = "1.8.2";
81548133

81558134
const validators$1 = {};
81568135

@@ -8335,6 +8314,13 @@ class Axios {
83358314
}
83368315
}
83378316

8317+
// Set config.allowAbsoluteUrls
8318+
if (config.allowAbsoluteUrls !== undefined) ; else if (this.defaults.allowAbsoluteUrls !== undefined) {
8319+
config.allowAbsoluteUrls = this.defaults.allowAbsoluteUrls;
8320+
} else {
8321+
config.allowAbsoluteUrls = true;
8322+
}
8323+
83388324
validator.assertOptions(config, {
83398325
baseUrl: validators.spelling('baseURL'),
83408326
withXsrfToken: validators.spelling('withXSRFToken')
@@ -8430,7 +8416,7 @@ class Axios {
84308416

84318417
getUri(config) {
84328418
config = mergeConfig(this.defaults, config);
8433-
const fullPath = buildFullPath(config.baseURL, config.url);
8419+
const fullPath = buildFullPath(config.baseURL, config.url, config.allowAbsoluteUrls);
84348420
return buildURL(fullPath, config.params, config.paramsSerializer);
84358421
}
84368422
}
@@ -9790,7 +9776,7 @@ module.exports = _nonIterableRest, module.exports.__esModule = true, module.expo
97909776
/***/ ((module) => {
97919777

97929778
"use strict";
9793-
module.exports = /*#__PURE__*/JSON.parse('{"name":"netlicensing-client","version":"1.2.37","description":"JavaScript Wrapper for Labs64 NetLicensing RESTful API","keywords":["labs64","netlicensing","licensing","licensing-as-a-service","license","license-management","software-license","client","restful","restful-api","javascript","wrapper","api","client"],"license":"Apache-2.0","author":"Labs64 GmbH","homepage":"https://netlicensing.io","repository":{"type":"git","url":"https://github.com/Labs64/NetLicensingClient-javascript"},"bugs":{"url":"https://github.com/Labs64/NetLicensingClient-javascript/issues"},"contributors":[{"name":"Ready Brown","email":"[email protected]","url":"https://github.com/r-brown"},{"name":"Viacheslav Rudkovskiy","email":"[email protected]","url":"https://github.com/v-rudkovskiy"},{"name":"Andrei Yushkevich","email":"[email protected]","url":"https://github.com/yushkevich"}],"main":"dist/netlicensing-client.js","files":["dist"],"scripts":{"build":"node build/build.cjs","release":"npm run build && npm run test","dev":"webpack --progress --watch --config build/webpack.dev.conf.cjs","test":"karma start test/karma.conf.js --single-run","test-mocha":"webpack --config build/webpack.test.conf.cjs","test-for-travis":"karma start test/karma.conf.js --single-run --browsers Firefox","lint":"eslint --ext .js,.vue src test"},"dependencies":{"axios":"^1.7.9","btoa":"^1.2.1","es6-promise":"^4.2.8"},"devDependencies":{"@babel/core":"^7.26.9","@babel/plugin-proposal-class-properties":"^7.16.7","@babel/plugin-proposal-decorators":"^7.25.9","@babel/plugin-proposal-export-namespace-from":"^7.16.7","@babel/plugin-proposal-function-sent":"^7.25.9","@babel/plugin-proposal-json-strings":"^7.16.7","@babel/plugin-proposal-numeric-separator":"^7.16.7","@babel/plugin-proposal-throw-expressions":"^7.25.9","@babel/plugin-syntax-dynamic-import":"^7.8.3","@babel/plugin-syntax-import-meta":"^7.10.4","@babel/plugin-transform-modules-commonjs":"^7.26.3","@babel/plugin-transform-runtime":"^7.26.9","@babel/preset-env":"^7.26.9","@babel/runtime":"^7.26.9","axios-mock-adapter":"^2.1.0","babel-eslint":"^10.1.0","babel-loader":"^9.2.1","chalk":"^4.1.2","eslint":"^8.2.0","eslint-config-airbnb-base":"^15.0.0","eslint-friendly-formatter":"^4.0.1","eslint-import-resolver-webpack":"^0.13.10","eslint-plugin-import":"^2.31.0","eslint-plugin-jasmine":"^4.2.2","eslint-webpack-plugin":"^4.2.0","faker":"^5.5.3","is-docker":"^2.2.1","jasmine":"^4.0.2","jasmine-core":"^4.0.1","karma":"^6.3.17","karma-chrome-launcher":"^3.1.0","karma-firefox-launcher":"^2.1.2","karma-jasmine":"^4.0.2","karma-sourcemap-loader":"^0.3.7","karma-spec-reporter":"0.0.33","karma-webpack":"^5.0.0","lodash":"^4.17.21","ora":"^5.4.1","rimraf":"^3.0.2","terser-webpack-plugin":"^5.3.1","webpack":"^5.76.0","webpack-cli":"^5.1.1","webpack-merge":"^5.8.0"},"engines":{"node":">= 14.0.0","npm":">= 8.0.0"},"browserslist":["> 1%","last 2 versions","not ie <= 10"]}');
9779+
module.exports = /*#__PURE__*/JSON.parse('{"name":"netlicensing-client","version":"1.2.38","description":"JavaScript Wrapper for Labs64 NetLicensing RESTful API","keywords":["labs64","netlicensing","licensing","licensing-as-a-service","license","license-management","software-license","client","restful","restful-api","javascript","wrapper","api","client"],"license":"Apache-2.0","author":"Labs64 GmbH","homepage":"https://netlicensing.io","repository":{"type":"git","url":"https://github.com/Labs64/NetLicensingClient-javascript"},"bugs":{"url":"https://github.com/Labs64/NetLicensingClient-javascript/issues"},"contributors":[{"name":"Ready Brown","email":"[email protected]","url":"https://github.com/r-brown"},{"name":"Viacheslav Rudkovskiy","email":"[email protected]","url":"https://github.com/v-rudkovskiy"},{"name":"Andrei Yushkevich","email":"[email protected]","url":"https://github.com/yushkevich"}],"main":"dist/netlicensing-client.js","files":["dist"],"scripts":{"build":"node build/build.cjs","release":"npm run build && npm run test","dev":"webpack --progress --watch --config build/webpack.dev.conf.cjs","test":"karma start test/karma.conf.js --single-run","test-mocha":"webpack --config build/webpack.test.conf.cjs","test-for-travis":"karma start test/karma.conf.js --single-run --browsers Firefox","lint":"eslint --ext .js,.vue src test"},"dependencies":{"axios":"^1.8.2","btoa":"^1.2.1","es6-promise":"^4.2.8"},"devDependencies":{"@babel/core":"^7.26.9","@babel/plugin-proposal-class-properties":"^7.16.7","@babel/plugin-proposal-decorators":"^7.25.9","@babel/plugin-proposal-export-namespace-from":"^7.16.7","@babel/plugin-proposal-function-sent":"^7.25.9","@babel/plugin-proposal-json-strings":"^7.16.7","@babel/plugin-proposal-numeric-separator":"^7.16.7","@babel/plugin-proposal-throw-expressions":"^7.25.9","@babel/plugin-syntax-dynamic-import":"^7.8.3","@babel/plugin-syntax-import-meta":"^7.10.4","@babel/plugin-transform-modules-commonjs":"^7.26.3","@babel/plugin-transform-runtime":"^7.26.9","@babel/preset-env":"^7.26.9","@babel/runtime":"^7.26.9","axios-mock-adapter":"^2.1.0","babel-eslint":"^10.1.0","babel-loader":"^9.2.1","chalk":"^4.1.2","eslint":"^8.2.0","eslint-config-airbnb-base":"^15.0.0","eslint-friendly-formatter":"^4.0.1","eslint-import-resolver-webpack":"^0.13.10","eslint-plugin-import":"^2.31.0","eslint-plugin-jasmine":"^4.2.2","eslint-webpack-plugin":"^4.2.0","faker":"^5.5.3","is-docker":"^2.2.1","jasmine":"^4.0.2","jasmine-core":"^4.0.1","karma":"^6.3.17","karma-chrome-launcher":"^3.1.0","karma-firefox-launcher":"^2.1.2","karma-jasmine":"^4.0.2","karma-sourcemap-loader":"^0.3.7","karma-spec-reporter":"0.0.33","karma-webpack":"^5.0.0","lodash":"^4.17.21","ora":"^5.4.1","rimraf":"^3.0.2","terser-webpack-plugin":"^5.3.1","webpack":"^5.76.0","webpack-cli":"^5.1.1","webpack-merge":"^5.8.0"},"engines":{"node":">= 14.0.0","npm":">= 8.0.0"},"browserslist":["> 1%","last 2 versions","not ie <= 10"]}');
97949780

97959781
/***/ }),
97969782

Diff for: dist/netlicensing-client.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/netlicensing-client.min.js.LICENSE.txt

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/*! Axios v1.8.2 Copyright (c) 2025 Matt Zabriskie and contributors */
2+
13
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
24

35
/**

0 commit comments

Comments
 (0)