Skip to content

Commit 08dbfc4

Browse files
chore: update required node to >=20.19.0
@mongodb-js/oidc-plugin requires openid-client (a universal ESM module) using `require()` in the dist. CJS style require for universal ESMs are supported by default in node ^20.19.0 || ^22.12.0 || >=23.0.0. Ref: https://www.npmjs.com/package/openid-client#fn-universal For that reason it would be better to hint that we work best with at-least 20.19.0 instead of what we have currently.
1 parent 27c52b4 commit 08dbfc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,6 @@
7878
"zod": "^3.25.76"
7979
},
8080
"engines": {
81-
"node": ">=20.10.0"
81+
"node": ">=20.19.0"
8282
}
8383
}

0 commit comments

Comments
 (0)