-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(frontend): remix v2 upgrade (#2349)
* chore(frontend): update error boundaries to v2 * chore(frontend): update meta to v2 * chore(frontend): update headers to v2 * chore(frontend): update form method to v2 * chore(frontend): update to v2 dev server * chore(frontend): update server module format to v2 * feat(frontend): typecheck cmd * fix(frontend): type only import * feat(frontend): ugprade remix to v2 - upgrades all remix package versions - fixes breaking v2 change - removes v2 future flags - removes skipLibCheck from tsconfig * feat: add frontend typecheck to ci * chore(MASE): upgrade routes to remix v2 * chore(MASE): upgrade module format to v2 * chore(MASE): update to v2 dev server * chore(MASE): update headers to v2 * chore(MASE): update form method to v2 * chore(MASE): update meta to v2 * chore(MASE): update error/catch boundary to v2 * feat(MASE): upgrade remix to v2 * fix(MASE): ts errors * feat(MASE): add typecheck cmd to ci * fix(frontend, MASE): remix server start * fix(MASE): eslint * refactor(MASE): parseQueryString to URLSearchParams * Update .github/workflows/lint_test_build.yml Co-authored-by: Radu-Cristian Popa <[email protected]> * fix(frontend,MASE): update entry.server request handlers * chore(MASE): format * chore(MASE): rm unused quotes route * Revert "Merge branch 'main' into bc/1464/remix-v2-updates" This reverts commit f7149aa, reversing changes made to 41673bb. * chore: cherry pick merge commit after reverting in f7149aa chore: upgrade to typescript 5 (#2345) * feat: upgrade ts to 5.0 * fix(auth): ts2365 build error fixes Forbidden Implicit Coercions in Relational Operators https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#forbidden-implicit-coercions-in-relational-operators * chore(auth): rm unecessary type assertion * fix(backend): ts2365 build error fixes Forbidden Implicit Coercions in Relational Operators https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#forbidden-implicit-coercions-in-relational-operators * chore: rm default tsconfig option forceConsistentCasingInFileNames defaults to true in ts 5.0 * chore: update package versions * chore: rm unused optoin * chore: rm typescript dev dep from pacakges * fix(frontend,MASE): mobile view * fix(frontend): no flash on mobile * refactor: rework new cookie secure env var * fix: move env var declaration from dockerfile to compose * feat(backend): upgrade Rafiki to open payments package v6.5 (#2337) * feat(backend): upgrade to open payments 6.5 * refactor: one singleton for openApi specs * chore(deps): update dependency autoprefixer to ^10.4.17 (#2352) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore: update lockfile * chore: rm extra space * chore: rm unnecessary eslint ignore --------- Co-authored-by: Radu-Cristian Popa <[email protected]> Co-authored-by: Sabine Schaller <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
- Loading branch information
1 parent
ac28aa5
commit 7f00fc0
Showing
52 changed files
with
843 additions
and
2,556 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
11 changes: 11 additions & 0 deletions
11
localenv/mock-account-servicing-entity/app/routes/mock-idp.fake-client.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import type { LoaderFunctionArgs } from '@remix-run/node' | ||
|
||
export function loader({ request }: LoaderFunctionArgs) { | ||
const url = new URL(request.url) | ||
return new Response( | ||
JSON.stringify({ | ||
interact_ref: url.searchParams.get('interact_ref'), | ||
hash: url.searchParams.get('hash') | ||
}) | ||
) | ||
} |
13 changes: 0 additions & 13 deletions
13
localenv/mock-account-servicing-entity/app/routes/mock-idp/fake-client.ts
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.