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: Bump the graphql group with 9 updates #2217

Merged
merged 1 commit into from
Sep 2, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 2, 2023

Bumps the graphql group with 9 updates:

Package From To
@apollo/client 3.7.17 3.8.2
@apollo/server 4.7.5 4.9.3
@as-integrations/h3 1.1.5 1.1.6
graphql 16.7.1 16.8.0
graphql-passport 0.6.5 0.6.7
@graphql-codegen/cli 4.0.1 5.0.0
@graphql-eslint/eslint-plugin 3.20.0 3.20.1
@graphql-inspector/cli 4.0.1 4.0.2
graphql-codegen-typescript-validation-schema 0.11.1 0.12.0

Updates @apollo/client from 3.7.17 to 3.8.2

Release notes

Sourced from @​apollo/client's releases.

v3.8.2

Patch Changes

  • #10072 51045c336 Thanks @​Huulivoide! - Fixes race conditions in useReactiveVar that may prevent updates to the reactive variable from propagating through the hook.

  • #11162 d9685f53c Thanks @​jerelmiller! - Ensures GraphQL errors returned in subscription payloads adhere to the errorPolicy set in client.subscribe(...) calls.

  • #11134 96492e142 Thanks @​alessbell! - Use separate type imports in useSuspenseQuery and useBackgroundQuery to workaround SWC compiler issue.

  • #11117 6b8198109 Thanks @​phryneas! - Adds a new devtools registration mechanism and tweaks the mechanism behind the "devtools not found" mechanic.

  • #11186 f1d429f32 Thanks @​jerelmiller! - Fix an issue where race conditions when rapidly switching between variables would sometimes result in the wrong data returned from the query. Specifically this occurs when a query is triggered with an initial set of variables (VariablesA), then triggers the same query with another set of variables (VariablesB) but switches back to the VariablesA before the response for VariablesB is returned. Previously this would result in the data for VariablesB to be displayed while VariablesA was active. The data is for VariablesA is now properly returned.

  • #11163 a8a9e11e9 Thanks @​bignimbus! - Fix typo in error message: "occured" -> "occurred"

  • #11180 7d9c481e5 Thanks @​jerelmiller! - Fixes an issue where refetching from useBackgroundQuery via refetch with an error after an error was already fetched would get stuck in a loading state.

v3.8.1

Patch Changes

  • #11141 c469b1616 Thanks @​jerelmiller! - Remove newly exported response iterator helpers that caused problems on some installs where @types/node was not available.

    IMPORTANT

    The following exports were added in version 3.8.0 that are removed with this patch.

    • isAsyncIterableIterator
    • isBlob
    • isNodeReadableStream
    • isNodeResponse
    • isReadableStream
    • isStreamableBlob

v3.8.0

Minor Changes

Fetching with Suspense 🎉

  • #10323 64cb88a4b Thanks @​jerelmiller! - Add support for React suspense with a new useSuspenseQuery hook.

    useSuspenseQuery initiates a network request and causes the component calling it to suspend while the request is in flight. It can be thought of as a drop-in replacement for useQuery that allows you to take advantage of React's concurrent features while fetching during render.

    Consider a Dog component that fetches and renders some information about a dog named Mozzarella:

    import { Suspense } from 'react';

... (truncated)

Changelog

Sourced from @​apollo/client's changelog.

3.8.2

Patch Changes

  • #10072 51045c336 Thanks @​Huulivoide! - Fixes race conditions in useReactiveVar that may prevent updates to the reactive variable from propagating through the hook.

  • #11162 d9685f53c Thanks @​jerelmiller! - Ensures GraphQL errors returned in subscription payloads adhere to the errorPolicy set in client.subscribe(...) calls.

  • #11134 96492e142 Thanks @​alessbell! - Use separate type imports in useSuspenseQuery and useBackgroundQuery to workaround SWC compiler issue.

  • #11117 6b8198109 Thanks @​phryneas! - Adds a new devtools registration mechanism and tweaks the mechanism behind the "devtools not found" mechanic.

  • #11186 f1d429f32 Thanks @​jerelmiller! - Fix an issue where race conditions when rapidly switching between variables would sometimes result in the wrong data returned from the query. Specifically this occurs when a query is triggered with an initial set of variables (VariablesA), then triggers the same query with another set of variables (VariablesB) but switches back to the VariablesA before the response for VariablesB is returned. Previously this would result in the data for VariablesB to be displayed while VariablesA was active. The data is for VariablesA is now properly returned.

  • #11163 a8a9e11e9 Thanks @​bignimbus! - Fix typo in error message: "occured" -> "occurred"

  • #11180 7d9c481e5 Thanks @​jerelmiller! - Fixes an issue where refetching from useBackgroundQuery via refetch with an error after an error was already fetched would get stuck in a loading state.

3.8.1

Patch Changes

  • #11141 c469b1616 Thanks @​jerelmiller! - Remove newly exported response iterator helpers that caused problems on some installs where @types/node was not available.

    IMPORTANT

    The following exports were added in version 3.8.0 that are removed with this patch.

    • isAsyncIterableIterator
    • isBlob
    • isNodeReadableStream
    • isNodeResponse
    • isReadableStream
    • isStreamableBlob

3.8.0

Minor Changes

Fetching with Suspense 🎉

  • #10323 64cb88a4b Thanks @​jerelmiller! - Add support for React suspense with a new useSuspenseQuery hook.

    useSuspenseQuery initiates a network request and causes the component calling it to suspend while the request is in flight. It can be thought of as a drop-in replacement for useQuery that allows you to take advantage of React's concurrent features while fetching during render.

    Consider a Dog component that fetches and renders some information about a dog named Mozzarella:

... (truncated)

Commits
  • 1fd7e77 Version Packages (#11164)
  • f1d429f Fixes race condition when changing back to initial variables before request f...
  • 51045c3 Fix race condition in useReactiveVar (#10072)
  • d414de7 chore: bumps typedoc version for TS 5.2 compatibility (#11188)
  • 7d9c481 Fixes issue where refetching an error after an error was returned would hang ...
  • 6b81981 New devtools registration mechanism (#11117)
  • eef27e5 Enforce prettier formatting in PRs (#11185)
  • fd6f369 Add entry to git-blame-ignore-revs
  • 994ae91 Reformat missed files from #11170
  • f0bb56c Add a format command
  • Additional commits viewable in compare view

Updates @apollo/server from 4.7.5 to 4.9.3

Release notes

Sourced from @​apollo/server's releases.

@​apollo/server-integration-testsuite@​4.9.3

Patch Changes

@​apollo/server@​4.9.3

Patch Changes

  • a1c725eaf Thanks @​trevor-scheer! - Ensure API keys are valid header values on startup

    Apollo Server previously performed no sanitization or validation of API keys on startup. In the case that an API key was provided which contained characters that are invalid as header values, Apollo Server could inadvertently log the API key in cleartext.

    This only affected users who:

    • Provide an API key with characters that are invalid as header values
    • Use either schema or usage reporting
    • Use the default fetcher provided by Apollo Server or configure their own node-fetch fetcher

    Apollo Server now trims whitespace from API keys and validates that they are valid header values. If an invalid API key is provided, Apollo Server will throw an error on startup.

    For more details, see the security advisory: GHSA-j5g3-5c8r-7qfx

@​apollo/server-integration-testsuite@​4.9.2

Patch Changes

@​apollo/server@​4.9.2

Patch Changes

  • #7699 62e7d940d Thanks @​trevor-scheer! - Fix error path attachment for list items

    Previously, when errors occurred while resolving a list item, the trace builder would fail to place the error at the correct path and just default to the root node with a warning message:

    Could not find node with path x.y.1, defaulting to put errors on root node.

    This change places these errors at their correct paths and removes the log.

@​apollo/server-integration-testsuite@​4.9.1

Patch Changes

@​apollo/server@​4.9.1

Patch Changes

... (truncated)

Changelog

Sourced from @​apollo/server's changelog.

4.9.3

Patch Changes

  • a1c725eaf Thanks @​trevor-scheer! - Ensure API keys are valid header values on startup

    Apollo Server previously performed no sanitization or validation of API keys on startup. In the case that an API key was provided which contained characters that are invalid as header values, Apollo Server could inadvertently log the API key in cleartext.

    This only affected users who:

    • Provide an API key with characters that are invalid as header values
    • Use either schema or usage reporting
    • Use the default fetcher provided by Apollo Server or configure their own node-fetch fetcher

    Apollo Server now trims whitespace from API keys and validates that they are valid header values. If an invalid API key is provided, Apollo Server will throw an error on startup.

    For more details, see the security advisory: GHSA-j5g3-5c8r-7qfx

4.9.2

Patch Changes

  • #7699 62e7d940d Thanks @​trevor-scheer! - Fix error path attachment for list items

    Previously, when errors occurred while resolving a list item, the trace builder would fail to place the error at the correct path and just default to the root node with a warning message:

    Could not find node with path x.y.1, defaulting to put errors on root node.

    This change places these errors at their correct paths and removes the log.

4.9.1

Patch Changes

4.9.0

Minor Changes

  • #7617 4ff81ca50 Thanks @​trevor-scheer! - Introduce new ApolloServerPluginSubscriptionCallback plugin. This plugin implements the subscription callback protocol which is used by Apollo Router. This feature implements subscriptions over HTTP via a callback URL which Apollo Router registers with Apollo Server. This feature is currently in preview and is subject to change.

    You can enable callback subscriptions like so:

    import { ApolloServerPluginSubscriptionCallback } from '@apollo/server/plugin/subscriptionCallback';
    import { ApolloServer } from '@apollo/server';
    const server = new ApolloServer({

... (truncated)

Commits

Updates @as-integrations/h3 from 1.1.5 to 1.1.6

Release notes

Sourced from @​as-integrations/h3's releases.

v1.1.6

1.1.6 (2023-08-23)

🐛 Bug Fixes

🧹 Miscellaneous

  • deps: update all non-major dependencies (#25) (f84bd81)
  • deps: update all non-major dependencies (#27) (d56b97a)
  • deps: update all non-major dependencies (#29) (608fca2)
  • deps: update all non-major dependencies (#36) (fd9e66e)
  • deps: update devdependency @​apollo/utils.withrequired to v3 (#32) (d6a38aa)
  • deps: update devdependency eslint-config-prettier to v9 (#37) (d65787c)
  • deps: update devdependency eslint-plugin-unused-imports to v3 (#35) (4bf76f0)
  • deps: update devdependency prettier to v3 (#33) (e4b6d52)
  • deps: update devdependency typescript to v5 (#30) (aaa80fb)
  • deps: update devdependency unbuild to v2 (80894a0)
  • deps: update pnpm to v7.29.0 (#28) (ba669c5)
  • deps: update pnpm to v8 (#31) (ef38ad7)
  • deps: update typescript-eslint monorepo to v6 (#34) (e963517)
  • remove problematic types export and instead bundle type definitions for esm and cjs (8e99791)
Changelog

Sourced from @​as-integrations/h3's changelog.

1.1.6 (2023-08-23)

🐛 Bug Fixes

🧹 Miscellaneous

  • deps: update all non-major dependencies (#25) (f84bd81)
  • deps: update all non-major dependencies (#27) (d56b97a)
  • deps: update all non-major dependencies (#29) (608fca2)
  • deps: update all non-major dependencies (#36) (fd9e66e)
  • deps: update devdependency @​apollo/utils.withrequired to v3 (#32) (d6a38aa)
  • deps: update devdependency eslint-config-prettier to v9 (#37) (d65787c)
  • deps: update devdependency eslint-plugin-unused-imports to v3 (#35) (4bf76f0)
  • deps: update devdependency prettier to v3 (#33) (e4b6d52)
  • deps: update devdependency typescript to v5 (#30) (aaa80fb)
  • deps: update devdependency unbuild to v2 (80894a0)
  • deps: update pnpm to v7.29.0 (#28) (ba669c5)
  • deps: update pnpm to v8 (#31) (ef38ad7)
  • deps: update typescript-eslint monorepo to v6 (#34) (e963517)
  • remove problematic types export and instead bundle type definitions for esm and cjs (8e99791)
Commits
  • 635931a chore(main): release 1.1.6 (#26)
  • e4b6d52 chore(deps): update devdependency prettier to v3 (#33)
  • 01c7834 fix: improve request body parsing (#39)
  • fd9e66e chore(deps): update all non-major dependencies (#36)
  • 8e99791 chore: remove problematic types export and instead bundle type definitions fo...
  • 80894a0 chore(deps): update devdependency unbuild to v2
  • 4bf76f0 chore(deps): update devdependency eslint-plugin-unused-imports to v3 (#35)
  • d65787c chore(deps): update devdependency eslint-config-prettier to v9 (#37)
  • 608fca2 chore(deps): update all non-major dependencies (#29)
  • aaa80fb chore(deps): update devdependency typescript to v5 (#30)
  • Additional commits viewable in compare view

Updates graphql from 16.7.1 to 16.8.0

Release notes

Sourced from graphql's releases.

v16.8.0 (2023-08-14)

New Feature 🚀

Committers: 1

Commits

Updates graphql-passport from 0.6.5 to 0.6.7

Commits
  • 5770fc0 0.6.7
  • 3692fd0 Update repository and author in package.json
  • ad309bd Bump word-wrap from 1.2.3 to 1.2.4 (#89)
  • 867180b 0.6.6
  • 9963359 Remove superfluous @types/node-fetch (#86)
  • 1fd2ac7 Merge branch 'dependabot/npm_and_yarn/tough-cookie-4.1.3'
  • 661f1ef Merge branch 'origin/dependabot/npm_and_yarn/cookiejar-2.1.4'
  • c014a9e Merge branch 'origin/dependabot/npm_and_yarn/json5-1.0.2'
  • c658fe1 Merge branch 'origin/dependabot/npm_and_yarn/express-4.17.3'
  • e30e5c8 Merge branch 'dependabot/npm_and_yarn/qs-and-body-parser-6.11.0'
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by ericbf, a new releaser for graphql-passport since your current version.


Updates @graphql-codegen/cli from 4.0.1 to 5.0.0

Changelog

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

5.0.0

Major Changes

Patch Changes

Commits

Updates @graphql-eslint/eslint-plugin from 3.20.0 to 3.20.1

Commits
  • ba9f4aa chore(release): update monorepo packages versions (#1751)
  • 7b461a1 fix Unexpected top-level property "default", targeting for legacy Node.js ver...
  • 28e99a2 chore(deps): update dependency dedent to v1 (#1746)
  • 26441c1 chore(deps): lock file maintenance (#1745)
  • 3019227 chore(deps): update @​theguild/components (#1743)
  • 2d57a10 chore(deps): update dependency @​theguild/tailwind-config to v0.3.0 (#1742)
  • 3edc23b chore(deps): update dependency @​theguild/eslint-config to v0.11.0 (#1741)
  • 805f26b chore(deps): update dependency svelte-eslint-parser to v0.32.1 (#1740)
  • 096373d fix(deps): update dependency next to v13.4.9 (#1739)
  • b2dce59 chore(deps): update dependency svelte2tsx to v0.6.19 (#1735)
  • Additional commits viewable in compare view

Updates @graphql-inspector/cli from 4.0.1 to 4.0.2

Changelog

Sourced from @​graphql-inspector/cli's changelog.

4.0.2

Patch Changes

... (truncated)

Commits

Updates graphql-codegen-typescript-validation-schema from 0.11.1 to 0.12.0

Release notes

Sourced from graphql-codegen-typescript-validation-schema's releases.

v0.12.0

Supported to generate validation schema for variables 😄

What's Changed

@github-actions
Copy link

github-actions bot commented Sep 2, 2023

Bumps the graphql group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [@apollo/client](https://github.com/apollographql/apollo-client) | `3.7.17` | `3.8.2` |
| [@apollo/server](https://github.com/apollographql/apollo-server/tree/HEAD/packages/server) | `4.7.5` | `4.9.3` |
| [@as-integrations/h3](https://github.com/apollo-server-integrations/apollo-server-integration-h3) | `1.1.5` | `1.1.6` |
| [graphql](https://github.com/graphql/graphql-js) | `16.7.1` | `16.8.0` |
| [graphql-passport](https://github.com/ericmakesapps/graphql-passport) | `0.6.5` | `0.6.7` |
| [@graphql-codegen/cli](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/graphql-codegen-cli) | `4.0.1` | `5.0.0` |
| [@graphql-eslint/eslint-plugin](https://github.com/B2o5T/graphql-eslint) | `3.20.0` | `3.20.1` |
| [@graphql-inspector/cli](https://github.com/kamilkisiela/graphql-inspector/tree/HEAD/packages/cli) | `4.0.1` | `4.0.2` |
| [graphql-codegen-typescript-validation-schema](https://github.com/Code-Hex/graphql-codegen-typescript-validation-schema) | `0.11.1` | `0.12.0` |


Updates `@apollo/client` from 3.7.17 to 3.8.2
- [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.7.17...v3.8.2)

Updates `@apollo/server` from 4.7.5 to 4.9.3
- [Release notes](https://github.com/apollographql/apollo-server/releases)
- [Changelog](https://github.com/apollographql/apollo-server/blob/main/packages/server/CHANGELOG.md)
- [Commits](https://github.com/apollographql/apollo-server/commits/@apollo/[email protected]/packages/server)

Updates `@as-integrations/h3` from 1.1.5 to 1.1.6
- [Release notes](https://github.com/apollo-server-integrations/apollo-server-integration-h3/releases)
- [Changelog](https://github.com/apollo-server-integrations/apollo-server-integration-h3/blob/main/CHANGELOG.md)
- [Commits](apollo-server-integrations/apollo-server-integration-h3@v1.1.5...v1.1.6)

Updates `graphql` from 16.7.1 to 16.8.0
- [Release notes](https://github.com/graphql/graphql-js/releases)
- [Commits](graphql/graphql-js@v16.7.1...v16.8.0)

Updates `graphql-passport` from 0.6.5 to 0.6.7
- [Commits](ericmakesapps/graphql-passport@v0.6.5...v0.6.7)

Updates `@graphql-codegen/cli` from 4.0.1 to 5.0.0
- [Release notes](https://github.com/dotansimha/graphql-code-generator/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/graphql-codegen-cli/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/[email protected]/packages/graphql-codegen-cli)

Updates `@graphql-eslint/eslint-plugin` from 3.20.0 to 3.20.1
- [Release notes](https://github.com/B2o5T/graphql-eslint/releases)
- [Commits](https://github.com/B2o5T/graphql-eslint/compare/@graphql-eslint/[email protected]...@graphql-eslint/[email protected])

Updates `@graphql-inspector/cli` from 4.0.1 to 4.0.2
- [Release notes](https://github.com/kamilkisiela/graphql-inspector/releases)
- [Changelog](https://github.com/kamilkisiela/graphql-inspector/blob/master/packages/cli/CHANGELOG.md)
- [Commits](https://github.com/kamilkisiela/graphql-inspector/commits/@graphql-inspector/[email protected]/packages/cli)

Updates `graphql-codegen-typescript-validation-schema` from 0.11.1 to 0.12.0
- [Release notes](https://github.com/Code-Hex/graphql-codegen-typescript-validation-schema/releases)
- [Commits](Code-Hex/graphql-codegen-typescript-validation-schema@v0.11.1...v0.12.0)

---
updated-dependencies:
- dependency-name: "@apollo/client"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: graphql
- dependency-name: "@apollo/server"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: graphql
- dependency-name: "@as-integrations/h3"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: graphql
- dependency-name: graphql
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: graphql
- dependency-name: graphql-passport
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: graphql
- dependency-name: "@graphql-codegen/cli"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: graphql
- dependency-name: "@graphql-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: graphql
- dependency-name: "@graphql-inspector/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: graphql
- dependency-name: graphql-codegen-typescript-validation-schema
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: graphql
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/graphql-dff11f108c branch from aad4632 to 004fe5d Compare September 2, 2023 18:07
@tobiasdiez tobiasdiez merged commit 5bec670 into main Sep 2, 2023
5 checks passed
@tobiasdiez tobiasdiez deleted the dependabot/npm_and_yarn/graphql-dff11f108c branch September 2, 2023 18:26
Siedlerchr added a commit that referenced this pull request Sep 4, 2023
* upstream/main: (31 commits)
  chore: add progress bar to journal data update script (#2182)
  chore: Bump pinia from 2.1.4 to 2.1.6 (#2153)
  chore: Bump concurrently from 8.2.0 to 8.2.1 (#2200)
  chore: Bump the vue group with 7 updates (#2212)
  chore: Bump @yaireo/tagify and @types/yaireo__tagify (#2195)
  chore: Bump the eslint group with 3 updates (#2218)
  chore: replace last patch-package patch by yarn patch (#2224)
  chore: split deploy workflow (#2223)
  chore: enable organize-imports prettier plugin (#2220)
  chore: extend nuxt dependabot group by zod and ufo (#2221)
  chore: Bump the vitest group with 3 updates (#2210)
  chore: Bump autoprefixer from 10.4.14 to 10.4.15 (#2198)
  chore: Bump the prisma group with 2 updates (#2190)
  chore: Bump the prettier group with 2 updates (#2206)
  chore: Bump redis from 4.6.7 to 4.6.8 (#2191)
  chore: Bump typescript from 5.1.6 to 5.2.2 (#2197)
  chore: Bump the graphql group with 9 updates (#2217)
  chore: Bump the types group with 3 updates (#2213)
  chore: Bump actions/checkout from 3.5.3 to 3.6.0 (#2186)
  chore: fix version regex (#2216)
  ...

# Conflicts:
#	.github/workflows/deploy.yml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant