Bump the npm-development group with 3 updates (#278)

* Bump the npm-development group with 3 updates

Bumps the npm-development group with 3 updates: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node), [jose](https://github.com/panva/jose) and [typescript](https://github.com/microsoft/TypeScript).


Updates `@types/node` from 22.7.4 to 22.7.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `jose` from 5.9.3 to 5.9.4
- [Release notes](https://github.com/panva/jose/releases)
- [Changelog](https://github.com/panva/jose/blob/main/CHANGELOG.md)
- [Commits](https://github.com/panva/jose/compare/v5.9.3...v5.9.4)

Updates `typescript` from 5.6.2 to 5.6.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.6.2...v5.6.3)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
- dependency-name: jose
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
...

Signed-off-by: dependabot[bot] <[email protected]>

* rebuild dist

Signed-off-by: Brian DeHamer <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Brian DeHamer <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Brian DeHamer <[email protected]>
This commit is contained in:
dependabot[bot]
2024-10-15 12:31:44 -07:00
committed by GitHub
co-authored by Brian DeHamer
parent b1d65e4607
commit d01b0709fa
3 changed files with 50 additions and 70 deletions
Generated Vendored
+35 -55
View File
@@ -27362,7 +27362,7 @@ function isCloudflareWorkers() {
let USER_AGENT; let USER_AGENT;
if (typeof navigator === 'undefined' || !navigator.userAgent?.startsWith?.('Mozilla/5.0 ')) { if (typeof navigator === 'undefined' || !navigator.userAgent?.startsWith?.('Mozilla/5.0 ')) {
const NAME = 'jose'; const NAME = 'jose';
const VERSION = 'v5.9.3'; const VERSION = 'v5.9.4';
USER_AGENT = `${NAME}/${VERSION}`; USER_AGENT = `${NAME}/${VERSION}`;
} }
exports.jwksCache = Symbol(); exports.jwksCache = Symbol();
@@ -30895,27 +30895,23 @@ exports.decodeProtectedHeader = decodeProtectedHeader;
Object.defineProperty(exports, "__esModule", ({ value: true })); Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.JWSSignatureVerificationFailed = exports.JWKSTimeout = exports.JWKSMultipleMatchingKeys = exports.JWKSNoMatchingKey = exports.JWKSInvalid = exports.JWKInvalid = exports.JWTInvalid = exports.JWSInvalid = exports.JWEInvalid = exports.JWEDecryptionFailed = exports.JOSENotSupported = exports.JOSEAlgNotAllowed = exports.JWTExpired = exports.JWTClaimValidationFailed = exports.JOSEError = void 0; exports.JWSSignatureVerificationFailed = exports.JWKSTimeout = exports.JWKSMultipleMatchingKeys = exports.JWKSNoMatchingKey = exports.JWKSInvalid = exports.JWKInvalid = exports.JWTInvalid = exports.JWSInvalid = exports.JWEInvalid = exports.JWEDecryptionFailed = exports.JOSENotSupported = exports.JOSEAlgNotAllowed = exports.JWTExpired = exports.JWTClaimValidationFailed = exports.JOSEError = void 0;
class JOSEError extends Error { class JOSEError extends Error {
static get code() { static code = 'ERR_JOSE_GENERIC';
return 'ERR_JOSE_GENERIC';
}
code = 'ERR_JOSE_GENERIC'; code = 'ERR_JOSE_GENERIC';
constructor(message) { constructor(message, options) {
super(message); super(message, options);
this.name = this.constructor.name; this.name = this.constructor.name;
Error.captureStackTrace?.(this, this.constructor); Error.captureStackTrace?.(this, this.constructor);
} }
} }
exports.JOSEError = JOSEError; exports.JOSEError = JOSEError;
class JWTClaimValidationFailed extends JOSEError { class JWTClaimValidationFailed extends JOSEError {
static get code() { static code = 'ERR_JWT_CLAIM_VALIDATION_FAILED';
return 'ERR_JWT_CLAIM_VALIDATION_FAILED';
}
code = 'ERR_JWT_CLAIM_VALIDATION_FAILED'; code = 'ERR_JWT_CLAIM_VALIDATION_FAILED';
claim; claim;
reason; reason;
payload; payload;
constructor(message, payload, claim = 'unspecified', reason = 'unspecified') { constructor(message, payload, claim = 'unspecified', reason = 'unspecified') {
super(message); super(message, { cause: { claim, reason, payload } });
this.claim = claim; this.claim = claim;
this.reason = reason; this.reason = reason;
this.payload = payload; this.payload = payload;
@@ -30923,15 +30919,13 @@ class JWTClaimValidationFailed extends JOSEError {
} }
exports.JWTClaimValidationFailed = JWTClaimValidationFailed; exports.JWTClaimValidationFailed = JWTClaimValidationFailed;
class JWTExpired extends JOSEError { class JWTExpired extends JOSEError {
static get code() { static code = 'ERR_JWT_EXPIRED';
return 'ERR_JWT_EXPIRED';
}
code = 'ERR_JWT_EXPIRED'; code = 'ERR_JWT_EXPIRED';
claim; claim;
reason; reason;
payload; payload;
constructor(message, payload, claim = 'unspecified', reason = 'unspecified') { constructor(message, payload, claim = 'unspecified', reason = 'unspecified') {
super(message); super(message, { cause: { claim, reason, payload } });
this.claim = claim; this.claim = claim;
this.reason = reason; this.reason = reason;
this.payload = payload; this.payload = payload;
@@ -30939,93 +30933,79 @@ class JWTExpired extends JOSEError {
} }
exports.JWTExpired = JWTExpired; exports.JWTExpired = JWTExpired;
class JOSEAlgNotAllowed extends JOSEError { class JOSEAlgNotAllowed extends JOSEError {
static get code() { static code = 'ERR_JOSE_ALG_NOT_ALLOWED';
return 'ERR_JOSE_ALG_NOT_ALLOWED';
}
code = 'ERR_JOSE_ALG_NOT_ALLOWED'; code = 'ERR_JOSE_ALG_NOT_ALLOWED';
} }
exports.JOSEAlgNotAllowed = JOSEAlgNotAllowed; exports.JOSEAlgNotAllowed = JOSEAlgNotAllowed;
class JOSENotSupported extends JOSEError { class JOSENotSupported extends JOSEError {
static get code() { static code = 'ERR_JOSE_NOT_SUPPORTED';
return 'ERR_JOSE_NOT_SUPPORTED';
}
code = 'ERR_JOSE_NOT_SUPPORTED'; code = 'ERR_JOSE_NOT_SUPPORTED';
} }
exports.JOSENotSupported = JOSENotSupported; exports.JOSENotSupported = JOSENotSupported;
class JWEDecryptionFailed extends JOSEError { class JWEDecryptionFailed extends JOSEError {
static get code() { static code = 'ERR_JWE_DECRYPTION_FAILED';
return 'ERR_JWE_DECRYPTION_FAILED';
}
code = 'ERR_JWE_DECRYPTION_FAILED'; code = 'ERR_JWE_DECRYPTION_FAILED';
message = 'decryption operation failed'; constructor(message = 'decryption operation failed', options) {
super(message, options);
}
} }
exports.JWEDecryptionFailed = JWEDecryptionFailed; exports.JWEDecryptionFailed = JWEDecryptionFailed;
class JWEInvalid extends JOSEError { class JWEInvalid extends JOSEError {
static get code() { static code = 'ERR_JWE_INVALID';
return 'ERR_JWE_INVALID';
}
code = 'ERR_JWE_INVALID'; code = 'ERR_JWE_INVALID';
} }
exports.JWEInvalid = JWEInvalid; exports.JWEInvalid = JWEInvalid;
class JWSInvalid extends JOSEError { class JWSInvalid extends JOSEError {
static get code() { static code = 'ERR_JWS_INVALID';
return 'ERR_JWS_INVALID';
}
code = 'ERR_JWS_INVALID'; code = 'ERR_JWS_INVALID';
} }
exports.JWSInvalid = JWSInvalid; exports.JWSInvalid = JWSInvalid;
class JWTInvalid extends JOSEError { class JWTInvalid extends JOSEError {
static get code() { static code = 'ERR_JWT_INVALID';
return 'ERR_JWT_INVALID';
}
code = 'ERR_JWT_INVALID'; code = 'ERR_JWT_INVALID';
} }
exports.JWTInvalid = JWTInvalid; exports.JWTInvalid = JWTInvalid;
class JWKInvalid extends JOSEError { class JWKInvalid extends JOSEError {
static get code() { static code = 'ERR_JWK_INVALID';
return 'ERR_JWK_INVALID';
}
code = 'ERR_JWK_INVALID'; code = 'ERR_JWK_INVALID';
} }
exports.JWKInvalid = JWKInvalid; exports.JWKInvalid = JWKInvalid;
class JWKSInvalid extends JOSEError { class JWKSInvalid extends JOSEError {
static get code() { static code = 'ERR_JWKS_INVALID';
return 'ERR_JWKS_INVALID';
}
code = 'ERR_JWKS_INVALID'; code = 'ERR_JWKS_INVALID';
} }
exports.JWKSInvalid = JWKSInvalid; exports.JWKSInvalid = JWKSInvalid;
class JWKSNoMatchingKey extends JOSEError { class JWKSNoMatchingKey extends JOSEError {
static get code() { static code = 'ERR_JWKS_NO_MATCHING_KEY';
return 'ERR_JWKS_NO_MATCHING_KEY';
}
code = 'ERR_JWKS_NO_MATCHING_KEY'; code = 'ERR_JWKS_NO_MATCHING_KEY';
message = 'no applicable key found in the JSON Web Key Set'; constructor(message = 'no applicable key found in the JSON Web Key Set', options) {
super(message, options);
}
} }
exports.JWKSNoMatchingKey = JWKSNoMatchingKey; exports.JWKSNoMatchingKey = JWKSNoMatchingKey;
class JWKSMultipleMatchingKeys extends JOSEError { class JWKSMultipleMatchingKeys extends JOSEError {
[Symbol.asyncIterator]; [Symbol.asyncIterator];
static get code() { static code = 'ERR_JWKS_MULTIPLE_MATCHING_KEYS';
return 'ERR_JWKS_MULTIPLE_MATCHING_KEYS';
}
code = 'ERR_JWKS_MULTIPLE_MATCHING_KEYS'; code = 'ERR_JWKS_MULTIPLE_MATCHING_KEYS';
message = 'multiple matching keys found in the JSON Web Key Set'; constructor(message = 'multiple matching keys found in the JSON Web Key Set', options) {
super(message, options);
}
} }
exports.JWKSMultipleMatchingKeys = JWKSMultipleMatchingKeys; exports.JWKSMultipleMatchingKeys = JWKSMultipleMatchingKeys;
class JWKSTimeout extends JOSEError { class JWKSTimeout extends JOSEError {
static get code() { static code = 'ERR_JWKS_TIMEOUT';
return 'ERR_JWKS_TIMEOUT';
}
code = 'ERR_JWKS_TIMEOUT'; code = 'ERR_JWKS_TIMEOUT';
message = 'request timed out'; constructor(message = 'request timed out', options) {
super(message, options);
}
} }
exports.JWKSTimeout = JWKSTimeout; exports.JWKSTimeout = JWKSTimeout;
class JWSSignatureVerificationFailed extends JOSEError { class JWSSignatureVerificationFailed extends JOSEError {
static get code() { static code = 'ERR_JWS_SIGNATURE_VERIFICATION_FAILED';
return 'ERR_JWS_SIGNATURE_VERIFICATION_FAILED';
}
code = 'ERR_JWS_SIGNATURE_VERIFICATION_FAILED'; code = 'ERR_JWS_SIGNATURE_VERIFICATION_FAILED';
message = 'signature verification failed'; constructor(message = 'signature verification failed', options) {
super(message, options);
}
} }
exports.JWSSignatureVerificationFailed = JWSSignatureVerificationFailed; exports.JWSSignatureVerificationFailed = JWSSignatureVerificationFailed;
+12 -12
View File
@@ -14,7 +14,7 @@
}, },
"devDependencies": { "devDependencies": {
"@types/jest": "^29.5.13", "@types/jest": "^29.5.13",
"@types/node": "^22.7.4", "@types/node": "^22.7.5",
"@typescript-eslint/eslint-plugin": "^7.17.0", "@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.18.0", "@typescript-eslint/parser": "^7.18.0",
"@vercel/ncc": "^0.38.2", "@vercel/ncc": "^0.38.2",
@@ -24,13 +24,13 @@
"eslint-plugin-jsonc": "^2.16.0", "eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-prettier": "^5.2.1", "eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0", "jest": "^29.7.0",
"jose": "^5.9.3", "jose": "^5.9.4",
"markdownlint-cli": "^0.42.0", "markdownlint-cli": "^0.42.0",
"nock": "^13.5.5", "nock": "^13.5.5",
"prettier": "^3.3.3", "prettier": "^3.3.3",
"prettier-eslint": "^16.3.0", "prettier-eslint": "^16.3.0",
"ts-jest": "^29.2.5", "ts-jest": "^29.2.5",
"typescript": "^5.6.2" "typescript": "^5.6.3"
}, },
"engines": { "engines": {
"node": ">=20" "node": ">=20"
@@ -1691,9 +1691,9 @@
"dev": true "dev": true
}, },
"node_modules/@types/node": { "node_modules/@types/node": {
"version": "22.7.4", "version": "22.7.5",
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.7.4.tgz", "resolved": "https://registry.npmjs.org/@types/node/-/node-22.7.5.tgz",
"integrity": "sha512-y+NPi1rFzDs1NdQHHToqeiX2TIS79SWEAw9GYhkkx8bD0ChpfqC+n2j5OXOCpzfojBEBt6DnEnnG9MY0zk1XLg==", "integrity": "sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"undici-types": "~6.19.2" "undici-types": "~6.19.2"
@@ -5695,9 +5695,9 @@
} }
}, },
"node_modules/jose": { "node_modules/jose": {
"version": "5.9.3", "version": "5.9.4",
"resolved": "https://registry.npmjs.org/jose/-/jose-5.9.3.tgz", "resolved": "https://registry.npmjs.org/jose/-/jose-5.9.4.tgz",
"integrity": "sha512-egLIoYSpcd+QUF+UHgobt5YzI2Pkw/H39ou9suW687MY6PmCwPmkNV/4TNjn1p2tX5xO3j0d0sq5hiYE24bSlg==", "integrity": "sha512-WBBl6au1qg6OHj67yCffCgFR3BADJBXN8MdRvCgJDuMv3driV2nHr7jdGvaKX9IolosAsn+M0XRArqLXUhyJHQ==",
"funding": { "funding": {
"url": "https://github.com/sponsors/panva" "url": "https://github.com/sponsors/panva"
} }
@@ -8100,9 +8100,9 @@
} }
}, },
"node_modules/typescript": { "node_modules/typescript": {
"version": "5.6.2", "version": "5.6.3",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.2.tgz", "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.3.tgz",
"integrity": "sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==", "integrity": "sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==",
"dev": true, "dev": true,
"bin": { "bin": {
"tsc": "bin/tsc", "tsc": "bin/tsc",
+3 -3
View File
@@ -75,7 +75,7 @@
}, },
"devDependencies": { "devDependencies": {
"@types/jest": "^29.5.13", "@types/jest": "^29.5.13",
"@types/node": "^22.7.4", "@types/node": "^22.7.5",
"@typescript-eslint/eslint-plugin": "^7.17.0", "@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.18.0", "@typescript-eslint/parser": "^7.18.0",
"@vercel/ncc": "^0.38.2", "@vercel/ncc": "^0.38.2",
@@ -85,12 +85,12 @@
"eslint-plugin-jsonc": "^2.16.0", "eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-prettier": "^5.2.1", "eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0", "jest": "^29.7.0",
"jose": "^5.9.3", "jose": "^5.9.4",
"markdownlint-cli": "^0.42.0", "markdownlint-cli": "^0.42.0",
"nock": "^13.5.5", "nock": "^13.5.5",
"prettier": "^3.3.3", "prettier": "^3.3.3",
"prettier-eslint": "^16.3.0", "prettier-eslint": "^16.3.0",
"ts-jest": "^29.2.5", "ts-jest": "^29.2.5",
"typescript": "^5.6.2" "typescript": "^5.6.3"
} }
} }