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

fix(deps): update all non-major dependencies #1419

Merged
merged 2 commits into from
Jun 23, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 4, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@apollo/server ^4.7.1 -> ^4.7.4 age adoption passing confidence
@babel/cli (source) ^7.21.5 -> ^7.22.5 age adoption passing confidence
@babel/code-frame (source) ^7.21.4 -> ^7.22.5 age adoption passing confidence
@babel/core (source) ^7.22.1 -> ^7.22.5 age adoption passing confidence
@babel/eslint-parser (source) ^7.21.8 -> ^7.22.5 age adoption passing confidence
@babel/plugin-transform-runtime (source) ^7.22.4 -> ^7.22.5 age adoption passing confidence
@babel/preset-env (source) ^7.22.4 -> ^7.22.5 age adoption passing confidence
@babel/preset-react (source) ^7.22.3 -> ^7.22.5 age adoption passing confidence
@babel/preset-typescript (source) ^7.21.5 -> ^7.22.5 age adoption passing confidence
@babel/register (source) ^7.21.0 -> ^7.22.5 age adoption passing confidence
@babel/runtime (source) ^7.22.3 -> ^7.22.5 age adoption passing confidence
@chakra-ui/react (source) ^2.7.0 -> ^2.7.1 age adoption passing confidence
@emotion/react (source) ^11.11.0 -> ^11.11.1 age adoption passing confidence
@​mswjs/data ^0.12.0 -> ^0.13.0 age adoption passing confidence
@rollup/plugin-commonjs (source) ^25.0.0 -> ^25.0.2 age adoption passing confidence
@storybook/addon-essentials (source) ^7.0.18 -> ^7.0.23 age adoption passing confidence
@storybook/addon-interactions (source) ^7.0.18 -> ^7.0.23 age adoption passing confidence
@storybook/addon-links (source) ^7.0.18 -> ^7.0.23 age adoption passing confidence
@storybook/react (source) ^7.0.18 -> ^7.0.23 age adoption passing confidence
@storybook/react-webpack5 (source) ^7.0.18 -> ^7.0.23 age adoption passing confidence
@testing-library/dom ^9.3.0 -> ^9.3.1 age adoption passing confidence
@types/codemirror (source) ^5.60.7 -> ^5.60.8 age adoption passing confidence
@types/node (source) ^18.16.16 -> ^18.16.18 age adoption passing confidence
@types/react (source) ^18.2.8 -> ^18.2.13 age adoption passing confidence
@types/react-dom (source) ^18.2.4 -> ^18.2.6 age adoption passing confidence
@types/uuid (source) ^9.0.1 -> ^9.0.2 age adoption passing confidence
@typescript-eslint/eslint-plugin ^5.59.8 -> ^5.60.0 age adoption passing confidence
@typescript-eslint/parser ^5.59.8 -> ^5.60.0 age adoption passing confidence
electron ^25.1.0 -> ^25.2.0 age adoption passing confidence
eslint (source) ^8.42.0 -> ^8.43.0 age adoption passing confidence
eslint-plugin-jest ^27.2.1 -> ^27.2.2 age adoption passing confidence
framer-motion ^10.12.16 -> ^10.12.17 age adoption passing confidence
graphql ^16.6.0 -> ^16.7.1 age adoption passing confidence
html-entities ^2.3.3 -> ^2.3.6 age adoption passing confidence
html-webpack-plugin ^5.5.1 -> ^5.5.3 age adoption passing confidence
msw (source) ^1.2.1 -> ^1.2.2 age adoption passing confidence
pnpm (source) 8.6.0 -> 8.6.3 age adoption passing confidence
react-bootstrap (source) ^2.7.4 -> ^2.8.0 age adoption passing confidence
react-icons ^4.9.0 -> ^4.10.1 age adoption passing confidence
react-redux ^8.0.7 -> ^8.1.1 age adoption passing confidence
react-router-dom ^6.11.2 -> ^6.13.0 age adoption passing confidence
rollup (source) ^3.23.0 -> ^3.25.1 age adoption passing confidence
rollup-plugin-typescript2 ^0.34.1 -> ^0.35.0 age adoption passing confidence
selenium-webdriver (source) ^4.9.2 -> ^4.10.0 age adoption passing confidence
semver ^7.5.1 -> ^7.5.3 age adoption passing confidence
storybook (source) ^7.0.18 -> ^7.0.23 age adoption passing confidence
stylelint (source) ^15.6.3 -> ^15.9.0 age adoption passing confidence
webpack ^5.85.0 -> ^5.88.0 age adoption passing confidence
webpack-cli (source) ^5.1.3 -> ^5.1.4 age adoption passing confidence
webpack-dev-server ^4.15.0 -> ^4.15.1 age adoption passing confidence

Release Notes

apollographql/apollo-server

v4.7.4

Compare Source

Patch Changes
  • 0adaf80d1 Thanks @​trevor-scheer! - Address Content Security Policy issues

    The previous implementation of CSP nonces within the landing pages did not take full advantage of the security benefit of using them. Nonces should only be used once per request, whereas Apollo Server was generating one nonce and reusing it for the lifetime of the instance. The reuse of nonces degrades the security benefit of using them but does not pose a security risk on its own. The CSP provides a defense-in-depth measure against a potential XSS, so in the absence of a known XSS vulnerability there is likely no risk to the user.

    The mentioned fix also coincidentally addresses an issue with using crypto functions on startup within Cloudflare Workers. Crypto functions are now called during requests only, which resolves the error that Cloudflare Workers were facing. A recent change introduced a precomputedNonce configuration option to mitigate this issue, but it was an incorrect approach given the nature of CSP nonces. This configuration option is now deprecated and should not be used for any reason since it suffers from the previously mentioned issue of reusing nonces.

    Additionally, this change adds other applicable CSPs for the scripts, styles, images, manifest, and iframes that the landing pages load.

    A final consequence of this change is an extension of the renderLandingPage plugin hook. This hook can now return an object with an html property which returns a Promise<string> in addition to a string (which was the only option before).

v4.7.3

Compare Source

Patch Changes
  • #​7601 75b668d9e Thanks @​trevor-scheer! - Provide a new configuration option for landing page plugins precomputedNonce which allows users to provide a nonce and avoid calling into uuid functions on startup. This is useful for Cloudflare Workers where random number generation is not available on startup (only during requests). Unless you are using Cloudflare Workers, you can ignore this change.

    The example below assumes you've provided a PRECOMPUTED_NONCE variable in your wrangler.toml file.

    Example usage:

    const server = new ApolloServer({
      // ...
      plugins: [
        ApolloServerPluginLandingPageLocalDefault({
          precomputedNonce: PRECOMPUTED_NONCE,
        }),
      ],
    });

v4.7.2

Compare Source

Patch Changes
  • #​7599 c3f04d050 Thanks @​trevor-scheer! - Update @apollo/utils.usagereporting dependency. Previously, installing @apollo/gateway and @apollo/server could result in duplicate / differently versioned installs of @apollo/usage-reporting-protobuf. This is because the @apollo/server-gateway-interface package was updated to use the latest protobuf, but the @apollo/utils.usagereporting package was not. After this change, users should always end up with a single install of the protobuf package when installing both @apollo/server and @apollo/gateway latest versions.
babel/babel

v7.22.5

Compare Source

🐛 Bug Fix
💅 Polish
chakra-ui/chakra-ui

v2.7.1

Compare Source

Patch Changes
  • #​7730
    2456a7090
    Thanks @​TylerAPfledderer! - Expose the
    skip nav components and types to the main package

    import {
      SkipNavLink,
      type SkipNavLinkProps,
      SkipNavContent,
      type SkipNavContentProps,
    } from "@&#8203;chakra-ui/react"
emotion-js/emotion

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.
rollup/plugins

v25.0.2

Compare Source

2023-06-19

Bugfixes

v25.0.1

Compare Source

2023-06-10

Bugfixes
  • fix: change dynamicRequireRoot to normalizedDynamicRequireRoot && tweak related tests #​1508
storybookjs/storybook

v7.0.23

Compare Source

7.0.23

v7.0.22

Compare Source

7.0.22

v7.0.21

Compare Source

v7.0.20

Compare Source

Bug Fixes
  • Server: Fix .stories.yml support #​22906
  • Docs: Fix Source block snippet updates #​22835
  • Core: Fix indexing errors by excluding node_modules stories #​22873
  • CLI: Fix upgrade notification message #​22933
  • Angular: Add --open/--no-open flag to dev command #​22964
  • Angular: Silence compodoc when running storybook with --quiet #​22957
Maintenance
  • Core: Improve MDX of error in story index #​22782
Build
  • Build: Fix the theme output during development #​22841
  • Revert "Docs: E2E tests for Source block update fix" #​22934

v7.0.19

Compare Source

Bad release

testing-library/dom-testing-library

v9.3.1

Compare Source

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

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

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

v5.60.0

Compare Source

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

5.59.11 (2023-06-12)

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

5.59.10 (2023-06-12)

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

5.59.9 (2023-06-05)

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

[5.59.8](https://togithub.com/typescript-eslint/typescr

@changeset-bot
Copy link

changeset-bot bot commented Jun 4, 2023

⚠️ No Changeset found

Latest commit: 850a20e

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 to ^3.23.1 chore(deps): update all non-major dependencies Jun 5, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 7ff7866 to 7bb4a1d Compare June 5, 2023 22:10
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Jun 5, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from 48eb120 to 308d632 Compare June 9, 2023 17:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from 6153be0 to b641d42 Compare June 19, 2023 16:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from bf9e5c1 to fea3cc1 Compare June 23, 2023 06:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fea3cc1 to 29aaef7 Compare June 23, 2023 13:34
@Methuselah96 Methuselah96 enabled auto-merge (squash) June 23, 2023 14:14
@Methuselah96 Methuselah96 merged commit f1842af into main Jun 23, 2023
@Methuselah96 Methuselah96 deleted the renovate/all-minor-patch branch June 23, 2023 14:32
aliffazfar pushed a commit to aliffazfar/redux-devtools that referenced this pull request Jul 19, 2024
* fix(deps): update all non-major dependencies

* Update icon

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Nathan Bierema <[email protected]>
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