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

build(deps-dev): bump typedoc from 0.23.28 to 0.24.1 #241

Merged
merged 1 commit into from
Apr 10, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 10, 2023

Bumps typedoc from 0.23.28 to 0.24.1.

Release notes

Sourced from typedoc's releases.

v0.24.1

Bug Fixes

  • Improve detection for legacy JSDoc @example tags, #2222.
  • The page footer will now appear at the bottom of the page even if the page is short, #2223.

v0.24.0

Breaking Changes

  • @link, @linkcode and @linkplain tags will now be resolved with TypeScript's link resolution by default. The useTsLinkResolution option can be used to turn this behavior off, but be aware that doing so will mean your links will be resolved differently by editor tooling and TypeDoc.
  • TypeDoc will no longer automatically load plugins from node_modules. Specify the --plugin option to indicate which modules should be loaded.
  • The packages entry point strategy will now run TypeDoc in each provided package directory and then merge the results together. The previous packages strategy has been preserved under legacy-packages and will be removed in 0.25. If the new strategy does not work for your use case, please open an issue.
  • Removed --logger option, to disable all logging, set the logLevel option to none.
  • Dropped support for legacy [[link]]s, removed deprecated Reflection.findReflectionByName.
  • Added @overload to default ignored tags.

API Breaking Changes

  • The label property on Reflection has moved to Comment.
  • The default value of the out option has been changed from "" to "./docs", #2195.
  • Renamed DeclarationReflection#version to DeclarationReflection#projectVersion to match property on ProjectReflection.
  • Removed unused Reflection#originalName.
  • Removed Reflection#kindString, use ReflectionKind.singularString(reflection.kind) or ReflectionKind.pluralString(reflection.kind) instead.
  • The named-tuple-member and template-literal type kind have been replaced with namedTupleMember and templateLiteral, #2100.
  • Properties related to rendering are no longer stored on Reflection, including url, anchor, hasOwnDocument, and cssClasses.
  • Application.bootstrap will no longer load plugins. If you want to load plugins, use Application.bootstrapWithPlugins instead, #1635.
  • The options passed to Application.bootstrap will now be applied both before and after reading options files, which may cause a change in configuration if using a custom script to run TypeDoc that includes some options, but other options are set in config files.
  • Moved sources property previously declared on base Reflection class to DeclarationReflection and SignatureReflection.
  • Moved relevanceBoost from ContainerReflection to DeclarationReflection since setting it on the parent class has no effect.
  • Removed internal ReferenceType.getSymbol, reference types no longer reference the ts.Symbol to enable generation from serialized JSON.
  • OptionsReader.priority has been renamed to OptionsReader.order to more accurately reflect how it works.
  • ReferenceTypes which point to type parameters will now always be intentionally broken since they were never linked and should not be warned about when validating exports.
  • ReferenceTypes now longer include an id property for their target. They now instead include a target property.
  • Removed Renderer.addExternalSymbolResolver, use Converter.addExternalSymbolResolver instead.
  • Removed CallbackLogger.
  • Removed SerializeEventData from serialization events.
  • A PageEvent is now required for getRenderContext. If caching the context object, page must be updated when getRenderContext is called.
  • PageEvent no longer includes the template property. The Theme.render method is now expected to take the template to render the page with as its second argument.
  • Removed secondaryNavigation member on DefaultThemeRenderContext.
  • Renamed navigation to sidebar on DefaultThemeRenderContext and navigation.begin/navigation.end hooks to sidebar.begin/sidebar.end.

Features

  • Added --useTsLinkResolution option (on by default) which tells TypeDoc to use TypeScript's @link resolution.

... (truncated)

Changelog

Sourced from typedoc's changelog.

v0.24.1 (2023-04-09)

Bug Fixes

  • Improve detection for legacy JSDoc @example tags, #2222.
  • The page footer will now appear at the bottom of the page even if the page is short, #2223.

v0.24.0 (2023-04-08)

Breaking Changes

  • @link, @linkcode and @linkplain tags will now be resolved with TypeScript's link resolution by default. The useTsLinkResolution option can be used to turn this behavior off, but be aware that doing so will mean your links will be resolved differently by editor tooling and TypeDoc.
  • TypeDoc will no longer automatically load plugins from node_modules. Specify the --plugin option to indicate which modules should be loaded.
  • The packages entry point strategy will now run TypeDoc in each provided package directory and then merge the results together. The previous packages strategy has been preserved under legacy-packages and will be removed in 0.25. If the new strategy does not work for your use case, please open an issue.
  • Removed --logger option, to disable all logging, set the logLevel option to none.
  • Dropped support for legacy [[link]]s, removed deprecated Reflection.findReflectionByName.
  • Added @overload to default ignored tags.

API Breaking Changes

  • The label property on Reflection has moved to Comment.
  • The default value of the out option has been changed from "" to "./docs", #2195.
  • Renamed DeclarationReflection#version to DeclarationReflection#projectVersion to match property on ProjectReflection.
  • Removed unused Reflection#originalName.
  • Removed Reflection#kindString, use ReflectionKind.singularString(reflection.kind) or ReflectionKind.pluralString(reflection.kind) instead.
  • The named-tuple-member and template-literal type kind have been replaced with namedTupleMember and templateLiteral, #2100.
  • Properties related to rendering are no longer stored on Reflection, including url, anchor, hasOwnDocument, and cssClasses.
  • Application.bootstrap will no longer load plugins. If you want to load plugins, use Application.bootstrapWithPlugins instead, #1635.
  • The options passed to Application.bootstrap will now be applied both before and after reading options files, which may cause a change in configuration if using a custom script to run TypeDoc that includes some options, but other options are set in config files.
  • Moved sources property previously declared on base Reflection class to DeclarationReflection and SignatureReflection.
  • Moved relevanceBoost from ContainerReflection to DeclarationReflection since setting it on the parent class has no effect.
  • Removed internal ReferenceType.getSymbol, reference types no longer reference the ts.Symbol to enable generation from serialized JSON.
  • OptionsReader.priority has been renamed to OptionsReader.order to more accurately reflect how it works.
  • ReferenceTypes which point to type parameters will now always be intentionally broken since they were never linked and should not be warned about when validating exports.
  • ReferenceTypes now longer include an id property for their target. They now instead include a target property.
  • Removed Renderer.addExternalSymbolResolver, use Converter.addExternalSymbolResolver instead.
  • Removed CallbackLogger.
  • Removed SerializeEventData from serialization events.
  • A PageEvent is now required for getRenderContext. If caching the context object, page must be updated when getRenderContext is called.
  • PageEvent no longer includes the template property. The Theme.render method is now expected to take the template to render the page with as its second argument.
  • Removed secondaryNavigation member on DefaultThemeRenderContext.
  • Renamed navigation to sidebar on DefaultThemeRenderContext and navigation.begin/navigation.end hooks to sidebar.begin/sidebar.end.

Features

  • Added --useTsLinkResolution option (on by default) which tells TypeDoc to use TypeScript's @link resolution.

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [typedoc](https://github.com/TypeStrong/TypeDoc) from 0.23.28 to 0.24.1.
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases)
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md)
- [Commits](TypeStrong/typedoc@v0.23.28...v0.24.1)

---
updated-dependencies:
- dependency-name: typedoc
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Apr 10, 2023
@andrii-bodnar andrii-bodnar merged commit 4ff1c9b into master Apr 10, 2023
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/master/typedoc-0.24.1 branch April 10, 2023 18:19
kodiakhq bot added a commit to weareinreach/InReach that referenced this pull request May 29, 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.338.0` -> `3.341.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-cognito-identity-provider/3.338.0/3.341.0) | [![age](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-cognito-identity-provider/3.341.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-cognito-identity-provider/3.341.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-cognito-identity-provider/3.341.0/compatibility-slim/3.338.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-cognito-identity-provider/3.341.0/confidence-slim/3.338.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.338.0` -> `3.341.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-s3/3.338.0/3.341.0) | [![age](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-s3/3.341.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-s3/3.341.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-s3/3.341.0/compatibility-slim/3.338.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-s3/3.341.0/confidence-slim/3.338.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.338.0` -> `3.341.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fsignature-v4/3.338.0/3.341.0) | [![age](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fsignature-v4/3.341.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fsignature-v4/3.341.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fsignature-v4/3.341.0/compatibility-slim/3.338.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fsignature-v4/3.341.0/confidence-slim/3.338.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@babel/core](https://babel.dev/docs/en/next/babel-core) ([source](https://togithub.com/babel/babel)) | [`7.21.8` -> `7.22.1`](https://renovatebot.com/diffs/npm/@babel%2fcore/7.21.8/7.22.1) | [![age](https://badges.renovateapi.com/packages/npm/@babel%2fcore/7.22.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@babel%2fcore/7.22.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@babel%2fcore/7.22.1/compatibility-slim/7.21.8)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@babel%2fcore/7.22.1/confidence-slim/7.21.8)](https://docs.renovatebot.com/merge-confidence/) |
| [@babel/plugin-transform-typescript](https://babel.dev/docs/en/next/babel-plugin-transform-typescript) ([source](https://togithub.com/babel/babel)) | [`7.21.3` -> `7.22.3`](https://renovatebot.com/diffs/npm/@babel%2fplugin-transform-typescript/7.21.3/7.22.3) | [![age](https://badges.renovateapi.com/packages/npm/@babel%2fplugin-transform-typescript/7.22.3/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@babel%2fplugin-transform-typescript/7.22.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@babel%2fplugin-transform-typescript/7.22.3/compatibility-slim/7.21.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@babel%2fplugin-transform-typescript/7.22.3/confidence-slim/7.21.3)](https://docs.renovatebot.com/merge-confidence/) |
| [@babel/preset-env](https://babel.dev/docs/en/next/babel-preset-env) ([source](https://togithub.com/babel/babel)) | [`7.21.5` -> `7.22.4`](https://renovatebot.com/diffs/npm/@babel%2fpreset-env/7.21.5/7.22.4) | [![age](https://badges.renovateapi.com/packages/npm/@babel%2fpreset-env/7.22.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@babel%2fpreset-env/7.22.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@babel%2fpreset-env/7.22.4/compatibility-slim/7.21.5)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@babel%2fpreset-env/7.22.4/confidence-slim/7.21.5)](https://docs.renovatebot.com/merge-confidence/) |
| [@babel/preset-react](https://babel.dev/docs/en/next/babel-preset-react) ([source](https://togithub.com/babel/babel)) | [`7.18.6` -> `7.22.3`](https://renovatebot.com/diffs/npm/@babel%2fpreset-react/7.18.6/7.22.3) | [![age](https://badges.renovateapi.com/packages/npm/@babel%2fpreset-react/7.22.3/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@babel%2fpreset-react/7.22.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@babel%2fpreset-react/7.22.3/compatibility-slim/7.18.6)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@babel%2fpreset-react/7.22.3/confidence-slim/7.18.6)](https://docs.renovatebot.com/merge-confidence/) |
| [@crowdin/crowdin-api-client](https://togithub.com/crowdin/crowdin-api-client-js) | [`1.22.1` -> `1.23.1`](https://renovatebot.com/diffs/npm/@crowdin%2fcrowdin-api-client/1.22.1/1.23.1) | [![age](https://badges.renovateapi.com/packages/npm/@crowdin%2fcrowdin-api-client/1.23.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@crowdin%2fcrowdin-api-client/1.23.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@crowdin%2fcrowdin-api-client/1.23.1/compatibility-slim/1.22.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@crowdin%2fcrowdin-api-client/1.23.1/confidence-slim/1.22.1)](https://docs.renovatebot.com/merge-confidence/) |
| [@iconify-json/carbon](https://icon-sets.iconify.design/carbon/) | [`1.1.16` -> `1.1.17`](https://renovatebot.com/diffs/npm/@iconify-json%2fcarbon/1.1.16/1.1.17) | [![age](https://badges.renovateapi.com/packages/npm/@iconify-json%2fcarbon/1.1.17/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@iconify-json%2fcarbon/1.1.17/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@iconify-json%2fcarbon/1.1.17/compatibility-slim/1.1.16)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@iconify-json%2fcarbon/1.1.17/confidence-slim/1.1.16)](https://docs.renovatebot.com/merge-confidence/) |
| [@iconify-json/simple-icons](https://icon-sets.iconify.design/simple-icons/) | [`1.1.54` -> `1.1.55`](https://renovatebot.com/diffs/npm/@iconify-json%2fsimple-icons/1.1.54/1.1.55) | [![age](https://badges.renovateapi.com/packages/npm/@iconify-json%2fsimple-icons/1.1.55/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@iconify-json%2fsimple-icons/1.1.55/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@iconify-json%2fsimple-icons/1.1.55/compatibility-slim/1.1.54)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@iconify-json%2fsimple-icons/1.1.55/confidence-slim/1.1.54)](https://docs.renovatebot.com/merge-confidence/) |
| [@playwright/test](https://playwright.dev) ([source](https://togithub.com/Microsoft/playwright)) | [`1.34.2` -> `1.34.3`](https://renovatebot.com/diffs/npm/@playwright%2ftest/1.34.2/1.34.3) | [![age](https://badges.renovateapi.com/packages/npm/@playwright%2ftest/1.34.3/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@playwright%2ftest/1.34.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@playwright%2ftest/1.34.3/compatibility-slim/1.34.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@playwright%2ftest/1.34.3/confidence-slim/1.34.2)](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.17` -> `7.0.18`](https://renovatebot.com/diffs/npm/@storybook%2faddon-a11y/7.0.17/7.0.18) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-a11y/7.0.18/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-a11y/7.0.18/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-a11y/7.0.18/compatibility-slim/7.0.17)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-a11y/7.0.18/confidence-slim/7.0.17)](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.17` -> `7.0.18`](https://renovatebot.com/diffs/npm/@storybook%2faddon-actions/7.0.17/7.0.18) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-actions/7.0.18/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-actions/7.0.18/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-actions/7.0.18/compatibility-slim/7.0.17)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-actions/7.0.18/confidence-slim/7.0.17)](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.17` -> `7.0.18`](https://renovatebot.com/diffs/npm/@storybook%2faddon-docs/7.0.17/7.0.18) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-docs/7.0.18/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-docs/7.0.18/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-docs/7.0.18/compatibility-slim/7.0.17)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-docs/7.0.18/confidence-slim/7.0.17)](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.17` -> `7.0.18`](https://renovatebot.com/diffs/npm/@storybook%2faddon-essentials/7.0.17/7.0.18) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-essentials/7.0.18/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-essentials/7.0.18/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-essentials/7.0.18/compatibility-slim/7.0.17)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-essentials/7.0.18/confidence-slim/7.0.17)](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.17` -> `7.0.18`](https://renovatebot.com/diffs/npm/@storybook%2faddon-interactions/7.0.17/7.0.18) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-interactions/7.0.18/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-interactions/7.0.18/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-interactions/7.0.18/compatibility-slim/7.0.17)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-interactions/7.0.18/confidence-slim/7.0.17)](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.17` -> `7.0.18`](https://renovatebot.com/diffs/npm/@storybook%2faddon-links/7.0.17/7.0.18) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-links/7.0.18/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-links/7.0.18/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-links/7.0.18/compatibility-slim/7.0.17)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-links/7.0.18/confidence-slim/7.0.17)](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.17` -> `7.0.18`](https://renovatebot.com/diffs/npm/@storybook%2faddon-viewport/7.0.17/7.0.18) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-viewport/7.0.18/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-viewport/7.0.18/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-viewport/7.0.18/compatibility-slim/7.0.17)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-viewport/7.0.18/confidence-slim/7.0.17)](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.17` -> `7.0.18`](https://renovatebot.com/diffs/npm/@storybook%2fcomponents/7.0.17/7.0.18) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2fcomponents/7.0.18/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2fcomponents/7.0.18/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2fcomponents/7.0.18/compatibility-slim/7.0.17)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2fcomponents/7.0.18/confidence-slim/7.0.17)](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.17` -> `7.0.18`](https://renovatebot.com/diffs/npm/@storybook%2fcore-events/7.0.17/7.0.18) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2fcore-events/7.0.18/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2fcore-events/7.0.18/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2fcore-events/7.0.18/compatibility-slim/7.0.17)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2fcore-events/7.0.18/confidence-slim/7.0.17)](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.17` -> `7.0.18`](https://renovatebot.com/diffs/npm/@storybook%2fmanager-api/7.0.17/7.0.18) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2fmanager-api/7.0.18/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2fmanager-api/7.0.18/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2fmanager-api/7.0.18/compatibility-slim/7.0.17)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2fmanager-api/7.0.18/confidence-slim/7.0.17)](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.17` -> `7.0.18`](https://renovatebot.com/diffs/npm/@storybook%2fnextjs/7.0.17/7.0.18) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2fnextjs/7.0.18/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2fnextjs/7.0.18/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2fnextjs/7.0.18/compatibility-slim/7.0.17)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2fnextjs/7.0.18/confidence-slim/7.0.17)](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.17` -> `7.0.18`](https://renovatebot.com/diffs/npm/@storybook%2fpreview-api/7.0.17/7.0.18) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2fpreview-api/7.0.18/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2fpreview-api/7.0.18/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2fpreview-api/7.0.18/compatibility-slim/7.0.17)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2fpreview-api/7.0.18/confidence-slim/7.0.17)](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.17` -> `7.0.18`](https://renovatebot.com/diffs/npm/@storybook%2freact/7.0.17/7.0.18) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2freact/7.0.18/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2freact/7.0.18/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2freact/7.0.18/compatibility-slim/7.0.17)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2freact/7.0.18/confidence-slim/7.0.17)](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.17` -> `7.0.18`](https://renovatebot.com/diffs/npm/@storybook%2ftheming/7.0.17/7.0.18) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2ftheming/7.0.18/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2ftheming/7.0.18/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2ftheming/7.0.18/compatibility-slim/7.0.17)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2ftheming/7.0.18/confidence-slim/7.0.17)](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.17` -> `7.0.18`](https://renovatebot.com/diffs/npm/@storybook%2ftypes/7.0.17/7.0.18) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2ftypes/7.0.18/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2ftypes/7.0.18/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2ftypes/7.0.18/compatibility-slim/7.0.17)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2ftypes/7.0.18/confidence-slim/7.0.17)](https://docs.renovatebot.com/merge-confidence/) |
| [@tanstack/react-query](https://tanstack.com/query) ([source](https://togithub.com/tanstack/query)) | [`4.29.7` -> `4.29.12`](https://renovatebot.com/diffs/npm/@tanstack%2freact-query/4.29.7/4.29.12) | [![age](https://badges.renovateapi.com/packages/npm/@tanstack%2freact-query/4.29.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@tanstack%2freact-query/4.29.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@tanstack%2freact-query/4.29.12/compatibility-slim/4.29.7)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@tanstack%2freact-query/4.29.12/confidence-slim/4.29.7)](https://docs.renovatebot.com/merge-confidence/) |
| [@tanstack/react-query-devtools](https://tanstack.com/query) ([source](https://togithub.com/tanstack/query)) | [`4.29.7` -> `4.29.12`](https://renovatebot.com/diffs/npm/@tanstack%2freact-query-devtools/4.29.7/4.29.12) | [![age](https://badges.renovateapi.com/packages/npm/@tanstack%2freact-query-devtools/4.29.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@tanstack%2freact-query-devtools/4.29.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@tanstack%2freact-query-devtools/4.29.12/compatibility-slim/4.29.7)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@tanstack%2freact-query-devtools/4.29.12/confidence-slim/4.29.7)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/client](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.27.1` -> `10.28.0`](https://renovatebot.com/diffs/npm/@trpc%2fclient/10.27.1/10.28.0) | [![age](https://badges.renovateapi.com/packages/npm/@trpc%2fclient/10.28.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@trpc%2fclient/10.28.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@trpc%2fclient/10.28.0/compatibility-slim/10.27.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@trpc%2fclient/10.28.0/confidence-slim/10.27.1)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/next](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.27.1` -> `10.28.0`](https://renovatebot.com/diffs/npm/@trpc%2fnext/10.27.1/10.28.0) | [![age](https://badges.renovateapi.com/packages/npm/@trpc%2fnext/10.28.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@trpc%2fnext/10.28.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@trpc%2fnext/10.28.0/compatibility-slim/10.27.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@trpc%2fnext/10.28.0/confidence-slim/10.27.1)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/react-query](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.27.1` -> `10.28.0`](https://renovatebot.com/diffs/npm/@trpc%2freact-query/10.27.1/10.28.0) | [![age](https://badges.renovateapi.com/packages/npm/@trpc%2freact-query/10.28.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@trpc%2freact-query/10.28.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@trpc%2freact-query/10.28.0/compatibility-slim/10.27.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@trpc%2freact-query/10.28.0/confidence-slim/10.27.1)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/server](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.27.1` -> `10.28.0`](https://renovatebot.com/diffs/npm/@trpc%2fserver/10.27.1/10.28.0) | [![age](https://badges.renovateapi.com/packages/npm/@trpc%2fserver/10.28.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@trpc%2fserver/10.28.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@trpc%2fserver/10.28.0/compatibility-slim/10.27.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@trpc%2fserver/10.28.0/confidence-slim/10.27.1)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/babel__core](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/babel__core) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`7.20.0` -> `7.20.1`](https://renovatebot.com/diffs/npm/@types%2fbabel__core/7.20.0/7.20.1) | [![age](https://badges.renovateapi.com/packages/npm/@types%2fbabel__core/7.20.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@types%2fbabel__core/7.20.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@types%2fbabel__core/7.20.1/compatibility-slim/7.20.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@types%2fbabel__core/7.20.1/confidence-slim/7.20.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/google.maps](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/google.maps) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`3.53.1` -> `3.53.2`](https://renovatebot.com/diffs/npm/@types%2fgoogle.maps/3.53.1/3.53.2) | [![age](https://badges.renovateapi.com/packages/npm/@types%2fgoogle.maps/3.53.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@types%2fgoogle.maps/3.53.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@types%2fgoogle.maps/3.53.2/compatibility-slim/3.53.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@types%2fgoogle.maps/3.53.2/confidence-slim/3.53.1)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`18.16.14` -> `18.16.16`](https://renovatebot.com/diffs/npm/@types%2fnode/18.16.14/18.16.16) | [![age](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.16.16/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.16.16/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.16.16/compatibility-slim/18.16.14)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.16.16/confidence-slim/18.16.14)](https://docs.renovatebot.com/merge-confidence/) |
| [@typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/typescript-eslint) | [`5.59.7` -> `5.59.8`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/5.59.7/5.59.8) | [![age](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.59.8/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.59.8/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.59.8/compatibility-slim/5.59.7)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.59.8/confidence-slim/5.59.7)](https://docs.renovatebot.com/merge-confidence/) |
| [@typescript-eslint/parser](https://togithub.com/typescript-eslint/typescript-eslint) | [`5.59.7` -> `5.59.8`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/5.59.7/5.59.8) | [![age](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.59.8/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.59.8/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.59.8/compatibility-slim/5.59.7)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.59.8/confidence-slim/5.59.7)](https://docs.renovatebot.com/merge-confidence/) |
| [css-loader](https://togithub.com/webpack-contrib/css-loader) | [`6.7.4` -> `6.8.1`](https://renovatebot.com/diffs/npm/css-loader/6.7.4/6.8.1) | [![age](https://badges.renovateapi.com/packages/npm/css-loader/6.8.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/css-loader/6.8.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/css-loader/6.8.1/compatibility-slim/6.7.4)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/css-loader/6.8.1/confidence-slim/6.7.4)](https://docs.renovatebot.com/merge-confidence/) |
| [i18next-browser-languagedetector](https://togithub.com/i18next/i18next-browser-languageDetector) | [`7.0.1` -> `7.0.2`](https://renovatebot.com/diffs/npm/i18next-browser-languagedetector/7.0.1/7.0.2) | [![age](https://badges.renovateapi.com/packages/npm/i18next-browser-languagedetector/7.0.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/i18next-browser-languagedetector/7.0.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/i18next-browser-languagedetector/7.0.2/compatibility-slim/7.0.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/i18next-browser-languagedetector/7.0.2/confidence-slim/7.0.1)](https://docs.renovatebot.com/merge-confidence/) |
| [kysely](https://togithub.com/koskimas/kysely) | [`0.24.2` -> `0.25.0`](https://renovatebot.com/diffs/npm/kysely/0.24.2/0.25.0) | [![age](https://badges.renovateapi.com/packages/npm/kysely/0.25.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/kysely/0.25.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/kysely/0.25.0/compatibility-slim/0.24.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/kysely/0.25.0/confidence-slim/0.24.2)](https://docs.renovatebot.com/merge-confidence/) |
| [libphonenumber-js](https://gitlab.com/catamphetamine/libphonenumber-js) | [`1.10.30` -> `1.10.31`](https://renovatebot.com/diffs/npm/libphonenumber-js/1.10.30/1.10.31) | [![age](https://badges.renovateapi.com/packages/npm/libphonenumber-js/1.10.31/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/libphonenumber-js/1.10.31/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/libphonenumber-js/1.10.31/compatibility-slim/1.10.30)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/libphonenumber-js/1.10.31/confidence-slim/1.10.30)](https://docs.renovatebot.com/merge-confidence/) |
| [pnpm](https://pnpm.io) ([source](https://togithub.com/pnpm/pnpm)) | [`8.5.1` -> `8.6.0`](https://renovatebot.com/diffs/npm/pnpm/8.5.1/8.6.0) | [![age](https://badges.renovateapi.com/packages/npm/pnpm/8.6.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/pnpm/8.6.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/pnpm/8.6.0/compatibility-slim/8.5.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/pnpm/8.6.0/confidence-slim/8.5.1)](https://docs.renovatebot.com/merge-confidence/) |
| [postcss-loader](https://togithub.com/webpack-contrib/postcss-loader) | [`7.3.0` -> `7.3.2`](https://renovatebot.com/diffs/npm/postcss-loader/7.3.0/7.3.2) | [![age](https://badges.renovateapi.com/packages/npm/postcss-loader/7.3.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/postcss-loader/7.3.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/postcss-loader/7.3.2/compatibility-slim/7.3.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/postcss-loader/7.3.2/confidence-slim/7.3.0)](https://docs.renovatebot.com/merge-confidence/) |
| [quicktype-core](https://togithub.com/quicktype/quicktype) | [`23.0.36` -> `23.0.37`](https://renovatebot.com/diffs/npm/quicktype-core/23.0.36/23.0.37) | [![age](https://badges.renovateapi.com/packages/npm/quicktype-core/23.0.37/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/quicktype-core/23.0.37/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/quicktype-core/23.0.37/compatibility-slim/23.0.36)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/quicktype-core/23.0.37/confidence-slim/23.0.36)](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.17` -> `7.0.18`](https://renovatebot.com/diffs/npm/storybook/7.0.17/7.0.18) | [![age](https://badges.renovateapi.com/packages/npm/storybook/7.0.18/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/storybook/7.0.18/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/storybook/7.0.18/compatibility-slim/7.0.17)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/storybook/7.0.18/confidence-slim/7.0.17)](https://docs.renovatebot.com/merge-confidence/) |
| [webpack](https://togithub.com/webpack/webpack) | [`5.83.1` -> `5.84.1`](https://renovatebot.com/diffs/npm/webpack/5.83.1/5.84.1) | [![age](https://badges.renovateapi.com/packages/npm/webpack/5.84.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/webpack/5.84.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/webpack/5.84.1/compatibility-slim/5.83.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/webpack/5.84.1/confidence-slim/5.83.1)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

### [`v3.341.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-cognito-identity-provider/CHANGELOG.md#&#8203;33410-httpsgithubcomawsaws-sdk-js-v3comparev33400v33410-2023-05-26)

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

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

</details>

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

### [`v3.341.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#&#8203;33410-httpsgithubcomawsaws-sdk-js-v3comparev33400v33410-2023-05-26)

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

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

</details>

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

### [`v3.341.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/packages/signature-v4/CHANGELOG.md#&#8203;33410-httpsgithubcomawsaws-sdk-js-v3comparev33400v33410-2023-05-26)

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

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

</details>

<details>
<summary>babel/babel</summary>

### [`v7.22.1`](https://togithub.com/babel/babel/blob/HEAD/CHANGELOG.md#v7221-2023-05-26)

[Compare Source](https://togithub.com/babel/babel/compare/v7.22.0...v7.22.1)

##### :bug: Bug Fix

-   `babel-preset-env`
    -   [#&#8203;15658](https://togithub.com/babel/babel/pull/15658) Workaround for broken babel-preset-react-app ([@&#8203;nicolo-ribaudo](https://togithub.com/nicolo-ribaudo))

### [`v7.22.0`](https://togithub.com/babel/babel/blob/HEAD/CHANGELOG.md#v7220-2023-05-26)

[Compare Source](https://togithub.com/babel/babel/compare/v7.21.8...v7.22.0)

##### :rocket: New Feature

-   `babel-parser`, `babel-plugin-transform-typescript`
    -   [#&#8203;15497](https://togithub.com/babel/babel/pull/15497) \[ts] Support `import ... =` and `export =` in scripts ([@&#8203;nicolo-ribaudo](https://togithub.com/nicolo-ribaudo))
-   `babel-compat-data`, `babel-core`, `babel-plugin-proposal-unicode-sets-regex`, `babel-plugin-transform-unicode-sets-regex`, `babel-preset-env`, `babel-standalone`
    -   [#&#8203;15636](https://togithub.com/babel/babel/pull/15636) Add `unicode-sets-regex` transform to `preset-env` ([@&#8203;JLHwung](https://togithub.com/JLHwung))
-   `babel-helpers`, `babel-plugin-proposal-explicit-resource-management`, `babel-plugin-transform-runtime`, `babel-runtime-corejs2`, `babel-runtime-corejs3`, `babel-runtime`, `babel-standalone`
    -   [#&#8203;15633](https://togithub.com/babel/babel/pull/15633) Implement transform support for `using` declarations ([@&#8203;nicolo-ribaudo](https://togithub.com/nicolo-ribaudo))
-   `babel-plugin-proposal-import-attributes-to-assertions`
    -   [#&#8203;15620](https://togithub.com/babel/babel/pull/15620) Create `@babel/plugin-proposal-import-attributes-to-assertions` ([@&#8203;nicolo-ribaudo](https://togithub.com/nicolo-ribaudo))
-   `babel-core`, `babel-generator`, `babel-parser`, `babel-plugin-syntax-import-attributes`, `babel-preset-env`, `babel-standalone`, `babel-types`
    -   [#&#8203;15536](https://togithub.com/babel/babel/pull/15536) Add support for the updated import attributes proposal ([@&#8203;nicolo-ribaudo](https://togithub.com/nicolo-ribaudo))
-   `babel-generator`, `babel-parser`, `babel-traverse`, `babel-types`
    -   [#&#8203;15520](https://togithub.com/babel/babel/pull/15520) Parse `await using` declarations ([@&#8203;JLHwung](https://togithub.com/JLHwung))
-   `babel-core`, `babel-helper-create-regexp-features-plugin`, `babel-parser`
    -   [#&#8203;15638](https://togithub.com/babel/babel/pull/15638) Enable regexp unicode sets parsing by default ([@&#8203;JLHwung](https://togithub.com/JLHwung))
-   `babel-helpers`, `babel-plugin-proposal-decorators`, `babel-plugin-syntax-decorators`, `babel-runtime-corejs2`, `babel-runtime-corejs3`, `babel-runtime`
    -   [#&#8203;15570](https://togithub.com/babel/babel/pull/15570) Add decorators version `2023-05` ([@&#8203;nicolo-ribaudo](https://togithub.com/nicolo-ribaudo))

##### :nail_care: Polish

-   `babel-plugin-transform-react-constant-elements`, `babel-plugin-transform-react-jsx`, `babel-traverse`, `babel-types`
    -   [#&#8203;15549](https://togithub.com/babel/babel/pull/15549) Improve type definitions for validators ([@&#8203;liuxingbaoyu](https://togithub.com/liuxingbaoyu))

##### :house: Internal

-   `babel-parser`
    -   [#&#8203;15630](https://togithub.com/babel/babel/pull/15630) Unify parsing of import/export modifiers (type/typeof/module) ([@&#8203;nicolo-ribaudo](https://togithub.com/nicolo-ribaudo))
-   `babel-compat-data`, `babel-helper-transform-fixture-test-runner`, `babel-node`, `babel-plugin-proposal-decorators`, `babel-plugin-proposal-duplicate-named-capturing-groups-regex`, `babel-plugin-transform-async-generator-functions`, `babel-plugin-transform-named-capturing-groups-regex`, `babel-plugin-transform-runtime`, `babel-preset-env`, `babel-runtime-corejs3`
    -   [#&#8203;15531](https://togithub.com/babel/babel/pull/15531) Allow polyfill providers to specify custom `@babel/runtime` pkg ([@&#8203;nicolo-ribaudo](https://togithub.com/nicolo-ribaudo))
-   `babel-core`, `babel-plugin-proposal-async-generator-functions`, `babel-plugin-proposal-class-properties`, `babel-plugin-proposal-class-static-block`, `babel-plugin-proposal-decorators`, `babel-plugin-proposal-dynamic-import`, `babel-plugin-proposal-export-namespace-from`, `babel-plugin-proposal-function-sent`, `babel-plugin-proposal-json-strings`, `babel-plugin-proposal-logical-assignment-operators`, `babel-plugin-proposal-nullish-coalescing-operator`, `babel-plugin-proposal-numeric-separator`, `babel-plugin-proposal-object-rest-spread`, `babel-plugin-proposal-optional-catch-binding`, `babel-plugin-proposal-optional-chaining`, `babel-plugin-proposal-pipeline-operator`, `babel-plugin-proposal-private-methods`, `babel-plugin-proposal-private-property-in-object`, `babel-plugin-proposal-unicode-property-regex`, `babel-preset-env`, `babel-standalone`
    -   [#&#8203;15614](https://togithub.com/babel/babel/pull/15614) Rename `-proposal-`s that became standard to `-transform-` ([@&#8203;nicolo-ribaudo](https://togithub.com/nicolo-ribaudo))

</details>

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

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

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

#### What's Changed

-   feat: http request timeout option by [@&#8203;yevheniyJ](https://togithub.com/yevheniyJ) in [https://github.com/crowdin/crowdin-api-client-js/pull/271](https://togithub.com/crowdin/crowdin-api-client-js/pull/271)

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

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

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

#### What's Changed

-   chore: add more keywords to the package.json by [@&#8203;andrii-bodnar](https://togithub.com/andrii-bodnar) in [https://github.com/crowdin/crowdin-api-client-js/pull/261](https://togithub.com/crowdin/crowdin-api-client-js/pull/261)
-   feat: string batch operations by [@&#8203;yevheniyJ](https://togithub.com/yevheniyJ) in [https://github.com/crowdin/crowdin-api-client-js/pull/262](https://togithub.com/crowdin/crowdin-api-client-js/pull/262)
-   feat: bundle API new methods by [@&#8203;yevheniyJ](https://togithub.com/yevheniyJ) in [https://github.com/crowdin/crowdin-api-client-js/pull/263](https://togithub.com/crowdin/crowdin-api-client-js/pull/263)
-   feat: organization webhooks api by [@&#8203;yevheniyJ](https://togithub.com/yevheniyJ) in [https://github.com/crowdin/crowdin-api-client-js/pull/264](https://togithub.com/crowdin/crowdin-api-client-js/pull/264)
-   feat: qaChecksIgnorableCategories property by [@&#8203;yevheniyJ](https://togithub.com/yevheniyJ) in [https://github.com/crowdin/crowdin-api-client-js/pull/265](https://togithub.com/crowdin/crowdin-api-client-js/pull/265)
-   feat: new file import options by [@&#8203;yevheniyJ](https://togithub.com/yevheniyJ) in [https://github.com/crowdin/crowdin-api-client-js/pull/266](https://togithub.com/crowdin/crowdin-api-client-js/pull/266)
-   feat: tm segments api by [@&#8203;yevheniyJ](https://togithub.com/yevheniyJ) in [https://github.com/crowdin/crowdin-api-client-js/pull/267](https://togithub.com/crowdin/crowdin-api-client-js/pull/267)
-   feat: screenshot label management by [@&#8203;yevheniyJ](https://togithub.com/yevheniyJ) in [https://github.com/crowdin/crowdin-api-client-js/pull/268](https://togithub.com/crowdin/crowdin-api-client-js/pull/268)
-   feat: download file preview by [@&#8203;yevheniyJ](https://togithub.com/yevheniyJ) in [https://github.com/crowdin/crowdin-api-client-js/pull/269](https://togithub.com/crowdin/crowdin-api-client-js/pull/269)
-   chore: version increment by [@&#8203;yevheniyJ](https://togithub.com/yevheniyJ) in [https://github.com/crowdin/crowdin-api-client-js/pull/270](https://togithub.com/crowdin/crowdin-api-client-js/pull/270)

**Full Changelog**: https://github.com/crowdin/crowdin-api-client-js/compare/1.22.2...1.23.0

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

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

#### What's Changed

-   make `templateId` optional by [@&#8203;souravghosh01](https://togithub.com/souravghosh01) in [https://github.com/crowdin/crowdin-api-client-js/pull/253](https://togithub.com/crowdin/crowdin-api-client-js/pull/253)
-   ci: refactor workflows by [@&#8203;andrii-bodnar](https://togithub.com/andrii-bodnar) in [https://github.com/crowdin/crowdin-api-client-js/pull/243](https://togithub.com/crowdin/crowdin-api-client-js/pull/243)
-   ci: run tests reporter only on the `master` branch by [@&#8203;andrii-bodnar](https://togithub.com/andrii-bodnar) in [https://github.com/crowdin/crowdin-api-client-js/pull/254](https://togithub.com/crowdin/crowdin-api-client-js/pull/254)
-   ci: enforce the conventional commits specification by [@&#8203;andrii-bodnar](https://togithub.com/andrii-bodnar) in [https://github.com/crowdin/crowdin-api-client-js/pull/259](https://togithub.com/crowdin/crowdin-api-client-js/pull/259)
-   build(deps-dev): bump typedoc from 0.23.26 to 0.23.28 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/crowdin/crowdin-api-client-js/pull/239](https://togithub.com/crowdin/crowdin-api-client-js/pull/239)
-   build(deps-dev): bump typedoc from 0.23.28 to 0.24.1 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/crowdin/crowdin-api-client-js/pull/241](https://togithub.com/crowdin/crowdin-api-client-js/pull/241)
-   build(deps): bump axios from 1.3.4 to 1.3.5 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/crowdin/crowdin-api-client-js/pull/242](https://togithub.com/crowdin/crowdin-api-client-js/pull/242)
-   build(deps-dev): bump typedoc from 0.24.1 to 0.24.4 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/crowdin/crowdin-api-client-js/pull/245](https://togithub.com/crowdin/crowdin-api-client-js/pull/245)
-   build(deps-dev): bump typedoc from 0.24.4 to 0.24.6 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/crowdin/crowdin-api-client-js/pull/248](https://togithub.com/crowdin/crowdin-api-client-js/pull/248)
-   build(deps): bump axios from 1.3.5 to 1.3.6 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/crowdin/crowdin-api-client-js/pull/247](https://togithub.com/crowdin/crowdin-api-client-js/pull/247)
-   build(deps): bump yaml from 1.10.2 to 2.2.2 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/crowdin/crowdin-api-client-js/pull/249](https://togithub.com/crowdin/crowdin-api-client-js/pull/249)
-   build(deps): bump axios from 1.3.6 to 1.4.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/crowdin/crowdin-api-client-js/pull/250](https://togithub.com/crowdin/crowdin-api-client-js/pull/250)
-   build(deps-dev): bump typedoc from 0.24.6 to 0.24.7 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/crowdin/crowdin-api-client-js/pull/255](https://togithub.com/crowdin/crowdin-api-client-js/pull/255)
-   build(deps-dev): bump lint-staged from 13.2.1 to 13.2.2 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/crowdin/crowdin-api-client-js/pull/251](https://togithub.com/crowdin/crowdin-api-client-js/pull/251)

#### New Contributors

-   [@&#8203;souravghosh01](https://togithub.com/souravghosh01) made their first contribution in [https://github.com/crowdin/crowdin-api-client-js/pull/253](https://togithub.com/crowdin/crowdin-api-client-js/pull/253)

**Full Changelog**: https://github.com/crowdin/crowdin-api-client-js/compare/1.22.1...1.22.2

</details>

<details>
<summary>Microsoft/playwright</summary>

### [`v1.34.3`](https://togithub.com/microsoft/playwright/releases/tag/v1.34.3)

[Compare Source](https://togithub.com/Microsoft/playwright/compare/v1.34.2...v1.34.3)

#### Highlights

[https://github.com/microsoft/playwright/issues/23228](https://togithub.com/microsoft/playwright/issues/23228) - \[BUG] Getting "Please install [@&#8203;playwright/test](https://togithub.com/playwright/test) package..." after upgrading from 1.34.0 to 1.34.1

#### Browser Versions

-   Chromium 114.0.5735.26
-   Mozilla Firefox 113.0
-   WebKit 16.4

This version was also tested against the following stable channels:

-   Google Chrome 113
-   Microsoft Edge 113

</details>

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

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

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

##### Bug Fixes

-   Vue3: Fix TS 5.0 compat with vue-component-type-helpers [#&#8203;22814](https://togithub.com/storybooks/storybook/pull/22814)
-   Vue3: Fix reactive args updates in decorators [#&#8203;22717](https://togithub.com/storybooks/storybook/pull/22717)
-   Vue3: Revert v7 breaking change, restore reactive v6-compat API [#&#8203;22692](https://togithub.com/storybooks/storybook/pull/22692)

##### Build

-   Build: Add more checks to ci:daily workflow [#&#8203;22815](https://togithub.com/storybooks/storybook/pull/22815)
-   Build: Fix Nextjs E2E tests [#&#8203;22816](https://togithub.com/storybooks/storybook/pull/22816)
-   Build: Bring back new Vue3 tests to main [#&#8203;22685](https://togithub.com/storybooks/storybook/pull/22685)

</details>

<details>
<summary>tanstack/query</summary>

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

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

Version 4.29.12 - 5/29/2023, 11:31 AM

#### Changes

##### Fix

-   react-query: fix missed updates between creation and subscription ([#&#8203;5474](https://togithub.com/tanstack/query/issues/5474)) ([`c290906`](https://togithub.com/tanstack/query/commit/c290906d)) by Dominik Dorfmeister

#### Packages

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

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

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

Version 4.29.11 - 5/27/2023, 8:51 AM

#### Changes

##### Refactor

-   query-core: replace `indexOf` with `includes` ([#&#8203;5431](https://togithub.com/tanstack/query/issues/5431)) ([`5188ae3`](https://togithub.com/tanstack/query/commit/5188ae3f)) by [@&#8203;Juneezee](https://togithub.com/Juneezee)

#### Packages

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

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

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

Version 4.29.10 - 5/27/2023, 8:27 AM

#### Changes

##### Refactor

-   query-core: optimization window.removeEventListener ([#&#8203;5475](https://togithub.com/tanstack/query/issues/5475)) ([`00319a1`](https://togithub.com/tanstack/query/commit/00319a14)) by [@&#8203;li-jia-nan](https://togithub.com/li-jia-nan)

##### Chore

-   Update to pnpm v8 ([#&#8203;5476](https://togithub.com/tanstack/query/issues/5476)) ([`6c3abf7`](https://togithub.com/tanstack/query/commit/6c3abf7c)) by Lachlan Collins

##### Docs

-   Update useQuery.md ([#&#8203;5454](https://togithub.com/tanstack/query/issues/5454)) ([`dd5b64a`](https://togithub.com/tanstack/query/commit/dd5b64a9)) by Matthew Day

#### Packages

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

</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://app.renovatebot.com/dashboard#github/weareinreach/InReach).



PR-URL: https://github.com/weareinreach/InReach/pull/509
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Joe Karow <58997957+JoeKarow@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant