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

chore(client): change OperationContext from type to interface #4523

Merged
merged 3 commits into from
Jun 22, 2023

Conversation

nicolassanmar
Copy link
Contributor

Closes #4518

🎯 Changes

Allows extending the OperationContext for added typesafety when implementing custom links.
This is done by changing it's definition from type to interface

βœ… 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.

@nicolassanmar nicolassanmar requested a review from a team as a code owner June 13, 2023 13:28
@vercel
Copy link

vercel bot commented Jun 13, 2023

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

Name Status Preview Comments Updated (UTC)
www βœ… Ready (Inspect) Visit Preview πŸ’¬ Add feedback Jun 22, 2023 11:52am

@vercel
Copy link

vercel bot commented Jun 13, 2023

@nicolassanmar is attempting to deploy a commit to the trpc Team on Vercel.

A member of the Team first needs to authorize it.

Comment on lines 24 to 26
/**
* @internal
*/
Copy link
Contributor Author

Choose a reason for hiding this comment

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

We can think of removing @internal from this as it is not entirely true. Users can interact with this when developing links.

Copy link
Contributor

Choose a reason for hiding this comment

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

I'm not saying this is a bad or good idea, but why do you need to change to interface? Wouldn't this work just as fine as extends on an interface?

type OperationContext = Record<string, unknown>
type CustomOperationContext = OperationContext & {
  foo: number
}

Copy link
Contributor Author

Choose a reason for hiding this comment

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

This is required, as your solution creates a new type but does not modify OperationContext.
We need to be able to tell Typescript that OperationContext has known custom properties.
This is required, as we can modify the context in the .useQuery(undefined, {trpc: { context: { ... } } }) (where it expects something of type OperationContext), and we access the context in links with op.context (which is typed OperationContext).

The only way to modify OperationContext is to extend it as an interface, like what we can do with MutationMeta or QueryMeta.

For context, see the issue here: #4518

@KATT
Copy link
Member

KATT commented Jun 22, 2023

I'll merge this as I generally favor interface over type -- however, we will still regard this as an internal type and break it at our own will :)

@KATT KATT changed the title chore(client): allow extending operation context chore(client): change OperationContext from type to interface Jun 22, 2023
@KATT KATT merged commit c047cf2 into trpc:main Jun 22, 2023
28 of 31 checks passed
kodiakhq bot pushed a commit to weareinreach/InReach that referenced this pull request Jun 22, 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 |
|---|---|---|---|---|---|
| [@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.354.0` -> `3.357.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-cognito-identity-provider/3.354.0/3.357.0) | [![age](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-cognito-identity-provider/3.357.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-cognito-identity-provider/3.357.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-cognito-identity-provider/3.357.0/compatibility-slim/3.354.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-cognito-identity-provider/3.357.0/confidence-slim/3.354.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@aws-sdk/client-s3](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-s3) ([source](https://togithub.com/aws/aws-sdk-js-v3)) | [`3.354.0` -> `3.357.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-s3/3.354.0/3.357.0) | [![age](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-s3/3.357.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-s3/3.357.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-s3/3.357.0/compatibility-slim/3.354.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-s3/3.357.0/confidence-slim/3.354.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@aws-sdk/signature-v4](https://togithub.com/aws/aws-sdk-js-v3/tree/main/packages/signature-v4) ([source](https://togithub.com/aws/aws-sdk-js-v3)) | [`3.354.0` -> `3.357.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fsignature-v4/3.354.0/3.357.0) | [![age](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fsignature-v4/3.357.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fsignature-v4/3.357.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fsignature-v4/3.357.0/compatibility-slim/3.354.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fsignature-v4/3.357.0/confidence-slim/3.354.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@crowdin/crowdin-api-client](https://togithub.com/crowdin/crowdin-api-client-js) | [`1.23.1` -> `1.23.2`](https://renovatebot.com/diffs/npm/@crowdin%2fcrowdin-api-client/1.23.1/1.23.2) | [![age](https://badges.renovateapi.com/packages/npm/@crowdin%2fcrowdin-api-client/1.23.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@crowdin%2fcrowdin-api-client/1.23.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@crowdin%2fcrowdin-api-client/1.23.2/compatibility-slim/1.23.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@crowdin%2fcrowdin-api-client/1.23.2/confidence-slim/1.23.1)](https://docs.renovatebot.com/merge-confidence/) |
| [@iconify/react](https://iconify.design/) ([source](https://togithub.com/iconify/iconify)) | [`4.1.0` -> `4.1.1`](https://renovatebot.com/diffs/npm/@iconify%2freact/4.1.0/4.1.1) | [![age](https://badges.renovateapi.com/packages/npm/@iconify%2freact/4.1.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@iconify%2freact/4.1.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@iconify%2freact/4.1.1/compatibility-slim/4.1.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@iconify%2freact/4.1.1/confidence-slim/4.1.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@iconify/utils](https://iconify.design/docs/libraries/utils/) ([source](https://togithub.com/iconify/iconify)) | [`2.1.6` -> `2.1.7`](https://renovatebot.com/diffs/npm/@iconify%2futils/2.1.6/2.1.7) | [![age](https://badges.renovateapi.com/packages/npm/@iconify%2futils/2.1.7/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@iconify%2futils/2.1.7/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@iconify%2futils/2.1.7/compatibility-slim/2.1.6)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@iconify%2futils/2.1.7/confidence-slim/2.1.6)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-a11y](https://togithub.com/storybookjs/storybook/tree/next/code/addons/a11y) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2faddon-a11y/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-a11y/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-a11y/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-a11y/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-a11y/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-actions](https://togithub.com/storybookjs/storybook/tree/next/code/addons/actions) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2faddon-actions/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-actions/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-actions/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-actions/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-actions/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-docs](https://togithub.com/storybookjs/storybook/tree/next/code/addons/docs) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2faddon-docs/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-docs/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-docs/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-docs/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-docs/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-essentials](https://togithub.com/storybookjs/storybook/tree/next/code/addons/essentials) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2faddon-essentials/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-essentials/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-essentials/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-essentials/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-essentials/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-interactions](https://togithub.com/storybookjs/storybook/tree/next/code/addons/interactions) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2faddon-interactions/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-interactions/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-interactions/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-interactions/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-interactions/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-links](https://togithub.com/storybookjs/storybook/tree/next/code/addons/links) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2faddon-links/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-links/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-links/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-links/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-links/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-viewport](https://togithub.com/storybookjs/storybook/tree/next/code/addons/viewport) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2faddon-viewport/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-viewport/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-viewport/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-viewport/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-viewport/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/components](https://togithub.com/storybookjs/storybook/tree/next/code/ui/components) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2fcomponents/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2fcomponents/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2fcomponents/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2fcomponents/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2fcomponents/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/core-events](https://togithub.com/storybookjs/storybook/tree/next/code/lib/core-events) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2fcore-events/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2fcore-events/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2fcore-events/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2fcore-events/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2fcore-events/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/manager-api](https://togithub.com/storybookjs/storybook/tree/next/code/lib/manager-api) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2fmanager-api/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2fmanager-api/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2fmanager-api/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2fmanager-api/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2fmanager-api/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/nextjs](https://togithub.com/storybookjs/storybook/tree/next/code/frameworks/nextjs) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2fnextjs/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2fnextjs/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2fnextjs/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2fnextjs/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2fnextjs/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/preview-api](https://togithub.com/storybookjs/storybook/tree/next/code/lib/preview-api) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2fpreview-api/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2fpreview-api/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2fpreview-api/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2fpreview-api/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2fpreview-api/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/react](https://togithub.com/storybookjs/storybook/tree/next/code/renderers/react) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2freact/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2freact/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2freact/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2freact/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2freact/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/theming](https://togithub.com/storybookjs/storybook/tree/next/code/lib/theming) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2ftheming/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2ftheming/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2ftheming/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2ftheming/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2ftheming/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/types](https://togithub.com/storybookjs/storybook/tree/next/code/lib/types) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2ftypes/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2ftypes/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2ftypes/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2ftypes/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2ftypes/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@textea/json-viewer](https://togithub.com/TexteaInc/json-viewer) | [`3.0.0` -> `3.1.1`](https://renovatebot.com/diffs/npm/@textea%2fjson-viewer/3.0.0/3.1.1) | [![age](https://badges.renovateapi.com/packages/npm/@textea%2fjson-viewer/3.1.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@textea%2fjson-viewer/3.1.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@textea%2fjson-viewer/3.1.1/compatibility-slim/3.0.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@textea%2fjson-viewer/3.1.1/confidence-slim/3.0.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/client](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.31.0` -> `10.32.0`](https://renovatebot.com/diffs/npm/@trpc%2fclient/10.31.0/10.32.0) | [![age](https://badges.renovateapi.com/packages/npm/@trpc%2fclient/10.32.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@trpc%2fclient/10.32.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@trpc%2fclient/10.32.0/compatibility-slim/10.31.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@trpc%2fclient/10.32.0/confidence-slim/10.31.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/next](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.31.0` -> `10.32.0`](https://renovatebot.com/diffs/npm/@trpc%2fnext/10.31.0/10.32.0) | [![age](https://badges.renovateapi.com/packages/npm/@trpc%2fnext/10.32.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@trpc%2fnext/10.32.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@trpc%2fnext/10.32.0/compatibility-slim/10.31.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@trpc%2fnext/10.32.0/confidence-slim/10.31.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/react-query](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.31.0` -> `10.32.0`](https://renovatebot.com/diffs/npm/@trpc%2freact-query/10.31.0/10.32.0) | [![age](https://badges.renovateapi.com/packages/npm/@trpc%2freact-query/10.32.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@trpc%2freact-query/10.32.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@trpc%2freact-query/10.32.0/compatibility-slim/10.31.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@trpc%2freact-query/10.32.0/confidence-slim/10.31.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/server](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.31.0` -> `10.32.0`](https://renovatebot.com/diffs/npm/@trpc%2fserver/10.31.0/10.32.0) | [![age](https://badges.renovateapi.com/packages/npm/@trpc%2fserver/10.32.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@trpc%2fserver/10.32.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@trpc%2fserver/10.32.0/compatibility-slim/10.31.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@trpc%2fserver/10.32.0/confidence-slim/10.31.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@vercel/kv](https://vercel.com) ([source](https://togithub.com/vercel/storage)) | [`0.2.1` -> `0.2.2`](https://renovatebot.com/diffs/npm/@vercel%2fkv/0.2.1/0.2.2) | [![age](https://badges.renovateapi.com/packages/npm/@vercel%2fkv/0.2.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@vercel%2fkv/0.2.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@vercel%2fkv/0.2.2/compatibility-slim/0.2.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@vercel%2fkv/0.2.2/confidence-slim/0.2.1)](https://docs.renovatebot.com/merge-confidence/) |
| [@vercel/postgres-kysely](https://vercel.com) ([source](https://togithub.com/vercel/storage)) | [`0.3.1` -> `0.4.0`](https://renovatebot.com/diffs/npm/@vercel%2fpostgres-kysely/0.3.1/0.4.0) | [![age](https://badges.renovateapi.com/packages/npm/@vercel%2fpostgres-kysely/0.4.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@vercel%2fpostgres-kysely/0.4.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@vercel%2fpostgres-kysely/0.4.0/compatibility-slim/0.3.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@vercel%2fpostgres-kysely/0.4.0/confidence-slim/0.3.1)](https://docs.renovatebot.com/merge-confidence/) |
| [chromatic](https://www.chromatic.com) ([source](https://togithub.com/chromaui/chromatic-cli)) | [`6.19.8` -> `6.19.9`](https://renovatebot.com/diffs/npm/chromatic/6.19.8/6.19.9) | [![age](https://badges.renovateapi.com/packages/npm/chromatic/6.19.9/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/chromatic/6.19.9/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/chromatic/6.19.9/compatibility-slim/6.19.8)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/chromatic/6.19.9/confidence-slim/6.19.8)](https://docs.renovatebot.com/merge-confidence/) |
| [eslint-plugin-turbo](https://togithub.com/vercel/turbo) | [`1.10.3` -> `1.10.4`](https://renovatebot.com/diffs/npm/eslint-plugin-turbo/1.10.3/1.10.4) | [![age](https://badges.renovateapi.com/packages/npm/eslint-plugin-turbo/1.10.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/eslint-plugin-turbo/1.10.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/eslint-plugin-turbo/1.10.4/compatibility-slim/1.10.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/eslint-plugin-turbo/1.10.4/confidence-slim/1.10.3)](https://docs.renovatebot.com/merge-confidence/) |
| [i18next](https://www.i18next.com) ([source](https://togithub.com/i18next/i18next)) | [`23.2.1` -> `23.2.3`](https://renovatebot.com/diffs/npm/i18next/23.2.1/23.2.3) | [![age](https://badges.renovateapi.com/packages/npm/i18next/23.2.3/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/i18next/23.2.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/i18next/23.2.3/compatibility-slim/23.2.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/i18next/23.2.3/confidence-slim/23.2.1)](https://docs.renovatebot.com/merge-confidence/) |
| [next-router-mock](https://togithub.com/scottrippey/next-router-mock) | [`0.9.6` -> `0.9.7`](https://renovatebot.com/diffs/npm/next-router-mock/0.9.6/0.9.7) | [![age](https://badges.renovateapi.com/packages/npm/next-router-mock/0.9.7/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/next-router-mock/0.9.7/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/next-router-mock/0.9.7/compatibility-slim/0.9.6)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/next-router-mock/0.9.7/confidence-slim/0.9.6)](https://docs.renovatebot.com/merge-confidence/) |
| [next-seo](https://togithub.com/garmeeh/next-seo) | [`6.0.0` -> `6.1.0`](https://renovatebot.com/diffs/npm/next-seo/6.0.0/6.1.0) | [![age](https://badges.renovateapi.com/packages/npm/next-seo/6.1.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/next-seo/6.1.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/next-seo/6.1.0/compatibility-slim/6.0.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/next-seo/6.1.0/confidence-slim/6.0.0)](https://docs.renovatebot.com/merge-confidence/) |
| [react-i18next](https://togithub.com/i18next/react-i18next) | [`13.0.0` -> `13.0.1`](https://renovatebot.com/diffs/npm/react-i18next/13.0.0/13.0.1) | [![age](https://badges.renovateapi.com/packages/npm/react-i18next/13.0.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/react-i18next/13.0.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/react-i18next/13.0.1/compatibility-slim/13.0.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/react-i18next/13.0.1/confidence-slim/13.0.0)](https://docs.renovatebot.com/merge-confidence/) |
| [storybook](https://togithub.com/storybookjs/storybook/tree/next/code/lib/cli) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/storybook/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/storybook/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/storybook/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/storybook/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/storybook/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [storybook-addon-pseudo-states](https://togithub.com/chromaui/storybook-addon-pseudo-states) | [`2.0.1` -> `2.1.0`](https://renovatebot.com/diffs/npm/storybook-addon-pseudo-states/2.0.1/2.1.0) | [![age](https://badges.renovateapi.com/packages/npm/storybook-addon-pseudo-states/2.1.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/storybook-addon-pseudo-states/2.1.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/storybook-addon-pseudo-states/2.1.0/compatibility-slim/2.0.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/storybook-addon-pseudo-states/2.1.0/confidence-slim/2.0.1)](https://docs.renovatebot.com/merge-confidence/) |
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.10.3` -> `1.10.4`](https://renovatebot.com/diffs/npm/turbo/1.10.3/1.10.4) | [![age](https://badges.renovateapi.com/packages/npm/turbo/1.10.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.10.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/turbo/1.10.4/compatibility-slim/1.10.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.10.4/confidence-slim/1.10.3)](https://docs.renovatebot.com/merge-confidence/) |
| [webpack](https://togithub.com/webpack/webpack) | [`5.87.0` -> `5.88.0`](https://renovatebot.com/diffs/npm/webpack/5.87.0/5.88.0) | [![age](https://badges.renovateapi.com/packages/npm/webpack/5.88.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/webpack/5.88.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/webpack/5.88.0/compatibility-slim/5.87.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/webpack/5.88.0/confidence-slim/5.87.0)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

### [`v3.357.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-cognito-identity-provider/CHANGELOG.md#&#8203;33570-httpsgithubcomawsaws-sdk-js-v3comparev33560v33570-2023-06-21)

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

##### Features

-   **clients:** automatic blob type conversions ([#&#8203;4836](https://togithub.com/aws/aws-sdk-js-v3/issues/4836)) ([60ec921](https://togithub.com/aws/aws-sdk-js-v3/commit/60ec921c879ae8363f32ebbe9e1ecd6062df1081))

</details>

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

### [`v3.357.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#&#8203;33570-httpsgithubcomawsaws-sdk-js-v3comparev33560v33570-2023-06-21)

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

##### Features

-   **clients:** automatic blob type conversions ([#&#8203;4836](https://togithub.com/aws/aws-sdk-js-v3/issues/4836)) ([60ec921](https://togithub.com/aws/aws-sdk-js-v3/commit/60ec921c879ae8363f32ebbe9e1ecd6062df1081))

</details>

<details>
<summary>aws/aws-sdk-js-v3 (@&#8203;aws-sdk/signature-v4)</summary>

### [`v3.357.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/packages/signature-v4/CHANGELOG.md#&#8203;33570-httpsgithubcomawsaws-sdk-js-v3comparev33560v33570-2023-06-21)

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

**Note:** Version bump only for package [@&#8203;aws-sdk/signature-v4](https://togithub.com/aws-sdk/signature-v4)

</details>

<details>
<summary>crowdin/crowdin-api-client-js</summary>

### [`v1.23.2`](https://togithub.com/crowdin/crowdin-api-client-js/releases/tag/1.23.2)

[Compare Source](https://togithub.com/crowdin/crowdin-api-client-js/compare/1.23.1...1.23.2)

##### What's Changed

-   docs: Examples by [@&#8203;yevheniyJ](https://togithub.com/yevheniyJ) in [https://github.com/crowdin/crowdin-api-client-js/pull/274](https://togithub.com/crowdin/crowdin-api-client-js/pull/274)
-   ci: configure npm provenance for package publishing by [@&#8203;andrii-bodnar](https://togithub.com/andrii-bodnar) in [https://github.com/crowdin/crowdin-api-client-js/pull/275](https://togithub.com/crowdin/crowdin-api-client-js/pull/275)
-   build(deps-dev): bump typedoc from 0.24.7 to 0.24.8 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/crowdin/crowdin-api-client-js/pull/272](https://togithub.com/crowdin/crowdin-api-client-js/pull/272)

**Full Changelog**: https://github.com/crowdin/crowdin-api-client-js/compare/1.23.1...1.23.2

</details>

<details>
<summary>storybookjs/storybook</summary>

### [`v7.0.23`](https://togithub.com/storybookjs/storybook/releases/tag/v7.0.23)

[Compare Source](https://togithub.com/storybookjs/storybook/compare/v7.0.22...v7.0.23)

#### 7.0.23

-   Core: Fix compat by disabling name mangling in `esbuild` require - [#&#8203;22486](https://togithub.com/storybookjs/storybook/pull/22486), thanks [@&#8203;youngboy](https://togithub.com/youngboy)!
-   Core: Prebundle node-logger and make it CJS only - [#&#8203;23109](https://togithub.com/storybookjs/storybook/pull/23109), thanks [@&#8203;ndelangen](https://togithub.com/ndelangen)!
-   NextJS: Fix fonts not loading with 3+ words in name - [#&#8203;23121](https://togithub.com/storybookjs/storybook/pull/23121), thanks [@&#8203;ygkn](https://togithub.com/ygkn)!
-   Telemetry: Count onboarding stories - [#&#8203;23092](https://togithub.com/storybookjs/storybook/pull/23092), thanks [@&#8203;shilman](https://togithub.com/shilman)!

</details>

<details>
<summary>TexteaInc/json-viewer</summary>

### [`v3.1.1`](https://togithub.com/TexteaInc/json-viewer/blob/HEAD/CHANGELOG.md#&#8203;311-httpsgithubcomTexteaIncjson-viewercomparejson-viewer-v310json-viewer-v311-2023-06-20)

[Compare Source](https://togithub.com/TexteaInc/json-viewer/compare/ec5f7f21bc9b57f19d19ae7cbb4ca6c262ce1415...ab7a3e86b6620f1831f1781d1eff0678af450287)

##### Bug Fixes

-   trigger release ([35760ac](https://togithub.com/TexteaInc/json-viewer/commit/35760ac866b2eb665b27e9f0bd9bf27b65a96698))

### [`v3.1.0`](https://togithub.com/TexteaInc/json-viewer/blob/HEAD/CHANGELOG.md#&#8203;310-httpsgithubcomTexteaIncjson-viewercomparejson-viewer-v300json-viewer-v310-2023-06-20)

[Compare Source](https://togithub.com/TexteaInc/json-viewer/compare/624e32e286ef83757813e6ab6ee939406ee6f045...ec5f7f21bc9b57f19d19ae7cbb4ca6c262ce1415)

##### Features

-   support default inspect state with `defaultInspectControl` ([7982300](https://togithub.com/TexteaInc/json-viewer/commit/7982300b18e4202fc71f7c7226ca377edff80334))

</details>

<details>
<summary>trpc/trpc</summary>

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

[Compare Source](https://togithub.com/trpc/trpc/compare/v10.31.0...v10.32.0)

##### What's Changed

-   fix(`react-query`): fix select as transform by [@&#8203;Sheraff](https://togithub.com/Sheraff) & [@&#8203;juliusmarminge](https://togithub.com/juliusmarminge) in [https://github.com/trpc/trpc/pull/4543](https://togithub.com/trpc/trpc/pull/4543)
-   feat(`react-query`): allow for external apps in `createServerSideHelpers` by [@&#8203;KATT](https://togithub.com/KATT) & [@&#8203;EmericW](https://togithub.com/EmericW) in [https://github.com/trpc/trpc/pull/4547](https://togithub.com/trpc/trpc/pull/4547)
-   chore(`client`): change `OperationContext` from `type` to `interface` by [@&#8203;nicolassanmar](https://togithub.com/nicolassanmar) in [https://github.com/trpc/trpc/pull/4523](https://togithub.com/trpc/trpc/pull/4523)

##### New Contributors

-   [@&#8203;mkosir](https://togithub.com/mkosir) made their first contribution in [https://github.com/trpc/trpc/pull/4533](https://togithub.com/trpc/trpc/pull/4533)

**Full Changelog**: https://github.com/trpc/trpc/compare/v10.31.0...v10.32.0

</details>

<details>
<summary>vercel/storage (@&#8203;vercel/kv)</summary>

### [`v0.2.2`](https://togithub.com/vercel/storage/blob/HEAD/packages/kv/CHANGELOG.md#&#8203;022)

[Compare Source](https://togithub.com/vercel/storage/compare/@vercel/kv@0.2.1...@vercel/kv@0.2.2)

##### Patch Changes

-   [`f545e1c`](https://togithub.com/vercel/storage/commit/f545e1c): Upgrade [@&#8203;upstash/redis](https://togithub.com/upstash/redis) to the latest version
    Stop minifying and add sourcemaps for better debugging

</details>

<details>
<summary>vercel/storage (@&#8203;vercel/postgres-kysely)</summary>

### [`v0.4.0`](https://togithub.com/vercel/storage/blob/HEAD/packages/postgres-kysely/CHANGELOG.md#&#8203;040)

[Compare Source](https://togithub.com/vercel/storage/compare/@vercel/postgres-kysely@0.3.2...@vercel/postgres-kysely@0.4.0)

##### Minor Changes

-   Upgrade [@&#8203;neon/serverless](https://togithub.com/neon/serverless) to the latest version
    Automatically uses [@&#8203;neon](https://togithub.com/neon) http layer with Pool.query/sql\`\`
    Stop minifying and add sourcemaps for better debugging

##### Patch Changes

-   Updated dependencies \[[`f545e1c`](https://togithub.com/vercel/storage/commit/f545e1c)]
    -   [@&#8203;vercel/postgres](https://togithub.com/vercel/postgres)[@&#8203;0](https://togithub.com/0).4.0

### [`v0.3.2`](https://togithub.com/vercel/storage/blob/HEAD/packages/postgres-kysely/CHANGELOG.md#&#8203;032)

[Compare Source](https://togithub.com/vercel/storage/compare/@vercel/postgres-kysely@0.3.1...@vercel/postgres-kysely@0.3.2)

##### Patch Changes

-   Updated dependencies \[[`52ce540`](https://togithub.com/vercel/storage/commit/52ce540)]
    -   [@&#8203;vercel/postgres](https://togithub.com/vercel/postgres)[@&#8203;0](https://togithub.com/0).3.2

</details>

<details>
<summary>chromaui/chromatic-cli</summary>

### [`v6.19.9`](https://togithub.com/chromaui/chromatic-cli/compare/v6.19.8...v6.19.9)

[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v6.19.8...v6.19.9)

</details>

<details>
<summary>vercel/turbo</summary>

### [`v1.10.4`](https://togithub.com/vercel/turbo/releases/tag/v1.10.4): Turborepo v1.10.4

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.10.3...v1.10.4)



#### What's Changed

##### Changelog

-   release(turborepo): 1.10.3-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/5250](https://togithub.com/vercel/turbo/pull/5250)
-   feat(turborepo): Port Manual hashing by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/5237](https://togithub.com/vercel/turbo/pull/5237)
-   Docs: prior to run testcases, add guides to install dependencies for testcases. by [@&#8203;92hackers](https://togithub.com/92hackers) in [https://github.com/vercel/turbo/pull/3090](https://togithub.com/vercel/turbo/pull/3090)
-   fix(gen): fix ts config interference by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/5263](https://togithub.com/vercel/turbo/pull/5263)
-   release(turborepo): 1.10.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/5262](https://togithub.com/vercel/turbo/pull/5262)
-   feat(examples): update basic name on docs by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/5224](https://togithub.com/vercel/turbo/pull/5224)
-   feat(turborepo): port git-based hashing with inputs by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/5251](https://togithub.com/vercel/turbo/pull/5251)
-   Update .gitignore by [@&#8203;ph55](https://togithub.com/ph55) in [https://github.com/vercel/turbo/pull/5269](https://togithub.com/vercel/turbo/pull/5269)
-   feat(ci): conditionally set jest verbosity by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/5271](https://togithub.com/vercel/turbo/pull/5271)
-   fix(turborepo): Tighten build globs by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/5274](https://togithub.com/vercel/turbo/pull/5274)
-   fix(turborepo): Fix path match for parent dir in subtree match case by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/5275](https://togithub.com/vercel/turbo/pull/5275)
-   chore(turborepo): Move SCM to use vendored wax crate by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/5277](https://togithub.com/vercel/turbo/pull/5277)
-   release(turborepo): 1.10.4-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/5278](https://togithub.com/vercel/turbo/pull/5278)
-   fix(turborepo): avoid globbing directories due to ancestor truncation by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/5273](https://togithub.com/vercel/turbo/pull/5273)
-   release(turborepo): 1.10.4-canary.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/5283](https://togithub.com/vercel/turbo/pull/5283)
-   fix(spaces): read logs correctly when invoked from subdirectory by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/5284](https://togithub.com/vercel/turbo/pull/5284)
-   Synthesize --only by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/5285](https://togithub.com/vercel/turbo/pull/5285)
-   feat(turborepo): Run outline pt 2 by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/5203](https://togithub.com/vercel/turbo/pull/5203)
-   feat(lockfiles): add rust implementation for yarn1 by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/5255](https://togithub.com/vercel/turbo/pull/5255)
-   release(turborepo): 1.10.4-canary.2 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/5286](https://togithub.com/vercel/turbo/pull/5286)
-   feat(turborepo): Report more details when go-turbo exits by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/5287](https://togithub.com/vercel/turbo/pull/5287)
-   docs(examples): update examples and docs to use node 18 by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/5300](https://togithub.com/vercel/turbo/pull/5300)
-   update dependencies to sync with next.js by [@&#8203;sokra](https://togithub.com/sokra) in [https://github.com/vercel/turbo/pull/5303](https://togithub.com/vercel/turbo/pull/5303)
-   feat(cache): Add ability to disable remote cache from turbo.json by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/5305](https://togithub.com/vercel/turbo/pull/5305)
-   feat(turborepo): Hash with libgit2 by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/5309](https://togithub.com/vercel/turbo/pull/5309)
-   Add --log-order option by [@&#8203;rafaeltab](https://togithub.com/rafaeltab) in [https://github.com/vercel/turbo/pull/3916](https://togithub.com/vercel/turbo/pull/3916)
-   release(turborepo): 1.10.4-canary.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/5313](https://togithub.com/vercel/turbo/pull/5313)
-   feat(turborepo): A few cleanup nits around log grouping by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/5312](https://togithub.com/vercel/turbo/pull/5312)
-   feat(run outline): Hide package graph internals by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/5310](https://togithub.com/vercel/turbo/pull/5310)
-   feat(logging): enable setting log order with an environment variable by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/5316](https://togithub.com/vercel/turbo/pull/5316)
-   feat(cli): Add ability to pass --remote-only=false from CLI by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/5317](https://togithub.com/vercel/turbo/pull/5317)
-   fix(turborepo): Re-enable some tests on windows by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/5319](https://togithub.com/vercel/turbo/pull/5319)
-   refactor(turborepo): cli::run and args processing by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/5297](https://togithub.com/vercel/turbo/pull/5297)
-   feat(logging): add "auto" options for log prefixing and ordering by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/5320](https://togithub.com/vercel/turbo/pull/5320)
-   Fix ESLint script command. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/5322](https://togithub.com/vercel/turbo/pull/5322)
-   feat(turborepo): Add context to glob errors by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/5323](https://togithub.com/vercel/turbo/pull/5323)
-   fix(turbo): print help message when turbo called with flags/env vars but no commands by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/5329](https://togithub.com/vercel/turbo/pull/5329)
-   refactor(turborepo): Move paths to UTF-8 by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/5248](https://togithub.com/vercel/turbo/pull/5248)
-   Add Vercel to CI providers. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/5342](https://togithub.com/vercel/turbo/pull/5342)
-   fix(turborepo): Hashing symlinks is erroring by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/5340](https://togithub.com/vercel/turbo/pull/5340)
-   release(turborepo): 1.10.4-canary.4 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/5344](https://togithub.com/vercel/turbo/pull/5344)
-   fix: update ctrlc to 3.4.0 to allow have new signal handlers overwrite by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/5346](https://togithub.com/vercel/turbo/pull/5346)

#### New Contributors

-   [@&#8203;aaronbrown-vercel](https://togithub.com/aaronbrown-vercel) made their first contribution in [https://github.com/vercel/turbo/pull/5252](https://togithub.com/vercel/turbo/pull/5252)
-   [@&#8203;younggeeks](https://togithub.com/younggeeks) made their first contribution in [https://github.com/vercel/turbo/pull/4883](https://togithub.com/vercel/turbo/pull/4883)
-   [@&#8203;92hackers](https://togithub.com/92hackers) made their first contribution in [https://github.com/vercel/turbo/pull/3090](https://togithub.com/vercel/turbo/pull/3090)
-   [@&#8203;ph55](https://togithub.com/ph55) made their first contribution in [https://github.com/vercel/turbo/pull/5269](https://togithub.com/vercel/turbo/pull/5269)

**Full Changelog**: https://github.com/vercel/turbo/compare/v1.10.3...v1.10.4

</details>

<details>
<summary>i18next/i18next</summary>

### [`v23.2.3`](https://togithub.com/i18next/i18next/blob/HEAD/CHANGELOG.md#&#8203;2323)

[Compare Source](https://togithub.com/i18next/i18next/compare/v23.2.2...v23.2.3)

-   types: Optimize logic for fallback ns [19198481](https://togithub.com/i18next/i18next/pull/1984)

### [`v23.2.2`](https://togithub.com/i18next/i18next/blob/HEAD/CHANGELOG.md#&#8203;2322)

[Compare Source](https://togithub.com/i18next/i18next/compare/v23.2.1...v23.2.2)

-   types: try to fix fallbackNS type handling also for older TS version [1981](https://togithub.com/i18next/i18next/issues/1981)

</details>

<details>
<summary>scottrippey/next-router-mock</summary>

### [`v0.9.7`](https://togithub.com/scottrippey/next-router-mock/compare/v0.9.6...v0.9.7)

[Compare Source](https://togithub.com/scottrippey/next-router-mock/compare/v0.9.6...v0.9.7)

</details>

<details>
<summary>garmeeh/next-seo</summary>

### [`v6.1.0`](https://togithub.com/garmeeh/next-seo/releases/tag/v6.1.0)

[Compare Source](https://togithub.com/garmeeh/next-seo/compare/v6.0.0...v6.1.0)

-   fix readme typo ([#&#8203;1124](https://togithub.com/garmeeh/next-seo/issues/1124))  [`59c18c4`](https://togithub.com/garmeeh/next-seo/commit/59c18c4)
-   fix: [#&#8203;1118](https://togithub.com/garmeeh/next-seo/issues/1118) - added worstRating under AggregateRating type ([#&#8203;1224](https://togithub.com/garmeeh/next-seo/issues/1224))  [`c086508`](https://togithub.com/garmeeh/next-seo/commit/c086508)
-   Fix useAppDir prop value instructions when using app dir ([#&#8203;1244](https://togithub.com/garmeeh/next-seo/issues/1244))  [`ee41400`](https://togithub.com/garmeeh/next-seo/commit/ee41400)
-   Make sub fields for Place on JobPostingJsonLd optional ([#&#8203;1251](https://togithub.com/garmeeh/next-seo/issues/1251))  [`1b22541`](https://togithub.com/garmeeh/next-seo/commit/1b22541)
-   Update README.md  [`4c69f9b`](https://togithub.com/garmeeh/next-seo/commit/4c69f9b)
-   Add banner for Next.js Weekly newsletter ([#&#8203;1195](https://togithub.com/garmeeh/next-seo/issues/1195))  [`c93b9d7`](https://togithub.com/garmeeh/next-seo/commit/c93b9d7)

</details>

<details>
<summary>i18next/react-i18next</summary>

### [`v13.0.1`](https://togithub.com/i18next/react-i18next/blob/HEAD/CHANGELOG.md#&#8203;1301)

[Compare Source](https://togithub.com/i18next/react-i18next/compare/v13.0.0...v13.0.1)

-   types: Fix performance issue in Trans component [1646](https://togithub.com/i18next/react-i18next/pull/1646)

</details>

<details>
<summary>chromaui/storybook-addon-pseudo-states</summary>

### [`v2.1.0`](https://togithub.com/chromaui/storybook-addon-pseudo-states/blob/HEAD/CHANGELOG.md#v210-Thu-Jun-22-2023)

[Compare Source](https://togithub.com/chromaui/storybook-addon-pseudo-states/compare/v2.0.2...v2.1.0)

##### πŸš€ Enhancement

-   Add support for custom root element [#&#8203;65](https://togithub.com/chromaui/storybook-addon-pseudo-states/pull/65) ([@&#8203;sag1v](https://togithub.com/sag1v) [@&#8203;ghengeveld](https://togithub.com/ghengeveld))

##### Authors: 2

-   Gert Hengeveld ([@&#8203;ghengeveld](https://togithub.com/ghengeveld))
-   Sagiv ben giat ([@&#8203;sag1v](https://togithub.com/sag1v))

***

### [`v2.0.2`](https://togithub.com/chromaui/storybook-addon-pseudo-states/blob/HEAD/CHANGELOG.md#v202-Thu-Jun-22-2023)

[Compare Source](https://togithub.com/chromaui/storybook-addon-pseudo-states/compare/v2.0.1...v2.0.2)

##### πŸ› Bug Fix

-   Fix pseudo state selector menu for Storybook 7 [#&#8203;78](https://togithub.com/chromaui/storybook-addon-pseudo-states/pull/78) ([@&#8203;yasnbouz](https://togithub.com/yasnbouz) [@&#8203;ghengeveld](https://togithub.com/ghengeveld))

##### Authors: 2

-   Gert Hengeveld ([@&#8203;ghengeveld](https://togithub.com/ghengeveld))
-   Yassine El Bouziady ([@&#8203;yasnbouz](https://togithub.com/yasnbouz))

***

</details>

<details>
<summary>webpack/webpack</summary>

### [`v5.88.0`](https://togithub.com/webpack/webpack/releases/tag/v5.88.0)

[Compare Source](https://togithub.com/webpack/webpack/compare/v5.87.0...v5.88.0)

#### New Features

-   \[CSS] - Use `css/auto` as the default css mode by [@&#8203;burhanuday](https://togithub.com/burhanuday) in [https://github.com/webpack/webpack/pull/17399](https://togithub.com/webpack/webpack/pull/17399)

#### Bug Fixes

-   Fix bugs related to require.context and layer by [@&#8203;alexander-akait](https://togithub.com/alexander-akait) in [https://github.com/webpack/webpack/pull/17388](https://togithub.com/webpack/webpack/pull/17388)
-   Fix bug in runtime for CSS loading by [@&#8203;alexander-akait](https://togithub.com/alexander-akait) in [https://github.com/webpack/webpack/pull/17400](https://togithub.com/webpack/webpack/pull/17400)
-   Correct indirect call for tagged template expressions using correct this context by [@&#8203;alexander-akait](https://togithub.com/alexander-akait) in [https://github.com/webpack/webpack/pull/17397](https://togithub.com/webpack/webpack/pull/17397)
-   Update environment support for KaiOS browser by [@&#8203;steverep](https://togithub.com/steverep) in [https://github.com/webpack/webpack/pull/17395](https://togithub.com/webpack/webpack/pull/17395)
-   Fix async module runtime code for running top-level-await by [@&#8203;ahabhgk](https://togithub.com/ahabhgk) in [https://github.com/webpack/webpack/pull/17393](https://togithub.com/webpack/webpack/pull/17393)

#### Developer Experience

-   Add example for stats minimal output by [@&#8203;ersachin3112](https://togithub.com/ersachin3112) in [https://github.com/webpack/webpack/pull/17406](https://togithub.com/webpack/webpack/pull/17406)
-   Significantly improve type coverage for Dependency, Runtime, Template classes by [@&#8203;alexander-akait](https://togithub.com/alexander-akait) in [https://github.com/webpack/webpack/pull/17394](https://togithub.com/webpack/webpack/pull/17394)

#### Dependencies & Maintenance

-   Bump browserslist from 4.21.8 to 4.21.9 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/webpack/webpack/pull/17389](https://togithub.com/webpack/webpack/pull/17389)
-   Bump acorn from 8.8.2 to 8.9.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/webpack/webpack/pull/17402](https://togithub.com/webpack/webpack/pull/17402)
-   Bump eslint from 8.42.0 to 8.43.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/webpack/webpack/pull/17401](https://togithub.com/webpack/webpack/pull/17401)
-   Bump eslint-plugin-jest from 27.2.1 to 27.2.2 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/webpack/webpack/pull/17407](https://togithub.com/webpack/webpack/pull/17407)

#### New Contributors

-   [@&#8203;steverep](https://togithub.com/steverep) made their first contribution in [https://github.com/webpack/webpack/pull/17395](https://togithub.com/webpack/webpack/pull/17395)

**Full Changelog**: https://github.com/webpack/webpack/compare/v5.87.0...v5.88.0

</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: https://github.com/weareinreach/InReach/pull/619
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 Jun 27, 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 | Type | Update |
|---|---|---|---|---|---|---|---|
| [@mantine/carousel](https://mantine.dev/others/carousel/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.14` -> `6.0.15`](https://renovatebot.com/diffs/npm/@mantine%2fcarousel/6.0.14/6.0.15) | [![age](https://badges.renovateapi.com/packages/npm/@mantine%2fcarousel/6.0.15/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@mantine%2fcarousel/6.0.15/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@mantine%2fcarousel/6.0.15/compatibility-slim/6.0.14)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@mantine%2fcarousel/6.0.15/confidence-slim/6.0.14)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch |
| [@mantine/core](https://mantine.dev/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.14` -> `6.0.15`](https://renovatebot.com/diffs/npm/@mantine%2fcore/6.0.14/6.0.15) | [![age](https://badges.renovateapi.com/packages/npm/@mantine%2fcore/6.0.15/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@mantine%2fcore/6.0.15/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@mantine%2fcore/6.0.15/compatibility-slim/6.0.14)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@mantine%2fcore/6.0.15/confidence-slim/6.0.14)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch |
| [@mantine/dates](https://mantine.dev/dates/getting-started/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.14` -> `6.0.15`](https://renovatebot.com/diffs/npm/@mantine%2fdates/6.0.14/6.0.15) | [![age](https://badges.renovateapi.com/packages/npm/@mantine%2fdates/6.0.15/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@mantine%2fdates/6.0.15/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@mantine%2fdates/6.0.15/compatibility-slim/6.0.14)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@mantine%2fdates/6.0.15/confidence-slim/6.0.14)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch |
| [@mantine/dropzone](https://mantine.dev/others/dropzone/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.14` -> `6.0.15`](https://renovatebot.com/diffs/npm/@mantine%2fdropzone/6.0.14/6.0.15) | [![age](https://badges.renovateapi.com/packages/npm/@mantine%2fdropzone/6.0.15/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@mantine%2fdropzone/6.0.15/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@mantine%2fdropzone/6.0.15/compatibility-slim/6.0.14)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@mantine%2fdropzone/6.0.15/confidence-slim/6.0.14)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch |
| [@mantine/form](https://mantine.dev/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.14` -> `6.0.15`](https://renovatebot.com/diffs/npm/@mantine%2fform/6.0.14/6.0.15) | [![age](https://badges.renovateapi.com/packages/npm/@mantine%2fform/6.0.15/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@mantine%2fform/6.0.15/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@mantine%2fform/6.0.15/compatibility-slim/6.0.14)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@mantine%2fform/6.0.15/confidence-slim/6.0.14)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch |
| [@mantine/hooks](https://mantine.dev/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.14` -> `6.0.15`](https://renovatebot.com/diffs/npm/@mantine%2fhooks/6.0.14/6.0.15) | [![age](https://badges.renovateapi.com/packages/npm/@mantine%2fhooks/6.0.15/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@mantine%2fhooks/6.0.15/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@mantine%2fhooks/6.0.15/compatibility-slim/6.0.14)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@mantine%2fhooks/6.0.15/confidence-slim/6.0.14)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch |
| [@mantine/modals](https://mantine.dev/others/modals/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.14` -> `6.0.15`](https://renovatebot.com/diffs/npm/@mantine%2fmodals/6.0.14/6.0.15) | [![age](https://badges.renovateapi.com/packages/npm/@mantine%2fmodals/6.0.15/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@mantine%2fmodals/6.0.15/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@mantine%2fmodals/6.0.15/compatibility-slim/6.0.14)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@mantine%2fmodals/6.0.15/confidence-slim/6.0.14)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch |
| [@mantine/next](https://mantine.dev/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.14` -> `6.0.15`](https://renovatebot.com/diffs/npm/@mantine%2fnext/6.0.14/6.0.15) | [![age](https://badges.renovateapi.com/packages/npm/@mantine%2fnext/6.0.15/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@mantine%2fnext/6.0.15/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@mantine%2fnext/6.0.15/compatibility-slim/6.0.14)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@mantine%2fnext/6.0.15/confidence-slim/6.0.14)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch |
| [@mantine/notifications](https://mantine.dev/others/notifications/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.14` -> `6.0.15`](https://renovatebot.com/diffs/npm/@mantine%2fnotifications/6.0.14/6.0.15) | [![age](https://badges.renovateapi.com/packages/npm/@mantine%2fnotifications/6.0.15/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@mantine%2fnotifications/6.0.15/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@mantine%2fnotifications/6.0.15/compatibility-slim/6.0.14)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@mantine%2fnotifications/6.0.15/confidence-slim/6.0.14)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch |
| [@mantine/nprogress](https://mantine.dev/others/nprogress/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.14` -> `6.0.15`](https://renovatebot.com/diffs/npm/@mantine%2fnprogress/6.0.14/6.0.15) | [![age](https://badges.renovateapi.com/packages/npm/@mantine%2fnprogress/6.0.15/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@mantine%2fnprogress/6.0.15/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@mantine%2fnprogress/6.0.15/compatibility-slim/6.0.14)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@mantine%2fnprogress/6.0.15/confidence-slim/6.0.14)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch |
| [@mantine/prism](https://mantine.dev/others/prism/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.14` -> `6.0.15`](https://renovatebot.com/diffs/npm/@mantine%2fprism/6.0.14/6.0.15) | [![age](https://badges.renovateapi.com/packages/npm/@mantine%2fprism/6.0.15/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@mantine%2fprism/6.0.15/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@mantine%2fprism/6.0.15/compatibility-slim/6.0.14)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@mantine%2fprism/6.0.15/confidence-slim/6.0.14)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch |
| [@mantine/spotlight](https://mantine.dev/others/spotlight/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.14` -> `6.0.15`](https://renovatebot.com/diffs/npm/@mantine%2fspotlight/6.0.14/6.0.15) | [![age](https://badges.renovateapi.com/packages/npm/@mantine%2fspotlight/6.0.15/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@mantine%2fspotlight/6.0.15/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@mantine%2fspotlight/6.0.15/compatibility-slim/6.0.14)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@mantine%2fspotlight/6.0.15/confidence-slim/6.0.14)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch |
| [@mantine/tiptap](https://mantine.dev/others/tiptap) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.14` -> `6.0.15`](https://renovatebot.com/diffs/npm/@mantine%2ftiptap/6.0.14/6.0.15) | [![age](https://badges.renovateapi.com/packages/npm/@mantine%2ftiptap/6.0.15/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@mantine%2ftiptap/6.0.15/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@mantine%2ftiptap/6.0.15/compatibility-slim/6.0.14)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@mantine%2ftiptap/6.0.15/confidence-slim/6.0.14)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch |
| [@mantine/utils](https://mantine.dev/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.14` -> `6.0.15`](https://renovatebot.com/diffs/npm/@mantine%2futils/6.0.14/6.0.15) | [![age](https://badges.renovateapi.com/packages/npm/@mantine%2futils/6.0.15/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@mantine%2futils/6.0.15/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@mantine%2futils/6.0.15/compatibility-slim/6.0.14)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@mantine%2futils/6.0.15/confidence-slim/6.0.14)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch |
| [@prisma/client](https://www.prisma.io) ([source](https://togithub.com/prisma/prisma)) | [`4.16.0` -> `4.16.1`](https://renovatebot.com/diffs/npm/@prisma%2fclient/4.16.0/4.16.1) | [![age](https://badges.renovateapi.com/packages/npm/@prisma%2fclient/4.16.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@prisma%2fclient/4.16.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@prisma%2fclient/4.16.1/compatibility-slim/4.16.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@prisma%2fclient/4.16.1/confidence-slim/4.16.0)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch |
| [@storybook/addon-a11y](https://togithub.com/storybookjs/storybook/tree/next/code/addons/a11y) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.24`](https://renovatebot.com/diffs/npm/@storybook%2faddon-a11y/7.0.22/7.0.24) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-a11y/7.0.24/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-a11y/7.0.24/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-a11y/7.0.24/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-a11y/7.0.24/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | patch |
| [@storybook/addon-essentials](https://togithub.com/storybookjs/storybook/tree/next/code/addons/essentials) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.24`](https://renovatebot.com/diffs/npm/@storybook%2faddon-essentials/7.0.22/7.0.24) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-essentials/7.0.24/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-essentials/7.0.24/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-essentials/7.0.24/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-essentials/7.0.24/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | patch |
| [@storybook/addon-interactions](https://togithub.com/storybookjs/storybook/tree/next/code/addons/interactions) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.24`](https://renovatebot.com/diffs/npm/@storybook%2faddon-interactions/7.0.22/7.0.24) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-interactions/7.0.24/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-interactions/7.0.24/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-interactions/7.0.24/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-interactions/7.0.24/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | patch |
| [@storybook/addon-links](https://togithub.com/storybookjs/storybook/tree/next/code/addons/links) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.24`](https://renovatebot.com/diffs/npm/@storybook%2faddon-links/7.0.22/7.0.24) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-links/7.0.24/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-links/7.0.24/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-links/7.0.24/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-links/7.0.24/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | patch |
| [@storybook/addon-viewport](https://togithub.com/storybookjs/storybook/tree/next/code/addons/viewport) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.24`](https://renovatebot.com/diffs/npm/@storybook%2faddon-viewport/7.0.22/7.0.24) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-viewport/7.0.24/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-viewport/7.0.24/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-viewport/7.0.24/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-viewport/7.0.24/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | patch |
| [@storybook/blocks](https://togithub.com/storybookjs/storybook/tree/next/code/ui/blocks) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.24`](https://renovatebot.com/diffs/npm/@storybook%2fblocks/7.0.22/7.0.24) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2fblocks/7.0.24/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2fblocks/7.0.24/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2fblocks/7.0.24/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2fblocks/7.0.24/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | patch |
| [@storybook/nextjs](https://togithub.com/storybookjs/storybook/tree/next/code/frameworks/nextjs) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.24`](https://renovatebot.com/diffs/npm/@storybook%2fnextjs/7.0.22/7.0.24) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2fnextjs/7.0.24/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2fnextjs/7.0.24/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2fnextjs/7.0.24/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2fnextjs/7.0.24/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | patch |
| [@storybook/react](https://togithub.com/storybookjs/storybook/tree/next/code/renderers/react) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.24`](https://renovatebot.com/diffs/npm/@storybook%2freact/7.0.22/7.0.24) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2freact/7.0.24/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2freact/7.0.24/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2freact/7.0.24/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2freact/7.0.24/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | patch |
| [@storybook/testing-library](https://togithub.com/storybookjs/testing-library) | [`0.1.0` -> `0.2.0`](https://renovatebot.com/diffs/npm/@storybook%2ftesting-library/0.1.0/0.2.0) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2ftesting-library/0.2.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2ftesting-library/0.2.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2ftesting-library/0.2.0/compatibility-slim/0.1.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2ftesting-library/0.2.0/confidence-slim/0.1.0)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | minor |
| [@tabler/icons-react](https://tabler-icons.io) ([source](https://togithub.com/tabler/tabler-icons)) | [`2.22.0` -> `2.23.0`](https://renovatebot.com/diffs/npm/@tabler%2ficons-react/2.22.0/2.23.0) | [![age](https://badges.renovateapi.com/packages/npm/@tabler%2ficons-react/2.23.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@tabler%2ficons-react/2.23.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@tabler%2ficons-react/2.23.0/compatibility-slim/2.22.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@tabler%2ficons-react/2.23.0/confidence-slim/2.22.0)](https://docs.renovatebot.com/merge-confidence/) | dependencies | minor |
| [@tanstack/react-query](https://tanstack.com/query) ([source](https://togithub.com/tanstack/query)) | [`4.29.14` -> `4.29.19`](https://renovatebot.com/diffs/npm/@tanstack%2freact-query/4.29.14/4.29.19) | [![age](https://badges.renovateapi.com/packages/npm/@tanstack%2freact-query/4.29.19/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@tanstack%2freact-query/4.29.19/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@tanstack%2freact-query/4.29.19/compatibility-slim/4.29.14)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@tanstack%2freact-query/4.29.19/confidence-slim/4.29.14)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch |
| [@tanstack/react-query-devtools](https://tanstack.com/query) ([source](https://togithub.com/tanstack/query)) | [`4.29.14` -> `4.29.19`](https://renovatebot.com/diffs/npm/@tanstack%2freact-query-devtools/4.29.14/4.29.19) | [![age](https://badges.renovateapi.com/packages/npm/@tanstack%2freact-query-devtools/4.29.19/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@tanstack%2freact-query-devtools/4.29.19/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@tanstack%2freact-query-devtools/4.29.19/compatibility-slim/4.29.14)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@tanstack%2freact-query-devtools/4.29.19/confidence-slim/4.29.14)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch |
| [@trpc/client](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.31.0` -> `10.32.0`](https://renovatebot.com/diffs/npm/@trpc%2fclient/10.31.0/10.32.0) | [![age](https://badges.renovateapi.com/packages/npm/@trpc%2fclient/10.32.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@trpc%2fclient/10.32.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@trpc%2fclient/10.32.0/compatibility-slim/10.31.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@trpc%2fclient/10.32.0/confidence-slim/10.31.0)](https://docs.renovatebot.com/merge-confidence/) | dependencies | minor |
| [@trpc/next](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.31.0` -> `10.32.0`](https://renovatebot.com/diffs/npm/@trpc%2fnext/10.31.0/10.32.0) | [![age](https://badges.renovateapi.com/packages/npm/@trpc%2fnext/10.32.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@trpc%2fnext/10.32.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@trpc%2fnext/10.32.0/compatibility-slim/10.31.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@trpc%2fnext/10.32.0/confidence-slim/10.31.0)](https://docs.renovatebot.com/merge-confidence/) | dependencies | minor |
| [@trpc/react-query](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.31.0` -> `10.32.0`](https://renovatebot.com/diffs/npm/@trpc%2freact-query/10.31.0/10.32.0) | [![age](https://badges.renovateapi.com/packages/npm/@trpc%2freact-query/10.32.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@trpc%2freact-query/10.32.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@trpc%2freact-query/10.32.0/compatibility-slim/10.31.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@trpc%2freact-query/10.32.0/confidence-slim/10.31.0)](https://docs.renovatebot.com/merge-confidence/) | dependencies | minor |
| [@trpc/server](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.31.0` -> `10.32.0`](https://renovatebot.com/diffs/npm/@trpc%2fserver/10.31.0/10.32.0) | [![age](https://badges.renovateapi.com/packages/npm/@trpc%2fserver/10.32.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@trpc%2fserver/10.32.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@trpc%2fserver/10.32.0/compatibility-slim/10.31.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@trpc%2fserver/10.32.0/confidence-slim/10.31.0)](https://docs.renovatebot.com/merge-confidence/) | dependencies | minor |
| [@types/react](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`18.2.13` -> `18.2.14`](https://renovatebot.com/diffs/npm/@types%2freact/18.2.13/18.2.14) | [![age](https://badges.renovateapi.com/packages/npm/@types%2freact/18.2.14/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@types%2freact/18.2.14/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@types%2freact/18.2.14/compatibility-slim/18.2.13)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@types%2freact/18.2.14/confidence-slim/18.2.13)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | patch |
| [@typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/typescript-eslint) | [`5.60.0` -> `5.60.1`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/5.60.0/5.60.1) | [![age](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.60.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.60.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.60.1/compatibility-slim/5.60.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.60.1/confidence-slim/5.60.0)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | patch |
| [@typescript-eslint/parser](https://togithub.com/typescript-eslint/typescript-eslint) | [`5.60.0` -> `5.60.1`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/5.60.0/5.60.1) | [![age](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.60.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.60.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.60.1/compatibility-slim/5.60.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.60.1/confidence-slim/5.60.0)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | patch |
| [chromatic](https://www.chromatic.com) ([source](https://togithub.com/chromaui/chromatic-cli)) | [`6.19.8` -> `6.19.9`](https://renovatebot.com/diffs/npm/chromatic/6.19.8/6.19.9) | [![age](https://badges.renovateapi.com/packages/npm/chromatic/6.19.9/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/chromatic/6.19.9/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/chromatic/6.19.9/compatibility-slim/6.19.8)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/chromatic/6.19.9/confidence-slim/6.19.8)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | patch |
| [eslint-plugin-turbo](https://togithub.com/vercel/turbo) | [`1.10.3` -> `1.10.6`](https://renovatebot.com/diffs/npm/eslint-plugin-turbo/1.10.3/1.10.6) | [![age](https://badges.renovateapi.com/packages/npm/eslint-plugin-turbo/1.10.6/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/eslint-plugin-turbo/1.10.6/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/eslint-plugin-turbo/1.10.6/compatibility-slim/1.10.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/eslint-plugin-turbo/1.10.6/confidence-slim/1.10.3)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | patch |
| [i18next](https://www.i18next.com) ([source](https://togithub.com/i18next/i18next)) | [`23.2.1` -> `23.2.3`](https://renovatebot.com/diffs/npm/i18next/23.2.1/23.2.3) | [![age](https://badges.renovateapi.com/packages/npm/i18next/23.2.3/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/i18next/23.2.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/i18next/23.2.3/compatibility-slim/23.2.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/i18next/23.2.3/confidence-slim/23.2.1)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch |
| [i18next-browser-languagedetector](https://togithub.com/i18next/i18next-browser-languageDetector) | [`7.0.2` -> `7.1.0`](https://renovatebot.com/diffs/npm/i18next-browser-languagedetector/7.0.2/7.1.0) | [![age](https://badges.renovateapi.com/packages/npm/i18next-browser-languagedetector/7.1.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/i18next-browser-languagedetector/7.1.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/i18next-browser-languagedetector/7.1.0/compatibility-slim/7.0.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/i18next-browser-languagedetector/7.1.0/confidence-slim/7.0.2)](https://docs.renovatebot.com/merge-confidence/) | dependencies | minor |
| [node](https://togithub.com/nodejs/node) | `18.16.0` -> `18.16.1` | [![age](https://badges.renovateapi.com/packages/github-tags/node/v18.16.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/github-tags/node/v18.16.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/github-tags/node/v18.16.1/compatibility-slim/18.16.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/github-tags/node/v18.16.1/confidence-slim/18.16.0)](https://docs.renovatebot.com/merge-confidence/) |  | patch |
| [pnpm](https://pnpm.io) ([source](https://togithub.com/pnpm/pnpm)) | [`8.6.3` -> `8.6.5`](https://renovatebot.com/diffs/npm/pnpm/8.6.3/8.6.5) | [![age](https://badges.renovateapi.com/packages/npm/pnpm/8.6.5/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/pnpm/8.6.5/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/pnpm/8.6.5/compatibility-slim/8.6.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/pnpm/8.6.5/confidence-slim/8.6.3)](https://docs.renovatebot.com/merge-confidence/) | packageManager | patch |
| [prisma](https://www.prisma.io) ([source](https://togithub.com/prisma/prisma)) | [`4.16.0` -> `4.16.1`](https://renovatebot.com/diffs/npm/prisma/4.16.0/4.16.1) | [![age](https://badges.renovateapi.com/packages/npm/prisma/4.16.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/prisma/4.16.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/prisma/4.16.1/compatibility-slim/4.16.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/prisma/4.16.1/confidence-slim/4.16.0)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | patch |
| [react-i18next](https://togithub.com/i18next/react-i18next) | [`13.0.0` -> `13.0.1`](https://renovatebot.com/diffs/npm/react-i18next/13.0.0/13.0.1) | [![age](https://badges.renovateapi.com/packages/npm/react-i18next/13.0.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/react-i18next/13.0.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/react-i18next/13.0.1/compatibility-slim/13.0.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/react-i18next/13.0.1/confidence-slim/13.0.0)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch |
| [storybook](https://togithub.com/storybookjs/storybook/tree/next/code/lib/cli) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.24`](https://renovatebot.com/diffs/npm/storybook/7.0.22/7.0.24) | [![age](https://badges.renovateapi.com/packages/npm/storybook/7.0.24/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/storybook/7.0.24/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/storybook/7.0.24/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/storybook/7.0.24/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | patch |
| [superjson](https://togithub.com/blitz-js/superjson) | [`1.12.3` -> `1.12.4`](https://renovatebot.com/diffs/npm/superjson/1.12.3/1.12.4) | [![age](https://badges.renovateapi.com/packages/npm/superjson/1.12.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/superjson/1.12.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/superjson/1.12.4/compatibility-slim/1.12.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/superjson/1.12.4/confidence-slim/1.12.3)](https://docs.renovatebot.com/merge-confidence/) | dependencies | patch |
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.10.3` -> `1.10.6`](https://renovatebot.com/diffs/npm/turbo/1.10.3/1.10.6) | [![age](https://badges.renovateapi.com/packages/npm/turbo/1.10.6/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.10.6/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/turbo/1.10.6/compatibility-slim/1.10.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.10.6/confidence-slim/1.10.3)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | patch |

---

### Release Notes

<details>
<summary>mantinedev/mantine (@&#8203;mantine/carousel)</summary>

### [`v6.0.15`](https://togithub.com/mantinedev/mantine/releases/tag/6.0.15)

[Compare Source](https://togithub.com/mantinedev/mantine/compare/6.0.14...6.0.15)

##### What's Changed

-   `[@mantine/core]` Alert: Fix incorrect close button styles in filled variant
-   `[@mantine/core]` Fix incorrect Slider and RangeSlider precision with keyboard events
-   `[@mantine/core]` PinInput: Fix incorrect focus behavior when `Backspace` key is pressed ([#&#8203;4438](https://togithub.com/mantinedev/mantine/issues/4438))
-   `[@mantine/core]` Table: Fix `withColumnBorders` prop not working ([#&#8203;4443](https://togithub.com/mantinedev/mantine/issues/4443))
-   `[@mantine/spotlight]` Improve search performance for large actions lists ([#&#8203;4457](https://togithub.com/mantinedev/mantine/issues/4457))

##### New Contributors

-   [@&#8203;Asipita](https://togithub.com/Asipita) made their first contribution in [https://github.com/mantinedev/mantine/pull/4444](https://togithub.com/mantinedev/mantine/pull/4444)
-   [@&#8203;mrbnclt](https://togithub.com/mrbnclt) made their first contribution in [https://github.com/mantinedev/mantine/pull/4438](https://togithub.com/mantinedev/mantine/pull/4438)

**Full Changelog**: https://github.com/mantinedev/mantine/compare/6.0.14...6.0.15

</details>

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

### [`v4.16.1`](https://togithub.com/prisma/prisma/releases/tag/4.16.1)

[Compare Source](https://togithub.com/prisma/prisma/compare/4.16.0...4.16.1)

Today, we are issuing the `4.16.1` patch release.

#### Fixes in Prisma Client

-   [Field references are not available on extended clients](https://togithub.com/prisma/prisma/issues/19892)
-   [4.16.x cannot wrap `$extend` in factory function when `compilerOptions.composite` is `true`](https://togithub.com/prisma/prisma/issues/19866)
-   [Prisma Schema Type inside a Type not generating a right Payload](https://togithub.com/prisma/prisma/issues/19890)
-   [Query in findMany in prisma extends returns a wrong type](https://togithub.com/prisma/prisma/issues/19854)
-   [4.16.0 Count query is not returning the right type when in a transaction](https://togithub.com/prisma/prisma/issues/19867)
-   [FindMany returns wrong type after extending prisma client](https://togithub.com/prisma/prisma/issues/19864)
-   [Can't specify $queryRawUnsafe return type after extending prisma client](https://togithub.com/prisma/prisma/issues/19862)

</details>

<details>
<summary>storybookjs/storybook (@&#8203;storybook/addon-a11y)</summary>

### [`v7.0.24`](https://togithub.com/storybookjs/storybook/releases/tag/v7.0.24)

[Compare Source](https://togithub.com/storybookjs/storybook/compare/v7.0.23...v7.0.24)

#### 7.0.24

-   CLI: Parse pnp paths in storybook metadata - [#&#8203;23199](https://togithub.com/storybookjs/storybook/pull/23199), thanks [@&#8203;yannbf](https://togithub.com/yannbf)!
-   Dependencies: Pin `file-system-cache` to 2.3.0 - [#&#8203;23221](https://togithub.com/storybookjs/storybook/pull/23221), thanks [@&#8203;JReinhold](https://togithub.com/JReinhold)!
-   Svelte: Support v4 - [#&#8203;22905](https://togithub.com/storybookjs/storybook/pull/22905), thanks [@&#8203;JReinhold](https://togithub.com/JReinhold)!

### [`v7.0.23`](https://togithub.com/storybookjs/storybook/releases/tag/v7.0.23)

[Compare Source](https://togithub.com/storybookjs/storybook/compare/v7.0.22...v7.0.23)

#### 7.0.23

-   Core: Fix compat by disabling name mangling in `esbuild` require - [#&#8203;22486](https://togithub.com/storybookjs/storybook/pull/22486), thanks [@&#8203;youngboy](https://togithub.com/youngboy)!
-   Core: Prebundle node-logger and make it CJS only - [#&#8203;23109](https://togithub.com/storybookjs/storybook/pull/23109), thanks [@&#8203;ndelangen](https://togithub.com/ndelangen)!
-   NextJS: Fix fonts not loading with 3+ words in name - [#&#8203;23121](https://togithub.com/storybookjs/storybook/pull/23121), thanks [@&#8203;ygkn](https://togithub.com/ygkn)!
-   Telemetry: Count onboarding stories - [#&#8203;23092](https://togithub.com/storybookjs/storybook/pull/23092), thanks [@&#8203;shilman](https://togithub.com/shilman)!

</details>

<details>
<summary>storybookjs/testing-library (@&#8203;storybook/testing-library)</summary>

### [`v0.2.0`](https://togithub.com/storybookjs/testing-library/releases/tag/v0.2.0)

[Compare Source](https://togithub.com/storybookjs/testing-library/compare/v0.1.0...v0.2.0)

:tada: This release contains work from a new contributor! :tada:

Thank you, Vanessa Yuen ([@&#8203;vanessayuenn](https://togithub.com/vanessayuenn)), for all your work!

##### Release Notes

##### Upgrade user-event to v14 and testing-library to v9 ([#&#8203;43](https://togithub.com/storybookjs/testing-library/pull/43))

`@storybook/testing-library` now uses `@testing-library/dom` **version 9** and `@testing-library/user-event` **version 14**! πŸŽ‰

To refer to new features and bugfixes and you can check them in the [user-event release page](https://togithub.com/testing-library/user-event/releases/tag/v14.0.0) and [testing-library dom release page](https://togithub.com/testing-library/dom-testing-library/releases/tag/v9.0.0).

***

##### πŸš€ Enhancement

-   Release 0.2.0 [#&#8203;46](https://togithub.com/storybookjs/testing-library/pull/46) ([@&#8203;yannbf](https://togithub.com/yannbf) [@&#8203;ndelangen](https://togithub.com/ndelangen) [@&#8203;vanessayuenn](https://togithub.com/vanessayuenn))
-   Upgrade user-event to v14 and testing-library to v9 [#&#8203;43](https://togithub.com/storybookjs/testing-library/pull/43) ([@&#8203;yannbf](https://togithub.com/yannbf))
-   migrate to tsup (again) [#&#8203;38](https://togithub.com/storybookjs/testing-library/pull/38) ([@&#8203;ndelangen](https://togithub.com/ndelangen))

##### πŸ› Bug Fix

-   Lower testing library dependency range [#&#8203;47](https://togithub.com/storybookjs/testing-library/pull/47) ([@&#8203;yannbf](https://togithub.com/yannbf))
-   Change Storybook dependencies from `future` npm tag to `next` [#&#8203;44](https://togithub.com/storybookjs/testing-library/pull/44) ([@&#8203;yannbf](https://togithub.com/yannbf))
-   Revert "migrate to tsup" [#&#8203;37](https://togithub.com/storybookjs/testing-library/pull/37) ([@&#8203;ndelangen](https://togithub.com/ndelangen))
-   migrate to tsup [#&#8203;36](https://togithub.com/storybookjs/testing-library/pull/36) ([@&#8203;ndelangen](https://togithub.com/ndelangen))

##### Authors: 3

-   Norbert de Langen ([@&#8203;ndelangen](https://togithub.com/ndelangen))
-   Vanessa Yuen ([@&#8203;vanessayuenn](https://togithub.com/vanessayuenn))
-   Yann Braga ([@&#8203;yannbf](https://togithub.com/yannbf))

</details>

<details>
<summary>tabler/tabler-icons (@&#8203;tabler/icons-react)</summary>

### [`v2.23.0`](https://togithub.com/tabler/tabler-icons/releases/tag/v2.23.0): Release 2.23.0

[Compare Source](https://togithub.com/tabler/tabler-icons/compare/v2.22.0...v2.23.0)

<img src="https://github.com/tabler/tabler-icons/assets/1282324/a71d1ce0-5ce3-45d0-838c-928b6b0c4e6b" width="584" alt="" />

##### 18 new icons:

-   `arrow-bar-both`
-   `arrow-capsule`
-   `brand-microsoft-teams`
-   `brand-nodejs`
-   `brand-yandex`
-   `capsule-horizontal`
-   `capsule`
-   `chevron-left-pipe`
-   `chevron-right-pipe`
-   `device-airtag`
-   `device-vision-pro`
-   `medical-cross-circle`
-   `michelin-bib-gourmand`
-   `michelin-star-green`
-   `michelin-star`
-   `navigation-north`
-   `rectangle-rounded-bottom`
-   `rectangle-rounded-top`

Fixed icons: `ce`, `piano`

</details>

<details>
<summary>tanstack/query (@&#8203;tanstack/react-query)</summary>

### [`v4.29.19`](https://togithub.com/TanStack/query/releases/tag/v4.29.19)

[Compare Source](https://togithub.com/tanstack/query/compare/v4.29.18...v4.29.19)

Version 4.29.19 - 6/27/2023, 1:06 PM

#### Changes

##### Fix

-   types: Add pageParam type to QueryFunction generic types ([#&#8203;5623](https://togithub.com/tanstack/query/issues/5623)) ([`390e47b`](https://togithub.com/tanstack/query/commit/390e47bd)) by Mike Lyons

##### Chore

-   Update eslint config from alpha branch ([#&#8203;5632](https://togithub.com/tanstack/query/issues/5632)) ([`ddf6986`](https://togithub.com/tanstack/query/commit/ddf69860)) by Lachlan Collins

#### Packages

-   [@&#8203;tanstack/query-core](https://togithub.com/tanstack/query-core)[@&#8203;4](https://togithub.com/4).29.19
-   [@&#8203;tanstack/query-persist-client-core](https://togithub.com/tanstack/query-persist-client-core)[@&#8203;4](https://togithub.com/4).29.19
-   [@&#8203;tanstack/query-async-storage-persister](https://togithub.com/tanstack/query-async-storage-persister)[@&#8203;4](https://togithub.com/4).29.19
-   [@&#8203;tanstack/query-broadcast-client-experimental](https://togithub.com/tanstack/query-broadcast-client-experimental)[@&#8203;4](https://togithub.com/4).29.19
-   [@&#8203;tanstack/query-sync-storage-persister](https://togithub.com/tanstack/query-sync-storage-persister)[@&#8203;4](https://togithub.com/4).29.19
-   [@&#8203;tanstack/react-query](https://togithub.com/tanstack/react-query)[@&#8203;4](https://togithub.com/4).29.19
-   [@&#8203;tanstack/react-query-devtools](https://togithub.com/tanstack/react-query-devtools)[@&#8203;4](https://togithub.com/4).29.19
-   [@&#8203;tanstack/react-query-persist-client](https://togithub.com/tanstack/react-query-persist-client)[@&#8203;4](https://togithub.com/4).29.19
-   [@&#8203;tanstack/solid-query](https://togithub.com/tanstack/solid-query)[@&#8203;4](https://togithub.com/4).29.19
-   [@&#8203;tanstack/svelte-query](https://togithub.com/tanstack/svelte-query)[@&#8203;4](https://togithub.com/4).29.19
-   [@&#8203;tanstack/vue-query](https://togithub.com/tanstack/vue-query)[@&#8203;4](https://togithub.com/4).29.19

### [`v4.29.18`](https://togithub.com/TanStack/query/releases/tag/v4.29.18)

[Compare Source](https://togithub.com/tanstack/query/compare/v4.29.17...v4.29.18)

Version 4.29.18 - 6/27/2023, 7:05 AM

#### Changes

##### Fix

-   Revert "refactor(rect-query): prefer client-only import over "use client" ([#&#8203;5626](https://togithub.com/tanstack/query/issues/5626))" ([#&#8203;5630](https://togithub.com/tanstack/query/issues/5630)) ([`1c46228`](https://togithub.com/tanstack/query/commit/1c46228f)) by Dominik Dorfmeister

##### Other

-   Revert "fix(vue-query): do not subscribe on server - nuxt2 memory leak fix ([#&#8203;5576](https://togithub.com/tanstack/query/issues/5576))" ([#&#8203;5627](https://togithub.com/tanstack/query/issues/5627)) ([`3e82c58`](https://togithub.com/tanstack/query/commit/3e82c581)) by Damian Osipiuk

#### Packages

-   [@&#8203;tanstack/react-query](https://togithub.com/tanstack/react-query)[@&#8203;4](https://togithub.com/4).29.18
-   [@&#8203;tanstack/react-query-persist-client](https://togithub.com/tanstack/react-query-persist-client)[@&#8203;4](https://togithub.com/4).29.18
-   [@&#8203;tanstack/vue-query](https://togithub.com/tanstack/vue-query)[@&#8203;4](https://togithub.com/4).29.18
-   [@&#8203;tanstack/react-query-devtools](https://togithub.com/tanstack/react-query-devtools)[@&#8203;4](https://togithub.com/4).29.18

### [`v4.29.17`](https://togithub.com/TanStack/query/releases/tag/v4.29.17)

[Compare Source](https://togithub.com/tanstack/query/compare/v4.29.16...v4.29.17)

Version 4.29.17 - 6/25/2023, 2:33 PM

##### Changes

##### Refactor

-   query: add more context to "Missing queryFn" error ([#&#8203;5620](https://togithub.com/tanstack/query/issues/5620)) ([`9077bb9`](https://togithub.com/tanstack/query/commit/9077bb96)) by GLabat

##### Packages

-   [@&#8203;tanstack/query-core](https://togithub.com/tanstack/query-core)[@&#8203;4](https://togithub.com/4).29.17
-   [@&#8203;tanstack/query-persist-client-core](https://togithub.com/tanstack/query-persist-client-core)[@&#8203;4](https://togithub.com/4).29.17
-   [@&#8203;tanstack/query-async-storage-persister](https://togithub.com/tanstack/query-async-storage-persister)[@&#8203;4](https://togithub.com/4).29.17
-   [@&#8203;tanstack/query-broadcast-client-experimental](https://togithub.com/tanstack/query-broadcast-client-experimental)[@&#8203;4](https://togithub.com/4).29.17
-   [@&#8203;tanstack/query-sync-storage-persister](https://togithub.com/tanstack/query-sync-storage-persister)[@&#8203;4](https://togithub.com/4).29.17
-   [@&#8203;tanstack/react-query](https://togithub.com/tanstack/react-query)[@&#8203;4](https://togithub.com/4).29.17
-   [@&#8203;tanstack/react-query-devtools](https://togithub.com/tanstack/react-query-devtools)[@&#8203;4](https://togithub.com/4).29.17
-   [@&#8203;tanstack/react-query-persist-client](https://togithub.com/tanstack/react-query-persist-client)[@&#8203;4](https://togithub.com/4).29.17
-   [@&#8203;tanstack/solid-query](https://togithub.com/tanstack/solid-query)[@&#8203;4](https://togithub.com/4).29.17
-   [@&#8203;tanstack/svelte-query](https://togithub.com/tanstack/svelte-query)[@&#8203;4](https://togithub.com/4).29.17
-   [@&#8203;tanstack/vue-query](https://togithub.com/tanstack/vue-query)[@&#8203;4](https://togithub.com/4).29.17

### [`v4.29.16`](https://togithub.com/TanStack/query/releases/tag/v4.29.16)

[Compare Source](https://togithub.com/tanstack/query/compare/v4.29.15...v4.29.16)

Version 4.29.16 - 6/25/2023, 2:21 PM

##### Changes

##### Refactor

-   rect-query: prefer client-only import over "use client" ([#&#8203;5626](https://togithub.com/tanstack/query/issues/5626)) ([`3e25f51`](https://togithub.com/tanstack/query/commit/3e25f51d)) by Dominik Dorfmeister

##### Packages

-   [@&#8203;tanstack/react-query](https://togithub.com/tanstack/react-query)[@&#8203;4](https://togithub.com/4).29.16
-   [@&#8203;tanstack/react-query-persist-client](https://togithub.com/tanstack/react-query-persist-client)[@&#8203;4](https://togithub.com/4).29.16
-   [@&#8203;tanstack/react-query-devtools](https://togithub.com/tanstack/react-query-devtools)[@&#8203;4](https://togithub.com/4).29.16

### [`v4.29.15`](https://togithub.com/TanStack/query/releases/tag/v4.29.15)

[Compare Source](https://togithub.com/tanstack/query/compare/v4.29.14...v4.29.15)

Version 4.29.15 - 6/20/2023, 4:52 PM

#### Changes

##### Refactor

-   types: export query-cache related types ([#&#8203;5614](https://togithub.com/tanstack/query/issues/5614)) ([`c2d07d4`](https://togithub.com/tanstack/query/commit/c2d07d49)) by [@&#8203;indrajitbnikam](https://togithub.com/indrajitbnikam)

##### Docs

-   useMutation: fix incorrect `mutationKey` types ([#&#8203;5602](https://togithub.com/tanstack/query/issues/5602)) ([`28a96c7`](https://togithub.com/tanstack/query/commit/28a96c77)) by [@&#8203;CertainlyAria](https://togithub.com/CertainlyAria)
-   examples: Update useAppState in react-native example ([#&#8203;5557](https://togithub.com/tanstack/query/issues/5557)) ([`ab8dd55`](https://togithub.com/tanstack/query/commit/ab8dd555)) by Rudra Kishore G

#### Packages

-   [@&#8203;tanstack/query-core](https://togithub.com/tanstack/query-core)[@&#8203;4](https://togithub.com/4).29.15
-   [@&#8203;tanstack/query-persist-client-core](https://togithub.com/tanstack/query-persist-client-core)[@&#8203;4](https://togithub.com/4).29.15
-   [@&#8203;tanstack/query-async-storage-persister](https://togithub.com/tanstack/query-async-storage-persister)[@&#8203;4](https://togithub.com/4).29.15
-   [@&#8203;tanstack/query-broadcast-client-experimental](https://togithub.com/tanstack/query-broadcast-client-experimental)[@&#8203;4](https://togithub.com/4).29.15
-   [@&#8203;tanstack/query-sync-storage-persister](https://togithub.com/tanstack/query-sync-storage-persister)[@&#8203;4](https://togithub.com/4).29.15
-   [@&#8203;tanstack/react-query](https://togithub.com/tanstack/react-query)[@&#8203;4](https://togithub.com/4).29.15
-   [@&#8203;tanstack/react-query-devtools](https://togithub.com/tanstack/react-query-devtools)[@&#8203;4](https://togithub.com/4).29.15
-   [@&#8203;tanstack/react-query-persist-client](https://togithub.com/tanstack/react-query-persist-client)[@&#8203;4](https://togithub.com/4).29.15
-   [@&#8203;tanstack/solid-query](https://togithub.com/tanstack/solid-query)[@&#8203;4](https://togithub.com/4).29.15
-   [@&#8203;tanstack/svelte-query](https://togithub.com/tanstack/svelte-query)[@&#8203;4](https://togithub.com/4).29.15
-   [@&#8203;tanstack/vue-query](https://togithub.com/tanstack/vue-query)[@&#8203;4](https://togithub.com/4).29.15

</details>

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

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

[Compare Source](https://togithub.com/trpc/trpc/compare/v10.31.0...v10.32.0)

##### What's Changed

-   fix(`react-query`): fix select as transform by [@&#8203;Sheraff](https://togithub.com/Sheraff) & [@&#8203;juliusmarminge](https://togithub.com/juliusmarminge) in [https://github.com/trpc/trpc/pull/4543](https://togithub.com/trpc/trpc/pull/4543)
-   feat(`react-query`): allow for external apps in `createServerSideHelpers` by [@&#8203;KATT](https://togithub.com/KATT) & [@&#8203;EmericW](https://togithub.com/EmericW) in [https://github.com/trpc/trpc/pull/4547](https://togithub.com/trpc/trpc/pull/4547)
-   chore(`client`): change `OperationContext` from `type` to `interface` by [@&#8203;nicolassanmar](https://togithub.com/nicolassanmar) in [https://github.com/trpc/trpc/pull/4523](https://togithub.com/trpc/trpc/pull/4523)

##### New Contributors

-   [@&#8203;mkosir](https://togithub.com/mkosir) made their first contribution in [https://github.com/trpc/trpc/pull/4533](https://togithub.com/trpc/trpc/pull/4533)

**Full Changelog**: https://github.com/trpc/trpc/compare/v10.31.0...v10.32.0

</details>

<details>
<summary>typescript-eslint/typescript-eslint (@&#8203;typescript-eslint/eslint-plugin)</summary>

### [`v5.60.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#&#8203;5601-httpsgithubcomtypescript-eslinttypescript-eslintcomparev5600v5601-2023-06-26)

[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.60.0...v5.60.1)

**Note:** Version bump only for package [@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)

You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.

</details>

<details>
<summary>typescript-eslint/typescript-eslint (@&#8203;typescript-eslint/parser)</summary>

### [`v5.60.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#&#8203;5601-httpsgithubcomtypescript-eslinttypescript-eslintcomparev5600v5601-2023-06-26)

[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.60.0...v5.60.1)

**Note:** Version bump only for package [@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)

You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.

</details>

<details>
<summary>chromaui/chromatic-cli (chromatic)</summary>

### [`v6.19.9`](https://togithub.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#&#8203;6199---2023-06-22)

[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v6.19.8...v6.19.9)

-   [734](https://togithub.com/chromaui/chromatic-cli/pull/734) Add support for `release` event to Github action.
-   [750](https://togithub.com/chromaui/chromatic-cli/pull/750) Update CI to store tokens in environment variables
-   [775](https://togithub.com/chromaui/chromatic-cli/pull/775) Increase timeout for Git command(s) execution

</details>

<details>
<summary>vercel/turbo (eslint-plugin-turbo)</summary>

### [`v1.10.6`](https://togithub.com/vercel/turbo/releases/tag/v1.10.6): Turborepo v1.10.6

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.10.5...v1.10.6)



#### What's Changed

##### Changelog

-   feat(turborepo): Scripts to build a debug version on windows by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/5007](https://togithub.com/vercel/turbo/pull/5007)
-   release(turborepo): 1.10.5 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/5364](https://togithub.com/vercel/turbo/pull/5364)
-   fix: prevent looking up workspace task if name is not in there by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/5370](https://togithub.com/vercel/turbo/pull/5370)
-   fix(turborepo): Restructure spaces client and test error handling by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/5367](https://togithub.com/vercel/turbo/pull/5367)

**Full Changelog**: https://github.com/vercel/turbo/compare/v1.10.5...v1.10.6

### [`v1.10.5`](https://togithub.com/vercel/turbo/releases/tag/v1.10.5): Turborepo v1.10.5

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.10.4...v1.10.5)

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: https://github.com/weareinreach/GLAAD/pull/79
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Jul 22, 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.

feat: OperationContext should be an interface to be able to extend it
3 participants