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’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(repo): Deprecate node@{14,15,16,17} versions #1864

Merged
merged 6 commits into from
Nov 6, 2023
Merged
Show file tree
Hide file tree
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 .changeset/little-numbers-jam.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@clerk/shared': minor
---

Introduce isomorphic `isomorphicBtoa` helper in `@clerk/shared`.
16 changes: 16 additions & 0 deletions .changeset/purple-pumas-study.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
'gatsby-plugin-clerk': major
'@clerk/chrome-extension': major
'@clerk/clerk-js': major
'@clerk/clerk-sdk-node': major
'@clerk/backend': major
'@clerk/fastify': major
'@clerk/nextjs': major
'@clerk/shared': major
'@clerk/themes': major
'@clerk/clerk-react': major
'@clerk/remix': major
'@clerk/types': major
'@clerk/clerk-expo': major
---
Dropping support for Node 14 and 16 as they both reached EOL status. The minimal Node.js version required by Clerk is `18.18.0` now.
5 changes: 4 additions & 1 deletion integration/templates/next-app-router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,15 @@
"start": "next start"
},
"dependencies": {
"@types/node": "20.3.2",
"@types/node": "^18.18.0",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"next": "13.5.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.1.6"
},
"engines": {
"node": ">=18.18.0"
}
}
Loading
Loading