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",