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

* chore(dependencies): update package versions for improved compatibility

- Bumped `@ai-sdk/openai` from `2.0.15` to `2.0.16` for enhanced functionality.
- Updated `@tanstack/react-query` from `5.85.3` to `5.85.5` to incorporate the latest improvements.
- Incremented `ai` from `5.0.15` to `5.0.16` for better performance.
- Updated `lucide-react` from `0.539.0` to `0.540.0` for improved compatibility.
- Incremented `next` from `15.4.6` to `15.4.7` to leverage new features and fixes.
- Updated `@types/node` from `24.1.0` to `24.3.0` for type safety enhancements.
- Updated `@types/nodemailer` from `6.4.17` to `7.0.0` for better type definitions.
- Incremented `supabase` from `2.34.0` to `2.34.3` for improved performance and compatibility.

* chore(dependencies): downgrade `supabase` version to 2.34.0 for compatibility

- Changed `supabase` version in `package.json` and `pnpm-lock.yaml` from `2.34.3` to `2.34.0` to ensure compatibility and stability across the codebase.
This commit is contained in:
Giancarlo Buomprisco
2025-08-19 20:55:02 +07:00
committed by GitHub
parent e6ecd63a59
commit d71394ab48
24 changed files with 1326 additions and 364 deletions

View File

@@ -8,12 +8,12 @@
"format": "prettier --check --write \"**/*.{js,cjs,mjs,ts,tsx,md,json}\"" "format": "prettier --check --write \"**/*.{js,cjs,mjs,ts,tsx,md,json}\""
}, },
"dependencies": { "dependencies": {
"@ai-sdk/openai": "^2.0.15", "@ai-sdk/openai": "^2.0.16",
"@hookform/resolvers": "^5.2.1", "@hookform/resolvers": "^5.2.1",
"@tanstack/react-query": "5.85.3", "@tanstack/react-query": "5.85.5",
"ai": "5.0.15", "ai": "5.0.16",
"lucide-react": "^0.539.0", "lucide-react": "^0.540.0",
"next": "15.4.6", "next": "15.4.7",
"nodemailer": "^7.0.5", "nodemailer": "^7.0.5",
"react": "19.1.1", "react": "19.1.1",
"react-dom": "19.1.1", "react-dom": "19.1.1",
@@ -26,8 +26,8 @@
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*", "@kit/ui": "workspace:*",
"@tailwindcss/postcss": "^4.1.12", "@tailwindcss/postcss": "^4.1.12",
"@types/node": "^24.1.0", "@types/node": "^24.3.0",
"@types/nodemailer": "6.4.17", "@types/nodemailer": "7.0.0",
"@types/react": "19.1.10", "@types/react": "19.1.10",
"@types/react-dom": "19.1.7", "@types/react-dom": "19.1.7",
"babel-plugin-react-compiler": "19.1.0-rc.2", "babel-plugin-react-compiler": "19.1.0-rc.2",

View File

@@ -13,7 +13,7 @@
"license": "ISC", "license": "ISC",
"devDependencies": { "devDependencies": {
"@playwright/test": "^1.54.2", "@playwright/test": "^1.54.2",
"@types/node": "^24.1.0", "@types/node": "^24.3.0",
"dotenv": "17.2.1", "dotenv": "17.2.1",
"node-html-parser": "^7.0.1", "node-html-parser": "^7.0.1",
"totp-generator": "^1.0.0" "totp-generator": "^1.0.0"

View File

@@ -57,11 +57,11 @@
"@nosecone/next": "1.0.0-beta.10", "@nosecone/next": "1.0.0-beta.10",
"@radix-ui/react-icons": "^1.3.2", "@radix-ui/react-icons": "^1.3.2",
"@supabase/supabase-js": "2.55.0", "@supabase/supabase-js": "2.55.0",
"@tanstack/react-query": "5.85.3", "@tanstack/react-query": "5.85.5",
"@tanstack/react-table": "^8.21.3", "@tanstack/react-table": "^8.21.3",
"date-fns": "^4.1.0", "date-fns": "^4.1.0",
"lucide-react": "^0.539.0", "lucide-react": "^0.540.0",
"next": "15.4.6", "next": "15.4.7",
"next-sitemap": "^4.2.3", "next-sitemap": "^4.2.3",
"next-themes": "0.4.6", "next-themes": "0.4.6",
"react": "19.1.1", "react": "19.1.1",
@@ -76,16 +76,16 @@
"@kit/eslint-config": "workspace:*", "@kit/eslint-config": "workspace:*",
"@kit/prettier-config": "workspace:*", "@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@next/bundle-analyzer": "15.4.6", "@next/bundle-analyzer": "15.4.7",
"@tailwindcss/postcss": "^4.1.12", "@tailwindcss/postcss": "^4.1.12",
"@types/node": "^24.1.0", "@types/node": "^24.3.0",
"@types/react": "19.1.10", "@types/react": "19.1.10",
"@types/react-dom": "19.1.7", "@types/react-dom": "19.1.7",
"babel-plugin-react-compiler": "19.1.0-rc.2", "babel-plugin-react-compiler": "19.1.0-rc.2",
"cssnano": "^7.1.0", "cssnano": "^7.1.0",
"pino-pretty": "13.0.0", "pino-pretty": "13.0.0",
"prettier": "^3.6.2", "prettier": "^3.6.2",
"supabase": "^2.34.0", "supabase": "2.34.0",
"tailwindcss": "4.1.12", "tailwindcss": "4.1.12",
"tailwindcss-animate": "^1.0.7", "tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.2" "typescript": "^5.9.2"

View File

@@ -17,7 +17,7 @@
"@kit/eslint-config": "workspace:*", "@kit/eslint-config": "workspace:*",
"@kit/prettier-config": "workspace:*", "@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@types/node": "^24.1.0" "@types/node": "^24.3.0"
}, },
"typesVersions": { "typesVersions": {
"*": { "*": {

View File

@@ -29,8 +29,8 @@
"@supabase/supabase-js": "2.55.0", "@supabase/supabase-js": "2.55.0",
"@types/react": "19.1.10", "@types/react": "19.1.10",
"date-fns": "^4.1.0", "date-fns": "^4.1.0",
"lucide-react": "^0.539.0", "lucide-react": "^0.540.0",
"next": "15.4.6", "next": "15.4.7",
"react": "19.1.1", "react": "19.1.1",
"react-hook-form": "^7.62.0", "react-hook-form": "^7.62.0",
"react-i18next": "^15.6.1", "react-i18next": "^15.6.1",

View File

@@ -25,7 +25,7 @@
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*", "@kit/ui": "workspace:*",
"@types/react": "19.1.10", "@types/react": "19.1.10",
"next": "15.4.6", "next": "15.4.7",
"react": "19.1.1", "react": "19.1.1",
"zod": "^3.25.74" "zod": "^3.25.74"
}, },

View File

@@ -15,7 +15,7 @@
"./components": "./src/components/index.ts" "./components": "./src/components/index.ts"
}, },
"dependencies": { "dependencies": {
"@stripe/react-stripe-js": "^3.9.0", "@stripe/react-stripe-js": "^3.9.1",
"@stripe/stripe-js": "^7.8.0", "@stripe/stripe-js": "^7.8.0",
"stripe": "^18.4.0" "stripe": "^18.4.0"
}, },
@@ -29,7 +29,7 @@
"@kit/ui": "workspace:*", "@kit/ui": "workspace:*",
"@types/react": "19.1.10", "@types/react": "19.1.10",
"date-fns": "^4.1.0", "date-fns": "^4.1.0",
"next": "15.4.6", "next": "15.4.7",
"react": "19.1.1", "react": "19.1.1",
"zod": "^3.25.74" "zod": "^3.25.74"
}, },

View File

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

View File

@@ -26,7 +26,7 @@
"@kit/prettier-config": "workspace:*", "@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*", "@kit/ui": "workspace:*",
"@types/node": "^24.1.0", "@types/node": "^24.3.0",
"@types/react": "19.1.10", "@types/react": "19.1.10",
"react": "19.1.1", "react": "19.1.1",
"zod": "^3.25.74" "zod": "^3.25.74"

View File

@@ -20,7 +20,7 @@
"@kit/prettier-config": "workspace:*", "@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*", "@kit/ui": "workspace:*",
"@types/node": "^24.1.0", "@types/node": "^24.3.0",
"@types/react": "19.1.10", "@types/react": "19.1.10",
"wp-types": "^4.68.1" "wp-types": "^4.68.1"
}, },

View File

@@ -35,11 +35,11 @@
"@kit/ui": "workspace:*", "@kit/ui": "workspace:*",
"@radix-ui/react-icons": "^1.3.2", "@radix-ui/react-icons": "^1.3.2",
"@supabase/supabase-js": "2.55.0", "@supabase/supabase-js": "2.55.0",
"@tanstack/react-query": "5.85.3", "@tanstack/react-query": "5.85.5",
"@types/react": "19.1.10", "@types/react": "19.1.10",
"@types/react-dom": "19.1.7", "@types/react-dom": "19.1.7",
"lucide-react": "^0.539.0", "lucide-react": "^0.540.0",
"next": "15.4.6", "next": "15.4.7",
"next-themes": "0.4.6", "next-themes": "0.4.6",
"react": "19.1.1", "react": "19.1.1",
"react-dom": "19.1.1", "react-dom": "19.1.1",

View File

@@ -21,11 +21,11 @@
"@makerkit/data-loader-supabase-core": "^0.0.10", "@makerkit/data-loader-supabase-core": "^0.0.10",
"@makerkit/data-loader-supabase-nextjs": "^1.2.5", "@makerkit/data-loader-supabase-nextjs": "^1.2.5",
"@supabase/supabase-js": "2.55.0", "@supabase/supabase-js": "2.55.0",
"@tanstack/react-query": "5.85.3", "@tanstack/react-query": "5.85.5",
"@tanstack/react-table": "^8.21.3", "@tanstack/react-table": "^8.21.3",
"@types/react": "19.1.10", "@types/react": "19.1.10",
"lucide-react": "^0.539.0", "lucide-react": "^0.540.0",
"next": "15.4.6", "next": "15.4.7",
"react": "19.1.1", "react": "19.1.1",
"react-dom": "19.1.1", "react-dom": "19.1.1",
"react-hook-form": "^7.62.0", "react-hook-form": "^7.62.0",

View File

@@ -30,10 +30,10 @@
"@marsidev/react-turnstile": "^1.3.0", "@marsidev/react-turnstile": "^1.3.0",
"@radix-ui/react-icons": "^1.3.2", "@radix-ui/react-icons": "^1.3.2",
"@supabase/supabase-js": "2.55.0", "@supabase/supabase-js": "2.55.0",
"@tanstack/react-query": "5.85.3", "@tanstack/react-query": "5.85.5",
"@types/react": "19.1.10", "@types/react": "19.1.10",
"lucide-react": "^0.539.0", "lucide-react": "^0.540.0",
"next": "15.4.6", "next": "15.4.7",
"react-hook-form": "^7.62.0", "react-hook-form": "^7.62.0",
"react-i18next": "^15.6.1", "react-i18next": "^15.6.1",
"sonner": "^2.0.7", "sonner": "^2.0.7",

View File

@@ -20,9 +20,9 @@
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*", "@kit/ui": "workspace:*",
"@supabase/supabase-js": "2.55.0", "@supabase/supabase-js": "2.55.0",
"@tanstack/react-query": "5.85.3", "@tanstack/react-query": "5.85.5",
"@types/react": "19.1.10", "@types/react": "19.1.10",
"lucide-react": "^0.539.0", "lucide-react": "^0.540.0",
"react": "19.1.1", "react": "19.1.1",
"react-dom": "19.1.1", "react-dom": "19.1.1",
"react-i18next": "^15.6.1" "react-i18next": "^15.6.1"

View File

@@ -33,14 +33,14 @@
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*", "@kit/ui": "workspace:*",
"@supabase/supabase-js": "2.55.0", "@supabase/supabase-js": "2.55.0",
"@tanstack/react-query": "5.85.3", "@tanstack/react-query": "5.85.5",
"@tanstack/react-table": "^8.21.3", "@tanstack/react-table": "^8.21.3",
"@types/react": "19.1.10", "@types/react": "19.1.10",
"@types/react-dom": "19.1.7", "@types/react-dom": "19.1.7",
"class-variance-authority": "^0.7.1", "class-variance-authority": "^0.7.1",
"date-fns": "^4.1.0", "date-fns": "^4.1.0",
"lucide-react": "^0.539.0", "lucide-react": "^0.540.0",
"next": "15.4.6", "next": "15.4.7",
"react": "19.1.1", "react": "19.1.1",
"react-dom": "19.1.1", "react-dom": "19.1.1",
"react-hook-form": "^7.62.0", "react-hook-form": "^7.62.0",

View File

@@ -20,8 +20,8 @@
"@kit/prettier-config": "workspace:*", "@kit/prettier-config": "workspace:*",
"@kit/shared": "workspace:*", "@kit/shared": "workspace:*",
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@tanstack/react-query": "5.85.3", "@tanstack/react-query": "5.85.5",
"next": "15.4.6", "next": "15.4.7",
"react": "19.1.1", "react": "19.1.1",
"react-dom": "19.1.1", "react-dom": "19.1.1",
"react-i18next": "^15.6.1" "react-i18next": "^15.6.1"

View File

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

View File

@@ -20,7 +20,7 @@
"@kit/mailers-shared": "workspace:*", "@kit/mailers-shared": "workspace:*",
"@kit/prettier-config": "workspace:*", "@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@types/nodemailer": "6.4.17", "@types/nodemailer": "7.0.0",
"zod": "^3.25.74" "zod": "^3.25.74"
}, },
"typesVersions": { "typesVersions": {

View File

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

View File

@@ -21,7 +21,7 @@
"@kit/supabase": "workspace:*", "@kit/supabase": "workspace:*",
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@supabase/supabase-js": "2.55.0", "@supabase/supabase-js": "2.55.0",
"next": "15.4.6", "next": "15.4.7",
"zod": "^3.25.74" "zod": "^3.25.74"
}, },
"typesVersions": { "typesVersions": {

View File

@@ -27,9 +27,9 @@
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@supabase/ssr": "^0.6.1", "@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "2.55.0", "@supabase/supabase-js": "2.55.0",
"@tanstack/react-query": "5.85.3", "@tanstack/react-query": "5.85.5",
"@types/react": "19.1.10", "@types/react": "19.1.10",
"next": "15.4.6", "next": "15.4.7",
"react": "19.1.1", "react": "19.1.1",
"server-only": "^0.0.1", "server-only": "^0.0.1",
"zod": "^3.25.74" "zod": "^3.25.74"

View File

@@ -14,7 +14,7 @@
"clsx": "^2.1.1", "clsx": "^2.1.1",
"cmdk": "1.1.1", "cmdk": "1.1.1",
"input-otp": "1.4.2", "input-otp": "1.4.2",
"lucide-react": "^0.539.0", "lucide-react": "^0.540.0",
"radix-ui": "1.4.3", "radix-ui": "1.4.3",
"react-dropzone": "^14.3.8", "react-dropzone": "^14.3.8",
"react-top-loading-bar": "3.0.2", "react-top-loading-bar": "3.0.2",
@@ -26,17 +26,17 @@
"@kit/prettier-config": "workspace:*", "@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@supabase/supabase-js": "2.55.0", "@supabase/supabase-js": "2.55.0",
"@tanstack/react-query": "5.85.3", "@tanstack/react-query": "5.85.5",
"@tanstack/react-table": "^8.21.3", "@tanstack/react-table": "^8.21.3",
"@types/react": "19.1.10", "@types/react": "19.1.10",
"@types/react-dom": "19.1.7", "@types/react-dom": "19.1.7",
"class-variance-authority": "^0.7.1", "class-variance-authority": "^0.7.1",
"date-fns": "^4.1.0", "date-fns": "^4.1.0",
"eslint": "^9.33.0", "eslint": "^9.33.0",
"next": "15.4.6", "next": "15.4.7",
"next-themes": "0.4.6", "next-themes": "0.4.6",
"prettier": "^3.6.2", "prettier": "^3.6.2",
"react-day-picker": "^9.8.1", "react-day-picker": "^9.9.0",
"react-hook-form": "^7.62.0", "react-hook-form": "^7.62.0",
"react-i18next": "^15.6.1", "react-i18next": "^15.6.1",
"sonner": "^2.0.7", "sonner": "^2.0.7",

1586
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -13,11 +13,11 @@
"format": "prettier --check \"**/*.{js,json}\"" "format": "prettier --check \"**/*.{js,json}\""
}, },
"dependencies": { "dependencies": {
"@next/eslint-plugin-next": "15.4.6", "@next/eslint-plugin-next": "15.4.7",
"@types/eslint": "9.6.1", "@types/eslint": "9.6.1",
"eslint-config-next": "15.4.6", "eslint-config-next": "15.4.7",
"eslint-config-turbo": "^2.5.6", "eslint-config-turbo": "^2.5.6",
"typescript-eslint": "8.39.1" "typescript-eslint": "8.40.0"
}, },
"devDependencies": { "devDependencies": {
"@kit/prettier-config": "workspace:*", "@kit/prettier-config": "workspace:*",