Dependencies Updates (#83)

* Keystatic: Use the correct variable when fetching content from GitHub
* Revert default layout style
This commit is contained in:
Giancarlo Buomprisco
2024-11-22 08:55:15 +01:00
committed by GitHub
parent 977c958975
commit 5cc936b982
28 changed files with 1754 additions and 1600 deletions

View File

@@ -17,7 +17,7 @@
"@kit/prettier-config": "workspace:*",
"@kit/tailwind-config": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@types/node": "^22.8.7"
"@types/node": "^22.9.1"
},
"eslintConfig": {
"root": true,

View File

@@ -30,7 +30,7 @@
"@supabase/supabase-js": "^2.46.1",
"@types/react": "npm:types-react@19.0.0-rc.1",
"date-fns": "^4.1.0",
"lucide-react": "^0.456.0",
"lucide-react": "^0.460.0",
"next": "15.0.3",
"react": "19.0.0-rc-45804af1-20241021",
"react-hook-form": "^7.53.2",

View File

@@ -15,9 +15,9 @@
"./components": "./src/components/index.ts"
},
"dependencies": {
"@stripe/react-stripe-js": "^2.9.0",
"@stripe/stripe-js": "^4.10.0",
"stripe": "^17.3.1"
"@stripe/react-stripe-js": "^3.0.0",
"@stripe/stripe-js": "^5.2.0",
"stripe": "^17.4.0"
},
"devDependencies": {
"@kit/billing": "workspace:*",

View File

@@ -2,7 +2,7 @@ import 'server-only';
import { StripeServerEnvSchema } from '../schema/stripe-server-env.schema';
const STRIPE_API_VERSION = '2024-10-28.acacia';
const STRIPE_API_VERSION = '2024-11-20.acacia';
/**
* @description returns a Stripe instance

View File

@@ -19,7 +19,7 @@
"@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@kit/wordpress": "workspace:*",
"@types/node": "^22.8.7"
"@types/node": "^22.9.1"
},
"eslintConfig": {
"root": true,

View File

@@ -16,7 +16,7 @@
"./route-handler": "./src/keystatic-route-handler.ts"
},
"dependencies": {
"@keystatic/core": "0.5.39",
"@keystatic/core": "0.5.41",
"@keystatic/next": "^5.0.1",
"@markdoc/markdoc": "^0.4.0"
},
@@ -26,7 +26,7 @@
"@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*",
"@types/node": "^22.8.7",
"@types/node": "^22.9.1",
"@types/react": "npm:types-react@19.0.0-rc.1",
"react": "19.0.0-rc-45804af1-20241021",
"zod": "^3.23.8"

View File

@@ -40,6 +40,15 @@ export async function createKeystaticReader() {
}
function getKeystaticGithubConfiguration() {
/**
* @description The repository to use for the GitHub storage.
* This can be provided through the `NEXT_PUBLIC_KEYSTATIC_STORAGE_REPO` environment variable. The previous environment variable `KEYSTATIC_STORAGE_REPO` is deprecated.
*/
const repo =
process.env.NEXT_PUBLIC_KEYSTATIC_STORAGE_REPO ??
/* @deprecated */
process.env.KEYSTATIC_STORAGE_REPO;
return z
.object({
token: z.string({
@@ -51,7 +60,7 @@ function getKeystaticGithubConfiguration() {
})
.parse({
token: process.env.KEYSTATIC_GITHUB_TOKEN,
repo: process.env.KEYSTATIC_STORAGE_REPO,
repo,
pathPrefix: process.env.KEYSTATIC_PATH_PREFIX,
});
}

View File

@@ -20,7 +20,7 @@
"@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*",
"@types/node": "^22.8.7",
"@types/node": "^22.9.1",
"@types/react": "npm:types-react@19.0.0-rc.1",
"wp-types": "^4.67.0"
},

View File

@@ -35,10 +35,10 @@
"@kit/ui": "workspace:*",
"@radix-ui/react-icons": "^1.3.2",
"@supabase/supabase-js": "^2.46.1",
"@tanstack/react-query": "5.60.2",
"@tanstack/react-query": "5.61.0",
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
"lucide-react": "^0.456.0",
"lucide-react": "^0.460.0",
"next": "15.0.3",
"next-themes": "0.4.3",
"react": "19.0.0-rc-45804af1-20241021",

View File

@@ -22,10 +22,10 @@
"@makerkit/data-loader-supabase-core": "^0.0.8",
"@makerkit/data-loader-supabase-nextjs": "^1.2.3",
"@supabase/supabase-js": "^2.46.1",
"@tanstack/react-query": "5.60.2",
"@tanstack/react-query": "5.61.0",
"@tanstack/react-table": "^8.20.5",
"@types/react": "npm:types-react@19.0.0-rc.1",
"lucide-react": "^0.456.0",
"lucide-react": "^0.460.0",
"next": "15.0.3",
"react": "19.0.0-rc-45804af1-20241021",
"react-dom": "19.0.0-rc-45804af1-20241021",

View File

@@ -26,12 +26,12 @@
"@kit/tailwind-config": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*",
"@marsidev/react-turnstile": "^1.0.2",
"@marsidev/react-turnstile": "^1.1.0",
"@radix-ui/react-icons": "^1.3.2",
"@supabase/supabase-js": "^2.46.1",
"@tanstack/react-query": "5.60.2",
"@tanstack/react-query": "5.61.0",
"@types/react": "npm:types-react@19.0.0-rc.1",
"lucide-react": "^0.456.0",
"lucide-react": "^0.460.0",
"next": "15.0.3",
"react-hook-form": "^7.53.2",
"react-i18next": "^15.1.1",

View File

@@ -21,9 +21,9 @@
"@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*",
"@supabase/supabase-js": "^2.46.1",
"@tanstack/react-query": "5.60.2",
"@tanstack/react-query": "5.61.0",
"@types/react": "npm:types-react@19.0.0-rc.1",
"lucide-react": "^0.456.0",
"lucide-react": "^0.460.0",
"react": "19.0.0-rc-45804af1-20241021",
"react-dom": "19.0.0-rc-45804af1-20241021",
"react-i18next": "^15.1.1"

View File

@@ -33,13 +33,13 @@
"@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*",
"@supabase/supabase-js": "^2.46.1",
"@tanstack/react-query": "5.60.2",
"@tanstack/react-query": "5.61.0",
"@tanstack/react-table": "^8.20.5",
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
"class-variance-authority": "^0.7.0",
"date-fns": "^4.1.0",
"lucide-react": "^0.456.0",
"lucide-react": "^0.460.0",
"next": "15.0.3",
"react": "19.0.0-rc-45804af1-20241021",
"react-dom": "19.0.0-rc-45804af1-20241021",

View File

@@ -21,14 +21,14 @@
"@kit/shared": "workspace:*",
"@kit/tailwind-config": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@tanstack/react-query": "5.60.2",
"@tanstack/react-query": "5.61.0",
"next": "15.0.3",
"react": "19.0.0-rc-45804af1-20241021",
"react-dom": "19.0.0-rc-45804af1-20241021",
"react-i18next": "^15.1.1"
},
"dependencies": {
"i18next": "23.16.5",
"i18next": "23.16.8",
"i18next-browser-languagedetector": "8.0.0",
"i18next-resources-to-backend": "^1.2.1"
},

View File

@@ -19,7 +19,7 @@
"@kit/resend": "workspace:*",
"@kit/tailwind-config": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@types/node": "^22.8.7",
"@types/node": "^22.9.1",
"zod": "^3.23.8"
},
"eslintConfig": {

View File

@@ -21,7 +21,7 @@
"@kit/prettier-config": "workspace:*",
"@kit/tailwind-config": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@types/nodemailer": "6.4.16",
"@types/nodemailer": "6.4.17",
"zod": "^3.23.8"
},
"eslintConfig": {

View File

@@ -18,7 +18,7 @@
"@kit/prettier-config": "workspace:*",
"@kit/tailwind-config": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@types/node": "^22.8.7",
"@types/node": "^22.9.1",
"zod": "^3.23.8"
},
"eslintConfig": {

View File

@@ -16,7 +16,7 @@
"./config/server": "./src/sentry.client.server.ts"
},
"dependencies": {
"@sentry/nextjs": "^8.38.0"
"@sentry/nextjs": "^8.39.0"
},
"devDependencies": {
"@kit/eslint-config": "workspace:*",

View File

@@ -30,7 +30,7 @@
"@kit/tsconfig": "workspace:*",
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.46.1",
"@tanstack/react-query": "5.60.2",
"@tanstack/react-query": "5.61.0",
"@types/react": "npm:types-react@19.0.0-rc.1",
"next": "15.0.3",
"react": "19.0.0-rc-45804af1-20241021",

View File

@@ -21,7 +21,7 @@
"@radix-ui/react-navigation-menu": "^1.2.1",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-radio-group": "^1.2.1",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-scroll-area": "^1.2.1",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
@@ -32,7 +32,7 @@
"clsx": "^2.1.1",
"cmdk": "1.0.4",
"input-otp": "1.4.1",
"lucide-react": "^0.456.0",
"lucide-react": "^0.460.0",
"react-top-loading-bar": "2.3.1",
"recharts": "2.13.3",
"tailwind-merge": "^2.5.4"
@@ -43,7 +43,7 @@
"@kit/tailwind-config": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@radix-ui/react-icons": "^1.3.2",
"@tanstack/react-query": "5.60.2",
"@tanstack/react-query": "5.61.0",
"@tanstack/react-table": "^8.20.5",
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",

View File

@@ -37,7 +37,7 @@ const RouteGroup = z.object({
});
export const NavigationConfigSchema = z.object({
style: z.enum(['custom', 'sidebar', 'header']).default('header'),
style: z.enum(['custom', 'sidebar', 'header']).default('sidebar'),
sidebarCollapsed: z
.enum(['false', 'true'])
.default('false')