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(deps): update all non-major dependencies #1764

Merged
merged 2 commits into from
Oct 14, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 17, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/cli (source) ^7.25.6 -> ^7.25.7 age adoption passing confidence
@babel/core (source) ^7.25.2 -> ^7.25.8 age adoption passing confidence
@babel/eslint-parser (source) ^7.25.1 -> ^7.25.8 age adoption passing confidence
@babel/plugin-transform-runtime (source) ^7.25.4 -> ^7.25.7 age adoption passing confidence
@babel/preset-env (source) ^7.25.4 -> ^7.25.8 age adoption passing confidence
@babel/preset-react (source) ^7.24.7 -> ^7.25.7 age adoption passing confidence
@babel/preset-typescript (source) ^7.24.7 -> ^7.25.7 age adoption passing confidence
@babel/register (source) ^7.24.6 -> ^7.25.7 age adoption passing confidence
@babel/runtime (source) ^7.25.6 -> ^7.25.7 age adoption passing confidence
@chakra-ui/react (source) ^2.8.2 -> ^2.10.2 age adoption passing confidence
@changesets/cli (source) ^2.27.8 -> ^2.27.9 age adoption passing confidence
@eslint/compat ^1.1.1 -> ^1.2.0 age adoption passing confidence
@reduxjs/toolkit (source) ^2.2.7 -> ^2.2.8 age adoption passing confidence
@rjsf/core ^5.21.1 -> ^5.21.2 age adoption passing confidence
@rjsf/utils ^5.21.1 -> ^5.21.2 age adoption passing confidence
@rjsf/validator-ajv8 ^5.21.1 -> ^5.21.2 age adoption passing confidence
@storybook/addon-essentials (source) ^8.3.1 -> ^8.3.5 age adoption passing confidence
@storybook/addon-interactions (source) ^8.3.1 -> ^8.3.5 age adoption passing confidence
@storybook/addon-links (source) ^8.3.1 -> ^8.3.5 age adoption passing confidence
@storybook/addon-onboarding (source) ^8.3.1 -> ^8.3.5 age adoption passing confidence
@storybook/blocks (source) ^8.3.1 -> ^8.3.5 age adoption passing confidence
@storybook/react (source) ^8.3.1 -> ^8.3.5 age adoption passing confidence
@storybook/react-webpack5 (source) ^8.3.1 -> ^8.3.5 age adoption passing confidence
@storybook/test (source) ^8.3.1 -> ^8.3.5 age adoption passing confidence
@types/chrome (source) ^0.0.271 -> ^0.0.277 age adoption passing confidence
@types/lodash (source) ^4.17.7 -> ^4.17.10 age adoption passing confidence
@types/node (source) ^20.16.5 -> ^20.16.11 age adoption passing confidence
@types/react (source) ^18.3.6 -> ^18.3.11 age adoption passing confidence
@types/react-dom (source) ^18.3.0 -> ^18.3.1 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) ^8.6.0 -> ^8.8.1 age adoption passing confidence
@typescript-eslint/parser (source) ^8.6.0 -> ^8.8.1 age adoption passing confidence
anser ^2.1.1 -> ^2.3.0 age adoption passing confidence
codemirror ^5.65.17 -> ^5.65.18 age adoption passing confidence
electron ^31.6.0 -> ^31.7.0 age adoption passing confidence
esbuild ^0.23.1 -> ^0.24.0 age adoption passing confidence
eslint-plugin-react ^7.36.1 -> ^7.37.1 age adoption passing confidence
express (source) ^4.21.0 -> ^4.21.1 age adoption passing confidence
framer-motion ^11.5.4 -> ^11.11.8 age adoption passing confidence
globals ^15.9.0 -> ^15.11.0 age adoption passing confidence
pnpm (source) 9.10.0 -> 9.12.1 age adoption passing confidence
react-bootstrap (source) ^2.10.4 -> ^2.10.5 age adoption passing confidence
react-router-dom (source) ^6.26.2 -> ^6.27.0 age adoption passing confidence
react-select (source) ^5.8.0 -> ^5.8.1 age adoption passing confidence
selenium-webdriver (source) ^4.24.1 -> ^4.25.0 age adoption passing confidence
storybook (source) ^8.3.1 -> ^8.3.5 age adoption passing confidence
stylelint (source) ^16.9.0 -> ^16.10.0 age adoption passing confidence
typescript-eslint (source) ^8.6.0 -> ^8.8.1 age adoption passing confidence
webpack ^5.94.0 -> ^5.95.0 age adoption passing confidence

Release Notes

babel/babel (@​babel/cli)

v7.25.7

Compare Source

🐛 Bug Fix
💅 Polish
🏠 Internal
  • babel-core
  • babel-helper-compilation-targets, babel-helper-plugin-utils, babel-preset-env
  • babel-plugin-proposal-destructuring-private, babel-plugin-syntax-decimal, babel-plugin-syntax-import-reflection, babel-standalone
  • babel-generator
🏃‍♀️ Performance
changesets/changesets (@​changesets/cli)

v2.27.9

Compare Source

Patch Changes
eslint/rewrite (@​eslint/compat)

v1.2.0

Compare Source

reduxjs/redux-toolkit (@​reduxjs/toolkit)

v2.2.8

Compare Source

This bugfix release fixes a long-standing issue with RTK Query lazy query triggers returning stale data in some cases, fixes an error handling issue in RTK Query, and exports additional TS types.

Changelog

Lazy Query Trigger Handling

We'd had a couple long-standing issues reporting that const result = await someLazyQueryTrigger() sometimes returned stale data, especially if a mutation had just invalidated that query's tag.

We finally got a good repro of this issue and identified it as a mis-written call inside of the middleware that skipped past the necessary handling to activate the correct query status tracking in that scenario. This should now be fixed.

Other Changes

Timeout handling in RTKQ endpoints should now correctly throw a timeout-related error instead of an AbortError.

Base queries now have access to the current queryCacheKey value so it can be used in deciding query logic.

We've exported several more TS types related to query options, as some users have been depending on those even though they previously weren't part of the public API.

What's Changed

Full Changelog: reduxjs/redux-toolkit@v2.2.7...v2.2.8

rjsf-team/react-jsonschema-form (@​rjsf/core)

v5.21.2

Compare Source

@​rjsf/core

  • Updated SchemaField to pass required flag to _AnyOfField/_OneOfField
  • Updated Form to deal with null objects in filterErrorsBasedOnSchema(), fixing #​4306

@​rjsf/utils

  • Updated ErrorSchemaBuilder to support adding, updating, and removing paths that are numbers, fixing #​4297
  • Updated retrieveSchema to not merge contains properties in allOf schema lists, fixing #​2923

Dev / docs / playground

  • Updated the custom-widgets-fields.md to add examples of wrapping a widget/field
storybookjs/storybook (@​storybook/addon-essentials)

v8.3.5

Compare Source

v8.3.4

Compare Source

v8.3.3

Compare Source

v8.3.2

Compare Source

storybookjs/storybook (@​storybook/addon-onboarding)

v8.3.5

Compare Source

8.3.5

v8.3.4

Compare Source

8.3.4

v8.3.3

Compare Source

8.3.3

v8.3.2

Compare Source

8.3.2

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.8.1

Compare Source

🩹 Fixes
  • eslint-plugin: stop warning on @​ts-nocheck comments which aren't at the beginning of the file
❤️ Thank You
  • Brad Zacher
  • Ronen Amiel
  • WhitePiano

You can read about our versioning strategy and releases on our website.

v8.8.0

Compare Source

🚀 Features
  • eslint-plugin: [no-unnecessary-condition] add checkTypePredicates

  • eslint-plugin: [return-await] check for-await loop iteree

🩹 Fixes
  • remove export type * in d.ts to support TS<5.0

  • eslint-plugin: [no-unnecessary-template-expression] should underline template syntax with squiggly lines

  • type-utils: check for type parameters on isBuiltinSymbolLikeRecurser()

  • eslint-plugin: [no-deprecated] max callstack exceeded when class implements itself

  • eslint-plugin: [no-misused-promises] check contextual type

  • eslint-plugin: [prefer-literal-enum-member] allow nested bitwise operations

❤️ Thank You
  • auvred
  • Josh Goldberg ✨
  • Kirk Waiblinger
  • Ronen Amiel
  • Tarun Chauhan
  • YeonJuan

You can read about our versioning strategy and releases on our website.

v8.7.0

Compare Source

🚀 Features
  • eslint-plugin: [no-unsafe-call] check calls of Function

  • eslint-plugin: [consistent-type-exports] check export * exports to see if all exported members are types

🩹 Fixes
  • eslint-plugin: properly coerce all types to string in getStaticMemberAccessValue

  • eslint-plugin: [no-deprecated] report on imported deprecated variables

  • eslint-plugin: [no-confusing-non-null-assertion] check !in and !instanceof

❤️ Thank You
  • Abraham Guo
  • auvred
  • Brian Donovan
  • Kirk Waiblinger

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.8.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website

Copy link

changeset-bot bot commented Sep 17, 2024

⚠️ No Changeset found

Latest commit: 1a3ca5b

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate bot changed the title chore(deps): update dependency @types/react to ^18.3.7 chore(deps): update all non-major dependencies Sep 18, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 18 times, most recently from 9ac5c60 to f6575b0 Compare September 26, 2024 08:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 07f93e6 to 85fd8c9 Compare October 1, 2024 13:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 21 times, most recently from 039b6c3 to 100578d Compare October 9, 2024 17:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from a3d801e to c2eae4a Compare October 11, 2024 15:26
@Methuselah96 Methuselah96 merged commit 88a02a8 into main Oct 14, 2024
1 check passed
@Methuselah96 Methuselah96 deleted the renovate/all-minor-patch branch October 14, 2024 12:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant