Dependencies + Next.js 15.2.0 (#193)

- Updated All dependencies
- Updated Next.js 15.2.0
- Updated Stripe API version
- Remove Sentry replayIntegration by default
- Added IMPROVEMENT.yml file
- Bump version to 2.5.1
This commit is contained in:
Giancarlo Buomprisco
2025-03-02 10:41:12 +07:00
committed by GitHub
parent 131b1061e6
commit d14d19f330
26 changed files with 906 additions and 819 deletions

15
.github/ISSUE_TEMPLATE/ENHANCEMENT.YML vendored Normal file
View File

@@ -0,0 +1,15 @@
name: "Enhancement"
description: Create a new ticket for an improvement.
title: "🚀 [ENHANCEMENT] - <title>"
labels: [
"enhancement"
]
body:
- type: textarea
id: description
attributes:
label: "Description"
description: Please enter an explicit description of your improvement
placeholder: Short and explicit description of your improvement...
validations:
required: true

View File

@@ -8,10 +8,10 @@
"format": "prettier --check --write \"**/*.{js,cjs,mjs,ts,tsx,md,json}\""
},
"dependencies": {
"@hookform/resolvers": "^4.1.1",
"@tanstack/react-query": "5.66.9",
"lucide-react": "^0.475.0",
"next": "15.1.7",
"@hookform/resolvers": "^4.1.2",
"@tanstack/react-query": "5.66.11",
"lucide-react": "^0.477.0",
"next": "15.2.0",
"nodemailer": "^6.10.0",
"react": "19.0.0",
"react-dom": "19.0.0"
@@ -22,17 +22,17 @@
"@kit/shared": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*",
"@tailwindcss/postcss": "^4.0.8",
"@tailwindcss/postcss": "^4.0.9",
"@types/node": "^22.13.4",
"@types/nodemailer": "6.4.17",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"babel-plugin-react-compiler": "beta",
"babel-plugin-react-compiler": "19.0.0-beta-e1e972c-20250221",
"pino-pretty": "^13.0.0",
"react-hook-form": "^7.54.2",
"tailwindcss": "4.0.8",
"tailwindcss": "4.0.9",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.3",
"typescript": "^5.8.2",
"zod": "^3.24.2"
},
"prettier": "@kit/prettier-config",

View File

@@ -33,7 +33,7 @@
},
"dependencies": {
"@edge-csrf/nextjs": "2.5.3-cloudflare-rc1",
"@hookform/resolvers": "^4.1.1",
"@hookform/resolvers": "^4.1.2",
"@kit/accounts": "workspace:*",
"@kit/admin": "workspace:*",
"@kit/analytics": "workspace:*",
@@ -56,12 +56,12 @@
"@makerkit/data-loader-supabase-nextjs": "^1.2.3",
"@marsidev/react-turnstile": "^1.1.0",
"@radix-ui/react-icons": "^1.3.2",
"@supabase/supabase-js": "2.48.1",
"@tanstack/react-query": "5.66.9",
"@supabase/supabase-js": "2.49.1",
"@tanstack/react-query": "5.66.11",
"@tanstack/react-table": "^8.21.2",
"date-fns": "^4.1.0",
"lucide-react": "^0.475.0",
"next": "15.1.7",
"lucide-react": "^0.477.0",
"next": "15.2.0",
"next-sitemap": "^4.2.3",
"next-themes": "0.4.4",
"react": "19.0.0",
@@ -77,20 +77,20 @@
"@kit/eslint-config": "workspace:*",
"@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@next/bundle-analyzer": "15.1.7",
"@tailwindcss/postcss": "^4.0.8",
"@next/bundle-analyzer": "15.2.0",
"@tailwindcss/postcss": "^4.0.9",
"@types/node": "^22.13.4",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"autoprefixer": "^10.4.20",
"babel-plugin-react-compiler": "beta",
"babel-plugin-react-compiler": "19.0.0-beta-e1e972c-20250221",
"dotenv-cli": "^8.0.0",
"pino-pretty": "^13.0.0",
"prettier": "^3.5.2",
"supabase": "^2.12.1",
"tailwindcss": "4.0.8",
"supabase": "^2.15.8",
"tailwindcss": "4.0.9",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.3"
"typescript": "^5.8.2"
},
"prettier": "@kit/prettier-config",
"browserslist": [

View File

@@ -1,6 +1,6 @@
{
"name": "next-supabase-saas-kit-turbo",
"version": "2.5.0",
"version": "2.5.1",
"private": true,
"sideEffects": false,
"engines": {
@@ -39,15 +39,16 @@
"packageManager": "pnpm@9.12.0",
"pnpm": {
"overrides": {
"react-is": "19.0.0"
"react-is": "19.0.0",
"require-in-the-middle": "7.5.2"
}
},
"devDependencies": {
"@manypkg/cli": "^0.23.0",
"@turbo/gen": "^2.4.2",
"@turbo/gen": "^2.4.4",
"cross-env": "^7.0.3",
"prettier": "^3.5.2",
"turbo": "2.4.2",
"typescript": "^5.7.3"
"turbo": "2.4.4",
"typescript": "^5.8.2"
}
}

View File

@@ -16,7 +16,7 @@
"./marketing": "./src/components/marketing.tsx"
},
"devDependencies": {
"@hookform/resolvers": "^4.1.1",
"@hookform/resolvers": "^4.1.2",
"@kit/billing": "workspace:*",
"@kit/eslint-config": "workspace:*",
"@kit/lemon-squeezy": "workspace:*",
@@ -26,11 +26,11 @@
"@kit/supabase": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*",
"@supabase/supabase-js": "2.48.1",
"@supabase/supabase-js": "2.49.1",
"@types/react": "19.0.10",
"date-fns": "^4.1.0",
"lucide-react": "^0.475.0",
"next": "15.1.7",
"lucide-react": "^0.477.0",
"next": "15.2.0",
"react": "19.0.0",
"react-hook-form": "^7.54.2",
"react-i18next": "^15.4.1",

View File

@@ -25,7 +25,7 @@
"@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*",
"@types/react": "19.0.10",
"next": "15.1.7",
"next": "15.2.0",
"react": "19.0.0",
"zod": "^3.24.2"
},

View File

@@ -16,8 +16,8 @@
},
"dependencies": {
"@stripe/react-stripe-js": "^3.1.1",
"@stripe/stripe-js": "^5.6.0",
"stripe": "^17.6.0"
"@stripe/stripe-js": "^5.7.0",
"stripe": "^17.7.0"
},
"devDependencies": {
"@kit/billing": "workspace:*",
@@ -29,7 +29,7 @@
"@kit/ui": "workspace:*",
"@types/react": "19.0.10",
"date-fns": "^4.1.0",
"next": "15.1.7",
"next": "15.2.0",
"react": "19.0.0",
"zod": "^3.24.2"
},

View File

@@ -2,7 +2,7 @@ import 'server-only';
import { StripeServerEnvSchema } from '../schema/stripe-server-env.schema';
const STRIPE_API_VERSION = '2025-01-27.acacia';
const STRIPE_API_VERSION = '2025-02-24.acacia';
/**
* @description returns a Stripe instance

View File

@@ -17,7 +17,7 @@
},
"dependencies": {
"@keystatic/core": "0.5.45",
"@keystatic/next": "^5.0.3",
"@keystatic/next": "^5.0.4",
"@markdoc/markdoc": "^0.5.1"
},
"devDependencies": {

View File

@@ -22,7 +22,7 @@
"@kit/supabase": "workspace:*",
"@kit/team-accounts": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@supabase/supabase-js": "2.48.1",
"@supabase/supabase-js": "2.49.1",
"zod": "^3.24.2"
},
"typesVersions": {

View File

@@ -20,7 +20,7 @@
"nanoid": "^5.1.2"
},
"devDependencies": {
"@hookform/resolvers": "^4.1.1",
"@hookform/resolvers": "^4.1.2",
"@kit/billing-gateway": "workspace:*",
"@kit/email-templates": "workspace:*",
"@kit/eslint-config": "workspace:*",
@@ -34,12 +34,12 @@
"@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*",
"@radix-ui/react-icons": "^1.3.2",
"@supabase/supabase-js": "2.48.1",
"@tanstack/react-query": "5.66.9",
"@supabase/supabase-js": "2.49.1",
"@tanstack/react-query": "5.66.11",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"lucide-react": "^0.475.0",
"next": "15.1.7",
"lucide-react": "^0.477.0",
"next": "15.2.0",
"next-themes": "0.4.4",
"react": "19.0.0",
"react-dom": "19.0.0",

View File

@@ -10,7 +10,7 @@
},
"prettier": "@kit/prettier-config",
"devDependencies": {
"@hookform/resolvers": "^4.1.1",
"@hookform/resolvers": "^4.1.2",
"@kit/eslint-config": "workspace:*",
"@kit/next": "workspace:*",
"@kit/prettier-config": "workspace:*",
@@ -20,12 +20,12 @@
"@kit/ui": "workspace:*",
"@makerkit/data-loader-supabase-core": "^0.0.8",
"@makerkit/data-loader-supabase-nextjs": "^1.2.3",
"@supabase/supabase-js": "2.48.1",
"@tanstack/react-query": "5.66.9",
"@supabase/supabase-js": "2.49.1",
"@tanstack/react-query": "5.66.11",
"@tanstack/react-table": "^8.21.2",
"@types/react": "19.0.10",
"lucide-react": "^0.475.0",
"next": "15.1.7",
"lucide-react": "^0.477.0",
"next": "15.2.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "^7.54.2",

View File

@@ -19,7 +19,7 @@
"./resend-email-link": "./src/components/resend-auth-link-form.tsx"
},
"devDependencies": {
"@hookform/resolvers": "^4.1.1",
"@hookform/resolvers": "^4.1.2",
"@kit/eslint-config": "workspace:*",
"@kit/prettier-config": "workspace:*",
"@kit/shared": "workspace:*",
@@ -28,11 +28,11 @@
"@kit/ui": "workspace:*",
"@marsidev/react-turnstile": "^1.1.0",
"@radix-ui/react-icons": "^1.3.2",
"@supabase/supabase-js": "2.48.1",
"@tanstack/react-query": "5.66.9",
"@supabase/supabase-js": "2.49.1",
"@tanstack/react-query": "5.66.11",
"@types/react": "19.0.10",
"lucide-react": "^0.475.0",
"next": "15.1.7",
"lucide-react": "^0.477.0",
"next": "15.2.0",
"react-hook-form": "^7.54.2",
"react-i18next": "^15.4.1",
"sonner": "^2.0.1",

View File

@@ -19,10 +19,10 @@
"@kit/supabase": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*",
"@supabase/supabase-js": "2.48.1",
"@tanstack/react-query": "5.66.9",
"@supabase/supabase-js": "2.49.1",
"@tanstack/react-query": "5.66.11",
"@types/react": "19.0.10",
"lucide-react": "^0.475.0",
"lucide-react": "^0.477.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-i18next": "^15.4.1"

View File

@@ -18,7 +18,7 @@
"nanoid": "^5.1.2"
},
"devDependencies": {
"@hookform/resolvers": "^4.1.1",
"@hookform/resolvers": "^4.1.2",
"@kit/accounts": "workspace:*",
"@kit/billing-gateway": "workspace:*",
"@kit/email-templates": "workspace:*",
@@ -32,15 +32,15 @@
"@kit/supabase": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*",
"@supabase/supabase-js": "2.48.1",
"@tanstack/react-query": "5.66.9",
"@supabase/supabase-js": "2.49.1",
"@tanstack/react-query": "5.66.11",
"@tanstack/react-table": "^8.21.2",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"class-variance-authority": "^0.7.1",
"date-fns": "^4.1.0",
"lucide-react": "^0.475.0",
"next": "15.1.7",
"lucide-react": "^0.477.0",
"next": "15.2.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "^7.54.2",

View File

@@ -20,8 +20,8 @@
"@kit/prettier-config": "workspace:*",
"@kit/shared": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@tanstack/react-query": "5.66.9",
"next": "15.1.7",
"@tanstack/react-query": "5.66.11",
"next": "15.2.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-i18next": "^15.4.1"

View File

@@ -16,7 +16,7 @@
"./config/server": "./src/sentry.client.server.ts"
},
"dependencies": {
"@sentry/nextjs": "^9.1.0",
"@sentry/nextjs": "^9.3.0",
"import-in-the-middle": "1.13.0"
},
"devDependencies": {

View File

@@ -1,4 +1,4 @@
import * as Sentry from '@sentry/nextjs';
import { init } from '@sentry/nextjs';
type Parameters<T extends (args: never) => unknown> = T extends (
...args: infer P
@@ -12,12 +12,15 @@ type Parameters<T extends (args: never) => unknown> = T extends (
* @param props
*/
export function initializeSentryBrowserClient(
props: Parameters<typeof Sentry.init>[0] = {},
props: Parameters<typeof init>[0] = {},
) {
return Sentry.init({
return init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Replay may only be enabled for the client-side
integrations: [Sentry.replayIntegration()],
integrations: [
// add your desired integrations here
// https://docs.sentry.io/platforms/javascript/configuration/integrations/
],
// Set tracesSampleRate to 1.0 to capture 100%
// of transactions for performance monitoring.

View File

@@ -20,8 +20,8 @@
"@kit/prettier-config": "workspace:*",
"@kit/supabase": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@supabase/supabase-js": "2.48.1",
"next": "15.1.7",
"@supabase/supabase-js": "2.49.1",
"next": "15.2.0",
"zod": "^3.24.2"
},
"typesVersions": {

View File

@@ -14,7 +14,7 @@
"./components": "./src/components/index.ts"
},
"devDependencies": {
"@hookform/resolvers": "^4.1.1",
"@hookform/resolvers": "^4.1.2",
"@kit/email-templates": "workspace:*",
"@kit/eslint-config": "workspace:*",
"@kit/mailers": "workspace:*",
@@ -25,7 +25,7 @@
"@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*",
"@radix-ui/react-icons": "^1.3.2",
"@supabase/supabase-js": "2.48.1",
"@supabase/supabase-js": "2.49.1",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"react": "19.0.0",

View File

@@ -28,10 +28,10 @@
"@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "2.48.1",
"@tanstack/react-query": "5.66.9",
"@supabase/supabase-js": "2.49.1",
"@tanstack/react-query": "5.66.11",
"@types/react": "19.0.10",
"next": "15.1.7",
"next": "15.2.0",
"react": "19.0.0",
"server-only": "^0.0.1",
"zod": "^3.24.2"

View File

@@ -9,7 +9,7 @@
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@hookform/resolvers": "^4.1.1",
"@hookform/resolvers": "^4.1.2",
"@radix-ui/react-accordion": "1.2.3",
"@radix-ui/react-alert-dialog": "^1.1.6",
"@radix-ui/react-avatar": "^1.1.3",
@@ -33,7 +33,7 @@
"clsx": "^2.1.1",
"cmdk": "1.0.4",
"input-otp": "1.4.2",
"lucide-react": "^0.475.0",
"lucide-react": "^0.477.0",
"react-top-loading-bar": "3.0.2",
"recharts": "2.15.1",
"tailwind-merge": "^3.0.2"
@@ -43,23 +43,23 @@
"@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@radix-ui/react-icons": "^1.3.2",
"@tanstack/react-query": "5.66.9",
"@tanstack/react-query": "5.66.11",
"@tanstack/react-table": "^8.21.2",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"class-variance-authority": "^0.7.1",
"date-fns": "^4.1.0",
"eslint": "^9.20.1",
"next": "15.1.7",
"eslint": "^9.21.0",
"next": "15.2.0",
"next-themes": "0.4.4",
"prettier": "^3.5.2",
"react-day-picker": "^8.10.1",
"react-hook-form": "^7.54.2",
"react-i18next": "^15.4.1",
"sonner": "^2.0.1",
"tailwindcss": "4.0.8",
"tailwindcss": "4.0.9",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.3",
"typescript": "^5.8.2",
"zod": "^3.24.2"
},
"prettier": "@kit/prettier-config",

1529
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -14,6 +14,11 @@ export default tsEsLint.config(
version: '19.0',
},
},
languageOptions: {
parserOptions: {
warnOnUnsupportedTypeScriptVersion: false,
}
}
},
{
rules: {

View File

@@ -13,17 +13,17 @@
"format": "prettier --check \"**/*.{js,json}\""
},
"dependencies": {
"@next/eslint-plugin-next": "15.1.7",
"@next/eslint-plugin-next": "15.2.0",
"@types/eslint": "9.6.1",
"eslint-config-next": "15.1.7",
"eslint-config-turbo": "^2.4.2",
"typescript-eslint": "8.24.1"
"eslint-config-next": "15.2.0",
"eslint-config-turbo": "^2.4.4",
"typescript-eslint": "8.25.0"
},
"devDependencies": {
"@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*",
"eslint": "^9.20.1",
"typescript": "^5.7.3"
"eslint": "^9.21.0",
"typescript": "^5.8.2"
},
"prettier": "@kit/prettier-config"
}

View File

@@ -15,7 +15,7 @@
},
"devDependencies": {
"@kit/tsconfig": "workspace:*",
"typescript": "^5.7.3"
"typescript": "^5.8.2"
},
"prettier": "./index.mjs"
}