Merge branch 'sambecker:main' into add-public-downloads

This commit is contained in:
Alex Chaveriat (Silk) 2024-08-24 16:00:39 -04:00 committed by GitHub
commit f7dc781347
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 488 additions and 486 deletions

View File

@ -9,19 +9,19 @@
"analyze": "ANALYZE=true next build"
},
"dependencies": {
"@ai-sdk/openai": "^0.0.48",
"@aws-sdk/client-s3": "3.633.0",
"@aws-sdk/s3-request-presigner": "3.633.0",
"@next/bundle-analyzer": "14.2.5",
"@ai-sdk/openai": "^0.0.53",
"@aws-sdk/client-s3": "3.637.0",
"@aws-sdk/s3-request-presigner": "3.637.0",
"@next/bundle-analyzer": "14.2.6",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.7",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.4.0",
"@types/node": "^22.5.0",
"@types/pg": "^8.11.6",
"@types/react": "18.3.3",
"@types/react": "18.3.4",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
@ -30,20 +30,20 @@
"@vercel/blob": "^0.23.4",
"@vercel/kv": "^2.0.0",
"@vercel/speed-insights": "^1.0.12",
"ai": "^3.3.9",
"ai": "^3.3.17",
"autoprefixer": "10.4.20",
"camelcase-keys": "^9.1.3",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"date-fns": "^3.6.0",
"eslint": "8.57.0",
"eslint-config-next": "14.2.5",
"eslint-config-next": "14.2.6",
"exifr": "^7.1.3",
"framer-motion": "^11.3.28",
"framer-motion": "^11.3.30",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nanoid": "^5.0.7",
"next": "^14.2.5",
"next": "^14.2.6",
"next-auth": "5.0.0-beta.19",
"next-themes": "^0.3.0",
"pg": "^8.12.0",
@ -57,7 +57,7 @@
"tailwindcss": "3.4.10",
"ts-exif-parser": "^0.2.2",
"typescript": "5.5.4",
"undici": "^6.19.7",
"use-debounce": "^10.0.2"
"undici": "^6.19.8",
"use-debounce": "^10.0.3"
}
}

941
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -3,7 +3,7 @@ export const getImageResponseCacheControlHeaders = (
) => {
return {
'Cache-Control': shouldCache
? 's-maxage=3600, stale-while-revalidate=59'
? 's-maxage=3600, stale-while-revalidate=31536000'
: 's-maxage=1, stale-while-revalidate=59',
};
};

View File

@ -82,6 +82,7 @@ export default function SiteChecklistClient({
secret,
baseUrl,
commitSha,
commitMessage,
}: ConfigChecklistStatus &
Partial<Awaited<ReturnType<typeof testConnectionsAction>>> & {
simplifiedView?: boolean
@ -628,7 +629,9 @@ export default function SiteChecklistClient({
<div>
<span className="font-bold">Commit</span>
&nbsp;&nbsp;
{commitSha || 'Not Found'}
{commitSha
? <span title={commitMessage}>{commitSha}</span>
: 'Not Found'}
</div>
</div>}
</div>