From f454bf1cfb1a538fe79d66cc9bba99563046297f Mon Sep 17 00:00:00 2001 From: Lachlan Collins <1667261+lachlancollins@users.noreply.github.com> Date: Sun, 30 Jun 2024 12:54:28 +1000 Subject: [PATCH] docs(examples): Update Next.js version (#7649) --- examples/react/auto-refetching/next.config.js | 7 +- examples/react/auto-refetching/package.json | 3 +- .../next.config.js | 7 +- .../package.json | 3 +- .../load-more-infinite-scroll/next.config.js | 7 +- .../load-more-infinite-scroll/package.json | 3 +- .../nextjs-app-prefetching/next.config.js | 4 +- .../react/nextjs-app-prefetching/package.json | 1 + .../nextjs-suspense-streaming/next.config.js | 4 +- .../nextjs-suspense-streaming/package.json | 3 +- examples/react/nextjs/next.config.js | 7 +- examples/react/nextjs/package.json | 3 +- .../optimistic-updates-cache/next.config.js | 7 +- .../optimistic-updates-cache/package.json | 3 +- .../optimistic-updates-ui/next.config.js | 7 +- .../react/optimistic-updates-ui/package.json | 3 +- examples/react/pagination/next.config.js | 7 +- examples/react/pagination/package.json | 3 +- examples/react/prefetching/next.config.js | 7 +- examples/react/prefetching/package.json | 3 +- integrations/react-next/package.json | 2 +- .../package.json | 2 +- pnpm-lock.yaml | 226 +++++++++--------- 23 files changed, 189 insertions(+), 133 deletions(-) diff --git a/examples/react/auto-refetching/next.config.js b/examples/react/auto-refetching/next.config.js index 954704d28c..4fd508c5f4 100644 --- a/examples/react/auto-refetching/next.config.js +++ b/examples/react/auto-refetching/next.config.js @@ -1,5 +1,10 @@ -module.exports = { +// @ts-check + +/** @type {import('next').NextConfig} */ +const nextConfig = { eslint: { ignoreDuringBuilds: true, }, } + +export default nextConfig diff --git a/examples/react/auto-refetching/package.json b/examples/react/auto-refetching/package.json index 220c631aa9..57f89cb7c1 100644 --- a/examples/react/auto-refetching/package.json +++ b/examples/react/auto-refetching/package.json @@ -1,6 +1,7 @@ { "name": "@tanstack/query-example-react-auto-refetching", "private": true, + "type": "module", "scripts": { "dev": "next", "build": "next build", @@ -11,7 +12,7 @@ "@tanstack/react-query-devtools": "^5.49.0", "axios": "^1.6.8", "isomorphic-unfetch": "4.0.2", - "next": "^14.0.0", + "next": "^14.2.4", "react": "^18.2.0", "react-dom": "^18.2.0" } diff --git a/examples/react/infinite-query-with-max-pages/next.config.js b/examples/react/infinite-query-with-max-pages/next.config.js index 954704d28c..4fd508c5f4 100644 --- a/examples/react/infinite-query-with-max-pages/next.config.js +++ b/examples/react/infinite-query-with-max-pages/next.config.js @@ -1,5 +1,10 @@ -module.exports = { +// @ts-check + +/** @type {import('next').NextConfig} */ +const nextConfig = { eslint: { ignoreDuringBuilds: true, }, } + +export default nextConfig diff --git a/examples/react/infinite-query-with-max-pages/package.json b/examples/react/infinite-query-with-max-pages/package.json index d24c2b69a4..333ca9bb3c 100644 --- a/examples/react/infinite-query-with-max-pages/package.json +++ b/examples/react/infinite-query-with-max-pages/package.json @@ -1,6 +1,7 @@ { "name": "@tanstack/query-example-react-infinite-query-with-max-pages", "private": true, + "type": "module", "scripts": { "dev": "next", "build": "next build", @@ -11,7 +12,7 @@ "@tanstack/react-query-devtools": "^5.49.0", "axios": "^1.6.8", "isomorphic-unfetch": "4.0.2", - "next": "^14.0.0", + "next": "^14.2.4", "react": "^18.2.0", "react-dom": "^18.2.0", "react-intersection-observer": "^8.34.0" diff --git a/examples/react/load-more-infinite-scroll/next.config.js b/examples/react/load-more-infinite-scroll/next.config.js index 954704d28c..4fd508c5f4 100644 --- a/examples/react/load-more-infinite-scroll/next.config.js +++ b/examples/react/load-more-infinite-scroll/next.config.js @@ -1,5 +1,10 @@ -module.exports = { +// @ts-check + +/** @type {import('next').NextConfig} */ +const nextConfig = { eslint: { ignoreDuringBuilds: true, }, } + +export default nextConfig diff --git a/examples/react/load-more-infinite-scroll/package.json b/examples/react/load-more-infinite-scroll/package.json index 408ad10cd3..2d5744f64f 100644 --- a/examples/react/load-more-infinite-scroll/package.json +++ b/examples/react/load-more-infinite-scroll/package.json @@ -1,6 +1,7 @@ { "name": "@tanstack/query-example-react-load-more-infinite-scroll", "private": true, + "type": "module", "scripts": { "dev": "next", "build": "next build", @@ -11,7 +12,7 @@ "@tanstack/react-query-devtools": "^5.49.0", "axios": "^1.6.8", "isomorphic-unfetch": "4.0.2", - "next": "^14.0.0", + "next": "^14.2.4", "react": "^18.2.0", "react-dom": "^18.2.0", "react-intersection-observer": "^8.34.0" diff --git a/examples/react/nextjs-app-prefetching/next.config.js b/examples/react/nextjs-app-prefetching/next.config.js index 8d2a9bf37a..4fd508c5f4 100644 --- a/examples/react/nextjs-app-prefetching/next.config.js +++ b/examples/react/nextjs-app-prefetching/next.config.js @@ -1,3 +1,5 @@ +// @ts-check + /** @type {import('next').NextConfig} */ const nextConfig = { eslint: { @@ -5,4 +7,4 @@ const nextConfig = { }, } -module.exports = nextConfig +export default nextConfig diff --git a/examples/react/nextjs-app-prefetching/package.json b/examples/react/nextjs-app-prefetching/package.json index 6e4f4c0d9d..6312dbb23d 100644 --- a/examples/react/nextjs-app-prefetching/package.json +++ b/examples/react/nextjs-app-prefetching/package.json @@ -1,6 +1,7 @@ { "name": "nextjs-app-prefetching", "private": true, + "type": "module", "scripts": { "dev": "next dev", "build": "next build", diff --git a/examples/react/nextjs-suspense-streaming/next.config.js b/examples/react/nextjs-suspense-streaming/next.config.js index 8d249b795b..9b538eb739 100644 --- a/examples/react/nextjs-suspense-streaming/next.config.js +++ b/examples/react/nextjs-suspense-streaming/next.config.js @@ -1,3 +1,5 @@ +// @ts-check + /** @type {import('next').NextConfig} */ const nextConfig = { eslint: { @@ -10,4 +12,4 @@ const nextConfig = { }, } -module.exports = nextConfig +export default nextConfig diff --git a/examples/react/nextjs-suspense-streaming/package.json b/examples/react/nextjs-suspense-streaming/package.json index 9247858b34..7337b467ac 100644 --- a/examples/react/nextjs-suspense-streaming/package.json +++ b/examples/react/nextjs-suspense-streaming/package.json @@ -1,6 +1,7 @@ { "name": "@tanstack/query-example-nextjs-suspense-streaming", "private": true, + "type": "module", "scripts": { "dev": "next dev", "build": "next build", @@ -11,7 +12,7 @@ "@tanstack/react-query": "^5.49.0", "@tanstack/react-query-devtools": "^5.49.0", "@tanstack/react-query-next-experimental": "^5.49.0", - "next": "^14.0.0", + "next": "^14.2.4", "react": "^18.2.0", "react-dom": "^18.2.0", "superjson": "^2.2.1" diff --git a/examples/react/nextjs/next.config.js b/examples/react/nextjs/next.config.js index 954704d28c..4fd508c5f4 100644 --- a/examples/react/nextjs/next.config.js +++ b/examples/react/nextjs/next.config.js @@ -1,5 +1,10 @@ -module.exports = { +// @ts-check + +/** @type {import('next').NextConfig} */ +const nextConfig = { eslint: { ignoreDuringBuilds: true, }, } + +export default nextConfig diff --git a/examples/react/nextjs/package.json b/examples/react/nextjs/package.json index 53c8b31cd2..4b63061bf2 100644 --- a/examples/react/nextjs/package.json +++ b/examples/react/nextjs/package.json @@ -1,6 +1,7 @@ { "name": "@tanstack/query-example-react-nextjs", "private": true, + "type": "module", "scripts": { "dev": "next", "build": "next build", @@ -10,7 +11,7 @@ "@tanstack/react-query": "^5.49.0", "@tanstack/react-query-devtools": "^5.49.0", "ky": "^1.2.4", - "next": "^14.0.0", + "next": "^14.2.4", "react": "^18.2.0", "react-dom": "^18.2.0", "resolve-from": "^5.0.0", diff --git a/examples/react/optimistic-updates-cache/next.config.js b/examples/react/optimistic-updates-cache/next.config.js index 954704d28c..4fd508c5f4 100644 --- a/examples/react/optimistic-updates-cache/next.config.js +++ b/examples/react/optimistic-updates-cache/next.config.js @@ -1,5 +1,10 @@ -module.exports = { +// @ts-check + +/** @type {import('next').NextConfig} */ +const nextConfig = { eslint: { ignoreDuringBuilds: true, }, } + +export default nextConfig diff --git a/examples/react/optimistic-updates-cache/package.json b/examples/react/optimistic-updates-cache/package.json index 2fca78d88e..40db383470 100755 --- a/examples/react/optimistic-updates-cache/package.json +++ b/examples/react/optimistic-updates-cache/package.json @@ -1,6 +1,7 @@ { "name": "@tanstack/query-example-react-optimistic-updates-cache", "private": true, + "type": "module", "scripts": { "dev": "next", "build": "next build", @@ -12,7 +13,7 @@ "@tanstack/react-query-devtools": "^5.49.0", "axios": "^1.6.8", "isomorphic-unfetch": "4.0.2", - "next": "^14.0.0", + "next": "^14.2.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/examples/react/optimistic-updates-ui/next.config.js b/examples/react/optimistic-updates-ui/next.config.js index 954704d28c..4fd508c5f4 100644 --- a/examples/react/optimistic-updates-ui/next.config.js +++ b/examples/react/optimistic-updates-ui/next.config.js @@ -1,5 +1,10 @@ -module.exports = { +// @ts-check + +/** @type {import('next').NextConfig} */ +const nextConfig = { eslint: { ignoreDuringBuilds: true, }, } + +export default nextConfig diff --git a/examples/react/optimistic-updates-ui/package.json b/examples/react/optimistic-updates-ui/package.json index 4cdbf1955a..ae2b798c52 100755 --- a/examples/react/optimistic-updates-ui/package.json +++ b/examples/react/optimistic-updates-ui/package.json @@ -1,6 +1,7 @@ { "name": "@tanstack/query-example-react-optimistic-updates-ui", "private": true, + "type": "module", "scripts": { "dev": "next", "build": "next build", @@ -11,7 +12,7 @@ "@tanstack/react-query-devtools": "^5.49.0", "axios": "^1.6.8", "isomorphic-unfetch": "4.0.2", - "next": "^14.0.0", + "next": "^14.2.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/examples/react/pagination/next.config.js b/examples/react/pagination/next.config.js index 954704d28c..4fd508c5f4 100644 --- a/examples/react/pagination/next.config.js +++ b/examples/react/pagination/next.config.js @@ -1,5 +1,10 @@ -module.exports = { +// @ts-check + +/** @type {import('next').NextConfig} */ +const nextConfig = { eslint: { ignoreDuringBuilds: true, }, } + +export default nextConfig diff --git a/examples/react/pagination/package.json b/examples/react/pagination/package.json index d86208a331..0ba8d638c8 100644 --- a/examples/react/pagination/package.json +++ b/examples/react/pagination/package.json @@ -1,6 +1,7 @@ { "name": "@tanstack/query-example-react-pagination", "private": true, + "type": "module", "scripts": { "dev": "next", "build": "next build", @@ -11,7 +12,7 @@ "@tanstack/react-query-devtools": "^5.49.0", "axios": "^1.6.8", "isomorphic-unfetch": "4.0.2", - "next": "^14.0.0", + "next": "^14.2.4", "react": "^18.2.0", "react-dom": "^18.2.0" } diff --git a/examples/react/prefetching/next.config.js b/examples/react/prefetching/next.config.js index 954704d28c..4fd508c5f4 100644 --- a/examples/react/prefetching/next.config.js +++ b/examples/react/prefetching/next.config.js @@ -1,5 +1,10 @@ -module.exports = { +// @ts-check + +/** @type {import('next').NextConfig} */ +const nextConfig = { eslint: { ignoreDuringBuilds: true, }, } + +export default nextConfig diff --git a/examples/react/prefetching/package.json b/examples/react/prefetching/package.json index 9059fa8712..300eee4311 100644 --- a/examples/react/prefetching/package.json +++ b/examples/react/prefetching/package.json @@ -1,6 +1,7 @@ { "name": "@tanstack/query-example-react-prefetching", "private": true, + "type": "module", "scripts": { "dev": "next", "build": "next build", @@ -11,7 +12,7 @@ "@tanstack/react-query-devtools": "^5.49.0", "axios": "^1.6.8", "isomorphic-unfetch": "4.0.2", - "next": "^14.0.0", + "next": "^14.2.4", "react": "^18.2.0", "react-dom": "^18.2.0" } diff --git a/integrations/react-next/package.json b/integrations/react-next/package.json index c204f684f2..f7aa52d4e0 100644 --- a/integrations/react-next/package.json +++ b/integrations/react-next/package.json @@ -7,7 +7,7 @@ "dependencies": { "@tanstack/react-query": "workspace:*", "@tanstack/react-query-devtools": "workspace:*", - "next": "^14.0.0", + "next": "^14.2.4", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/packages/react-query-next-experimental/package.json b/packages/react-query-next-experimental/package.json index 4478348b05..910b690aea 100644 --- a/packages/react-query-next-experimental/package.json +++ b/packages/react-query-next-experimental/package.json @@ -47,7 +47,7 @@ "@tanstack/react-query": "workspace:*", "@types/react": "npm:types-react@rc", "@vitejs/plugin-react": "^4.2.1", - "next": "^14.0.0", + "next": "^14.2.4", "react": "19.0.0-rc-4c2e457c7c-20240522" }, "peerDependencies": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 568f69bb9b..b13f1d6e28 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -376,8 +376,8 @@ importers: specifier: 4.0.2 version: 4.0.2 next: - specifier: ^14.0.0 - version: 14.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1) + specifier: ^14.2.4 + version: 14.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -530,8 +530,8 @@ importers: specifier: 4.0.2 version: 4.0.2 next: - specifier: ^14.0.0 - version: 14.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1) + specifier: ^14.2.4 + version: 14.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -557,8 +557,8 @@ importers: specifier: 4.0.2 version: 4.0.2 next: - specifier: ^14.0.0 - version: 14.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1) + specifier: ^14.2.4 + version: 14.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -581,8 +581,8 @@ importers: specifier: ^1.2.4 version: 1.2.4 next: - specifier: ^14.0.0 - version: 14.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1) + specifier: ^14.2.4 + version: 14.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -639,8 +639,8 @@ importers: specifier: ^5.49.0 version: link:../../../packages/react-query-next-experimental next: - specifier: ^14.0.0 - version: 14.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1) + specifier: ^14.2.4 + version: 14.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -716,8 +716,8 @@ importers: specifier: 4.0.2 version: 4.0.2 next: - specifier: ^14.0.0 - version: 14.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1) + specifier: ^14.2.4 + version: 14.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -753,8 +753,8 @@ importers: specifier: 4.0.2 version: 4.0.2 next: - specifier: ^14.0.0 - version: 14.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1) + specifier: ^14.2.4 + version: 14.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -790,8 +790,8 @@ importers: specifier: 4.0.2 version: 4.0.2 next: - specifier: ^14.0.0 - version: 14.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1) + specifier: ^14.2.4 + version: 14.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -836,8 +836,8 @@ importers: specifier: 4.0.2 version: 4.0.2 next: - specifier: ^14.0.0 - version: 14.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1) + specifier: ^14.2.4 + version: 14.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -1156,7 +1156,7 @@ importers: version: 5.1.0(astro@4.9.1(@types/node@20.12.12)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)(typescript@5.3.3))(tailwindcss@3.4.3) '@astrojs/vercel': specifier: ^7.6.0 - version: 7.6.0(astro@4.9.1(@types/node@20.12.12)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)(typescript@5.3.3))(encoding@0.1.13)(next@14.0.0(@babel/core@7.24.6)(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522))(react@18.3.1)(sass@1.71.1))(react@18.3.1) + version: 7.6.0(astro@4.9.1(@types/node@20.12.12)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)(typescript@5.3.3))(encoding@0.1.13)(next@14.2.4(@babel/core@7.24.6)(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522))(react@18.3.1)(sass@1.71.1))(react@18.3.1) '@tanstack/solid-query': specifier: ^5.49.0 version: link:../../../packages/solid-query @@ -1738,8 +1738,8 @@ importers: specifier: workspace:* version: link:../../packages/react-query-devtools next: - specifier: ^14.0.0 - version: 14.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1) + specifier: ^14.2.4 + version: 14.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -2111,8 +2111,8 @@ importers: specifier: ^4.2.1 version: 4.2.1(vite@5.2.11(@types/node@20.12.12)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)) next: - specifier: ^14.0.0 - version: 14.0.0(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522))(react@19.0.0-rc-4c2e457c7c-20240522)(sass@1.71.1) + specifier: ^14.2.4 + version: 14.2.4(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522))(react@19.0.0-rc-4c2e457c7c-20240522)(sass@1.71.1) react: specifier: 19.0.0-rc-4c2e457c7c-20240522 version: 19.0.0-rc-4c2e457c7c-20240522 @@ -5292,14 +5292,14 @@ packages: resolution: {integrity: sha512-HUNETLNvNiC2J+SB/YuRwJA9+agPrc0azSoWVk8H85GC+YE114hcS5JW+dstpKwVerp2xILE3vNWN7IMXP5Q5Q==} engines: {node: ^14.18.0 || >=16.0.0} - '@next/env@14.0.0': - resolution: {integrity: sha512-cIKhxkfVELB6hFjYsbtEeTus2mwrTC+JissfZYM0n+8Fv+g8ucUfOlm3VEDtwtwydZ0Nuauv3bl0qF82nnCAqA==} + '@next/env@14.2.4': + resolution: {integrity: sha512-3EtkY5VDkuV2+lNmKlbkibIJxcO4oIHEhBWne6PaAp+76J9KoSsGvNikp6ivzAT8dhhBMYrm6op2pS1ApG0Hzg==} '@next/env@15.0.0-rc.0': resolution: {integrity: sha512-6W0ndQvHR9sXcqcKeR/inD2UTRCs9+VkSK3lfaGmEuZs7EjwwXMO2BPYjz9oBrtfPL3xuTjtXsHKSsalYQ5l1Q==} - '@next/swc-darwin-arm64@14.0.0': - resolution: {integrity: sha512-HQKi159jCz4SRsPesVCiNN6tPSAFUkOuSkpJsqYTIlbHLKr1mD6be/J0TvWV6fwJekj81bZV9V/Tgx3C2HO9lA==} + '@next/swc-darwin-arm64@14.2.4': + resolution: {integrity: sha512-AH3mO4JlFUqsYcwFUHb1wAKlebHU/Hv2u2kb1pAuRanDZ7pD/A/KPD98RHZmwsJpdHQwfEc/06mgpSzwrJYnNg==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] @@ -5310,8 +5310,8 @@ packages: cpu: [arm64] os: [darwin] - '@next/swc-darwin-x64@14.0.0': - resolution: {integrity: sha512-4YyQLMSaCgX/kgC1jjF3s3xSoBnwHuDhnF6WA1DWNEYRsbOOPWjcYhv8TKhRe2ApdOam+VfQSffC4ZD+X4u1Cg==} + '@next/swc-darwin-x64@14.2.4': + resolution: {integrity: sha512-QVadW73sWIO6E2VroyUjuAxhWLZWEpiFqHdZdoQ/AMpN9YWGuHV8t2rChr0ahy+irKX5mlDU7OY68k3n4tAZTg==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] @@ -5322,8 +5322,8 @@ packages: cpu: [x64] os: [darwin] - '@next/swc-linux-arm64-gnu@14.0.0': - resolution: {integrity: sha512-io7fMkJ28Glj7SH8yvnlD6naIhRDnDxeE55CmpQkj3+uaA2Hko6WGY2pT5SzpQLTnGGnviK85cy8EJ2qsETj/g==} + '@next/swc-linux-arm64-gnu@14.2.4': + resolution: {integrity: sha512-KT6GUrb3oyCfcfJ+WliXuJnD6pCpZiosx2X3k66HLR+DMoilRb76LpWPGb4tZprawTtcnyrv75ElD6VncVamUQ==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] @@ -5334,8 +5334,8 @@ packages: cpu: [arm64] os: [linux] - '@next/swc-linux-arm64-musl@14.0.0': - resolution: {integrity: sha512-nC2h0l1Jt8LEzyQeSs/BKpXAMe0mnHIMykYALWaeddTqCv5UEN8nGO3BG8JAqW/Y8iutqJsaMe2A9itS0d/r8w==} + '@next/swc-linux-arm64-musl@14.2.4': + resolution: {integrity: sha512-Alv8/XGSs/ytwQcbCHwze1HmiIkIVhDHYLjczSVrf0Wi2MvKn/blt7+S6FJitj3yTlMwMxII1gIJ9WepI4aZ/A==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] @@ -5346,8 +5346,8 @@ packages: cpu: [arm64] os: [linux] - '@next/swc-linux-x64-gnu@14.0.0': - resolution: {integrity: sha512-Wf+WjXibJQ7hHXOdNOmSMW5bxeJHVf46Pwb3eLSD2L76NrytQlif9NH7JpHuFlYKCQGfKfgSYYre5rIfmnSwQw==} + '@next/swc-linux-x64-gnu@14.2.4': + resolution: {integrity: sha512-ze0ShQDBPCqxLImzw4sCdfnB3lRmN3qGMB2GWDRlq5Wqy4G36pxtNOo2usu/Nm9+V2Rh/QQnrRc2l94kYFXO6Q==} engines: {node: '>= 10'} cpu: [x64] os: [linux] @@ -5358,8 +5358,8 @@ packages: cpu: [x64] os: [linux] - '@next/swc-linux-x64-musl@14.0.0': - resolution: {integrity: sha512-WTZb2G7B+CTsdigcJVkRxfcAIQj7Lf0ipPNRJ3vlSadU8f0CFGv/ST+sJwF5eSwIe6dxKoX0DG6OljDBaad+rg==} + '@next/swc-linux-x64-musl@14.2.4': + resolution: {integrity: sha512-8dwC0UJoc6fC7PX70csdaznVMNr16hQrTDAMPvLPloazlcaWfdPogq+UpZX6Drqb1OBlwowz8iG7WR0Tzk/diQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] @@ -5370,8 +5370,8 @@ packages: cpu: [x64] os: [linux] - '@next/swc-win32-arm64-msvc@14.0.0': - resolution: {integrity: sha512-7R8/x6oQODmNpnWVW00rlWX90sIlwluJwcvMT6GXNIBOvEf01t3fBg0AGURNKdTJg2xNuP7TyLchCL7Lh2DTiw==} + '@next/swc-win32-arm64-msvc@14.2.4': + resolution: {integrity: sha512-jxyg67NbEWkDyvM+O8UDbPAyYRZqGLQDTPwvrBBeOSyVWW/jFQkQKQ70JDqDSYg1ZDdl+E3nkbFbq8xM8E9x8A==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] @@ -5382,8 +5382,8 @@ packages: cpu: [arm64] os: [win32] - '@next/swc-win32-ia32-msvc@14.0.0': - resolution: {integrity: sha512-RLK1nELvhCnxaWPF07jGU4x3tjbyx2319q43loZELqF0+iJtKutZ+Lk8SVmf/KiJkYBc7Cragadz7hb3uQvz4g==} + '@next/swc-win32-ia32-msvc@14.2.4': + resolution: {integrity: sha512-twrmN753hjXRdcrZmZttb/m5xaCBFa48Dt3FbeEItpJArxriYDunWxJn+QFXdJ3hPkm4u7CKxncVvnmgQMY1ag==} engines: {node: '>= 10'} cpu: [ia32] os: [win32] @@ -5394,8 +5394,8 @@ packages: cpu: [ia32] os: [win32] - '@next/swc-win32-x64-msvc@14.0.0': - resolution: {integrity: sha512-g6hLf1SUko+hnnaywQQZzzb3BRecQsoKkF3o/C+F+dOA4w/noVAJngUVkfwF0+2/8FzNznM7ofM6TGZO9svn7w==} + '@next/swc-win32-x64-msvc@14.2.4': + resolution: {integrity: sha512-tkLrjBzqFTP8DVrAAQmZelEahfR9OxWpFR++vAI9FBhCiIxtwHwBHC23SBHCTURBtwB4kc/x44imVOnkKGNVGg==} engines: {node: '>= 10'} cpu: [x64] os: [win32] @@ -6356,11 +6356,14 @@ packages: resolution: {integrity: sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==} engines: {node: '>=10'} + '@swc/counter@0.1.3': + resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} + '@swc/helpers@0.5.11': resolution: {integrity: sha512-YNlnKRWF2sVojTpIyzwou9XoTNbzbzONwRhOoniEioF1AtaitTvVZblaQRrAzChWQ1bLYyYSWzM18y4WwgzJ+A==} - '@swc/helpers@0.5.2': - resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==} + '@swc/helpers@0.5.5': + resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==} '@tanstack/config@0.9.0': resolution: {integrity: sha512-SeJjYW2RMaO+U51aNu3p92GHzs4yZPeKT9F4R32U7PgDFRGMLUpFh5oiYwtr5RuEddn0Vk9jwcfhnCuCHUgSuQ==} @@ -8624,9 +8627,6 @@ packages: peerDependencies: webpack: ^5.1.0 - core-js-compat@3.35.1: - resolution: {integrity: sha512-sftHa5qUJY3rs9Zht1WEnmkvXputCyDBczPnr7QDgL8n3qrF3CMXY4VPSYtOLLiOUJcah2WNXREd48iOl6mQIw==} - core-js-compat@3.37.1: resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==} @@ -13300,18 +13300,21 @@ packages: next-tick@1.1.0: resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} - next@14.0.0: - resolution: {integrity: sha512-J0jHKBJpB9zd4+c153sair0sz44mbaCHxggs8ryVXSFBuBqJ8XdE9/ozoV85xGh2VnSjahwntBZZgsihL9QznA==} + next@14.2.4: + resolution: {integrity: sha512-R8/V7vugY+822rsQGQCjoLhMuC9oFj9SOi4Cl4b2wjDrseD0LRZ10W7R6Czo4w9ZznVSshKjuIomsRjvm9EKJQ==} engines: {node: '>=18.17.0'} hasBin: true peerDependencies: '@opentelemetry/api': ^1.1.0 + '@playwright/test': ^1.41.2 react: ^18.2.0 react-dom: ^18.2.0 sass: ^1.3.0 peerDependenciesMeta: '@opentelemetry/api': optional: true + '@playwright/test': + optional: true sass: optional: true @@ -19174,10 +19177,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@astrojs/vercel@7.6.0(astro@4.9.1(@types/node@20.12.12)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)(typescript@5.3.3))(encoding@0.1.13)(next@14.0.0(@babel/core@7.24.6)(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522))(react@18.3.1)(sass@1.71.1))(react@18.3.1)': + '@astrojs/vercel@7.6.0(astro@4.9.1(@types/node@20.12.12)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)(typescript@5.3.3))(encoding@0.1.13)(next@14.2.4(@babel/core@7.24.6)(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522))(react@18.3.1)(sass@1.71.1))(react@18.3.1)': dependencies: '@astrojs/internal-helpers': 0.4.0 - '@vercel/analytics': 1.2.2(next@14.0.0(@babel/core@7.24.6)(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522))(react@18.3.1)(sass@1.71.1))(react@18.3.1) + '@vercel/analytics': 1.2.2(next@14.2.4(@babel/core@7.24.6)(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522))(react@18.3.1)(sass@1.71.1))(react@18.3.1) '@vercel/edge': 1.1.1 '@vercel/nft': 0.26.5(encoding@0.1.13) astro: 4.9.1(@types/node@20.12.12)(less@4.2.0)(sass@1.71.1)(terser@5.29.1)(typescript@5.3.3) @@ -20664,7 +20667,7 @@ snapshots: babel-plugin-polyfill-corejs2: 0.4.8(@babel/core@7.24.0) babel-plugin-polyfill-corejs3: 0.9.0(@babel/core@7.24.0) babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.24.0) - core-js-compat: 3.35.1 + core-js-compat: 3.37.1 semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -20750,7 +20753,7 @@ snapshots: babel-plugin-polyfill-corejs2: 0.4.8(@babel/core@7.24.6) babel-plugin-polyfill-corejs3: 0.9.0(@babel/core@7.24.6) babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.24.6) - core-js-compat: 3.35.1 + core-js-compat: 3.37.1 semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -22990,59 +22993,59 @@ snapshots: '@netlify/node-cookies': 0.1.0 urlpattern-polyfill: 8.0.2 - '@next/env@14.0.0': {} + '@next/env@14.2.4': {} '@next/env@15.0.0-rc.0': {} - '@next/swc-darwin-arm64@14.0.0': + '@next/swc-darwin-arm64@14.2.4': optional: true '@next/swc-darwin-arm64@15.0.0-rc.0': optional: true - '@next/swc-darwin-x64@14.0.0': + '@next/swc-darwin-x64@14.2.4': optional: true '@next/swc-darwin-x64@15.0.0-rc.0': optional: true - '@next/swc-linux-arm64-gnu@14.0.0': + '@next/swc-linux-arm64-gnu@14.2.4': optional: true '@next/swc-linux-arm64-gnu@15.0.0-rc.0': optional: true - '@next/swc-linux-arm64-musl@14.0.0': + '@next/swc-linux-arm64-musl@14.2.4': optional: true '@next/swc-linux-arm64-musl@15.0.0-rc.0': optional: true - '@next/swc-linux-x64-gnu@14.0.0': + '@next/swc-linux-x64-gnu@14.2.4': optional: true '@next/swc-linux-x64-gnu@15.0.0-rc.0': optional: true - '@next/swc-linux-x64-musl@14.0.0': + '@next/swc-linux-x64-musl@14.2.4': optional: true '@next/swc-linux-x64-musl@15.0.0-rc.0': optional: true - '@next/swc-win32-arm64-msvc@14.0.0': + '@next/swc-win32-arm64-msvc@14.2.4': optional: true '@next/swc-win32-arm64-msvc@15.0.0-rc.0': optional: true - '@next/swc-win32-ia32-msvc@14.0.0': + '@next/swc-win32-ia32-msvc@14.2.4': optional: true '@next/swc-win32-ia32-msvc@15.0.0-rc.0': optional: true - '@next/swc-win32-x64-msvc@14.0.0': + '@next/swc-win32-x64-msvc@14.2.4': optional: true '@next/swc-win32-x64-msvc@15.0.0-rc.0': @@ -24239,12 +24242,15 @@ snapshots: transitivePeerDependencies: - supports-color + '@swc/counter@0.1.3': {} + '@swc/helpers@0.5.11': dependencies: tslib: 2.6.2 - '@swc/helpers@0.5.2': + '@swc/helpers@0.5.5': dependencies: + '@swc/counter': 0.1.3 tslib: 2.6.2 '@tanstack/config@0.9.0(@types/node@20.12.12)(esbuild@0.19.11)(eslint@8.57.0)(rollup@4.14.1)(typescript@5.3.3)(vite@5.2.11(@types/node@20.12.12)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))': @@ -24979,11 +24985,11 @@ snapshots: graphql: 15.8.0 wonka: 4.0.15 - '@vercel/analytics@1.2.2(next@14.0.0(@babel/core@7.24.6)(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522))(react@18.3.1)(sass@1.71.1))(react@18.3.1)': + '@vercel/analytics@1.2.2(next@14.2.4(@babel/core@7.24.6)(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522))(react@18.3.1)(sass@1.71.1))(react@18.3.1)': dependencies: server-only: 0.0.1 optionalDependencies: - next: 14.0.0(@babel/core@7.24.6)(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522))(react@18.3.1)(sass@1.71.1) + next: 14.2.4(@babel/core@7.24.6)(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522))(react@18.3.1)(sass@1.71.1) react: 18.3.1 '@vercel/edge@1.1.1': {} @@ -26254,7 +26260,7 @@ snapshots: dependencies: '@babel/core': 7.24.0 '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.24.0) - core-js-compat: 3.35.1 + core-js-compat: 3.37.1 transitivePeerDependencies: - supports-color @@ -26262,7 +26268,7 @@ snapshots: dependencies: '@babel/core': 7.24.6 '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.24.6) - core-js-compat: 3.35.1 + core-js-compat: 3.37.1 transitivePeerDependencies: - supports-color @@ -27277,10 +27283,6 @@ snapshots: serialize-javascript: 6.0.1 webpack: 5.90.3(esbuild@0.19.11) - core-js-compat@3.35.1: - dependencies: - browserslist: 4.23.0 - core-js-compat@3.37.1: dependencies: browserslist: 4.23.0 @@ -33708,80 +33710,80 @@ snapshots: next-tick@1.1.0: {} - next@14.0.0(@babel/core@7.24.6)(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522))(react@18.3.1)(sass@1.71.1): + next@14.2.4(@babel/core@7.24.6)(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522))(react@18.3.1)(sass@1.71.1): dependencies: - '@next/env': 14.0.0 - '@swc/helpers': 0.5.2 + '@next/env': 14.2.4 + '@swc/helpers': 0.5.5 busboy: 1.6.0 caniuse-lite: 1.0.30001605 + graceful-fs: 4.2.11 postcss: 8.4.31 react: 18.3.1 react-dom: 19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522) styled-jsx: 5.1.1(@babel/core@7.24.6)(react@18.3.1) - watchpack: 2.4.0 optionalDependencies: - '@next/swc-darwin-arm64': 14.0.0 - '@next/swc-darwin-x64': 14.0.0 - '@next/swc-linux-arm64-gnu': 14.0.0 - '@next/swc-linux-arm64-musl': 14.0.0 - '@next/swc-linux-x64-gnu': 14.0.0 - '@next/swc-linux-x64-musl': 14.0.0 - '@next/swc-win32-arm64-msvc': 14.0.0 - '@next/swc-win32-ia32-msvc': 14.0.0 - '@next/swc-win32-x64-msvc': 14.0.0 + '@next/swc-darwin-arm64': 14.2.4 + '@next/swc-darwin-x64': 14.2.4 + '@next/swc-linux-arm64-gnu': 14.2.4 + '@next/swc-linux-arm64-musl': 14.2.4 + '@next/swc-linux-x64-gnu': 14.2.4 + '@next/swc-linux-x64-musl': 14.2.4 + '@next/swc-win32-arm64-msvc': 14.2.4 + '@next/swc-win32-ia32-msvc': 14.2.4 + '@next/swc-win32-x64-msvc': 14.2.4 sass: 1.71.1 transitivePeerDependencies: - '@babel/core' - babel-plugin-macros optional: true - next@14.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1): + next@14.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.71.1): dependencies: - '@next/env': 14.0.0 - '@swc/helpers': 0.5.2 + '@next/env': 14.2.4 + '@swc/helpers': 0.5.5 busboy: 1.6.0 caniuse-lite: 1.0.30001605 + graceful-fs: 4.2.11 postcss: 8.4.31 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) styled-jsx: 5.1.1(@babel/core@7.24.6)(react@18.3.1) - watchpack: 2.4.0 optionalDependencies: - '@next/swc-darwin-arm64': 14.0.0 - '@next/swc-darwin-x64': 14.0.0 - '@next/swc-linux-arm64-gnu': 14.0.0 - '@next/swc-linux-arm64-musl': 14.0.0 - '@next/swc-linux-x64-gnu': 14.0.0 - '@next/swc-linux-x64-musl': 14.0.0 - '@next/swc-win32-arm64-msvc': 14.0.0 - '@next/swc-win32-ia32-msvc': 14.0.0 - '@next/swc-win32-x64-msvc': 14.0.0 + '@next/swc-darwin-arm64': 14.2.4 + '@next/swc-darwin-x64': 14.2.4 + '@next/swc-linux-arm64-gnu': 14.2.4 + '@next/swc-linux-arm64-musl': 14.2.4 + '@next/swc-linux-x64-gnu': 14.2.4 + '@next/swc-linux-x64-musl': 14.2.4 + '@next/swc-win32-arm64-msvc': 14.2.4 + '@next/swc-win32-ia32-msvc': 14.2.4 + '@next/swc-win32-x64-msvc': 14.2.4 sass: 1.71.1 transitivePeerDependencies: - '@babel/core' - babel-plugin-macros - next@14.0.0(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522))(react@19.0.0-rc-4c2e457c7c-20240522)(sass@1.71.1): + next@14.2.4(react-dom@19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522))(react@19.0.0-rc-4c2e457c7c-20240522)(sass@1.71.1): dependencies: - '@next/env': 14.0.0 - '@swc/helpers': 0.5.2 + '@next/env': 14.2.4 + '@swc/helpers': 0.5.5 busboy: 1.6.0 caniuse-lite: 1.0.30001605 + graceful-fs: 4.2.11 postcss: 8.4.31 react: 19.0.0-rc-4c2e457c7c-20240522 react-dom: 19.0.0-rc-4c2e457c7c-20240522(react@19.0.0-rc-4c2e457c7c-20240522) styled-jsx: 5.1.1(react@19.0.0-rc-4c2e457c7c-20240522) - watchpack: 2.4.0 optionalDependencies: - '@next/swc-darwin-arm64': 14.0.0 - '@next/swc-darwin-x64': 14.0.0 - '@next/swc-linux-arm64-gnu': 14.0.0 - '@next/swc-linux-arm64-musl': 14.0.0 - '@next/swc-linux-x64-gnu': 14.0.0 - '@next/swc-linux-x64-musl': 14.0.0 - '@next/swc-win32-arm64-msvc': 14.0.0 - '@next/swc-win32-ia32-msvc': 14.0.0 - '@next/swc-win32-x64-msvc': 14.0.0 + '@next/swc-darwin-arm64': 14.2.4 + '@next/swc-darwin-x64': 14.2.4 + '@next/swc-linux-arm64-gnu': 14.2.4 + '@next/swc-linux-arm64-musl': 14.2.4 + '@next/swc-linux-x64-gnu': 14.2.4 + '@next/swc-linux-x64-musl': 14.2.4 + '@next/swc-win32-arm64-msvc': 14.2.4 + '@next/swc-win32-ia32-msvc': 14.2.4 + '@next/swc-win32-x64-msvc': 14.2.4 sass: 1.71.1 transitivePeerDependencies: - '@babel/core'