Update package versions and improve code handling
Multiple package versions have been updated to their latest versions for better compatibility and stability. In addition, modifications were made to the `getGitHash` function in `route.ts` to handle potential failures more gracefully.
This commit is contained in:
@@ -34,7 +34,7 @@
|
||||
"next": "14.2.5",
|
||||
"react": "18.3.1",
|
||||
"react-hook-form": "^7.52.1",
|
||||
"react-i18next": "^14.1.2",
|
||||
"react-i18next": "^14.1.3",
|
||||
"zod": "^3.23.8"
|
||||
},
|
||||
"eslintConfig": {
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
"@kit/ui": "workspace:^",
|
||||
"@radix-ui/react-icons": "^1.3.0",
|
||||
"@supabase/supabase-js": "^2.44.4",
|
||||
"@tanstack/react-query": "5.51.1",
|
||||
"@tanstack/react-query": "5.51.3",
|
||||
"@types/react": "^18.3.3",
|
||||
"@types/react-dom": "^18.3.0",
|
||||
"lucide-react": "^0.408.0",
|
||||
@@ -44,7 +44,7 @@
|
||||
"react": "18.3.1",
|
||||
"react-dom": "18.3.1",
|
||||
"react-hook-form": "^7.52.1",
|
||||
"react-i18next": "^14.1.2",
|
||||
"react-i18next": "^14.1.3",
|
||||
"sonner": "^1.5.0",
|
||||
"zod": "^3.23.8"
|
||||
},
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"@makerkit/data-loader-supabase-core": "^0.0.8",
|
||||
"@makerkit/data-loader-supabase-nextjs": "^1.2.3",
|
||||
"@supabase/supabase-js": "^2.44.4",
|
||||
"@tanstack/react-query": "5.51.1",
|
||||
"@tanstack/react-query": "5.51.3",
|
||||
"@tanstack/react-table": "^8.19.3",
|
||||
"@types/react": "^18.3.3",
|
||||
"lucide-react": "^0.408.0",
|
||||
|
||||
@@ -29,12 +29,12 @@
|
||||
"@marsidev/react-turnstile": "^0.7.2",
|
||||
"@radix-ui/react-icons": "^1.3.0",
|
||||
"@supabase/supabase-js": "^2.44.4",
|
||||
"@tanstack/react-query": "5.51.1",
|
||||
"@tanstack/react-query": "5.51.3",
|
||||
"@types/react": "^18.3.3",
|
||||
"lucide-react": "^0.408.0",
|
||||
"next": "14.2.5",
|
||||
"react-hook-form": "^7.52.1",
|
||||
"react-i18next": "^14.1.2",
|
||||
"react-i18next": "^14.1.3",
|
||||
"sonner": "^1.5.0",
|
||||
"zod": "^3.23.8"
|
||||
},
|
||||
|
||||
@@ -21,12 +21,12 @@
|
||||
"@kit/tsconfig": "workspace:*",
|
||||
"@kit/ui": "workspace:*",
|
||||
"@supabase/supabase-js": "^2.44.4",
|
||||
"@tanstack/react-query": "5.51.1",
|
||||
"@tanstack/react-query": "5.51.3",
|
||||
"@types/react": "^18.3.3",
|
||||
"lucide-react": "^0.408.0",
|
||||
"react": "18.3.1",
|
||||
"react-dom": "18.3.1",
|
||||
"react-i18next": "^14.1.2"
|
||||
"react-i18next": "^14.1.3"
|
||||
},
|
||||
"prettier": "@kit/prettier-config",
|
||||
"eslintConfig": {
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
"@kit/tsconfig": "workspace:*",
|
||||
"@kit/ui": "workspace:^",
|
||||
"@supabase/supabase-js": "^2.44.4",
|
||||
"@tanstack/react-query": "5.51.1",
|
||||
"@tanstack/react-query": "5.51.3",
|
||||
"@tanstack/react-table": "^8.19.3",
|
||||
"@types/react": "^18.3.3",
|
||||
"@types/react-dom": "^18.3.0",
|
||||
@@ -44,7 +44,7 @@
|
||||
"react": "18.3.1",
|
||||
"react-dom": "18.3.1",
|
||||
"react-hook-form": "^7.52.1",
|
||||
"react-i18next": "^14.1.2",
|
||||
"react-i18next": "^14.1.3",
|
||||
"sonner": "^1.5.0",
|
||||
"zod": "^3.23.8"
|
||||
},
|
||||
|
||||
@@ -21,8 +21,8 @@
|
||||
"@kit/shared": "workspace:^",
|
||||
"@kit/tailwind-config": "workspace:*",
|
||||
"@kit/tsconfig": "workspace:*",
|
||||
"@tanstack/react-query": "5.51.1",
|
||||
"react-i18next": "^14.1.2"
|
||||
"@tanstack/react-query": "5.51.3",
|
||||
"react-i18next": "^14.1.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"i18next": "^23.12.1",
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
import type { InitOptions } from 'i18next';
|
||||
|
||||
/**
|
||||
* Get i18n settings for i18next.
|
||||
* @param languages
|
||||
@@ -12,7 +14,7 @@ export function createI18nSettings({
|
||||
languages: string[];
|
||||
language: string;
|
||||
namespaces?: string | string[];
|
||||
}) {
|
||||
}): InitOptions {
|
||||
const lng = language;
|
||||
const ns = namespaces;
|
||||
|
||||
@@ -25,6 +27,9 @@ export function createI18nSettings({
|
||||
preload: false as const,
|
||||
lowerCaseLng: true as const,
|
||||
fallbackNS: ns,
|
||||
missingInterpolationHandler: (text, value, options) => {
|
||||
console.debug(`Missing interpolation value for key: ${text}`, value, options);
|
||||
},
|
||||
ns,
|
||||
react: {
|
||||
useSuspense: true,
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
"./config/server": "./src/sentry.client.server.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@sentry/nextjs": "^8.17.0"
|
||||
"@sentry/nextjs": "^8.18.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@kit/eslint-config": "workspace:*",
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"@tanstack/react-table": "^8.19.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"pino": "^9.3.0"
|
||||
"pino": "^9.3.1"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"root": true,
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
"@supabase/gotrue-js": "2.64.4",
|
||||
"@supabase/ssr": "^0.4.0",
|
||||
"@supabase/supabase-js": "^2.44.4",
|
||||
"@tanstack/react-query": "5.51.1",
|
||||
"@tanstack/react-query": "5.51.3",
|
||||
"@types/react": "^18.3.3",
|
||||
"next": "14.2.5",
|
||||
"react": "18.3.1",
|
||||
|
||||
@@ -41,7 +41,7 @@
|
||||
"@kit/tailwind-config": "workspace:*",
|
||||
"@kit/tsconfig": "workspace:*",
|
||||
"@radix-ui/react-icons": "^1.3.0",
|
||||
"@tanstack/react-query": "5.51.1",
|
||||
"@tanstack/react-query": "5.51.3",
|
||||
"@tanstack/react-table": "^8.19.3",
|
||||
"@types/react": "^18.3.3",
|
||||
"@types/react-dom": "^18.3.0",
|
||||
@@ -53,9 +53,9 @@
|
||||
"prettier": "^3.3.3",
|
||||
"react-day-picker": "^8.10.1",
|
||||
"react-hook-form": "^7.52.1",
|
||||
"react-i18next": "^14.1.2",
|
||||
"react-i18next": "^14.1.3",
|
||||
"sonner": "^1.5.0",
|
||||
"tailwindcss": "3.4.4",
|
||||
"tailwindcss": "3.4.6",
|
||||
"tailwindcss-animate": "^1.0.7",
|
||||
"typescript": "^5.5.3",
|
||||
"zod": "^3.23.8"
|
||||
|
||||
Reference in New Issue
Block a user