Skip to content

Commit af5a96b

Browse files
Merge pull request #12 from collinschaafsma/chore/next15.1
Chore/next15.1
2 parents c6e1b71 + e469a7f commit af5a96b

File tree

7 files changed

+464
-458
lines changed

7 files changed

+464
-458
lines changed

actions/auth.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
"use server"
88

9-
import { unstable_after as after } from "next/server"
9+
import { after } from "next/server"
1010
import { z } from "zod"
1111
import { providers, signIn, signOut } from "@/auth"
1212
import { captureEvent } from "@/lib/capture-event"

actions/newsletter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
"use server"
1212

13-
import { unstable_after as after } from "next/server"
13+
import { after } from "next/server"
1414
import { Resend } from "resend"
1515
import { z } from "zod"
1616
import { captureEvent } from "@/lib/capture-event"

app/(marketing)/checkout/thank-you/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import Link from "next/link"
2-
import { unstable_after as after } from "next/server"
2+
import { after } from "next/server"
33
import { checkout } from "@/services/checkout"
44
import { captureEvent } from "@/lib/capture-event"
55
import { appName } from "@/lib/constants"

next.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { withSentryConfig } from "@sentry/nextjs"
33

44
const nextConfig: NextConfig = {
55
experimental: {
6-
after: true,
76
reactCompiler: true,
87
},
98
images: {

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -31,23 +31,23 @@
3131
"@stripe/react-stripe-js": "^2.8.0",
3232
"@stripe/stripe-js": "^4.3.0",
3333
"@vercel/postgres": "^0.9.0",
34-
"babel-plugin-react-compiler": "19.0.0-beta-0dec889-20241115",
34+
"babel-plugin-react-compiler": "19.0.0-beta-37ed2a7-20241206",
3535
"class-variance-authority": "^0.7.0",
3636
"clsx": "^2.1.1",
3737
"dotenv": "^16.4.5",
3838
"drizzle-orm": "^0.33.0",
3939
"import-in-the-middle": "^1.11.2",
4040
"lucide-react": "^0.436.0",
4141
"nanoid": "^5.0.7",
42-
"next": "15.0.3",
42+
"next": "15.1.0",
4343
"next-auth": "5.0.0-beta.25",
4444
"next-themes": "^0.3.0",
4545
"posthog-js": "^1.161.5",
4646
"posthog-node": "^4.2.0",
47-
"react": "19.0.0-rc-02c0e824-20241028",
48-
"react-dom": "19.0.0-rc-02c0e824-20241028",
47+
"react": "19.0.0",
48+
"react-dom": "19.0.0",
4949
"react-error-boundary": "^4.0.13",
50-
"react-is": "19.0.0-rc-02c0e824-20241028",
50+
"react-is": "19.0.0",
5151
"recharts": "2.13.0-alpha.5",
5252
"require-in-the-middle": "^7.4.0",
5353
"resend": "^4.0.0",
@@ -60,11 +60,11 @@
6060
"devDependencies": {
6161
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
6262
"@types/node": "^20.12.13",
63-
"@types/react": "npm:types-react@19.0.0-rc.1",
64-
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
63+
"@types/react": "19.0.1",
64+
"@types/react-dom": "19.0.2",
6565
"drizzle-kit": "^0.24.0",
6666
"eslint": "^9.12.0",
67-
"eslint-config-next": "15.0.3",
67+
"eslint-config-next": "15.1.0",
6868
"eslint-config-prettier": "^9.1.0",
6969
"eslint-plugin-tailwindcss": "^3.17.0",
7070
"postcss": "^8",
@@ -77,15 +77,15 @@
7777
"pnpm": {
7878
"overrides": {
7979
"@types/node": "^20.12.13",
80-
"@types/react": "npm:types-react@19.0.0-rc.1",
81-
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
80+
"@types/react": "19.0.1",
81+
"@types/react-dom": "19.0.2",
8282
"react-is": "$react-is"
8383
},
8484
"peerDependencyRules": {
8585
"allowedVersions": {
86-
"next": "15.0.3",
87-
"react": "19.0.0-rc-02c0e824-20241028",
88-
"react-dom": "19.0.0-rc-02c0e824-20241028"
86+
"next": "15.1.0",
87+
"react": "19.0.0",
88+
"react-dom": "19.0.0"
8989
},
9090
"allowAny": [
9191
"@types/react",

0 commit comments

Comments
 (0)