@nsshunt/stsrunnerframework 1.0.57 → 1.0.58
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.
|
@@ -3734,7 +3734,7 @@ function combineURLs(baseURL, relativeURL) {
|
|
|
3734
3734
|
}
|
|
3735
3735
|
function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
|
|
3736
3736
|
let isRelativeUrl = !isAbsoluteURL(requestedURL);
|
|
3737
|
-
if (baseURL && isRelativeUrl || allowAbsoluteUrls == false) {
|
|
3737
|
+
if (baseURL && (isRelativeUrl || allowAbsoluteUrls == false)) {
|
|
3738
3738
|
return combineURLs(baseURL, requestedURL);
|
|
3739
3739
|
}
|
|
3740
3740
|
return requestedURL;
|
|
@@ -4338,7 +4338,7 @@ function dispatchRequest(config2) {
|
|
|
4338
4338
|
return Promise.reject(reason);
|
|
4339
4339
|
});
|
|
4340
4340
|
}
|
|
4341
|
-
const VERSION$1 = "1.8.
|
|
4341
|
+
const VERSION$1 = "1.8.4";
|
|
4342
4342
|
const validators$2 = {};
|
|
4343
4343
|
["object", "boolean", "number", "function", "string", "symbol"].forEach((type, i) => {
|
|
4344
4344
|
validators$2[type] = function validator2(thing) {
|
|
@@ -4835,7 +4835,7 @@ const __viteBrowserExternal$1$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */
|
|
|
4835
4835
|
default: __viteBrowserExternal$2
|
|
4836
4836
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
4837
4837
|
const require$$0$3 = /* @__PURE__ */ getAugmentedNamespace(__viteBrowserExternal$1$1);
|
|
4838
|
-
const version$2 = "16.
|
|
4838
|
+
const version$2 = "16.5.0";
|
|
4839
4839
|
const require$$4$1 = {
|
|
4840
4840
|
version: version$2
|
|
4841
4841
|
};
|
|
@@ -4894,9 +4894,6 @@ function requireMain$1() {
|
|
|
4894
4894
|
}
|
|
4895
4895
|
return DotenvModule.parse(decrypted);
|
|
4896
4896
|
}
|
|
4897
|
-
function _log(message2) {
|
|
4898
|
-
console.log(`[dotenv@${version2}][INFO] ${message2}`);
|
|
4899
|
-
}
|
|
4900
4897
|
function _warn(message2) {
|
|
4901
4898
|
console.log(`[dotenv@${version2}][WARN] ${message2}`);
|
|
4902
4899
|
}
|
|
@@ -4969,7 +4966,10 @@ function requireMain$1() {
|
|
|
4969
4966
|
return envPath[0] === "~" ? path.join(os.homedir(), envPath.slice(1)) : envPath;
|
|
4970
4967
|
}
|
|
4971
4968
|
function _configVault(options) {
|
|
4972
|
-
|
|
4969
|
+
const debug = Boolean(options && options.debug);
|
|
4970
|
+
if (debug) {
|
|
4971
|
+
_debug3("Loading env from encrypted .env.vault");
|
|
4972
|
+
}
|
|
4973
4973
|
const parsed = DotenvModule._parseVault(options);
|
|
4974
4974
|
let processEnv = process.env;
|
|
4975
4975
|
if (options && options.processEnv != null) {
|
|
@@ -19208,7 +19208,7 @@ function requireUtils() {
|
|
|
19208
19208
|
jwks = jwks.filter(({ use }) => use === "sig" || use === void 0).filter(({ kty }) => kty === "RSA" || kty === "EC" || kty === "OKP");
|
|
19209
19209
|
for (const jwk of jwks) {
|
|
19210
19210
|
try {
|
|
19211
|
-
const key = await jose.importJWK(jwk, resolveAlg(jwk));
|
|
19211
|
+
const key = await jose.importJWK({ ...jwk, ext: true }, resolveAlg(jwk));
|
|
19212
19212
|
if (key.type !== "public") {
|
|
19213
19213
|
continue;
|
|
19214
19214
|
}
|
|
@@ -21610,7 +21610,7 @@ const __viteBrowserExternal$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Ob
|
|
|
21610
21610
|
default: __viteBrowserExternal
|
|
21611
21611
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
21612
21612
|
const require$$0 = /* @__PURE__ */ getAugmentedNamespace$1(__viteBrowserExternal$1);
|
|
21613
|
-
const version = "16.
|
|
21613
|
+
const version = "16.5.0";
|
|
21614
21614
|
const require$$4 = {
|
|
21615
21615
|
version
|
|
21616
21616
|
};
|
|
@@ -21669,9 +21669,6 @@ function requireMain() {
|
|
|
21669
21669
|
}
|
|
21670
21670
|
return DotenvModule.parse(decrypted);
|
|
21671
21671
|
}
|
|
21672
|
-
function _log(message2) {
|
|
21673
|
-
console.log(`[dotenv@${version2}][INFO] ${message2}`);
|
|
21674
|
-
}
|
|
21675
21672
|
function _warn(message2) {
|
|
21676
21673
|
console.log(`[dotenv@${version2}][WARN] ${message2}`);
|
|
21677
21674
|
}
|
|
@@ -21744,7 +21741,10 @@ function requireMain() {
|
|
|
21744
21741
|
return envPath[0] === "~" ? path.join(os.homedir(), envPath.slice(1)) : envPath;
|
|
21745
21742
|
}
|
|
21746
21743
|
function _configVault(options) {
|
|
21747
|
-
|
|
21744
|
+
const debug = Boolean(options && options.debug);
|
|
21745
|
+
if (debug) {
|
|
21746
|
+
_debug3("Loading env from encrypted .env.vault");
|
|
21747
|
+
}
|
|
21748
21748
|
const parsed = DotenvModule._parseVault(options);
|
|
21749
21749
|
let processEnv = process.env;
|
|
21750
21750
|
if (options && options.processEnv != null) {
|