Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Bump the minor group across 1 directory with 10 updates #462

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 10, 2024

Bumps the minor group with 10 updates in the /frontend directory:

Package From To
@apollo/client 3.10.1 3.10.4
@babel/core 7.24.5 7.24.7
@graphql-codegen/client-preset 4.2.5 4.2.6
@pmmmwh/react-refresh-webpack-plugin 0.5.13 0.5.15
@testing-library/jest-dom 6.4.2 6.4.5
browserslist 4.23.0 4.23.1
css-loader 7.1.1 7.1.2
eslint-webpack-plugin 4.1.0 4.2.0
prettier 3.2.5 3.3.1
semver 7.6.0 7.6.2

Updates @apollo/client from 3.10.1 to 3.10.4

Release notes

Sourced from @​apollo/client's releases.

v3.10.4

Patch Changes

  • #11838 8475346 Thanks @​alex-kinokon! - Don’t prompt for DevTools installation for browser extension page

  • #11839 6481fe1 Thanks @​jerelmiller! - Fix a regression in 3.9.5 where a merge function that returned an incomplete result would not allow the client to refetch in order to fulfill the query.

  • #11844 86984f2 Thanks @​jerelmiller! - Honor the @nonreactive directive when using cache.watchFragment or the useFragment hook to avoid rerendering when using these directives.

  • #11824 47ad806 Thanks @​phryneas! - Create branded QueryRef type without exposed properties.

    This change deprecates QueryReference in favor of a QueryRef type that doesn't expose any properties. This change also updates preloadQuery to return a new PreloadedQueryRef type, which exposes the toPromise function as it does today. This means that query refs produced by useBackgroundQuery and useLoadableQuery now return QueryRef types that do not have access to a toPromise function, which was never meant to be used in combination with these hooks.

    While we tend to avoid any types of breaking changes in patch releases as this, this change was necessary to support an upcoming version of the React Server Component integration, which needed to omit the toPromise function that would otherwise have broken at runtime. Note that this is a TypeScript-only change. At runtime, toPromise is still present on all queryRefs currently created by this package - but we strongly want to discourage you from accessing it in all cases except for the PreloadedQueryRef use case.

    Migration is as simple as replacing all references to QueryReference with QueryRef, so it should be possible to do this with a search & replace in most code bases:

    -import { QueryReference } from '@apollo/client'
    +import { QueryRef } from '@apollo/client'
    
    function Component({ queryRef }: { queryRef: QueryReference<TData> }) {
    
    
    function Component({ queryRef }: { queryRef: QueryRef<TData> }) {
    // ...
    }
  • #11845 4c5c820 Thanks @​jerelmiller! - Remove @nonreactive directives from queries passed to MockLink to ensure they are properly matched.

  • #11837 dff15b1 Thanks @​jerelmiller! - Fix an issue where a polled query created in React strict mode may not stop polling after the component unmounts while using the cache-and-network fetch policy.

  • v3.10.3

    Patch Changes

    v3.10.2

    Patch Changes

    • #11821 2675d3c Thanks @​jerelmiller! - Fix a regression where rerendering a component with useBackgroundQuery would recreate the queryRef instance when used with React's strict mode.

    • #11821 2675d3c Thanks @​jerelmiller! - Revert the change introduced in 3.9.10 via #11738 that disposed of queryRefs synchronously. This change caused too many issues with strict mode.

    Changelog

    Sourced from @​apollo/client's changelog.

    3.10.4

    Patch Changes

    • #11838 8475346 Thanks @​alex-kinokon! - Don’t prompt for DevTools installation for browser extension page

    • #11839 6481fe1 Thanks @​jerelmiller! - Fix a regression in 3.9.5 where a merge function that returned an incomplete result would not allow the client to refetch in order to fulfill the query.

    • #11844 86984f2 Thanks @​jerelmiller! - Honor the @nonreactive directive when using cache.watchFragment or the useFragment hook to avoid rerendering when using these directives.

    • #11824 47ad806 Thanks @​phryneas! - Create branded QueryRef type without exposed properties.

      This change deprecates QueryReference in favor of a QueryRef type that doesn't expose any properties. This change also updates preloadQuery to return a new PreloadedQueryRef type, which exposes the toPromise function as it does today. This means that query refs produced by useBackgroundQuery and useLoadableQuery now return QueryRef types that do not have access to a toPromise function, which was never meant to be used in combination with these hooks.

      While we tend to avoid any types of breaking changes in patch releases as this, this change was necessary to support an upcoming version of the React Server Component integration, which needed to omit the toPromise function that would otherwise have broken at runtime. Note that this is a TypeScript-only change. At runtime, toPromise is still present on all queryRefs currently created by this package - but we strongly want to discourage you from accessing it in all cases except for the PreloadedQueryRef use case.

      Migration is as simple as replacing all references to QueryReference with QueryRef, so it should be possible to do this with a search & replace in most code bases:

      -import { QueryReference } from '@apollo/client'
      +import { QueryRef } from '@apollo/client'
      
      function Component({ queryRef }: { queryRef: QueryReference<TData> }) {
      
      
      function Component({ queryRef }: { queryRef: QueryRef<TData> }) {
      // ...
      }
  • #11845 4c5c820 Thanks @​jerelmiller! - Remove @nonreactive directives from queries passed to MockLink to ensure they are properly matched.

  • #11837 dff15b1 Thanks @​jerelmiller! - Fix an issue where a polled query created in React strict mode may not stop polling after the component unmounts while using the cache-and-network fetch policy.

  • 3.10.3

    Patch Changes

    3.10.2

    Patch Changes

    • #11821 2675d3c Thanks @​jerelmiller! - Fix a regression where rerendering a component with useBackgroundQuery would recreate the queryRef instance when used with React's strict mode.

    • #11821 2675d3c Thanks @​jerelmiller! - Revert the change introduced in 3.9.10 via #11738 that disposed of queryRefs synchronously. This change caused too many issues with strict mode.

    Commits
    • d773000 Version Packages (#11843)
    • 6481fe1 Fix merge function that returns incomplete result that did not refetch from n...
    • 4c5c820 Remove @nonreactive directives from queries passed to MockLink (#11845)
    • 86984f2 Honor @nonreactive with useFragment and cache.watchFragment (#11844)
    • 8475346 Don’t prompt for DevTools installation for browser extension page (#11838)
    • dff15b1 Fix issue where query may not stop polling after unmount when in Strict mode ...
    • 47ad806 create branded QueryRef type without exposed properties (#11824)
    • 857f100 [docs] Update explainer around reducing-bundle-size (#11791)
    • 3861b7c chore(docs): fix url for reset function (#11836)
    • 50da867 Version Packages (#11833)
    • Additional commits viewable in compare view

    Updates @babel/core from 7.24.5 to 7.24.7

    Release notes

    Sourced from @​babel/core's releases.

    v7.24.7 (2024-06-05)

    🐛 Bug Fix

    🏠 Internal

    • babel-helpers, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime

    Committers: 7

    v7.24.6 (2024-05-24)

    Thanks @​amjed-98, @​blakewilson, @​coelhucas, and @​SukkaW for your first PRs!

    🐛 Bug Fix

    • babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties
    • babel-core, babel-generator, babel-plugin-transform-modules-commonjs
    • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators
    • babel-helpers, babel-plugin-proposal-decorators, babel-runtime-corejs3
      • #16483 Fix: throw TypeError if addInitializer is called after finished (@​JLHwung)
    • babel-parser, babel-plugin-transform-typescript

    🏠 Internal

    • babel-core, babel-helpers, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
    • babel-helpers
    • babel-cli, babel-helpers, babel-plugin-external-helpers, babel-plugin-proposal-decorators, babel-plugin-transform-class-properties, babel-plugin-transform-modules-commonjs, babel-plugin-transform-modules-systemjs, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
    • babel-parser, babel-traverse
    • Other

    ... (truncated)

    Changelog

    Sourced from @​babel/core's changelog.

    v7.24.7 (2024-06-05)

    🐛 Bug Fix

    🏠 Internal

    • babel-helpers, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime

    v7.24.6 (2024-05-24)

    🐛 Bug Fix

    • babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties
    • babel-core, babel-generator, babel-plugin-transform-modules-commonjs
    • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators
    • babel-helpers, babel-plugin-proposal-decorators, babel-runtime-corejs3
      • #16483 Fix: throw TypeError if addInitializer is called after finished (@​JLHwung)
    • babel-parser, babel-plugin-transform-typescript

    🏠 Internal

    • babel-core, babel-helpers, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
    • babel-helpers
    • babel-cli, babel-helpers, babel-plugin-external-helpers, babel-plugin-proposal-decorators, babel-plugin-transform-class-properties, babel-plugin-transform-modules-commonjs, babel-plugin-transform-modules-systemjs, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
    • babel-parser, babel-traverse
    • Other
    Commits

    Updates @graphql-codegen/client-preset from 4.2.5 to 4.2.6

    Release notes

    Sourced from @​graphql-codegen/client-preset's releases.

    Release 2022-08-04T13:12:01.667Z

    @​graphql-codegen/graphql-modules-preset@​2.5.0

    Minor Changes

    Release 2022-08-04T13:05:23.977Z

    No release notes provided.

    Release 2022-08-04T13:02:57.827Z

    No release notes provided.

    Changelog

    Sourced from @​graphql-codegen/client-preset's changelog.

    4.2.6

    Patch Changes

    • Updated dependencies [dfc5310, 156cc2b, dfc5310, b49457b]:
      • @​graphql-codegen/plugin-helpers@​5.0.4
      • @​graphql-codegen/visitor-plugin-common@​5.2.0
      • @​graphql-codegen/gql-tag-operations@​4.0.7
      • @​graphql-codegen/typescript-operations@​4.2.1
      • @​graphql-codegen/typed-document-node@​5.0.7
      • @​graphql-codegen/typescript@​4.0.7
    Commits

    Updates @pmmmwh/react-refresh-webpack-plugin from 0.5.13 to 0.5.15

    Release notes

    Sourced from @​pmmmwh/react-refresh-webpack-plugin's releases.

    v0.5.15

    0.5.15 (3 Jun 2024)

    Fixes

    • Fixed wrong import in error overlay for ansi-html (#853)

    v0.5.14

    0.5.14 (1 Jun 2024)

    Fixes

    • Moved to ansi-html v0.0.9 and schema-utils v4.x (#848)

    Internal

    • Run tests on latest versions of Node.js 18, 20 and 22 (#848)
    • Bumped jest to v29 and some other development dependencies (#848)
    • Removed yalc (#849)
    Changelog

    Sourced from @​pmmmwh/react-refresh-webpack-plugin's changelog.

    0.5.15 (3 Jun 2024)

    Fixes

    • Fixed wrong import in error overlay for ansi-html (#853)

    0.5.14 (1 Jun 2024)

    Fixes

    • Moved to ansi-html v0.0.9 and schema-utils v4.x (#848)

    Internal

    • Run tests on latest versions of Node.js 18, 20 and 22 (#848)
    • Bumped jest to v29 and some other development dependencies (#848)
    • Removed yalc (#849)
    Commits

    Updates @testing-library/jest-dom from 6.4.2 to 6.4.5

    Release notes

    Sourced from @​testing-library/jest-dom's releases.

    v6.4.5

    6.4.5 (2024-05-03)

    Bug Fixes

    v6.4.4

    6.4.4 (2024-05-03)

    Bug Fixes

    v6.4.3

    6.4.3 (2024-05-03)

    Bug Fixes

    • Updates role support for aria-required attribute in toBeRequired (#590) (20aca33)
    Commits
    • e8c8b13 fix: add js suffix to isEqualWith import (#599)
    • f03a582 fix(infra): codecoverage token addition (#600)
    • 20aca33 fix: Updates role support for aria-required attribute in toBeRequired (#590)
    • bd82f64 refactor: replace lodash with own implementation when possible (#593)
    • See full diff in compare view

    Updates browserslist from 4.23.0 to 4.23.1

    Release notes

    Sourced from browserslist's releases.

    4.23.1

    • Fixed feature query with mobile to desktop when caniuse lags (by @​steverep).
    Changelog

    Sourced from browserslist's changelog.

    4.23.1

    • Fixed feature query with mobile to desktop when caniuse lags (by @​steverep).
    Commits

    Updates css-loader from 7.1.1 to 7.1.2

    Release notes

    Sourced from css-loader's releases.

    v7.1.2

    7.1.2 (2024-05-22)

    Bug Fixes

    • keep order of @imports with the webpackIgnore comment (#1600) (76757ef)
    Changelog

    Sourced from css-loader's changelog.

    7.1.2 (2024-05-22)

    Bug Fixes

    • keep order of @imports with the webpackIgnore comment (#1600) (76757ef)
    Commits

    Updates eslint-webpack-plugin from 4.1.0 to 4.2.0

    Release notes

    Sourced from eslint-webpack-plugin's releases.

    v4.2.0

    4.2.0 (2024-05-24)

    Features

    Bug Fixes

    • use stillValidModule only lintDirtyModulesOnly is disabled (#253) (b52d1e7)
    Changelog

    Sourced from eslint-webpack-plugin's changelog.

    4.2.0 (2024-05-24)

    Features

    Bug Fixes

    • use stillValidModule only lintDirtyModulesOnly is disabled (#253) (b52d1e7)
    Commits

    Updates prettier from 3.2.5 to 3.3.1

    Release notes

    Sourced from prettier's releases.

    3.3.1

    🔗 Changelog

    3.3.0

    diff

    🔗 Release note

    Changelog

    Sourced from prettier's changelog.

    3.3.1

    diff

    Preserve empty lines in front matter (#16347 by @​fisker)

    <!-- Input -->
    ---
    foo:
      - bar1
    
    
    bar2
    
    
    bar3
    
    
    
    Markdown
    <!-- Prettier 3.3.0 -->
    
    foo:
    
    bar1
    bar2
    bar3
    
    
    Markdown
    <!-- Prettier 3.3.1 -->
    foo:
    
    
    bar1
    
    
    bar2
    
    
    bar3
    
    
    
    Markdown

    Preserve explicit language in front matter (#16348 by @​fisker)

    <!-- Input -->
    ---yaml
    </tr></table> 

    ... (truncated)

    Commits

    Updates semver from 7.6.0 to 7.6.2

    Release notes

    Sourced from semver's releases.

    v7.6.2

    7.6.2 (2024-05-09)

    Bug Fixes

    v7.6.1

    7.6.1 (2024-05-04)

    Bug Fixes

    Dependencies

    Chores

    Changelog

    Sourced from semver's changelog.

    7.6.2 (2024-05-09)

    Bug Fixes

    7.6.1 (2024-05-04)

    Bug Fixes

    Dependencies

    Chores

    Commits

    Bumps the minor group with 10 updates in the /frontend directory:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@apollo/client](https://github.com/apollographql/apollo-client) | `3.10.1` | `3.10.4` |
    | [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.24.5` | `7.24.7` |
    | [@graphql-codegen/client-preset](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/presets/client) | `4.2.5` | `4.2.6` |
    | [@pmmmwh/react-refresh-webpack-plugin](https://github.com/pmmmwh/react-refresh-webpack-plugin) | `0.5.13` | `0.5.15` |
    | [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) | `6.4.2` | `6.4.5` |
    | [browserslist](https://github.com/browserslist/browserslist) | `4.23.0` | `4.23.1` |
    | [css-loader](https://github.com/webpack-contrib/css-loader) | `7.1.1` | `7.1.2` |
    | [eslint-webpack-plugin](https://github.com/webpack-contrib/eslint-webpack-plugin) | `4.1.0` | `4.2.0` |
    | [prettier](https://github.com/prettier/prettier) | `3.2.5` | `3.3.1` |
    | [semver](https://github.com/npm/node-semver) | `7.6.0` | `7.6.2` |
    
    
    
    Updates `@apollo/client` from 3.10.1 to 3.10.4
    - [Release notes](https://github.com/apollographql/apollo-client/releases)
    - [Changelog](https://github.com/apollographql/apollo-client/blob/main/CHANGELOG.md)
    - [Commits](apollographql/apollo-client@v3.10.1...v3.10.4)
    
    Updates `@babel/core` from 7.24.5 to 7.24.7
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.24.7/packages/babel-core)
    
    Updates `@graphql-codegen/client-preset` from 4.2.5 to 4.2.6
    - [Release notes](https://github.com/dotansimha/graphql-code-generator/releases)
    - [Changelog](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/presets/client/CHANGELOG.md)
    - [Commits](https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/[email protected]/packages/presets/client)
    
    Updates `@pmmmwh/react-refresh-webpack-plugin` from 0.5.13 to 0.5.15
    - [Release notes](https://github.com/pmmmwh/react-refresh-webpack-plugin/releases)
    - [Changelog](https://github.com/pmmmwh/react-refresh-webpack-plugin/blob/main/CHANGELOG.md)
    - [Commits](pmmmwh/react-refresh-webpack-plugin@v0.5.13...v0.5.15)
    
    Updates `@testing-library/jest-dom` from 6.4.2 to 6.4.5
    - [Release notes](https://github.com/testing-library/jest-dom/releases)
    - [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md)
    - [Commits](testing-library/jest-dom@v6.4.2...v6.4.5)
    
    Updates `browserslist` from 4.23.0 to 4.23.1
    - [Release notes](https://github.com/browserslist/browserslist/releases)
    - [Changelog](https://github.com/browserslist/browserslist/blob/main/CHANGELOG.md)
    - [Commits](browserslist/browserslist@4.23.0...4.23.1)
    
    Updates `css-loader` from 7.1.1 to 7.1.2
    - [Release notes](https://github.com/webpack-contrib/css-loader/releases)
    - [Changelog](https://github.com/webpack-contrib/css-loader/blob/master/CHANGELOG.md)
    - [Commits](webpack-contrib/css-loader@v7.1.1...v7.1.2)
    
    Updates `eslint-webpack-plugin` from 4.1.0 to 4.2.0
    - [Release notes](https://github.com/webpack-contrib/eslint-webpack-plugin/releases)
    - [Changelog](https://github.com/webpack-contrib/eslint-webpack-plugin/blob/master/CHANGELOG.md)
    - [Commits](webpack-contrib/eslint-webpack-plugin@v4.1.0...v4.2.0)
    
    Updates `prettier` from 3.2.5 to 3.3.1
    - [Release notes](https://github.com/prettier/prettier/releases)
    - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
    - [Commits](prettier/prettier@3.2.5...3.3.1)
    
    Updates `semver` from 7.6.0 to 7.6.2
    - [Release notes](https://github.com/npm/node-semver/releases)
    - [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md)
    - [Commits](npm/node-semver@v7.6.0...v7.6.2)
    
    ---
    updated-dependencies:
    - dependency-name: "@apollo/client"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: minor
    - dependency-name: "@babel/core"
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: minor
    - dependency-name: "@graphql-codegen/client-preset"
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: minor
    - dependency-name: "@pmmmwh/react-refresh-webpack-plugin"
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: minor
    - dependency-name: "@testing-library/jest-dom"
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: minor
    - dependency-name: browserslist
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: minor
    - dependency-name: css-loader
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: minor
    - dependency-name: eslint-webpack-plugin
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: minor
    - dependency-name: prettier
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: minor
    - dependency-name: semver
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    @dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jun 10, 2024
    Copy link
    Contributor Author

    dependabot bot commented on behalf of github Jun 17, 2024

    Looks like these dependencies are updatable in another way, so this is no longer needed.

    @dependabot dependabot bot closed this Jun 17, 2024
    @dependabot dependabot bot deleted the dependabot/npm_and_yarn/frontend/minor-c666666bbc branch June 17, 2024 20:09
    Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
    Labels
    dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
    Projects
    None yet
    Development

    Successfully merging this pull request may close these issues.

    0 participants