-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
deps(changelog): Bump Next.js to canary and Sentry SDK to latest #10876
Changes from all commits
5a5e099
7805cbb
148028d
f0bf4d8
87b189e
6ff3c19
9b83970
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# rename this file to .env and supply the values listed below | ||
# also make sure they are available to the build tool (e.g. Vercel/Netlify) | ||
# warning: variables prefixed with NEXT_PUBLIC_ will be made available to client-side code | ||
# be careful not to expose sensitive data | ||
|
||
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/changelog | ||
NEXTAUTH_URL=http://localhost:3000 | ||
NEXTAUTH_SECRET=secret |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,4 +38,4 @@ next-env.d.ts | |
|
||
# dotenv environment variables file | ||
.env | ||
.env.development | ||
!.env.development |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,15 +21,14 @@ | |
"@radix-ui/react-icons": "^1.3.0", | ||
"@radix-ui/react-toolbar": "^1.0.4", | ||
"@radix-ui/themes": "^2.0.3", | ||
"@sentry/nextjs": "^8.8.0", | ||
"@spotlightjs/spotlight": "^2.1.1", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. q: Why did you remove spotlight? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It was one more thing I needed to get working with the new Next.js version. I will add it back in a follow-up. But good that you bring it up! |
||
"next": "^14.2.5", | ||
"@sentry/nextjs": "8.20.0", | ||
"next": "^15.0.0-canary.83", | ||
"next-auth": "^4.24.5", | ||
"next-mdx-remote": "^4.4.1", | ||
"nextjs-toploader": "^1.6.6", | ||
"prism-sentry": "^1.0.2", | ||
"react": "18.3.1", | ||
"react-dom": "18.3.1", | ||
"react": "beta", | ||
"react-dom": "beta", | ||
"react-select": "^5.7.3", | ||
"react-textarea-autosize": "^8.5.3", | ||
"rehype-prism-plus": "^1.6.3", | ||
|
@@ -47,7 +46,7 @@ | |
"@types/rss": "^0.0.32", | ||
"autoprefixer": "^10.4.17", | ||
"eslint": "^8", | ||
"eslint-config-next": "^14.2.5", | ||
"eslint-config-next": "^15.0.0-canary.83", | ||
"postcss": "^8.4.33", | ||
"prisma": "^5.8.1", | ||
"tailwindcss": "^3.4.1", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shouldn't this be .env.example? 🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I purposefully added this. You probably already know this but
.env.development
will get picked up if you runnext dev
which I hope will save people time and confusion when they try to run the dev server for the changelog for the first time.