chore(dependencies): update package versions for improved compatibility (#332)
This commit is contained in:
committed by
GitHub
parent
f9ebe2f927
commit
9ce150609e
@@ -8,13 +8,13 @@
|
|||||||
"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.20",
|
"@ai-sdk/openai": "^2.0.22",
|
||||||
"@faker-js/faker": "^9.9.0",
|
"@faker-js/faker": "^10.0.0",
|
||||||
"@hookform/resolvers": "^5.2.1",
|
"@hookform/resolvers": "^5.2.1",
|
||||||
"@tanstack/react-query": "5.85.5",
|
"@tanstack/react-query": "5.85.5",
|
||||||
"ai": "5.0.23",
|
"ai": "5.0.26",
|
||||||
"lucide-react": "^0.541.0",
|
"lucide-react": "^0.542.0",
|
||||||
"next": "15.5.0",
|
"next": "15.5.2",
|
||||||
"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",
|
||||||
@@ -31,7 +31,7 @@
|
|||||||
"@types/node": "^24.3.0",
|
"@types/node": "^24.3.0",
|
||||||
"@types/nodemailer": "7.0.1",
|
"@types/nodemailer": "7.0.1",
|
||||||
"@types/react": "19.1.11",
|
"@types/react": "19.1.11",
|
||||||
"@types/react-dom": "19.1.7",
|
"@types/react-dom": "19.1.8",
|
||||||
"babel-plugin-react-compiler": "19.1.0-rc.2",
|
"babel-plugin-react-compiler": "19.1.0-rc.2",
|
||||||
"pino-pretty": "13.0.0",
|
"pino-pretty": "13.0.0",
|
||||||
"react-hook-form": "^7.62.0",
|
"react-hook-form": "^7.62.0",
|
||||||
|
|||||||
@@ -702,6 +702,7 @@ export function PageViewsChart() {
|
|||||||
const [activeChart, setActiveChart] =
|
const [activeChart, setActiveChart] =
|
||||||
useState<keyof typeof chartConfig>('desktop');
|
useState<keyof typeof chartConfig>('desktop');
|
||||||
|
|
||||||
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
const chartData = [
|
const chartData = [
|
||||||
{ date: '2024-04-01', desktop: 222, mobile: 150 },
|
{ date: '2024-04-01', desktop: 222, mobile: 150 },
|
||||||
{ date: '2024-04-02', desktop: 97, mobile: 180 },
|
{ date: '2024-04-02', desktop: 97, mobile: 180 },
|
||||||
|
|||||||
@@ -18,13 +18,26 @@ export async function register() {
|
|||||||
* @name onRequestError
|
* @name onRequestError
|
||||||
* @description This function is called when an error occurs during the request lifecycle.
|
* @description This function is called when an error occurs during the request lifecycle.
|
||||||
* It is used to capture the error and send it to the monitoring service.
|
* It is used to capture the error and send it to the monitoring service.
|
||||||
* @param err
|
|
||||||
*/
|
*/
|
||||||
export const onRequestError: Instrumentation.onRequestError = async (err) => {
|
export const onRequestError: Instrumentation.onRequestError = async (
|
||||||
|
err,
|
||||||
|
request,
|
||||||
|
context,
|
||||||
|
) => {
|
||||||
const { getServerMonitoringService } = await import('@kit/monitoring/server');
|
const { getServerMonitoringService } = await import('@kit/monitoring/server');
|
||||||
|
|
||||||
const service = await getServerMonitoringService();
|
const service = await getServerMonitoringService();
|
||||||
|
|
||||||
await service.ready();
|
await service.ready();
|
||||||
await service.captureException(err as Error);
|
|
||||||
|
await service.captureException(
|
||||||
|
err as Error,
|
||||||
|
{},
|
||||||
|
{
|
||||||
|
path: request.path,
|
||||||
|
headers: request.headers,
|
||||||
|
method: request.method,
|
||||||
|
routePath: context.routePath,
|
||||||
|
},
|
||||||
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -60,8 +60,8 @@
|
|||||||
"@tanstack/react-query": "5.85.5",
|
"@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.541.0",
|
"lucide-react": "^0.542.0",
|
||||||
"next": "15.5.0",
|
"next": "15.5.2",
|
||||||
"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.5.0",
|
"@next/bundle-analyzer": "15.5.2",
|
||||||
"@tailwindcss/postcss": "^4.1.12",
|
"@tailwindcss/postcss": "^4.1.12",
|
||||||
"@types/node": "^24.3.0",
|
"@types/node": "^24.3.0",
|
||||||
"@types/react": "19.1.11",
|
"@types/react": "19.1.11",
|
||||||
"@types/react-dom": "19.1.7",
|
"@types/react-dom": "19.1.8",
|
||||||
"babel-plugin-react-compiler": "19.1.0-rc.2",
|
"babel-plugin-react-compiler": "19.1.0-rc.2",
|
||||||
"cssnano": "^7.1.1",
|
"cssnano": "^7.1.1",
|
||||||
"pino-pretty": "13.0.0",
|
"pino-pretty": "13.0.0",
|
||||||
"prettier": "^3.6.2",
|
"prettier": "^3.6.2",
|
||||||
"supabase": "2.34.0",
|
"supabase": "2.39.2",
|
||||||
"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"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "next-supabase-saas-kit-turbo",
|
"name": "next-supabase-saas-kit-turbo",
|
||||||
"version": "2.13.0",
|
"version": "2.13.1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"engines": {
|
"engines": {
|
||||||
|
|||||||
@@ -29,8 +29,8 @@
|
|||||||
"@supabase/supabase-js": "2.55.0",
|
"@supabase/supabase-js": "2.55.0",
|
||||||
"@types/react": "19.1.11",
|
"@types/react": "19.1.11",
|
||||||
"date-fns": "^4.1.0",
|
"date-fns": "^4.1.0",
|
||||||
"lucide-react": "^0.541.0",
|
"lucide-react": "^0.542.0",
|
||||||
"next": "15.5.0",
|
"next": "15.5.2",
|
||||||
"react": "19.1.1",
|
"react": "19.1.1",
|
||||||
"react-hook-form": "^7.62.0",
|
"react-hook-form": "^7.62.0",
|
||||||
"react-i18next": "^15.7.2",
|
"react-i18next": "^15.7.2",
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
"@kit/tsconfig": "workspace:*",
|
"@kit/tsconfig": "workspace:*",
|
||||||
"@kit/ui": "workspace:*",
|
"@kit/ui": "workspace:*",
|
||||||
"@types/react": "19.1.11",
|
"@types/react": "19.1.11",
|
||||||
"next": "15.5.0",
|
"next": "15.5.2",
|
||||||
"react": "19.1.1",
|
"react": "19.1.1",
|
||||||
"zod": "^3.25.74"
|
"zod": "^3.25.74"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -15,8 +15,8 @@
|
|||||||
"./components": "./src/components/index.ts"
|
"./components": "./src/components/index.ts"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@stripe/react-stripe-js": "^3.9.1",
|
"@stripe/react-stripe-js": "^3.9.2",
|
||||||
"@stripe/stripe-js": "^7.8.0",
|
"@stripe/stripe-js": "^7.9.0",
|
||||||
"stripe": "^18.4.0"
|
"stripe": "^18.4.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
"@kit/ui": "workspace:*",
|
"@kit/ui": "workspace:*",
|
||||||
"@types/react": "19.1.11",
|
"@types/react": "19.1.11",
|
||||||
"date-fns": "^4.1.0",
|
"date-fns": "^4.1.0",
|
||||||
"next": "15.5.0",
|
"next": "15.5.2",
|
||||||
"react": "19.1.1",
|
"react": "19.1.1",
|
||||||
"zod": "^3.25.74"
|
"zod": "^3.25.74"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -37,9 +37,9 @@
|
|||||||
"@supabase/supabase-js": "2.55.0",
|
"@supabase/supabase-js": "2.55.0",
|
||||||
"@tanstack/react-query": "5.85.5",
|
"@tanstack/react-query": "5.85.5",
|
||||||
"@types/react": "19.1.11",
|
"@types/react": "19.1.11",
|
||||||
"@types/react-dom": "19.1.7",
|
"@types/react-dom": "19.1.8",
|
||||||
"lucide-react": "^0.541.0",
|
"lucide-react": "^0.542.0",
|
||||||
"next": "15.5.0",
|
"next": "15.5.2",
|
||||||
"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",
|
||||||
|
|||||||
@@ -24,8 +24,8 @@
|
|||||||
"@tanstack/react-query": "5.85.5",
|
"@tanstack/react-query": "5.85.5",
|
||||||
"@tanstack/react-table": "^8.21.3",
|
"@tanstack/react-table": "^8.21.3",
|
||||||
"@types/react": "19.1.11",
|
"@types/react": "19.1.11",
|
||||||
"lucide-react": "^0.541.0",
|
"lucide-react": "^0.542.0",
|
||||||
"next": "15.5.0",
|
"next": "15.5.2",
|
||||||
"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",
|
||||||
|
|||||||
@@ -32,8 +32,8 @@
|
|||||||
"@supabase/supabase-js": "2.55.0",
|
"@supabase/supabase-js": "2.55.0",
|
||||||
"@tanstack/react-query": "5.85.5",
|
"@tanstack/react-query": "5.85.5",
|
||||||
"@types/react": "19.1.11",
|
"@types/react": "19.1.11",
|
||||||
"lucide-react": "^0.541.0",
|
"lucide-react": "^0.542.0",
|
||||||
"next": "15.5.0",
|
"next": "15.5.2",
|
||||||
"react-hook-form": "^7.62.0",
|
"react-hook-form": "^7.62.0",
|
||||||
"react-i18next": "^15.7.2",
|
"react-i18next": "^15.7.2",
|
||||||
"sonner": "^2.0.7",
|
"sonner": "^2.0.7",
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
"@supabase/supabase-js": "2.55.0",
|
"@supabase/supabase-js": "2.55.0",
|
||||||
"@tanstack/react-query": "5.85.5",
|
"@tanstack/react-query": "5.85.5",
|
||||||
"@types/react": "19.1.11",
|
"@types/react": "19.1.11",
|
||||||
"lucide-react": "^0.541.0",
|
"lucide-react": "^0.542.0",
|
||||||
"react": "19.1.1",
|
"react": "19.1.1",
|
||||||
"react-dom": "19.1.1",
|
"react-dom": "19.1.1",
|
||||||
"react-i18next": "^15.7.2"
|
"react-i18next": "^15.7.2"
|
||||||
|
|||||||
@@ -36,11 +36,11 @@
|
|||||||
"@tanstack/react-query": "5.85.5",
|
"@tanstack/react-query": "5.85.5",
|
||||||
"@tanstack/react-table": "^8.21.3",
|
"@tanstack/react-table": "^8.21.3",
|
||||||
"@types/react": "19.1.11",
|
"@types/react": "19.1.11",
|
||||||
"@types/react-dom": "19.1.7",
|
"@types/react-dom": "19.1.8",
|
||||||
"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.541.0",
|
"lucide-react": "^0.542.0",
|
||||||
"next": "15.5.0",
|
"next": "15.5.2",
|
||||||
"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",
|
||||||
|
|||||||
@@ -21,7 +21,7 @@
|
|||||||
"@kit/shared": "workspace:*",
|
"@kit/shared": "workspace:*",
|
||||||
"@kit/tsconfig": "workspace:*",
|
"@kit/tsconfig": "workspace:*",
|
||||||
"@tanstack/react-query": "5.85.5",
|
"@tanstack/react-query": "5.85.5",
|
||||||
"next": "15.5.0",
|
"next": "15.5.2",
|
||||||
"react": "19.1.1",
|
"react": "19.1.1",
|
||||||
"react-dom": "19.1.1",
|
"react-dom": "19.1.1",
|
||||||
"react-i18next": "^15.7.2"
|
"react-i18next": "^15.7.2"
|
||||||
|
|||||||
@@ -6,12 +6,17 @@
|
|||||||
export abstract class MonitoringService {
|
export abstract class MonitoringService {
|
||||||
/**
|
/**
|
||||||
* Capture an exception
|
* Capture an exception
|
||||||
* @param error
|
* @param error - The error to capture
|
||||||
* @param extra
|
* @param extra - Extra information to capture with the error and be passed along to the capture event
|
||||||
|
* @param config - Options to pass along to the service for additional configuration
|
||||||
*/
|
*/
|
||||||
abstract captureException<Extra extends object>(
|
abstract captureException<
|
||||||
|
Extra extends Record<string, unknown>,
|
||||||
|
Config extends Record<string, unknown>,
|
||||||
|
>(
|
||||||
error: Error & { digest?: string },
|
error: Error & { digest?: string },
|
||||||
extra?: Extra,
|
extra?: Extra,
|
||||||
|
config?: Config,
|
||||||
): unknown;
|
): unknown;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
"./config/server": "./src/sentry.client.server.ts"
|
"./config/server": "./src/sentry.client.server.ts"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@sentry/nextjs": "^10.5.0",
|
"@sentry/nextjs": "^10.6.0",
|
||||||
"import-in-the-middle": "1.14.2"
|
"import-in-the-middle": "1.14.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|||||||
@@ -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.5.0",
|
"next": "15.5.2",
|
||||||
"zod": "^3.25.74"
|
"zod": "^3.25.74"
|
||||||
},
|
},
|
||||||
"typesVersions": {
|
"typesVersions": {
|
||||||
|
|||||||
@@ -27,7 +27,7 @@
|
|||||||
"@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",
|
||||||
"@types/react": "19.1.11",
|
"@types/react": "19.1.11",
|
||||||
"@types/react-dom": "19.1.7",
|
"@types/react-dom": "19.1.8",
|
||||||
"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",
|
||||||
|
|||||||
@@ -29,7 +29,7 @@
|
|||||||
"@supabase/supabase-js": "2.55.0",
|
"@supabase/supabase-js": "2.55.0",
|
||||||
"@tanstack/react-query": "5.85.5",
|
"@tanstack/react-query": "5.85.5",
|
||||||
"@types/react": "19.1.11",
|
"@types/react": "19.1.11",
|
||||||
"next": "15.5.0",
|
"next": "15.5.2",
|
||||||
"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"
|
||||||
|
|||||||
@@ -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.541.0",
|
"lucide-react": "^0.542.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",
|
||||||
@@ -29,11 +29,11 @@
|
|||||||
"@tanstack/react-query": "5.85.5",
|
"@tanstack/react-query": "5.85.5",
|
||||||
"@tanstack/react-table": "^8.21.3",
|
"@tanstack/react-table": "^8.21.3",
|
||||||
"@types/react": "19.1.11",
|
"@types/react": "19.1.11",
|
||||||
"@types/react-dom": "19.1.7",
|
"@types/react-dom": "19.1.8",
|
||||||
"class-variance-authority": "^0.7.1",
|
"class-variance-authority": "^0.7.1",
|
||||||
"date-fns": "^4.1.0",
|
"date-fns": "^4.1.0",
|
||||||
"eslint": "^9.34.0",
|
"eslint": "^9.34.0",
|
||||||
"next": "15.5.0",
|
"next": "15.5.2",
|
||||||
"next-themes": "0.4.6",
|
"next-themes": "0.4.6",
|
||||||
"prettier": "^3.6.2",
|
"prettier": "^3.6.2",
|
||||||
"react-day-picker": "^9.9.0",
|
"react-day-picker": "^9.9.0",
|
||||||
|
|||||||
1482
pnpm-lock.yaml
generated
1482
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@@ -13,11 +13,11 @@
|
|||||||
"format": "prettier --check \"**/*.{js,json}\""
|
"format": "prettier --check \"**/*.{js,json}\""
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@next/eslint-plugin-next": "15.5.0",
|
"@next/eslint-plugin-next": "15.5.2",
|
||||||
"@types/eslint": "9.6.1",
|
"@types/eslint": "9.6.1",
|
||||||
"eslint-config-next": "15.5.0",
|
"eslint-config-next": "15.5.2",
|
||||||
"eslint-config-turbo": "^2.5.6",
|
"eslint-config-turbo": "^2.5.6",
|
||||||
"typescript-eslint": "8.40.0"
|
"typescript-eslint": "8.41.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@kit/prettier-config": "workspace:*",
|
"@kit/prettier-config": "workspace:*",
|
||||||
|
|||||||
Reference in New Issue
Block a user