chore(dependencies): update package versions for improved compatibility (#308)

- Bumped versions of several packages across the codebase, including:
  - Updated `@supabase/supabase-js` from `2.51.0` to `2.52.0`
  - Incremented `next` from `15.4.1` to `15.4.2`
  - Updated `@types/node` from `^24.0.13` to `^24.0.15`
  - Upgraded `ai` from `4.3.18` to `4.3.19`
  - Updated `@next/bundle-analyzer` from `15.4.1` to `15.4.2`
  - Incremented `@next/eslint-plugin-next` from `15.4.1` to `15.4.2`
  - Bumped `eslint-config-next` from `15.3.5` to `15.4.2`
  - Updated `@kit/prettier-config` and other related packages for consistency and compatibility improvements.
This commit is contained in:
Giancarlo Buomprisco
2025-07-19 18:23:36 +07:00
committed by GitHub
parent 25ab47afb1
commit 7e0c196adc
30 changed files with 726 additions and 855 deletions

View File

@@ -436,13 +436,16 @@ function EnvList({ appState }: { appState: AppEnvState }) {
<TooltipContent>
<div className="space-y-2">
<div className="font-medium">This variable is deprecated</div>
<div className="font-medium">
This variable is deprecated
</div>
<div className="text-sm">
<strong>Reason:</strong> {deprecated.reason}
</div>
{deprecated.alternative && (
<div className="text-sm">
<strong>Use instead:</strong> {deprecated.alternative}
<strong>Use instead:</strong>{' '}
{deprecated.alternative}
</div>
)}
</div>
@@ -705,7 +708,11 @@ function FilterSwitcher(props: {
};
const allSelected =
!secretVars && !publicVars && !overriddenVars && !invalidVars && !deprecatedVars;
!secretVars &&
!publicVars &&
!overriddenVars &&
!invalidVars &&
!deprecatedVars;
return (
<DropdownMenu>

View File

@@ -540,7 +540,8 @@ export const envVariables: EnvVariableModel[] = [
type: 'enum',
values: ['subscription', 'one-time'],
deprecated: {
reason: 'This configuration is no longer required and billing mode is now automatically determined',
reason:
'This configuration is no longer required and billing mode is now automatically determined',
alternative: undefined,
},
validate: ({ value }) => {

View File

@@ -11,9 +11,9 @@
"@ai-sdk/openai": "^1.3.23",
"@hookform/resolvers": "^5.1.1",
"@tanstack/react-query": "5.83.0",
"ai": "4.3.18",
"ai": "4.3.19",
"lucide-react": "^0.525.0",
"next": "15.4.1",
"next": "15.4.2",
"nodemailer": "^7.0.5",
"react": "19.1.0",
"react-dom": "19.1.0",
@@ -26,7 +26,7 @@
"@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*",
"@tailwindcss/postcss": "^4.1.11",
"@types/node": "^24.0.13",
"@types/node": "^24.0.15",
"@types/nodemailer": "6.4.17",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",

View File

@@ -13,7 +13,7 @@
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.54.1",
"@types/node": "^24.0.13",
"@types/node": "^24.0.15",
"dotenv": "17.2.0",
"node-html-parser": "^7.0.1",
"totp-generator": "^1.0.0"

View File

@@ -56,12 +56,12 @@
"@marsidev/react-turnstile": "^1.1.0",
"@nosecone/next": "1.0.0-beta.9",
"@radix-ui/react-icons": "^1.3.2",
"@supabase/supabase-js": "2.51.0",
"@supabase/supabase-js": "2.52.0",
"@tanstack/react-query": "5.83.0",
"@tanstack/react-table": "^8.21.3",
"date-fns": "^4.1.0",
"lucide-react": "^0.525.0",
"next": "15.4.1",
"next": "15.4.2",
"next-sitemap": "^4.2.3",
"next-themes": "0.4.6",
"react": "19.1.0",
@@ -76,9 +76,9 @@
"@kit/eslint-config": "workspace:*",
"@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@next/bundle-analyzer": "15.4.1",
"@next/bundle-analyzer": "15.4.2",
"@tailwindcss/postcss": "^4.1.11",
"@types/node": "^24.0.13",
"@types/node": "^24.0.15",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"babel-plugin-react-compiler": "19.1.0-rc.2",

View File

@@ -46,10 +46,10 @@
},
"devDependencies": {
"@manypkg/cli": "^0.24.0",
"@turbo/gen": "^2.5.4",
"@turbo/gen": "^2.5.5",
"cross-env": "^7.0.3",
"prettier": "^3.6.2",
"turbo": "2.5.4",
"turbo": "2.5.5",
"typescript": "^5.8.3"
}
}

View File

@@ -16,7 +16,7 @@
"@kit/eslint-config": "workspace:*",
"@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@types/node": "^24.0.13"
"@types/node": "^24.0.15"
},
"typesVersions": {
"*": {

View File

@@ -26,11 +26,11 @@
"@kit/supabase": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*",
"@supabase/supabase-js": "2.51.0",
"@supabase/supabase-js": "2.52.0",
"@types/react": "19.1.8",
"date-fns": "^4.1.0",
"lucide-react": "^0.525.0",
"next": "15.4.1",
"next": "15.4.2",
"react": "19.1.0",
"react-hook-form": "^7.60.0",
"react-i18next": "^15.6.0",

View File

@@ -25,7 +25,7 @@
"@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*",
"@types/react": "19.1.8",
"next": "15.4.1",
"next": "15.4.2",
"react": "19.1.0",
"zod": "^3.25.74"
},

View File

@@ -16,7 +16,7 @@
},
"dependencies": {
"@stripe/react-stripe-js": "^3.7.0",
"@stripe/stripe-js": "^7.4.0",
"@stripe/stripe-js": "^7.5.0",
"stripe": "^18.3.0"
},
"devDependencies": {
@@ -29,7 +29,7 @@
"@kit/ui": "workspace:*",
"@types/react": "19.1.8",
"date-fns": "^4.1.0",
"next": "15.4.1",
"next": "15.4.2",
"react": "19.1.0",
"zod": "^3.25.74"
},

View File

@@ -20,7 +20,7 @@
"@kit/shared": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@kit/wordpress": "workspace:*",
"@types/node": "^24.0.13"
"@types/node": "^24.0.15"
},
"typesVersions": {
"*": {

View File

@@ -26,7 +26,7 @@
"@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*",
"@types/node": "^24.0.13",
"@types/node": "^24.0.15",
"@types/react": "19.1.8",
"react": "19.1.0",
"zod": "^3.25.74"

View File

@@ -20,7 +20,7 @@
"@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*",
"@types/node": "^24.0.13",
"@types/node": "^24.0.15",
"@types/react": "19.1.8",
"wp-types": "^4.68.1"
},

View File

@@ -22,7 +22,7 @@
"@kit/supabase": "workspace:*",
"@kit/team-accounts": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@supabase/supabase-js": "2.51.0",
"@supabase/supabase-js": "2.52.0",
"zod": "^3.25.74"
},
"typesVersions": {

View File

@@ -13,7 +13,7 @@
".": "./src/index.ts"
},
"dependencies": {
"@react-email/components": "0.3.1"
"@react-email/components": "0.3.2"
},
"devDependencies": {
"@kit/eslint-config": "workspace:*",

View File

@@ -34,12 +34,12 @@
"@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*",
"@radix-ui/react-icons": "^1.3.2",
"@supabase/supabase-js": "2.51.0",
"@supabase/supabase-js": "2.52.0",
"@tanstack/react-query": "5.83.0",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"lucide-react": "^0.525.0",
"next": "15.4.1",
"next": "15.4.2",
"next-themes": "0.4.6",
"react": "19.1.0",
"react-dom": "19.1.0",

View File

@@ -20,12 +20,12 @@
"@kit/ui": "workspace:*",
"@makerkit/data-loader-supabase-core": "^0.0.10",
"@makerkit/data-loader-supabase-nextjs": "^1.2.5",
"@supabase/supabase-js": "2.51.0",
"@supabase/supabase-js": "2.52.0",
"@tanstack/react-query": "5.83.0",
"@tanstack/react-table": "^8.21.3",
"@types/react": "19.1.8",
"lucide-react": "^0.525.0",
"next": "15.4.1",
"next": "15.4.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hook-form": "^7.60.0",

View File

@@ -29,11 +29,11 @@
"@kit/ui": "workspace:*",
"@marsidev/react-turnstile": "^1.1.0",
"@radix-ui/react-icons": "^1.3.2",
"@supabase/supabase-js": "2.51.0",
"@supabase/supabase-js": "2.52.0",
"@tanstack/react-query": "5.83.0",
"@types/react": "19.1.8",
"lucide-react": "^0.525.0",
"next": "15.4.1",
"next": "15.4.2",
"react-hook-form": "^7.60.0",
"react-i18next": "^15.6.0",
"sonner": "^2.0.6",

View File

@@ -19,7 +19,7 @@
"@kit/supabase": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*",
"@supabase/supabase-js": "2.51.0",
"@supabase/supabase-js": "2.52.0",
"@tanstack/react-query": "5.83.0",
"@types/react": "19.1.8",
"lucide-react": "^0.525.0",

View File

@@ -32,7 +32,7 @@
"@kit/supabase": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*",
"@supabase/supabase-js": "2.51.0",
"@supabase/supabase-js": "2.52.0",
"@tanstack/react-query": "5.83.0",
"@tanstack/react-table": "^8.21.3",
"@types/react": "19.1.8",
@@ -40,7 +40,7 @@
"class-variance-authority": "^0.7.1",
"date-fns": "^4.1.0",
"lucide-react": "^0.525.0",
"next": "15.4.1",
"next": "15.4.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hook-form": "^7.60.0",

View File

@@ -21,7 +21,7 @@
"@kit/shared": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@tanstack/react-query": "5.83.0",
"next": "15.4.1",
"next": "15.4.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-i18next": "^15.6.0"

View File

@@ -20,7 +20,7 @@
"@kit/resend": "workspace:*",
"@kit/shared": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@types/node": "^24.0.13",
"@types/node": "^24.0.15",
"zod": "^3.25.74"
},
"typesVersions": {

View File

@@ -17,7 +17,7 @@
"@kit/mailers-shared": "workspace:*",
"@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@types/node": "^24.0.13",
"@types/node": "^24.0.15",
"zod": "^3.25.74"
},
"typesVersions": {

View File

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

View File

@@ -20,8 +20,8 @@
"@kit/prettier-config": "workspace:*",
"@kit/supabase": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@supabase/supabase-js": "2.51.0",
"next": "15.4.1",
"@supabase/supabase-js": "2.52.0",
"next": "15.4.2",
"zod": "^3.25.74"
},
"typesVersions": {

View File

@@ -25,7 +25,7 @@
"@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*",
"@radix-ui/react-icons": "^1.3.2",
"@supabase/supabase-js": "2.51.0",
"@supabase/supabase-js": "2.52.0",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"react": "19.1.0",

View File

@@ -26,10 +26,10 @@
"@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "2.51.0",
"@supabase/supabase-js": "2.52.0",
"@tanstack/react-query": "5.83.0",
"@types/react": "19.1.8",
"next": "15.4.1",
"next": "15.4.2",
"react": "19.1.0",
"server-only": "^0.0.1",
"zod": "^3.25.74"

View File

@@ -25,7 +25,7 @@
"@kit/eslint-config": "workspace:*",
"@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@supabase/supabase-js": "2.51.0",
"@supabase/supabase-js": "2.52.0",
"@tanstack/react-query": "5.83.0",
"@tanstack/react-table": "^8.21.3",
"@types/react": "19.1.8",
@@ -33,7 +33,7 @@
"class-variance-authority": "^0.7.1",
"date-fns": "^4.1.0",
"eslint": "^9.31.0",
"next": "15.4.1",
"next": "15.4.2",
"next-themes": "0.4.6",
"prettier": "^3.6.2",
"react-day-picker": "^9.8.0",

1477
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -13,10 +13,10 @@
"format": "prettier --check \"**/*.{js,json}\""
},
"dependencies": {
"@next/eslint-plugin-next": "15.4.1",
"@next/eslint-plugin-next": "15.4.2",
"@types/eslint": "9.6.1",
"eslint-config-next": "15.3.5",
"eslint-config-turbo": "^2.5.4",
"eslint-config-next": "15.4.2",
"eslint-config-turbo": "^2.5.5",
"typescript-eslint": "8.37.0"
},
"devDependencies": {