openid-client 6.1.3 → 6.1.4

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.
package/README.md CHANGED
@@ -217,7 +217,7 @@ The supported JavaScript runtimes include those that support the utilized Web AP
217
217
  | [v6.x](https://github.com/panva/openid-client/tree/v6.x) | ✅ | ✅ | ✅ | Universal[^universal] ESM[^cjs] |
218
218
  | [v5.x](https://github.com/panva/openid-client/tree/v5.x) | ✅ | ❌ | ❌ | Node.js CJS + ESM |
219
219
 
220
- [sponsor-auth0]: https://auth0.com/signup?utm_source=external_sites&utm_medium=panva&utm_campaign=devn_signup
220
+ [sponsor-auth0]: https://a0.to/signup/panva
221
221
  [WebCryptoAPI]: https://w3c.github.io/webcrypto/
222
222
  [Fetch API]: https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API
223
223
 
package/build/index.d.ts CHANGED
@@ -708,7 +708,7 @@ export declare function randomDPoPKeyPair(alg?: string, options?: oauth.Generate
708
708
  export interface DiscoveryRequestOptions {
709
709
  /**
710
710
  * Custom {@link !fetch Fetch API} implementation to use for the HTTP Requests
711
- * the client will be making. If this option is used, then the same timeout
711
+ * the client will be making. If this option is used, then the customFetch
712
712
  * value will be assigned to the resolved {@link Configuration} instance for
713
713
  * use with all its future individual HTTP requests.
714
714
  *
package/build/index.js CHANGED
@@ -5,7 +5,7 @@ let headers;
5
5
  let USER_AGENT;
6
6
  if (typeof navigator === 'undefined' || !navigator.userAgent?.startsWith?.('Mozilla/5.0 ')) {
7
7
  const NAME = 'openid-client';
8
- const VERSION = 'v6.1.3';
8
+ const VERSION = 'v6.1.4';
9
9
  USER_AGENT = `${NAME}/${VERSION}`;
10
10
  headers = { 'user-agent': USER_AGENT };
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openid-client",
3
- "version": "6.1.3",
3
+ "version": "6.1.4",
4
4
  "description": "OAuth 2 / OpenID Connect Client API for JavaScript Runtimes",
5
5
  "keywords": [
6
6
  "access token",
@@ -85,7 +85,7 @@
85
85
  },
86
86
  "dependencies": {
87
87
  "jose": "^5.9.6",
88
- "oauth4webapi": "^3.1.1"
88
+ "oauth4webapi": "^3.1.3"
89
89
  },
90
90
  "devDependencies": {
91
91
  "@koa/cors": "^5.0.0",
@@ -94,28 +94,28 @@
94
94
  "@types/express": "^5.0.0",
95
95
  "@types/express-session": "^1.18.0",
96
96
  "@types/koa__cors": "^5.0.0",
97
- "@types/node": "^20.16.13",
98
- "@types/passport": "^1.0.16",
99
- "@types/qunit": "^2.19.10",
97
+ "@types/node": "^22.9.0",
98
+ "@types/passport": "^1.0.17",
99
+ "@types/qunit": "^2.19.12",
100
100
  "archiver": "^7.0.1",
101
- "ava": "^6.1.3",
101
+ "ava": "^6.2.0",
102
102
  "chrome-launcher": "^1.1.2",
103
- "edge-runtime": "^3.0.3",
103
+ "edge-runtime": "^3.0.5",
104
104
  "esbuild": "^0.24.0",
105
105
  "ky": "^1.7.2",
106
- "oidc-provider": "^8.5.2",
106
+ "oidc-provider": "^8.5.3",
107
107
  "patch-package": "^8.0.0",
108
108
  "prettier": "^3.3.3",
109
109
  "prettier-plugin-jsdoc": "^1.3.0",
110
- "puppeteer-core": "^23.6.0",
110
+ "puppeteer-core": "^23.8.0",
111
111
  "qunit": "^2.22.0",
112
112
  "raw-body": "^3.0.0",
113
113
  "selfsigned": "^2.4.1",
114
- "tsx": "^4.19.1",
115
- "typedoc": "^0.26.10",
116
- "typedoc-plugin-markdown": "^4.2.9",
117
- "typedoc-plugin-mdn-links": "^3.3.4",
114
+ "tsx": "^4.19.2",
115
+ "typedoc": "^0.26.11",
116
+ "typedoc-plugin-markdown": "^4.2.10",
117
+ "typedoc-plugin-mdn-links": "^3.3.7",
118
118
  "typescript": "^5.6.3",
119
- "undici": "^6.20.1"
119
+ "undici": "^6.21.0"
120
120
  }
121
121
  }