Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Block lru-cache@8 until we drop node@14 support #7441

Merged
merged 1 commit into from
Mar 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@
matchPackageNames: ["@types/node"],
allowedVersions: "14.x"
},
// lru-cache@8 drops support for v16. We can take this when we drop node v14 support.
{
matchPackageNames: ["lru-cache"],
allowedVersions: "7.x"
},
// node-fetch v3 only ships as ESM. We currently build as both CommonJS and
// ESM and we're not going to go ESM-only for a while. So let's stay on v2.
// (Perhaps we could swap to undici instead if this pin gets to be a
Expand Down