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 #1282

Merged
merged 2 commits into from
Dec 21, 2022

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 27, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/core (source) ^7.20.2 -> ^7.20.5 age adoption passing confidence
@babel/runtime (source) ^7.20.1 -> ^7.20.6 age adoption passing confidence
@chakra-ui/react (source) ^2.4.1 -> ^2.4.4 age adoption passing confidence
@changesets/cli (source) ^2.25.2 -> ^2.26.0 age adoption passing confidence
@reduxjs/toolkit (source) ^1.9.0 -> ^1.9.1 age adoption passing confidence
@rollup/plugin-commonjs (source) ^23.0.2 -> ^23.0.7 age adoption passing confidence
@rollup/plugin-terser (source) ^0.1.0 -> ^0.2.1 age adoption passing confidence
@storybook/addon-essentials (source) ^6.5.13 -> ^6.5.15 age adoption passing confidence
@storybook/builder-webpack5 (source) ^6.5.13 -> ^6.5.15 age adoption passing confidence
@storybook/manager-webpack5 (source) ^6.5.13 -> ^6.5.15 age adoption passing confidence
@storybook/react (source) ^6.5.13 -> ^6.5.15 age adoption passing confidence
@types/chrome (source) ^0.0.203 -> ^0.0.206 age adoption passing confidence
@types/cors (source) ^2.8.12 -> ^2.8.13 age adoption passing confidence
@types/express (source) ^4.17.14 -> ^4.17.15 age adoption passing confidence
@types/jest (source) ^29.2.3 -> ^29.2.4 age adoption passing confidence
@types/lodash (source) ^4.14.190 -> ^4.14.191 age adoption passing confidence
@types/node (source) ^18.11.9 -> ^18.11.17 age adoption passing confidence
@types/react (source) ^18.0.25 -> ^18.0.26 age adoption passing confidence
@typescript-eslint/eslint-plugin ^5.44.0 -> ^5.47.0 age adoption passing confidence
@typescript-eslint/parser ^5.44.0 -> ^5.47.0 age adoption passing confidence
codemirror ^5.65.10 -> ^5.65.11 age adoption passing confidence
css-loader ^6.7.2 -> ^6.7.3 age adoption passing confidence
eslint (source) ^8.28.0 -> ^8.30.0 age adoption passing confidence
eslint-plugin-jest ^27.1.6 -> ^27.1.7 age adoption passing confidence
fork-ts-checker-webpack-plugin ^7.2.13 -> ^7.2.14 age adoption passing confidence
framer-motion ^7.6.12 -> ^7.10.3 age adoption passing confidence
msw (source) ^0.49.0 -> ^0.49.2 age adoption passing confidence
nx (source) ^15.2.1 -> ^15.3.3 age adoption passing confidence
pnpm (source) 7.17.1 -> 7.19.0 age adoption passing confidence
prettier (source) 2.8.0 -> 2.8.1 age adoption passing confidence
react-bootstrap (source) ^2.6.0 -> ^2.7.0 age adoption passing confidence
react-icons ^4.6.0 -> ^4.7.1 age adoption passing confidence
react-router-dom ^6.4.3 -> ^6.6.0 age adoption passing confidence
react-select (source) ^5.6.1 -> ^5.7.0 age adoption passing confidence
rollup (source) ^3.5.0 -> ^3.7.5 age adoption passing confidence
rxjs (source) ^7.5.7 -> ^7.8.0 age adoption passing confidence
selenium-webdriver (source) ^4.6.1 -> ^4.7.1 age adoption passing confidence
sqlite3 ^5.1.2 -> ^5.1.4 age adoption passing confidence
stylelint (source) ^14.15.0 -> ^14.16.0 age adoption passing confidence
supertest ^6.3.1 -> ^6.3.3 age adoption passing confidence
typescript (source) ~4.9.3 -> ~4.9.4 age adoption passing confidence
webpack-cli (source) ^5.0.0 -> ^5.0.1 age adoption passing confidence

Release Notes

babel/babel

v7.20.5

Compare Source

👓 Spec Compliance
  • babel-helpers, babel-plugin-transform-destructuring, babel-plugin-transform-modules-commonjs, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime, babel-traverse
  • babel-cli, babel-helpers, babel-plugin-proposal-class-properties, babel-plugin-proposal-class-static-block, babel-plugin-transform-classes, babel-plugin-transform-runtime, babel-preset-env
  • babel-helper-create-class-features-plugin, babel-helpers, babel-plugin-proposal-decorators, babel-plugin-proposal-private-property-in-object, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
🐛 Bug Fix
  • babel-parser
  • babel-helper-wrap-function, babel-preset-env, babel-traverse
  • babel-plugin-transform-arrow-functions, babel-plugin-transform-parameters, babel-traverse
  • babel-helpers, babel-node, babel-plugin-proposal-async-generator-functions, babel-plugin-transform-regenerator, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
  • babel-helper-create-regexp-features-plugin
  • babel-parser, babel-types
  • babel-generator
  • babel-plugin-transform-block-scoping, babel-traverse
💅 Polish
🏠 Internal
chakra-ui/chakra-ui

v2.4.4

Patch Changes

v2.4.3

Patch Changes

v2.4.2

Patch Changes
changesets/changesets

v2.26.0

Compare Source

Minor Changes
  • #​1033 521205d Thanks @​Andarist! - A new config-level changedFilePatterns option has been added. You can configure it with an array of glob patterns like here:

    // .changeset/config.json
    {
      "changedFilePatterns": ["src/**"]
    }

    Files that do not match the configured pattern won't contribute to the "changed" status of the package to which they belong. This both affects changesets add and changeset status.

Patch Changes
reduxjs/redux-toolkit

v1.9.1

Compare Source

This bugfix release fixes assorted issues that were reported with RTK 1.9.0, and adds a few additional requested tweaks and improvements.

Changelog

Fixes

The createAsyncThunk.withTypes function was fully broken (it type-checked correctly, but pointed to the wrong function due to a name shadowing issue). That now works correctly.

The maxRetries option for RTKQ was inadvertently filtering out 0 values, and those are now accepted.

fulfillWithValue had incorrect types that made it appear as if the data was nested an additional level deeper. The types are now correct.

The ActionCreatorWithoutPayload type was tweaked to force an error when an action creator is accidentally called with an argument, which happens in cases like onClick={todoAdded}. This avoids accidentally passing values like React event objects as the payload.

Timer handling for batchActions and autoBatchEnhancer now works in more JS runtime environments.

Other Changes

The TagDescription type is now exported from RTKQ.

API endpoints now have a .name field containing the endpoint name, such as "getPokemon".

Calling promise.abort() on a createAsyncThunk promise before an async condition resolves will now be treated as if the condition itself returned false, bailing out and not dispatching anything.

The merge option now receives a third argument containing {arg, baseQueryMeta, fulfilledTimeStamp, requestId}, in case that info is useful in deciding how to merge.

The @reduxjs/rtk-codemods package has been updated to fix cases where the createSliceBuilder codemod didn't preserve fields with function variable arguments, like [todoAdded]: adapter.addOne. That package has been updated to v0.0.3.

What's Changed


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 becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@changeset-bot
Copy link

changeset-bot bot commented Nov 27, 2022

⚠️ No Changeset found

Latest commit: ab8b5e7

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 @rollup/plugin-commonjs to ^23.0.3 chore(deps): update all non-major dependencies Nov 28, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 21 times, most recently from e951bd6 to 76cdaa2 Compare December 5, 2022 00:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 0aa38a0 to 1591d79 Compare December 7, 2022 23:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 13 times, most recently from 5e6cf6f to add25ca Compare December 17, 2022 07:29
@renovate renovate bot changed the title chore(deps): update all non-major dependencies Update all non-major dependencies Dec 17, 2022
@renovate renovate bot changed the title Update all non-major dependencies chore(deps): update all non-major dependencies Dec 17, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from d1bc877 to 42eae12 Compare December 21, 2022 13:52
@renovate
Copy link
Contributor Author

renovate bot commented Dec 21, 2022

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.
You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@Methuselah96 Methuselah96 merged commit 1ef86dc into main Dec 21, 2022
@Methuselah96 Methuselah96 deleted the renovate/all-minor-patch branch December 21, 2022 21:13
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.

None yet

1 participant