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

Update all non-major dependencies #215

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 12, 2022

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@emotion/react (source) 11.7.1 -> 11.13.5 age adoption passing confidence
@emotion/styled (source) 11.6.0 -> 11.13.5 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 5.36.2 -> 5.62.0 age adoption passing confidence
@typescript-eslint/parser (source) 5.36.2 -> 5.62.0 age adoption passing confidence
babel-loader 8.2.5 -> 8.4.1 age adoption passing confidence
chromatic (source) 6.9.0 -> 6.24.1 age adoption passing confidence
css-loader 6.7.1 -> 6.11.0 age adoption passing confidence
electron-squirrel-startup 1.0.0 -> 1.0.1 age adoption passing confidence
eslint (source) 8.23.0 -> 8.57.1 age adoption passing confidence
eslint-config-airbnb-typescript 17.0.0 -> 17.1.0 age adoption passing confidence
eslint-config-prettier 8.5.0 -> 8.10.0 age adoption passing confidence
eslint-import-resolver-webpack (source) 0.13.2 -> 0.13.9 age adoption passing confidence
eslint-plugin-import 2.26.0 -> 2.31.0 age adoption passing confidence
eslint-plugin-jsx-a11y 6.6.1 -> 6.10.2 age adoption passing confidence
eslint-plugin-react 7.31.8 -> 7.37.2 age adoption passing confidence
eslint-plugin-storybook 0.6.4 -> 0.11.1 age adoption passing confidence
fork-ts-checker-webpack-plugin 7.2.13 -> 7.3.0 age adoption passing confidence
html-webpack-plugin 5.5.0 -> 5.6.3 age adoption passing confidence
husky 8.0.1 -> 8.0.3 age adoption passing confidence
jsoncrush 1.1.6 -> 1.1.8 age adoption passing confidence
lint-staged 13.0.3 -> 13.3.0 age adoption passing confidence
node-loader 2.0.0 -> 2.1.0 age adoption passing confidence
postcss-scss 4.0.4 -> 4.0.9 age adoption passing confidence
prettier (source) 2.7.1 -> 2.8.8 age adoption passing confidence
react-datasheet 1.4.9 -> 1.4.12 age adoption passing confidence
react-flow-renderer 10.0.6 -> 10.3.17 age adoption passing confidence
react-icons 4.3.1 -> 4.12.0 age adoption passing confidence
react-router-dom (source) 6.2.2 -> 6.28.0 age adoption passing confidence
sass 1.54.9 -> 1.82.0 age adoption passing confidence
sass-loader 13.0.2 -> 13.3.3 age adoption passing confidence
style-loader 3.3.1 -> 3.3.4 age adoption passing confidence
stylelint (source) 14.11.0 -> 14.16.1 age adoption passing confidence
ts-loader 9.3.1 -> 9.5.1 age adoption passing confidence
ts-node (source) 10.9.1 -> 10.9.2 age adoption passing confidence
typescript (source) 4.8.3 -> 4.9.5 age adoption passing confidence
web-worker 1.2.0 -> 1.3.0 age adoption passing confidence
webpack-dev-server 4.11.0 -> 4.15.2 age adoption passing confidence

Release Notes

emotion-js/emotion (@​emotion/react)

v11.13.5

Compare Source

v11.13.3

Compare Source

v11.13.0

Compare Source

v11.12.0

Compare Source

v11.11.4

Compare Source

Patch Changes
  • #​3159 5b82631d Thanks @​iegik! - Renamed an internal hasOwnProperty to hasOwn. This avoids problems in CommonJS environments when the consumer tries to prevent prototype pollution with Object.freeze(Object.prototype).

v11.11.3

Compare Source

Patch Changes

v11.11.1

Compare Source

Patch Changes
  • #​3048 9357f337 Thanks @​naari3! - Added ElementType to the Emotion's JSX namespace. It's defined in the same way as the one in @types/react and should make it possible to use components that return strings, Promises and other types that are valid in React.

v11.11.0

Compare Source

Patch Changes

v11.10.8

Compare Source

Patch Changes

v11.10.6

Compare Source

Patch Changes

v11.10.5

Compare Source

Patch Changes

v11.10.4

Compare Source

Patch Changes
  • #​2867 89b6dbb3 Thanks @​Andarist! - Externalized code referencing React.useInsertionEffect to a separate @emotion/use-insertion-effect-with-fallbacks package. This package should be used in your defined externals if you bundle Emotion for whatever reason. It references useInsertionEffect in a very specific way that allows us to use it conditionally. However, if the code consuming Emotion is bundled as a library with Emotion in it then some bundlers might change the way in which we reference useInsertionEffect and that might create problems for bundlers used to consume the said library code. By externalizing this new package you can still bundle Emotion if you want to without running into this problem as you won't "destroy" the carefully crafted reference to useInsertionEffect in the process.

    Note that we don't recommend bundling Emotion. You should have very specific reasons to do so.

  • Updated dependencies [89b6dbb3]:

v11.10.0

Compare Source

Minor Changes
  • #​2819 bbad8c79 Thanks @​nicksrandall! - exports field has been added to the package.json manifest. It limits what files can be imported from a package but we've tried our best to allow importing all the files that were considered to be a part of the public API.
Patch Changes

v11.9.3

Compare Source

Patch Changes

v11.9.0

Compare Source

Patch Changes

v11.8.2

Compare Source

Patch Changes
  • #​2677 ff3cb164 Thanks @​Jack-Works! - Change Global component to use the StyleSheet constructor of the current cache.sheet. This is useful when cache.sheet is not the default implementation. Thanks to that the inner sheet constructed by Global can share the behavior with its "main" sheet that is hold by the cache.

v11.8.1

Compare Source

Patch Changes
  • #​2651 39ac5b99 Thanks @​Andarist! - Fixed a transpilation issue that caused useInsertionEffect to be referenced directly in the specifiers list of the import statement. This has caused build errors in the consuming tools since the import statement can only reference known exports of a module.

v11.8.0

Compare Source

Minor Changes
  • #​2600 2f27156a Thanks @​Andarist! - Refactored code to use the upcoming React.useInsertionEffect when it's available (this is a new hook that is going to be introduced in React 18). This shouldn't have any effect on existing codebases and the change should be transparent.
Patch Changes
  • #​2609 242f7d8c Thanks @​Andarist! - Added @emotion/babel-plugin as a dependency - this is an actual dependency of the @emotion/react/macro entrypoint and it has to be explicitly declared to fix compatibility with strict package managers.

  • #​2615 3d672acd Thanks @​srmagura! - Fix an edge case where runtime label extraction in class components led to invalid class names in Firefox. This only affected the development build of Emotion.

  • Updated dependencies [2f27156a]:

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

v5.62.0

Compare Source

Bug Fixes
  • eslint-plugin: [comma-spacing] allow no space after trailing comma in objects and arrays (#​6938) (24bdacc)
  • eslint-plugin: [prefer-includes] escape special characters (#​7161) (5a347a5), closes #​7145
  • eslint-plugin: replace auto-fix of class literal property style rule with suggestion (#​7054) (a8c824a)
Features
  • eslint-plugin: [prefer-nullish-coalescing] add ignorePrimitives option (#​6487) (6edaa04)

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

v5.61.0

Compare Source

Features

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

5.60.1 (2023-06-26)

Note: Version bump only for package @​typescript-eslint/eslint-plugin

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

v5.60.1

Compare Source

Note: Version bump only for package @​typescript-eslint/eslint-plugin

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

v5.60.0

Compare Source

Features
  • eslint-plugin: [restrict-plus-operands] add allow* options (#​6161) (def09f8)

5.59.11 (2023-06-12)

Note: Version bump only for package @​typescript-eslint/eslint-plugin

5.59.10 (2023-06-12)

Note: Version bump only for package @​typescript-eslint/eslint-plugin

5.59.9 (2023-06-05)

Note: Version bump only for package @​typescript-eslint/eslint-plugin

5.59.8 (2023-05-29)

Note: Version bump only for package @​typescript-eslint/eslint-plugin

5.59.7 (2023-05-22)

Note: Version bump only for package @​typescript-eslint/eslint-plugin

5.59.6 (2023-05-15)

Note: Version bump only for package @​typescript-eslint/eslint-plugin

5.59.5 (2023-05-08)

Note: Version bump only for package @​typescript-eslint/eslint-plugin

5.59.4 (2023-05-08)

Note: Version bump only for package @​typescript-eslint/eslint-plugin

5.59.3 (2023-05-08)

Note: Version bump only for package @​typescript-eslint/eslint-plugin

5.59.2 (2023-05-01)

Note: Version bump only for package @​typescript-eslint/eslint-plugin

5.59.1 (2023-04-24)

Bug Fixes
  • eslint-plugin: [prefer-regexp-exec] skip malformed regexes (#​6935) (05ed60e)
  • eslint-plugin: [unified-signatures] no parameters function (#​6940) (2970861)

v5.59.11

Compare Source

Note: Version bump only for package @​typescript-eslint/eslint-plugin

v5.59.10

Compare Source

Note: Version bump only for package @​typescript-eslint/eslint-plugin

v5.59.9

Compare Source

Note: Version bump only for package @​typescript-eslint/eslint-plugin

v5.59.8

Compare Source

Note: Version bump only for package @​typescript-eslint/eslint-plugin

v5.59.7

Compare Source

Note: Version bump only for package @​typescript-eslint/eslint-plugin

v5.59.6

Compare Source

Note: Version bump only for package @​typescript-eslint/eslint-plugin

v5.59.5

Compare Source

Note: Version bump only for package @​typescript-eslint/eslint-plugin

v5.59.2

Compare Source

Note: Version bump only for package @​typescript-eslint/eslint-plugin

v5.59.1

Compare Source

Note: Version bump only for package @​typescript-eslint/eslint-plugin

v5.59.0

Compare Source

Bug Fixes
  • eslint-plugin: [no-unnecessary-condition] allow nullish coalescing for naked type parameter (#​6910) (3e5f858)
Features
  • eslint-plugin: [ban-types] add NonNullable suggestion and allow custom suggestions (#​6876) (ff65235)

v5.58.0

Compare Source

Bug Fixes
  • eslint-plugin: [unified-signatures] allow overloads with different named and different number of parameters (#​6877) (939d665)
Features

5.57.1 (2023-04-03)

Bug Fixes
  • eslint-plugin: [strict-boolean-expressions] support mixed enums in allowNullableEnum option (#​6740) (49be8a8)

v5.57.1

Compare Source

Bug Fixes
  • eslint-plugin: [strict-boolean-expressions] support mixed enums in allowNullableEnum option ([

@renovate renovate bot changed the title Update dependency eslint to v8.23.1 Update all non-major dependencies Sep 12, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 4425e9a to 592f1ad Compare September 21, 2022 13:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from bbce5ea to 507b362 Compare September 28, 2022 19:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 0569aea to 6f69dc8 Compare October 6, 2022 21:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 3703149 to a9bee02 Compare October 12, 2022 22:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 2f07975 to 910fe72 Compare October 13, 2024 02:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 7307eb4 to cfc63a4 Compare October 23, 2024 23:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 7f4136d to 23fb909 Compare October 30, 2024 02:18
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 9e7479b to d1833d4 Compare November 7, 2024 00:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from b01b5aa to 370265d Compare November 19, 2024 11:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 89e4f7d to e31a527 Compare December 3, 2024 01:43
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.

0 participants