Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(server): sets TRPCError.name to TRPCError regardless of what bundlers do #4848

Merged
merged 6 commits into from
Sep 27, 2023

Conversation

dios-david
Copy link
Contributor

@dios-david dios-david commented Sep 27, 2023

🎯 Changes

Setting this.name to "TRPCError" in the TRPCError constructor instead of using this.constructor.name.

Background

I ran into an issue with my trpc server where the production build of the server incorrectly returned 500 INTERNAL_SERVER_ERROR instead of 400 BAD_REQUEST for validation errors happening in procedures.

After some debugging I noticed that in the production bundle the TRPCError class got renamed to TRPCError2 (I'm using vite with vite-plugin-node):

let TRPCError$6 = class TRPCError2 extends Error {
  constructor(opts) {
    const cause = getCauseFromUnknown$1(opts.cause);
    const message2 = opts.message ?? cause?.message ?? opts.code;
    super(message2, {
      cause
    });
    this.code = opts.code;
    this.name = this.constructor.name;
  }
};

Which then fails this check in trpc-openapi:

export function getErrorFromUnknown(cause: unknown): TRPCError {
  if (cause instanceof Error && cause.name === 'TRPCError') { // <-- `cause.name` is `TRPCError2` here
    return cause as TRPCError;
  }

I understand that @trpc/server is correctly doing this.name = this.constructor.name in TRPCError, and should not really be aware of further issues which are caused by bundlers and a 3rd party trpc wrapper (trpc-openapi), but:

  • It's really easy to fix this issue in @trpc/server itself, and there is nothing wrong with hardcoding this.name of Errors, especially if other packages build logic on that
  • Before this PR the value of this.name was hardcoded to TRPCError which got changed to a dynamic this.constructor.name, but the scope of that PR did not required this change

βœ… Checklist

  • I have followed the steps listed in the Contributing guide.
  • If necessary, I have added documentation related to the changes made.
  • I have added or updated the tests related to the changes made.

@dios-david dios-david requested a review from a team as a code owner September 27, 2023 13:30
@vercel
Copy link

vercel bot commented Sep 27, 2023

The latest updates on your projects. Learn more about Vercel for Git β†—οΈŽ

Name Status Preview Comments Updated (UTC)
trpc-next-app-dir βœ… Ready (Inspect) Visit Preview πŸ’¬ Add feedback Sep 27, 2023 11:02pm
www βœ… Ready (Inspect) Visit Preview πŸ’¬ Add feedback Sep 27, 2023 11:02pm

@vercel
Copy link

vercel bot commented Sep 27, 2023

@dios-david is attempting to deploy a commit to the trpc Team on Vercel.

A member of the Team first needs to authorize it.

@KATT KATT changed the title Setting TRPCError.name to "TRPCError" fix(server): sets TRPCError.name to TRPCError regardless of what bundlers do Sep 27, 2023
…set-TRPCError-name

# Please enter a commit message to explain why this merge is necessary,
# especially if it merges an updated upstream into a topic branch.
#
# Lines starting with '#' will be ignored, and an empty message aborts
# the commit.
@KATT KATT enabled auto-merge (squash) September 27, 2023 22:39
@KATT KATT merged commit f97e13b into trpc:main Sep 27, 2023
34 of 36 checks passed
kodiakhq bot pushed a commit to weareinreach/InReach that referenced this pull request Sep 28, 2023
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@trpc/client](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.38.4` -> `10.38.5`](https://renovatebot.com/diffs/npm/@trpc%2fclient/10.38.4/10.38.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trpc%2fclient/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trpc%2fclient/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trpc%2fclient/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trpc%2fclient/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/next](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.38.4` -> `10.38.5`](https://renovatebot.com/diffs/npm/@trpc%2fnext/10.38.4/10.38.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trpc%2fnext/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trpc%2fnext/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trpc%2fnext/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trpc%2fnext/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/react-query](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.38.4` -> `10.38.5`](https://renovatebot.com/diffs/npm/@trpc%2freact-query/10.38.4/10.38.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trpc%2freact-query/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trpc%2freact-query/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trpc%2freact-query/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trpc%2freact-query/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/server](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.38.4` -> `10.38.5`](https://renovatebot.com/diffs/npm/@trpc%2fserver/10.38.4/10.38.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trpc%2fserver/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trpc%2fserver/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trpc%2fserver/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trpc%2fserver/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>trpc/trpc (@&#8203;trpc/client)</summary>

### [`v10.38.5`](https://togithub.com/trpc/trpc/releases/tag/v10.38.5)

[Compare Source](https://togithub.com/trpc/trpc/compare/v10.38.4...v10.38.5)

##### What's Changed

-   fix(`server`): sets `TRPCError.name` to `TRPCError` regardless of what bundlers do by [@&#8203;dios-david](https://togithub.com/dios-david) & [@&#8203;KATT](https://togithub.com/KATT) in [trpc/trpc#4848

##### New Contributors

-   [@&#8203;zokins](https://togithub.com/zokins) made their first contribution in [trpc/trpc#4801
-   [@&#8203;dios-david](https://togithub.com/dios-david) made their first contribution in [trpc/trpc#4848

**Full Changelog**: trpc/trpc@v10.38.4...v10.38.5

</details>

---

### Configuration

πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

β™» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

πŸ”• **Ignore**: Close this PR and you won't be reminded about these updates again.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/weareinreach/InReach).



PR-URL: #805
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
kodiakhq bot added a commit to weareinreach/TransMascFutures that referenced this pull request Sep 28, 2023
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@trpc/client](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.38.4` -> `10.38.5`](https://renovatebot.com/diffs/npm/@trpc%2fclient/10.38.4/10.38.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trpc%2fclient/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trpc%2fclient/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trpc%2fclient/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trpc%2fclient/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/next](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.38.4` -> `10.38.5`](https://renovatebot.com/diffs/npm/@trpc%2fnext/10.38.4/10.38.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trpc%2fnext/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trpc%2fnext/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trpc%2fnext/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trpc%2fnext/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/react-query](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.38.4` -> `10.38.5`](https://renovatebot.com/diffs/npm/@trpc%2freact-query/10.38.4/10.38.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trpc%2freact-query/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trpc%2freact-query/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trpc%2freact-query/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trpc%2freact-query/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/server](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.38.4` -> `10.38.5`](https://renovatebot.com/diffs/npm/@trpc%2fserver/10.38.4/10.38.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trpc%2fserver/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trpc%2fserver/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trpc%2fserver/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trpc%2fserver/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>trpc/trpc (@&#8203;trpc/client)</summary>

### [`v10.38.5`](https://togithub.com/trpc/trpc/releases/tag/v10.38.5)

[Compare Source](https://togithub.com/trpc/trpc/compare/v10.38.4...v10.38.5)

##### What's Changed

-   fix(`server`): sets `TRPCError.name` to `TRPCError` regardless of what bundlers do by [@&#8203;dios-david](https://togithub.com/dios-david) & [@&#8203;KATT](https://togithub.com/KATT) in [trpc/trpc#4848

##### New Contributors

-   [@&#8203;zokins](https://togithub.com/zokins) made their first contribution in [trpc/trpc#4801
-   [@&#8203;dios-david](https://togithub.com/dios-david) made their first contribution in [trpc/trpc#4848

**Full Changelog**: trpc/trpc@v10.38.4...v10.38.5

</details>

---

### Configuration

πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

β™» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

πŸ”• **Ignore**: Close this PR and you won't be reminded about these updates again.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/weareinreach/GLAAD).



PR-URL: #197
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
kodiakhq bot added a commit to weareinreach/InReach that referenced this pull request Oct 10, 2023
* sync main -> dev (#801)

* update base branch

* copy bundle analysis config to apps/app/package.json

* chore(ui): update all non-major dependencies (#802)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@types/react-dom](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`18.2.7` -> `18.2.8`](https://renovatebot.com/diffs/npm/@types%2freact-dom/18.2.7/18.2.8) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact-dom/18.2.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact-dom/18.2.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact-dom/18.2.7/18.2.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact-dom/18.2.7/18.2.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [libphonenumber-js](https://gitlab.com/catamphetamine/libphonenumber-js) | [`1.10.44` -> `1.10.45`](https://renovatebot.com/diffs/npm/libphonenumber-js/1.10.44/1.10.45) | [![age](https://developer.mend.io/api/mc/badges/age/npm/libphonenumber-js/1.10.45?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/libphonenumber-js/1.10.45?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/libphonenumber-js/1.10.44/1.10.45?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/libphonenumber-js/1.10.44/1.10.45?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [type-fest](https://togithub.com/sindresorhus/type-fest) | [`4.3.1` -> `4.3.2`](https://renovatebot.com/diffs/npm/type-fest/4.3.1/4.3.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/type-fest/4.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/type-fest/4.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/type-fest/4.3.1/4.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/type-fest/4.3.1/4.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>catamphetamine/libphonenumber-js (libphonenumber-js)</summary>

### [`v1.10.45`](https://gitlab.com/catamphetamine/libphonenumber-js/compare/v1.10.44...v1.10.45)

[Compare Source](https://gitlab.com/catamphetamine/libphonenumber-js/compare/v1.10.44...v1.10.45)

</details>

<details>
<summary>sindresorhus/type-fest (type-fest)</summary>

### [`v4.3.2`](https://togithub.com/sindresorhus/type-fest/releases/tag/v4.3.2)

[Compare Source](https://togithub.com/sindresorhus/type-fest/compare/v4.3.1...v4.3.2)

-   `Jsonify`: Fix handling of nested objects with only a `name` property ([#&#8203;691](https://togithub.com/sindresorhus/type-fest/issues/691))  [`5351533`](https://togithub.com/sindresorhus/type-fest/commit/5351533)

</details>

---

### Configuration

πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

β™» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

πŸ‘» **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/weareinreach/InReach).



PR-URL: #802
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(workflows): update github/codeql-action digest to ddccb87 (#803)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [github/codeql-action](https://togithub.com/github/codeql-action) | action | digest | `6a28655` -> `ddccb87` |

---

### Configuration

πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

β™» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/weareinreach/InReach).



PR-URL: #803
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(auth): update all non-major dependencies (#804)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@aws-sdk/client-cognito-identity-provider](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-cognito-identity-provider) ([source](https://togithub.com/aws/aws-sdk-js-v3)) | [`3.418.0` -> `3.421.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-cognito-identity-provider/3.418.0/3.421.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-cognito-identity-provider/3.421.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-cognito-identity-provider/3.421.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-cognito-identity-provider/3.418.0/3.421.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-cognito-identity-provider/3.418.0/3.421.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/google.maps](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/google.maps) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`3.54.1` -> `3.54.2`](https://renovatebot.com/diffs/npm/@types%2fgoogle.maps/3.54.1/3.54.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fgoogle.maps/3.54.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fgoogle.maps/3.54.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fgoogle.maps/3.54.1/3.54.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fgoogle.maps/3.54.1/3.54.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [superjson](https://togithub.com/blitz-js/superjson) | [`1.13.1` -> `1.13.3`](https://renovatebot.com/diffs/npm/superjson/1.13.1/1.13.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/superjson/1.13.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/superjson/1.13.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/superjson/1.13.1/1.13.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/superjson/1.13.1/1.13.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>aws/aws-sdk-js-v3 (@&#8203;aws-sdk/client-cognito-identity-provider)</summary>

### [`v3.421.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-cognito-identity-provider/CHANGELOG.md#34210-2023-09-27)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.418.0...v3.421.0)

##### Features

-   **client-cognito-identity-provider:** The UserPoolType Status field is no longer used. ([114788d](https://togithub.com/aws/aws-sdk-js-v3/commit/114788d89a39bf57d2db3da486a105b8ee7537a6))

</details>

<details>
<summary>blitz-js/superjson (superjson)</summary>

### [`v1.13.3`](https://togithub.com/blitz-js/superjson/releases/tag/v1.13.3)

[Compare Source](https://togithub.com/blitz-js/superjson/compare/v1.13.2...v1.13.3)

#### What's Changed

-   fix a bug with dedupe=true and rereferential
    equalities. Report by [@&#8203;KATT](https://togithub.com/KATT), thank you! [#&#8203;253](https://togithub.com/blitz-js/superjson/issues/253)

**Full Changelog**: blitz-js/superjson@v1.13.1...v1.13.3

### [`v1.13.2`](https://togithub.com/blitz-js/superjson/releases/tag/v1.13.2)

[Compare Source](https://togithub.com/blitz-js/superjson/compare/v1.13.1...v1.13.2)

This was an accidental release. Oops, sorry! No changes
to the prior version.

</details>

---

### Configuration

πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

β™» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

πŸ‘» **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/weareinreach/InReach).



PR-URL: #804
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(ui): update all non-major dependencies to v10.38.5 (#805)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@trpc/client](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.38.4` -> `10.38.5`](https://renovatebot.com/diffs/npm/@trpc%2fclient/10.38.4/10.38.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trpc%2fclient/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trpc%2fclient/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trpc%2fclient/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trpc%2fclient/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/next](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.38.4` -> `10.38.5`](https://renovatebot.com/diffs/npm/@trpc%2fnext/10.38.4/10.38.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trpc%2fnext/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trpc%2fnext/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trpc%2fnext/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trpc%2fnext/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/react-query](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.38.4` -> `10.38.5`](https://renovatebot.com/diffs/npm/@trpc%2freact-query/10.38.4/10.38.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trpc%2freact-query/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trpc%2freact-query/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trpc%2freact-query/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trpc%2freact-query/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/server](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.38.4` -> `10.38.5`](https://renovatebot.com/diffs/npm/@trpc%2fserver/10.38.4/10.38.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trpc%2fserver/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trpc%2fserver/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trpc%2fserver/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trpc%2fserver/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>trpc/trpc (@&#8203;trpc/client)</summary>

### [`v10.38.5`](https://togithub.com/trpc/trpc/releases/tag/v10.38.5)

[Compare Source](https://togithub.com/trpc/trpc/compare/v10.38.4...v10.38.5)

##### What's Changed

-   fix(`server`): sets `TRPCError.name` to `TRPCError` regardless of what bundlers do by [@&#8203;dios-david](https://togithub.com/dios-david) & [@&#8203;KATT](https://togithub.com/KATT) in [trpc/trpc#4848

##### New Contributors

-   [@&#8203;zokins](https://togithub.com/zokins) made their first contribution in [trpc/trpc#4801
-   [@&#8203;dios-david](https://togithub.com/dios-david) made their first contribution in [trpc/trpc#4848

**Full Changelog**: trpc/trpc@v10.38.4...v10.38.5

</details>

---

### Configuration

πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

β™» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

πŸ”• **Ignore**: Close this PR and you won't be reminded about these updates again.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/weareinreach/InReach).



PR-URL: #805
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* update gitignore

* feat: analytics (#807)




# Pull Request type



Please check the type of change your PR introduces:

- [ ] Bugfix
- [x] Feature
- [ ] Code style update (formatting, renaming)
- [ ] Refactoring (no functional changes, no API changes)
- [ ] Build-related changes
- [ ] Documentation content changes
- [ ] Other (please describe):

## What is the current behavior?



Issue Number: IN-926

## What is the new behavior?



-
-
-

## Does this introduce a breaking change?

- [ ] Yes
- [ ] No



## Other information




PR-URL: #807
Co-authored-by: Joe Karow <58997957+JoeKarow@users.noreply.github.com>

* update config

* update config

* fix branch name

* update config

* manual run

* adj lint/format cache

* pull before push

* bypass cache for prettier

* lift up env

* use pre-commit hook for crowdin

* run prettier after download

* update conf

* update conf

* only commit @ end

* skip delete step for l10n_dev

* alter path, update name

* pin deps, debug prettier

* disable cache

* temp disable autoupdate

* run prettier manually

* debug prettier

* debug prettier

* reenable auto update

* chore(workflows): pin tj-actions/verify-changed-files action to 30aa174 (#809)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Joe Karow <58997957+JoeKarow@users.noreply.github.com>

* Updated translations from Crowdin

* add GA env to build deps

* fix(cognito-user-migrate): update all non-major dependencies (#806)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Joe Karow <58997957+JoeKarow@users.noreply.github.com>

* fix(app): update all non-major dependencies (#813)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(web): update next.js to v13.5.4 (#815)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(auth): update all non-major dependencies (#814)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(ui): update dependency zod to v3.22.3 [security] (#817)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Updated translations from Crowdin

* chore(workflows): update chromaui/action digest to 78b6788 (#818)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* changes for mobile

* fix(auth): update all non-major dependencies (#816)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(workflows): update github/codeql-action digest to fdcae64 (#820)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Updated translations from Crowdin

* fix(db): update all non-major dependencies (#822)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* temporarily disable cookie banner

* disable eslint rule for addon

---------

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: InReach [bot] <108850934+InReach-svc@users.noreply.github.com>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
JoeKarow added a commit to weareinreach/InReach that referenced this pull request Oct 11, 2023
* sync main -> dev (#801)

* update base branch

* copy bundle analysis config to apps/app/package.json

* chore(ui): update all non-major dependencies (#802)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@types/react-dom](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`18.2.7` -> `18.2.8`](https://renovatebot.com/diffs/npm/@types%2freact-dom/18.2.7/18.2.8) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact-dom/18.2.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact-dom/18.2.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact-dom/18.2.7/18.2.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact-dom/18.2.7/18.2.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [libphonenumber-js](https://gitlab.com/catamphetamine/libphonenumber-js) | [`1.10.44` -> `1.10.45`](https://renovatebot.com/diffs/npm/libphonenumber-js/1.10.44/1.10.45) | [![age](https://developer.mend.io/api/mc/badges/age/npm/libphonenumber-js/1.10.45?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/libphonenumber-js/1.10.45?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/libphonenumber-js/1.10.44/1.10.45?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/libphonenumber-js/1.10.44/1.10.45?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [type-fest](https://togithub.com/sindresorhus/type-fest) | [`4.3.1` -> `4.3.2`](https://renovatebot.com/diffs/npm/type-fest/4.3.1/4.3.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/type-fest/4.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/type-fest/4.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/type-fest/4.3.1/4.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/type-fest/4.3.1/4.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

<details>
<summary>catamphetamine/libphonenumber-js (libphonenumber-js)</summary>

[Compare Source](https://gitlab.com/catamphetamine/libphonenumber-js/compare/v1.10.44...v1.10.45)

</details>

<details>
<summary>sindresorhus/type-fest (type-fest)</summary>

[Compare Source](https://togithub.com/sindresorhus/type-fest/compare/v4.3.1...v4.3.2)

-   `Jsonify`: Fix handling of nested objects with only a `name` property ([#&#8203;691](https://togithub.com/sindresorhus/type-fest/issues/691))  [`5351533`](https://togithub.com/sindresorhus/type-fest/commit/5351533)

</details>

---

πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

β™» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

πŸ‘» **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/weareinreach/InReach).

PR-URL: #802
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(workflows): update github/codeql-action digest to ddccb87 (#803)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [github/codeql-action](https://togithub.com/github/codeql-action) | action | digest | `6a28655` -> `ddccb87` |

---

πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

β™» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/weareinreach/InReach).

PR-URL: #803
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(auth): update all non-major dependencies (#804)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@aws-sdk/client-cognito-identity-provider](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-cognito-identity-provider) ([source](https://togithub.com/aws/aws-sdk-js-v3)) | [`3.418.0` -> `3.421.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-cognito-identity-provider/3.418.0/3.421.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-cognito-identity-provider/3.421.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-cognito-identity-provider/3.421.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-cognito-identity-provider/3.418.0/3.421.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-cognito-identity-provider/3.418.0/3.421.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/google.maps](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/google.maps) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`3.54.1` -> `3.54.2`](https://renovatebot.com/diffs/npm/@types%2fgoogle.maps/3.54.1/3.54.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fgoogle.maps/3.54.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fgoogle.maps/3.54.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fgoogle.maps/3.54.1/3.54.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fgoogle.maps/3.54.1/3.54.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [superjson](https://togithub.com/blitz-js/superjson) | [`1.13.1` -> `1.13.3`](https://renovatebot.com/diffs/npm/superjson/1.13.1/1.13.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/superjson/1.13.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/superjson/1.13.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/superjson/1.13.1/1.13.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/superjson/1.13.1/1.13.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

<details>
<summary>aws/aws-sdk-js-v3 (@&#8203;aws-sdk/client-cognito-identity-provider)</summary>

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.418.0...v3.421.0)

-   **client-cognito-identity-provider:** The UserPoolType Status field is no longer used. ([114788d](https://togithub.com/aws/aws-sdk-js-v3/commit/114788d89a39bf57d2db3da486a105b8ee7537a6))

</details>

<details>
<summary>blitz-js/superjson (superjson)</summary>

[Compare Source](https://togithub.com/blitz-js/superjson/compare/v1.13.2...v1.13.3)

-   fix a bug with dedupe=true and rereferential
    equalities. Report by [@&#8203;KATT](https://togithub.com/KATT), thank you! [#&#8203;253](https://togithub.com/blitz-js/superjson/issues/253)

**Full Changelog**: blitz-js/superjson@v1.13.1...v1.13.3

[Compare Source](https://togithub.com/blitz-js/superjson/compare/v1.13.1...v1.13.2)

This was an accidental release. Oops, sorry! No changes
to the prior version.

</details>

---

πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

β™» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

πŸ‘» **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/weareinreach/InReach).

PR-URL: #804
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(ui): update all non-major dependencies to v10.38.5 (#805)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@trpc/client](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.38.4` -> `10.38.5`](https://renovatebot.com/diffs/npm/@trpc%2fclient/10.38.4/10.38.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trpc%2fclient/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trpc%2fclient/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trpc%2fclient/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trpc%2fclient/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/next](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.38.4` -> `10.38.5`](https://renovatebot.com/diffs/npm/@trpc%2fnext/10.38.4/10.38.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trpc%2fnext/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trpc%2fnext/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trpc%2fnext/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trpc%2fnext/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/react-query](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.38.4` -> `10.38.5`](https://renovatebot.com/diffs/npm/@trpc%2freact-query/10.38.4/10.38.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trpc%2freact-query/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trpc%2freact-query/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trpc%2freact-query/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trpc%2freact-query/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/server](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.38.4` -> `10.38.5`](https://renovatebot.com/diffs/npm/@trpc%2fserver/10.38.4/10.38.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trpc%2fserver/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trpc%2fserver/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trpc%2fserver/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trpc%2fserver/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

<details>
<summary>trpc/trpc (@&#8203;trpc/client)</summary>

[Compare Source](https://togithub.com/trpc/trpc/compare/v10.38.4...v10.38.5)

-   fix(`server`): sets `TRPCError.name` to `TRPCError` regardless of what bundlers do by [@&#8203;dios-david](https://togithub.com/dios-david) & [@&#8203;KATT](https://togithub.com/KATT) in [trpc/trpc#4848

-   [@&#8203;zokins](https://togithub.com/zokins) made their first contribution in [trpc/trpc#4801
-   [@&#8203;dios-david](https://togithub.com/dios-david) made their first contribution in [trpc/trpc#4848

**Full Changelog**: trpc/trpc@v10.38.4...v10.38.5

</details>

---

πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

β™» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

πŸ”• **Ignore**: Close this PR and you won't be reminded about these updates again.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/weareinreach/InReach).

PR-URL: #805
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* update gitignore

* feat: analytics (#807)

Please check the type of change your PR introduces:

- [ ] Bugfix
- [x] Feature
- [ ] Code style update (formatting, renaming)
- [ ] Refactoring (no functional changes, no API changes)
- [ ] Build-related changes
- [ ] Documentation content changes
- [ ] Other (please describe):

Issue Number: IN-926

-
-
-

- [ ] Yes
- [ ] No

PR-URL: #807
Co-authored-by: Joe Karow <58997957+JoeKarow@users.noreply.github.com>

* update config

* update config

* fix branch name

* update config

* manual run

* adj lint/format cache

* pull before push

* bypass cache for prettier

* lift up env

* use pre-commit hook for crowdin

* run prettier after download

* update conf

* update conf

* only commit @ end

* skip delete step for l10n_dev

* alter path, update name

* pin deps, debug prettier

* disable cache

* temp disable autoupdate

* run prettier manually

* debug prettier

* debug prettier

* reenable auto update

* chore(workflows): pin tj-actions/verify-changed-files action to 30aa174 (#809)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Joe Karow <58997957+JoeKarow@users.noreply.github.com>

* Updated translations from Crowdin

* add GA env to build deps

* fix(cognito-user-migrate): update all non-major dependencies (#806)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Joe Karow <58997957+JoeKarow@users.noreply.github.com>

* fix(app): update all non-major dependencies (#813)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(web): update next.js to v13.5.4 (#815)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(auth): update all non-major dependencies (#814)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(ui): update dependency zod to v3.22.3 [security] (#817)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Updated translations from Crowdin

* chore(workflows): update chromaui/action digest to 78b6788 (#818)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* changes for mobile

* fix(auth): update all non-major dependencies (#816)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(workflows): update github/codeql-action digest to fdcae64 (#820)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Updated translations from Crowdin

* fix(db): update all non-major dependencies (#822)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* temporarily disable cookie banner

* disable eslint rule for addon

---------

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: InReach [bot] <108850934+InReach-svc@users.noreply.github.com>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
kodiakhq bot added a commit to weareinreach/InReach that referenced this pull request Oct 11, 2023
* sync main -> dev (#801)

* update base branch

* copy bundle analysis config to apps/app/package.json

* chore(ui): update all non-major dependencies (#802)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@types/react-dom](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`18.2.7` -> `18.2.8`](https://renovatebot.com/diffs/npm/@types%2freact-dom/18.2.7/18.2.8) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact-dom/18.2.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact-dom/18.2.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact-dom/18.2.7/18.2.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact-dom/18.2.7/18.2.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [libphonenumber-js](https://gitlab.com/catamphetamine/libphonenumber-js) | [`1.10.44` -> `1.10.45`](https://renovatebot.com/diffs/npm/libphonenumber-js/1.10.44/1.10.45) | [![age](https://developer.mend.io/api/mc/badges/age/npm/libphonenumber-js/1.10.45?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/libphonenumber-js/1.10.45?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/libphonenumber-js/1.10.44/1.10.45?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/libphonenumber-js/1.10.44/1.10.45?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [type-fest](https://togithub.com/sindresorhus/type-fest) | [`4.3.1` -> `4.3.2`](https://renovatebot.com/diffs/npm/type-fest/4.3.1/4.3.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/type-fest/4.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/type-fest/4.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/type-fest/4.3.1/4.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/type-fest/4.3.1/4.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>catamphetamine/libphonenumber-js (libphonenumber-js)</summary>

### [`v1.10.45`](https://gitlab.com/catamphetamine/libphonenumber-js/compare/v1.10.44...v1.10.45)

[Compare Source](https://gitlab.com/catamphetamine/libphonenumber-js/compare/v1.10.44...v1.10.45)

</details>

<details>
<summary>sindresorhus/type-fest (type-fest)</summary>

### [`v4.3.2`](https://togithub.com/sindresorhus/type-fest/releases/tag/v4.3.2)

[Compare Source](https://togithub.com/sindresorhus/type-fest/compare/v4.3.1...v4.3.2)

-   `Jsonify`: Fix handling of nested objects with only a `name` property ([#&#8203;691](https://togithub.com/sindresorhus/type-fest/issues/691))  [`5351533`](https://togithub.com/sindresorhus/type-fest/commit/5351533)

</details>

---

### Configuration

πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

β™» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

πŸ‘» **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/weareinreach/InReach).



PR-URL: #802
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(workflows): update github/codeql-action digest to ddccb87 (#803)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [github/codeql-action](https://togithub.com/github/codeql-action) | action | digest | `6a28655` -> `ddccb87` |

---

### Configuration

πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

β™» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/weareinreach/InReach).



PR-URL: #803
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(auth): update all non-major dependencies (#804)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@aws-sdk/client-cognito-identity-provider](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-cognito-identity-provider) ([source](https://togithub.com/aws/aws-sdk-js-v3)) | [`3.418.0` -> `3.421.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-cognito-identity-provider/3.418.0/3.421.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-cognito-identity-provider/3.421.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-cognito-identity-provider/3.421.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-cognito-identity-provider/3.418.0/3.421.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-cognito-identity-provider/3.418.0/3.421.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/google.maps](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/google.maps) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`3.54.1` -> `3.54.2`](https://renovatebot.com/diffs/npm/@types%2fgoogle.maps/3.54.1/3.54.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fgoogle.maps/3.54.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fgoogle.maps/3.54.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fgoogle.maps/3.54.1/3.54.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fgoogle.maps/3.54.1/3.54.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [superjson](https://togithub.com/blitz-js/superjson) | [`1.13.1` -> `1.13.3`](https://renovatebot.com/diffs/npm/superjson/1.13.1/1.13.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/superjson/1.13.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/superjson/1.13.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/superjson/1.13.1/1.13.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/superjson/1.13.1/1.13.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>aws/aws-sdk-js-v3 (@&#8203;aws-sdk/client-cognito-identity-provider)</summary>

### [`v3.421.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-cognito-identity-provider/CHANGELOG.md#34210-2023-09-27)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.418.0...v3.421.0)

##### Features

-   **client-cognito-identity-provider:** The UserPoolType Status field is no longer used. ([114788d](https://togithub.com/aws/aws-sdk-js-v3/commit/114788d89a39bf57d2db3da486a105b8ee7537a6))

</details>

<details>
<summary>blitz-js/superjson (superjson)</summary>

### [`v1.13.3`](https://togithub.com/blitz-js/superjson/releases/tag/v1.13.3)

[Compare Source](https://togithub.com/blitz-js/superjson/compare/v1.13.2...v1.13.3)

#### What's Changed

-   fix a bug with dedupe=true and rereferential
    equalities. Report by [@&#8203;KATT](https://togithub.com/KATT), thank you! [#&#8203;253](https://togithub.com/blitz-js/superjson/issues/253)

**Full Changelog**: blitz-js/superjson@v1.13.1...v1.13.3

### [`v1.13.2`](https://togithub.com/blitz-js/superjson/releases/tag/v1.13.2)

[Compare Source](https://togithub.com/blitz-js/superjson/compare/v1.13.1...v1.13.2)

This was an accidental release. Oops, sorry! No changes
to the prior version.

</details>

---

### Configuration

πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

β™» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

πŸ‘» **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/weareinreach/InReach).



PR-URL: #804
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(ui): update all non-major dependencies to v10.38.5 (#805)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@trpc/client](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.38.4` -> `10.38.5`](https://renovatebot.com/diffs/npm/@trpc%2fclient/10.38.4/10.38.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trpc%2fclient/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trpc%2fclient/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trpc%2fclient/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trpc%2fclient/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/next](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.38.4` -> `10.38.5`](https://renovatebot.com/diffs/npm/@trpc%2fnext/10.38.4/10.38.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trpc%2fnext/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trpc%2fnext/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trpc%2fnext/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trpc%2fnext/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/react-query](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.38.4` -> `10.38.5`](https://renovatebot.com/diffs/npm/@trpc%2freact-query/10.38.4/10.38.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trpc%2freact-query/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trpc%2freact-query/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trpc%2freact-query/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trpc%2freact-query/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/server](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.38.4` -> `10.38.5`](https://renovatebot.com/diffs/npm/@trpc%2fserver/10.38.4/10.38.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trpc%2fserver/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trpc%2fserver/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trpc%2fserver/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trpc%2fserver/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>trpc/trpc (@&#8203;trpc/client)</summary>

### [`v10.38.5`](https://togithub.com/trpc/trpc/releases/tag/v10.38.5)

[Compare Source](https://togithub.com/trpc/trpc/compare/v10.38.4...v10.38.5)

##### What's Changed

-   fix(`server`): sets `TRPCError.name` to `TRPCError` regardless of what bundlers do by [@&#8203;dios-david](https://togithub.com/dios-david) & [@&#8203;KATT](https://togithub.com/KATT) in [trpc/trpc#4848

##### New Contributors

-   [@&#8203;zokins](https://togithub.com/zokins) made their first contribution in [trpc/trpc#4801
-   [@&#8203;dios-david](https://togithub.com/dios-david) made their first contribution in [trpc/trpc#4848

**Full Changelog**: trpc/trpc@v10.38.4...v10.38.5

</details>

---

### Configuration

πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

β™» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

πŸ”• **Ignore**: Close this PR and you won't be reminded about these updates again.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/weareinreach/InReach).



PR-URL: #805
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* update gitignore

* feat: analytics (#807)




# Pull Request type



Please check the type of change your PR introduces:

- [ ] Bugfix
- [x] Feature
- [ ] Code style update (formatting, renaming)
- [ ] Refactoring (no functional changes, no API changes)
- [ ] Build-related changes
- [ ] Documentation content changes
- [ ] Other (please describe):

## What is the current behavior?



Issue Number: IN-926

## What is the new behavior?



-
-
-

## Does this introduce a breaking change?

- [ ] Yes
- [ ] No



## Other information




PR-URL: #807
Co-authored-by: Joe Karow <58997957+JoeKarow@users.noreply.github.com>

* update config

* update config

* fix branch name

* update config

* manual run

* adj lint/format cache

* pull before push

* bypass cache for prettier

* lift up env

* use pre-commit hook for crowdin

* run prettier after download

* update conf

* update conf

* only commit @ end

* skip delete step for l10n_dev

* alter path, update name

* pin deps, debug prettier

* disable cache

* temp disable autoupdate

* run prettier manually

* debug prettier

* debug prettier

* reenable auto update

* chore(workflows): pin tj-actions/verify-changed-files action to 30aa174 (#809)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Joe Karow <58997957+JoeKarow@users.noreply.github.com>

* Updated translations from Crowdin

* add GA env to build deps

* fix(cognito-user-migrate): update all non-major dependencies (#806)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Joe Karow <58997957+JoeKarow@users.noreply.github.com>

* fix(app): update all non-major dependencies (#813)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(web): update next.js to v13.5.4 (#815)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(auth): update all non-major dependencies (#814)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(ui): update dependency zod to v3.22.3 [security] (#817)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Updated translations from Crowdin

* chore(workflows): update chromaui/action digest to 78b6788 (#818)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* changes for mobile

* fix(auth): update all non-major dependencies (#816)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(workflows): update github/codeql-action digest to fdcae64 (#820)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Updated translations from Crowdin

* fix(db): update all non-major dependencies (#822)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* temporarily disable cookie banner

* disable eslint rule for addon

* do not discard lcr data

* remove unused eslint

* remove corejs

* bounce animation

* set default close button

* create donation button

* implement donation modal

* lazy loading to reduce bundle

* clean up peerdeps

* roll back next -> 13.5.3

* prefetch search results page on load

* trim unused deps

* add donation link to Support page

* chore(ui): update all non-major dependencies (#827)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(i18n): Updated translations from Crowdin (#826)

Updated translations from Crowdin

Co-authored-by: InReach [bot] <108850934+InReach-svc@users.noreply.github.com>

* fix label name

* generated data

* override postcss for CVE-2023-44270

* fix(db): update dependency superjson to v2 (#830)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* release: 2023-10-10 (#825)

* sync main -> dev (#801)

* update base branch

* copy bundle analysis config to apps/app/package.json

* chore(ui): update all non-major dependencies (#802)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@types/react-dom](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`18.2.7` -> `18.2.8`](https://renovatebot.com/diffs/npm/@types%2freact-dom/18.2.7/18.2.8) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact-dom/18.2.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact-dom/18.2.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact-dom/18.2.7/18.2.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact-dom/18.2.7/18.2.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [libphonenumber-js](https://gitlab.com/catamphetamine/libphonenumber-js) | [`1.10.44` -> `1.10.45`](https://renovatebot.com/diffs/npm/libphonenumber-js/1.10.44/1.10.45) | [![age](https://developer.mend.io/api/mc/badges/age/npm/libphonenumber-js/1.10.45?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/libphonenumber-js/1.10.45?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/libphonenumber-js/1.10.44/1.10.45?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/libphonenumber-js/1.10.44/1.10.45?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [type-fest](https://togithub.com/sindresorhus/type-fest) | [`4.3.1` -> `4.3.2`](https://renovatebot.com/diffs/npm/type-fest/4.3.1/4.3.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/type-fest/4.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/type-fest/4.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/type-fest/4.3.1/4.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/type-fest/4.3.1/4.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

<details>
<summary>catamphetamine/libphonenumber-js (libphonenumber-js)</summary>

[Compare Source](https://gitlab.com/catamphetamine/libphonenumber-js/compare/v1.10.44...v1.10.45)

</details>

<details>
<summary>sindresorhus/type-fest (type-fest)</summary>

[Compare Source](https://togithub.com/sindresorhus/type-fest/compare/v4.3.1...v4.3.2)

-   `Jsonify`: Fix handling of nested objects with only a `name` property ([#&#8203;691](https://togithub.com/sindresorhus/type-fest/issues/691))  [`5351533`](https://togithub.com/sindresorhus/type-fest/commit/5351533)

</details>

---

πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

β™» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

πŸ‘» **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/weareinreach/InReach).

PR-URL: #802
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(workflows): update github/codeql-action digest to ddccb87 (#803)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [github/codeql-action](https://togithub.com/github/codeql-action) | action | digest | `6a28655` -> `ddccb87` |

---

πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

β™» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

πŸ”• **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/weareinreach/InReach).

PR-URL: #803
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(auth): update all non-major dependencies (#804)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@aws-sdk/client-cognito-identity-provider](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-cognito-identity-provider) ([source](https://togithub.com/aws/aws-sdk-js-v3)) | [`3.418.0` -> `3.421.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-cognito-identity-provider/3.418.0/3.421.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-cognito-identity-provider/3.421.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-cognito-identity-provider/3.421.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-cognito-identity-provider/3.418.0/3.421.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-cognito-identity-provider/3.418.0/3.421.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/google.maps](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/google.maps) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`3.54.1` -> `3.54.2`](https://renovatebot.com/diffs/npm/@types%2fgoogle.maps/3.54.1/3.54.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fgoogle.maps/3.54.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fgoogle.maps/3.54.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fgoogle.maps/3.54.1/3.54.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fgoogle.maps/3.54.1/3.54.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [superjson](https://togithub.com/blitz-js/superjson) | [`1.13.1` -> `1.13.3`](https://renovatebot.com/diffs/npm/superjson/1.13.1/1.13.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/superjson/1.13.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/superjson/1.13.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/superjson/1.13.1/1.13.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/superjson/1.13.1/1.13.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

<details>
<summary>aws/aws-sdk-js-v3 (@&#8203;aws-sdk/client-cognito-identity-provider)</summary>

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.418.0...v3.421.0)

-   **client-cognito-identity-provider:** The UserPoolType Status field is no longer used. ([114788d](https://togithub.com/aws/aws-sdk-js-v3/commit/114788d89a39bf57d2db3da486a105b8ee7537a6))

</details>

<details>
<summary>blitz-js/superjson (superjson)</summary>

[Compare Source](https://togithub.com/blitz-js/superjson/compare/v1.13.2...v1.13.3)

-   fix a bug with dedupe=true and rereferential
    equalities. Report by [@&#8203;KATT](https://togithub.com/KATT), thank you! [#&#8203;253](https://togithub.com/blitz-js/superjson/issues/253)

**Full Changelog**: blitz-js/superjson@v1.13.1...v1.13.3

[Compare Source](https://togithub.com/blitz-js/superjson/compare/v1.13.1...v1.13.2)

This was an accidental release. Oops, sorry! No changes
to the prior version.

</details>

---

πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

β™» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

πŸ‘» **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/weareinreach/InReach).

PR-URL: #804
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(ui): update all non-major dependencies to v10.38.5 (#805)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@trpc/client](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.38.4` -> `10.38.5`](https://renovatebot.com/diffs/npm/@trpc%2fclient/10.38.4/10.38.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trpc%2fclient/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trpc%2fclient/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trpc%2fclient/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trpc%2fclient/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/next](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.38.4` -> `10.38.5`](https://renovatebot.com/diffs/npm/@trpc%2fnext/10.38.4/10.38.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trpc%2fnext/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trpc%2fnext/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trpc%2fnext/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trpc%2fnext/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/react-query](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.38.4` -> `10.38.5`](https://renovatebot.com/diffs/npm/@trpc%2freact-query/10.38.4/10.38.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trpc%2freact-query/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trpc%2freact-query/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trpc%2freact-query/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trpc%2freact-query/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/server](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.38.4` -> `10.38.5`](https://renovatebot.com/diffs/npm/@trpc%2fserver/10.38.4/10.38.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trpc%2fserver/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trpc%2fserver/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trpc%2fserver/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trpc%2fserver/10.38.4/10.38.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

<details>
<summary>trpc/trpc (@&#8203;trpc/client)</summary>

[Compare Source](https://togithub.com/trpc/trpc/compare/v10.38.4...v10.38.5)

-   fix(`server`): sets `TRPCError.name` to `TRPCError` regardless of what bundlers do by [@&#8203;dios-david](https://togithub.com/dios-david) & [@&#8203;KATT](https://togithub.com/KATT) in [trpc/trpc#4848

-   [@&#8203;zokins](https://togithub.com/zokins) made their first contribution in [trpc/trpc#4801
-   [@&#8203;dios-david](https://togithub.com/dios-david) made their first contribution in [trpc/trpc#4848

**Full Changelog**: trpc/trpc@v10.38.4...v10.38.5

</details>

---

πŸ“… **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

β™» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

πŸ”• **Ignore**: Close this PR and you won't be reminded about these updates again.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/weareinreach/InReach).

PR-URL: #805
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* update gitignore

* feat: analytics (#807)

Please check the type of change your PR introduces:

- [ ] Bugfix
- [x] Feature
- [ ] Code style update (formatting, renaming)
- [ ] Refactoring (no functional changes, no API changes)
- [ ] Build-related changes
- [ ] Documentation content changes
- [ ] Other (please describe):

Issue Number: IN-926

-
-
-

- [ ] Yes
- [ ] No

PR-URL: #807
Co-authored-by: Joe Karow <58997957+JoeKarow@users.noreply.github.com>

* update config

* update config

* fix branch name

* update config

* manual run

* adj lint/format cache

* pull before push

* bypass cache for prettier

* lift up env

* use pre-commit hook for crowdin

* run prettier after download

* update conf

* update conf

* only commit @ end

* skip delete step for l10n_dev

* alter path, update name

* pin deps, debug prettier

* disable cache

* temp disable autoupdate

* run prettier manually

* debug prettier

* debug prettier

* reenable auto update

* chore(workflows): pin tj-actions/verify-changed-files action to 30aa174 (#809)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Joe Karow <58997957+JoeKarow@users.noreply.github.com>

* Updated translations from Crowdin

* add GA env to build deps

* fix(cognito-user-migrate): update all non-major dependencies (#806)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Joe Karow <58997957+JoeKarow@users.noreply.github.com>

* fix(app): update all non-major dependencies (#813)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(web): update next.js to v13.5.4 (#815)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(auth): update all non-major dependencies (#814)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(ui): update dependency zod to v3.22.3 [security] (#817)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Updated translations from Crowdin

* chore(workflows): update chromaui/action digest to 78b6788 (#818)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* changes for mobile

* fix(auth): update all non-major dependencies (#816)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(workflows): update github/codeql-action digest to fdcae64 (#820)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Updated translations from Crowdin

* fix(db): update all non-major dependencies (#822)

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* temporarily disable cookie banner

* disable eslint rule for addon

---------

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: InReach [bot] <108850934+InReach-svc@users.noreply.github.com>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>

---------

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: InReach [bot] <108850934+InReach-svc@users.noreply.github.com>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Oct 28, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants