Compare commits

...

6 Commits

Author SHA1 Message Date
db754a6325 fix: remove residual merge conflict marker in package.json
All checks were successful
Build & Deploy / 🔍 Prepare (push) Successful in 9s
Build & Deploy / 🧪 QA (push) Successful in 1m15s
Build & Deploy / 🏗️ Build (push) Successful in 3m33s
Build & Deploy / 🚀 Deploy (push) Successful in 15s
Build & Deploy / 🧪 Post-Deploy Verification (push) Successful in 4m29s
Build & Deploy / 🔔 Notify (push) Successful in 2s
2026-04-11 19:05:05 +02:00
9dc553b76c fix(contact): import env instead of undefined config
# Conflicts:
#	package.json
2026-04-11 18:08:35 +02:00
48101cc421 chore: Pin @react-email/components to 1.0.8 to fix broken upstream 1.0.9 release 2026-04-11 18:06:52 +02:00
615f762d5e fix(mail): add overrideAccess to form submissions and mail fallbacks for branch deploys 2026-04-11 18:06:49 +02:00
0c4c6e8dc0 release: v2.3.17
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 16s
Build & Deploy / 🚀 Deploy (push) Successful in 28s
Build & Deploy / 🧪 QA (push) Successful in 2m28s
Build & Deploy / 🏗️ Build (push) Successful in 4m37s
Build & Deploy / 🧪 Post-Deploy Verification (push) Successful in 4m31s
Build & Deploy / 🔔 Notify (push) Successful in 2s
Nightly QA / 🔗 Links & Deps (push) Successful in 2m16s
Nightly QA / 🎭 Lighthouse (push) Successful in 4m1s
Nightly QA / 🔍 Static Analysis (push) Failing after 4m17s
Nightly QA / ♿ Accessibility (push) Successful in 5m0s
Nightly QA / 🔔 Notify (push) Successful in 3s
2026-04-10 23:22:04 +02:00
3046a19113 merge: apply mailer, contact env, and ci hardening fixes
Some checks failed
Build & Deploy / 🔍 Prepare (push) Has been cancelled
Build & Deploy / 🧪 QA (push) Has been cancelled
Build & Deploy / 🏗️ Build (push) Has been cancelled
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
2026-04-10 23:21:45 +02:00
3 changed files with 5 additions and 4 deletions

View File

@@ -249,8 +249,8 @@ jobs:
MAIL_PORT: ${{ secrets.SMTP_PORT || vars.SMTP_PORT || '587' }}
MAIL_USERNAME: ${{ secrets.SMTP_USER || vars.SMTP_USER }}
MAIL_PASSWORD: ${{ secrets.SMTP_PASS || vars.SMTP_PASS }}
MAIL_FROM: ${{ secrets.SMTP_FROM || vars.SMTP_FROM }}
MAIL_RECIPIENTS: ${{ secrets.CONTACT_RECIPIENT || vars.CONTACT_RECIPIENT }}
MAIL_FROM: ${{ secrets.SMTP_FROM || vars.SMTP_FROM || 'noreply@klz-cables.com' }}
MAIL_RECIPIENTS: ${{ secrets.CONTACT_RECIPIENT || vars.CONTACT_RECIPIENT || 'info@klz-cables.com' }}
# Monitoring
SENTRY_DSN: ${{ secrets.SENTRY_DSN || vars.SENTRY_DSN }}

View File

@@ -55,6 +55,7 @@ export async function sendContactFormAction(formData: FormData) {
type: productName ? 'product_quote' : 'contact',
productName: productName || undefined,
},
overrideAccess: true,
});
logger.info('Successfully saved form submission to Payload CMS', {

View File

@@ -13,7 +13,7 @@
"@payloadcms/next": "^3.77.0",
"@payloadcms/richtext-lexical": "^3.77.0",
"@payloadcms/ui": "^3.77.0",
"@react-email/components": "^1.0.7",
"@react-email/components": "1.0.8",
"@react-pdf/renderer": "^4.3.2",
"@sentry/nextjs": "^10.39.0",
"@types/recharts": "^2.0.1",
@@ -139,7 +139,7 @@
"prepare": "husky",
"preinstall": "npx only-allow pnpm"
},
"version": "2.3.16",
"version": "2.3.17",
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",