Skip to content

Commit

Permalink
release: 2024-03-12 (#1149)
Browse files Browse the repository at this point in the history
  • Loading branch information
kodiakhq[bot] authored Mar 12, 2024
2 parents 07d6f8a + f74f13c commit 890c281
Show file tree
Hide file tree
Showing 32 changed files with 822 additions and 570 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:

# 👇 Runs Chromatic CLI in ./packages/ui
- name: Publish to Chromatic
uses: chromaui/action@fd0e276c344bab4dc69a023fdf89ffb9b79b3b31 # v11
uses: chromaui/action@306092d42c0743800aadf544ee263cbc56598b1b # v11
with:
workingDir: packages/ui
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ jobs:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: 🏗 Initialize CodeQL
uses: github/codeql-action/init@8a470fddafa5cbb6266ee11b37ef4d8aae19c571 # v3
uses: github/codeql-action/init@3ab4101902695724f9365a384f86c1074d94e18c # v3
- name: 🚀 Perform CodeQL Analysis
uses: github/codeql-action/analyze@8a470fddafa5cbb6266ee11b37ef4d8aae19c571 # v3
uses: github/codeql-action/analyze@3ab4101902695724f9365a384f86c1074d94e18c # v3
2 changes: 1 addition & 1 deletion .github/workflows/crowdin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:
- name: Commit files
id: commit-files
if: ((github.event_name != 'pull_request' && github.ref_name == 'dev') || github.event_name == 'scheduled') && steps.verify-changed-files.outputs.files_changed
uses: peter-evans/create-pull-request@a4f52f8033a6168103c2538976c07b467e8163bc # v6
uses: peter-evans/create-pull-request@70a41aba780001da0a30141984ae2a0c95d8704e # v6
with:
token: ${{ secrets.GH_ACT_PAT }}
commit-message: Updated translations from Crowdin
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/njsscan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ jobs:
with:
args: '. --sarif --output results.sarif || true'
- name: Upload njsscan report
uses: github/codeql-action/upload-sarif@8a470fddafa5cbb6266ee11b37ef4d8aae19c571 # v3
uses: github/codeql-action/upload-sarif@3ab4101902695724f9365a384f86c1074d94e18c # v3
with:
sarif_file: results.sarif
3 changes: 2 additions & 1 deletion apps/app/next-i18next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ import compact from 'just-compact'

import path from 'path'

// @ts-expect-error - yelling about declaration file
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
import { localeList } from '@weareinreach/db/generated/locales.mjs'

const isBrowser = typeof window !== 'undefined'
Expand Down
10 changes: 6 additions & 4 deletions apps/app/next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ const isVercelProd = process.env.VERCEL_ENV === 'production'
const isLocalDev =
process.env.NODE_ENV === 'development' && !['preview', 'production'].includes(process.env.VERCEL_ENV)
const shouldAnalyze = process.env.ANALYZE === 'true'
const renovateRegex = /^renovate\/.*$/
const isRenovatePR = renovateRegex.test(process.env.VERCEL_GIT_COMMIT_REF)

const withRoutes = routes({ outDir: './src/types' })
const withBundleAnalyzer = bundleAnalyze({ enabled: shouldAnalyze, openAnalyzer: false })
Expand Down Expand Up @@ -50,16 +52,16 @@ const nextConfig = {
serverComponentsExternalPackages: ['@sentry/profiling-node'],
},
eslint: {
ignoreDuringBuilds: !isVercelProd,
ignoreDuringBuilds: !(isVercelProd || isRenovatePR),
},
typescript: {
ignoreBuildErrors: !(isVercelProd || isRenovatePR),
},
images: {
remotePatterns: [{ protocol: 'https', hostname: '**.4sqi.net' }],
},
rewrites: async () => [{ source: '/search', destination: '/' }],

typescript: {
ignoreBuildErrors: !isVercelProd,
},
sentry: {
// For all available options, see:
// https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/
Expand Down
10 changes: 5 additions & 5 deletions apps/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
"luxon": "3.4.4",
"mantine-react-table": "1.3.4",
"next": "14.1.3",
"next-auth": "4.24.6",
"next-auth": "4.24.7",
"next-i18next": "15.2.0",
"next-seo": "6.5.0",
"nextjs-google-analytics": "2.3.3",
Expand All @@ -101,7 +101,7 @@
"react-hook-consent": "3.5.3",
"react-hook-form": "7.51.0",
"react-hook-form-mantine": "2.0.0",
"react-i18next": "14.0.7",
"react-i18next": "14.1.0",
"zod": "3.22.4"
},
"devDependencies": {
Expand All @@ -115,8 +115,8 @@
"@types/gtag.js": "0.0.19",
"@types/luxon": "3.4.2",
"@types/node": "20.11.25",
"@types/react": "18.2.63",
"@types/react-dom": "18.2.20",
"@types/react": "18.2.64",
"@types/react-dom": "18.2.21",
"@types/umami": "0.1.5",
"@typescript-eslint/eslint-plugin": "7.1.1",
"@typescript-eslint/parser": "7.1.1",
Expand All @@ -134,7 +134,7 @@
"trpc-panel": "1.3.4",
"trpc-playground": "1.0.4",
"type-fest": "4.11.1",
"typescript": "5.3.3",
"typescript": "5.4.2",
"webpack-bundle-analyzer": "4.10.1"
},
"ct3aMetadata": {
Expand Down
2 changes: 1 addition & 1 deletion apps/app/public/locales/ar/landingPage.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"banner": {
"donate": "ساعد في إبقاء InReach مجانيًا للجميع. <DonateLink>تبرع الآن!</DonateLink>",
"donate": "ساعد في إبقاء InReach مجانيًا للجميع. <DonateLink>تبرع الآن!</DonateLink>💝",
"redesign": "اقرأ عن اطلاق إعادة تصميم التطبيق على مدونتنا. <Link>اعرف المزيد</Link>",
"tmf": "<TMFLink>انشر راكبي السعادة مع #TransMascFutures 🏳️‍⚧️</TMFLink>"
},
Expand Down
2 changes: 1 addition & 1 deletion apps/app/public/locales/es/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"unclaimed-tool-tip": "Esta organización aún no ha sido reclamada por un representante.<br/><link1>Reclama a esta organización</link1> para generar confianza con nuestra comunidad, actualizar tu propia información y más.",
"verified-information": "Información verificada",
"verified-information-detail": "La última vez que la información en esta página fue actualizada fue {{dateString}}. InReach prioriza exactitud de nuestra información y el bienestar de nuestros usuarios, y por lo tanto actualiza la información regularmente. Para más información de nuestro proceso de revisión, por favor visite nuestra de pagina de Procesos de Revisión en InReach.org.",
"verified-reviewer": "InReach Verified Reviewer"
"verified-reviewer": "Revisor verificado de InReach"
},
"breadcrumb": {
"back-to-dynamic": "Volver a <u>{{page}}</u>",
Expand Down
56 changes: 28 additions & 28 deletions apps/app/public/locales/ht/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"all-service-category": "tout {{serviceCategory}}",
"anti-hate": {
"body": "Lè ou sèvi avèk InReach, ou dakò ke ou pa pral sèvi ak resous enfòmasyon sa pou ajanda rasis oswa kòmantè danjere, hèn ki baze sou, omofob, transfobik, xenofobik, ak/oswa kòmantè.",
"body": "Lè ou sèvi avèk InReach, ou dakò ke ou pa pral sèvi ak resous enfòmasyon sa pou ajanda rasis ak/oswa kòmantè danjere, hèn ki baze sou, omofob, transfob xenofob.",
"title": "Angajman anti-hèn"
},
"badge": {
Expand Down Expand Up @@ -205,7 +205,7 @@
"password": "Modpas",
"password-confirm": "Konfime modpas",
"password-error-match": "Modpas yo dwe ale ak lòt",
"password-reenter-placeholder": "Re antre modpas ou...",
"password-reenter-placeholder": "Antre modpas ou ankò...",
"password-req-length": "Gen ladan omwen karaktè 8",
"password-req-lowercase": "Gen ladan lèt miniskil",
"password-req-number": "Inkli nimewo",
Expand Down Expand Up @@ -278,32 +278,32 @@
"send-email": "Voye imèl",
"service": {
"additional-info": "Lòt enfòmasyon sou kalifikasyon",
"ages": "Gen laj ki kalifye",
"ages": "Laj ki kalifye",
"at-capacity": "<strong>Sèvis sa a se kounye a kapab pran nouvo kliyan.</strong>",
"clients-served": "Kliyan sèvi",
"community-focus": "LGBTQ+konsantre kominote",
"community-focus": "Konsantrasyon kominote LGBTQ+",
"cost": "Pri",
"cost-details": "Pri detay",
"cost-details": "Pri en detay",
"elig-age_max": "Anba {{max}}",
"elig-age_min": "{{min}} ak pi gran",
"elig-age_min": "{{min}} ak ansyen",
"elig-age_range": "{{min}} - {{max}}",
"eligibility": "Kondisyon kalifikasyon",
"extra-info": "Lòt enfòmasyon",
"get-help": "Jwenn èd",
"hours": "Èdtan sèvis",
"languages": "Lang",
"requirements": "Kondisyon",
"target-population": "Popilasyon sib",
"target-population": "Popilasyon ki sibly",
"transit-directions": "Direksyon transpò piblik"
},
"services": "Sèvis",
"services": "Sèvis yo",
"share-feedback": "Pataje Feedback",
"show-less": "Montre mwens",
"show-more": "Montre plis",
"sign-up": {
"header": "<group>\n<emojiLg>🌈</emojiLg>\n<title2>$t(words.sign-up)</title2>\n<textDarkGray>Byenveni nan premye platfòm teknoloji nan mond lan ki relye moun LGBTQ+ki fè fas a pèsekisyon oswa diskriminasyon ak resous en sekirite, verifye.</textDarkGray>\n</group>",
"header": "<group>\n<emojiLg>🌈</emojiLg>\n<title2>$t(words.sign-up)</title2>\n<textDarkGray>Byenveni nan premye platfòm teknoloji nan mond lan ki relye moun LGBTQ+ki fè fas a pèsekisyon oswa diskriminasyon ak resous en sekirite epi verifye.</textDarkGray>\n</group>",
"lcr-error1": "Malerezman, ou pa satisfè kondisyon kalifikasyon aktyèlpou youn Evalyatè Kominote lokal yo.\n<Switch>Klike la yo kreye yon kont estanda.</Switch>",
"lcr-error2": "Ou dwe li & revize <Link><strong> Kominote Lokal Revizè</strong></Link> paj la.",
"lcr-error2": "Ou dwe li & revize <Link><strong>Revizè kominote Lokal </strong></Link> paj la.",
"lcr-screen1": "Tanpri chwazi tout sa ki aplike",
"lcr-screen1a": "Mwen gen eksperyans pèsonèl viv aksè nan sèvis lokal yo nan kominote mwen an.",
"lcr-screen1b": "Mwen gen eksperyans ede kliyan LGBTQ+ yo jwenn aksè nan sèvis lokal yo nan kominote mwen an.",
Expand All @@ -314,24 +314,24 @@
"lcr-screen2b": "Kanada",
"lcr-screen2c": "Meksik",
"lcr-screen2none": "Okenn nan pi wo a",
"lcr-screen3": "Mwen te revize <Link><strong>Lokal Kominote Reviewer</strong></Link> paj la sou sit entènèt InReach a epi mwen ranpli kondisyon yo.",
"lcr-screen3": "Mwen te revize <Link><strong>Kominote Revizè Lokal a</strong></Link> paj la sou sit entènèt InReach la epi mwen ranpli kondisyon yo.",
"modal-body": [
"<title3>Ki kalite kont ou ta renmen kreye?</title3>",
"<group>\n<button data-option='individual'>Endividyèl</button>\n<button data-option='provider'>Pwofesyonèl/Founisè</button>\n<button data-option='lcr'>Lokal Evalè Kominote</button>\n</group>",
"<loginLink>Deja gen yon kont?</loginLink>"
],
"name-use-any": "Sèvi ak tou sa non w ap konfòtab ak.",
"name-use-any": "Sèvi ak tou sa non ou konfòtab avèk li.",
"name_alias": "Non oswa alyas",
"name_full": "Non plen",
"name_full": "Non konplè",
"placeholder-name_alias": "Mete non oswa alyas...",
"placeholder-name_full": "Mete non konplè...",
"select-law-practice": "Ki kote ou pratike lalwa?",
"select-service-provider": "Ki kote ou travay oswa volontè?",
"specify-work-volunteer": "Tanpri presize kote w ap travay oswa volontè",
"success": "Ou te enskri pou yon kont!",
"user-exists-body": "Adrès imèl sa a deja anrejistre.",
"user-exists-body": "Adrès imèl sa deja anrejistre.",
"user-exists-header": "Ou ka deja gen yon kont.",
"verify-email": "Anvan ou ka kòmanse lè l sèvi avèk nouvo kont ou, ou dwe verifye adrès imel ou. Tcheke bwat resepsyon ou epi klike sou lyen ki nan mesaj la."
"verify-email": "Anvan ou ka kòmanse sèvi avèk nouvo kont ou an, ou dwe verifye adrès imel ou. Tcheke bwat resepsyon ou epi klike sou lyen ki nan mesaj la."
},
"sign-up-free": "Enskri pou gratis",
"social": {
Expand All @@ -347,7 +347,7 @@
},
"sort": {
"bipoc": "Kominote BIPOC",
"by-lgbtq-focus": "Triye pa LGBTQ+konsantre kominote a",
"by-lgbtq-focus": "Triye pa LGBTQ+konsantrasyon sou kominote a",
"hiv": "VIH+kominote",
"immigrants": "Imigran",
"spanish-speakers": "Oratè Panyòl",
Expand All @@ -357,7 +357,7 @@
"step-x-y": "Etap {{x}} nan {{y}}",
"submit": "Soumèt",
"submit-review": "Soumèt revizyon",
"subscribe-to-newsletter": "Abònman nan Bilten nouvèl",
"subscribe-to-newsletter": "Abòne nan Bilten nouvèl",
"suggest-a-resource": "Sijere yon Resous",
"support": "Sipò",
"survey": {
Expand All @@ -380,21 +380,21 @@
"thank-you": "Mèsi!",
"thank-you-message": "Enfòmasyon ou pataje a ede nou amelyore pwodwi nou yo."
},
"take-action": "Pran Aksyon",
"take-action": "Fe Aksyon",
"uncheck-all": "Dezaktive tout",
"user-avatar": "Itilizatè avatar",
"user-menu": {
"admin-options": "Opsyon Admin",
"data-portal": "Done Portal Kay",
"edit-page": "Edite paj sa a",
"edit-page": "Edite paj sa",
"user-options": "Opsyon itilizatè"
},
"verify-account": {
"verified": "Kont verifye!",
"verified-body": "<Text>Kont ou te verifye! Tanpri <LoginModal>login</LoginModal> yo kòmanse lè l sèvi avèk karakteristik adisyonèl InReach la.",
"verifying": "Verifye kont..."
},
"view-list": "View lis",
"view-list": "Gade lis",
"visit": "Vizite",
"welcome-name": "Byenvini, {{name}}!",
"words": {
Expand All @@ -407,27 +407,27 @@
"back": "Tounen",
"close": "Fèmen",
"coming-soon": "Vini byento",
"customize": "Customize",
"customize": "Akoutime",
"decline": "Dekline",
"delete": "Efase",
"distance": "Distans",
"donate": "Fè don",
"email": "Imèl",
"home": "Kay",
"home": "Akèy",
"hours": "Èdtan",
"location": "Kote",
"location": "Lokalite",
"more": "plis",
"more-info": "Plis enfomasyon",
"next": "Pwochen",
"no": "Pa",
"no": "Non",
"organization": "Òganizasyon",
"password": "Modpas",
"phone": "Telefòn",
"please-wait": "Tanpri, tann...",
"prev": "Prev",
"print": "Enprime",
"publish": "Pibliye",
"restore": "Restore",
"restore": "Rekipere",
"reverify": "Reverify",
"review": "Revize",
"reviews": "Revi",
Expand All @@ -451,8 +451,8 @@
"review-count_other": "(Evalyason{{count}})",
"review_one": "Evalye",
"review_other": "Evalye",
"view-x-result_one": "View {{count}} rezilta",
"view-x-result_other": "View {{count}} rezilta",
"view-x-result_one": "Gade {{count}} rezilta",
"view-x-result_other": "Gade{{count}} rezilta",
"website_one": "Sit wèb",
"website_other": "Sit entènèt"
"website_other": "Sit wèb yo"
}
8 changes: 4 additions & 4 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,17 @@
"next": "14.1.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "14.0.7"
"react-i18next": "14.1.0"
},
"devDependencies": {
"@next/bundle-analyzer": "14.1.3",
"@types/eslint": "8.56.5",
"@types/node": "20.11.25",
"@types/react": "18.2.63",
"@types/react-dom": "18.2.20",
"@types/react": "18.2.64",
"@types/react-dom": "18.2.21",
"@weareinreach/config": "workspace:*",
"@weareinreach/eslint-config": "0.100.0",
"eslint": "8.57.0",
"typescript": "5.3.3"
"typescript": "5.4.2"
}
}
2 changes: 1 addition & 1 deletion lambdas/cognito-messaging/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
"aws-lambda": "1.0.7",
"eslint": "8.57.0",
"prettier": "3.2.5",
"typescript": "5.3.3"
"typescript": "5.4.2"
}
}
2 changes: 1 addition & 1 deletion lambdas/cognito-user-migrate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@
"eslint": "8.57.0",
"prettier": "3.2.5",
"prisma": "5.10.2",
"typescript": "5.3.3"
"typescript": "5.4.2"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"sherif": "0.8.1",
"tsx": "4.7.1",
"turbo": "1.12.5",
"typescript": "5.3.3",
"typescript": "5.4.2",
"typesync": "0.12.1",
"yargs": "17.7.2"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"@types/terraformer__wkt": "2.0.2",
"@weareinreach/config": "workspace:*",
"@weareinreach/eslint-config": "0.100.0",
"dotenv-cli": "7.3.0",
"dotenv-cli": "7.4.0",
"eslint": "8.57.0",
"inquirer-search-list": "1.2.6",
"just-pascal-case": "3.2.0",
Expand All @@ -67,7 +67,7 @@
"trpc-client-devtools-link": "0.2.1-next",
"trpc-panel": "1.3.4",
"type-fest": "4.11.1",
"typescript": "5.3.3"
"typescript": "5.4.2"
},
"peerDependencies": {
"next": ">=13"
Expand Down
8 changes: 4 additions & 4 deletions packages/auth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,16 +68,16 @@
"devDependencies": {
"@types/eslint": "8.56.5",
"@types/node": "20.11.25",
"@types/react": "18.2.63",
"@types/react-dom": "18.2.20",
"@types/react": "18.2.64",
"@types/react-dom": "18.2.21",
"@weareinreach/config": "workspace:*",
"@weareinreach/eslint-config": "0.100.0",
"eslint": "8.57.0",
"next": "14.1.3",
"next-auth": "4.24.6",
"next-auth": "4.24.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.3.3"
"typescript": "5.4.2"
},
"peerDependencies": {
"next": "^14",
Expand Down
Loading

1 comment on commit 890c281

@vercel
Copy link

@vercel vercel bot commented on 890c281 Mar 12, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.