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 7 updates #2169

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 13, 2023

Bumps the graphql group with 7 updates:

Package Update
@apollo/client 3.7.17 to 3.8.1
@apollo/server 4.7.5 to 4.9.1
graphql-passport 0.6.5 to 0.6.7
@graphql-codegen/cli 4.0.1 to 5.0.0
@graphql-eslint/eslint-plugin 3.20.0 to 3.20.1
@graphql-inspector/cli 4.0.1 to 4.0.2
graphql-codegen-typescript-validation-schema 0.11.1 to 0.12.0

Updates @apollo/client from 3.7.17 to 3.8.1

Release notes

Sourced from @​apollo/client's releases.

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';
    import { gql, TypedDocumentNode, useSuspenseQuery } from '@apollo/client';
    interface Data {
    dog: {
    id: string;
    name: string;
    };
    }
    interface Variables {
    name: string;
    }
    const GET_DOG_QUERY: TypedDocumentNode<Data, Variables> = gql`
    query GetDog($name: String) {
    dog(name: $name) {
    id
    name

... (truncated)

Changelog

Sourced from @​apollo/client's changelog.

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:

    import { Suspense } from "react";
    import { gql, TypedDocumentNode, useSuspenseQuery } from "@apollo/client";
    interface Data {
    dog: {
    id: string;
    name: string;
    };
    }
    interface Variables {
    name: string;
    }
    const GET_DOG_QUERY: TypedDocumentNode<Data, Variables> = gql`
    query GetDog($name: String) {
    dog(name: $name) {

... (truncated)

Commits
  • 180ef2e Version Packages (#11144)
  • 3b1ead9 Merge pull request #11137 from apollographql/docs/update-persisted-queries
  • c164d2c Merge branch 'main' into docs/update-persisted-queries
  • c469b16 Fix issue where a bare install had some issues with a @types/node import in...
  • 3583371 Use "operation manifest" rather than "operations manifest"
  • 68e2675 Use <ClientPQImplementation> component
  • 8a0af6f Use shared content components
  • 749cabe Merge branch 'main' into docs/update-persisted-queries
  • 4b501e1 [docs] make docs edits from Meschreiber's PR review (#11136)
  • 6221ade Update ROADMAP.md to remove 3.8 now that it's released 🎉 (#11139)
  • Additional commits viewable in compare view

Updates @apollo/server from 4.7.5 to 4.9.1

Release notes

Sourced from @​apollo/server's releases.

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

Patch Changes

@​apollo/server@​4.9.1

Patch Changes

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

Patch Changes

@​apollo/server@​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({
    // ...
    plugins: [ApolloServerPluginSubscriptionCallback()],
    });

    Note that there is currently no tracing or metrics mechanism in place for callback subscriptions. Additionally, this plugin "intercepts" callback subscription requests and bypasses some of Apollo Server's internals. The result of this is that certain plugin hooks (notably executionDidStart and willResolveField) will not be called when handling callback subscription requests or when sending subscription events.

    For more information on the subscription callback protocol, visit the docs: https://www.apollographql.com/docs/router/executing-operations/subscription-callback-protocol/

Patch Changes

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

Patch Changes

... (truncated)

Changelog

Sourced from @​apollo/server's changelog.

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({
    // ...
    plugins: [ApolloServerPluginSubscriptionCallback()],
    });

    Note that there is currently no tracing or metrics mechanism in place for callback subscriptions. Additionally, this plugin "intercepts" callback subscription requests and bypasses some of Apollo Server's internals. The result of this is that certain plugin hooks (notably executionDidStart and willResolveField) will not be called when handling callback subscription requests or when sending subscription events.

    For more information on the subscription callback protocol, visit the docs: https://www.apollographql.com/docs/router/executing-operations/subscription-callback-protocol/

Patch Changes

4.8.1

Patch Changes

4.8.0

Minor Changes

  • #7634 f8a8ea08f Thanks @​dfperry5! - Updating the ApolloServer constructor to take in a stringifyResult function that will allow a consumer to pass in a function that formats the result of an http query.

    Usage:

    const server = new ApolloServer({
      typeDefs,

... (truncated)

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

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> dependency will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> dependency will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the graphql group with 7 updates:

| Package | Update |
| --- | --- |
| [@apollo/client](https://github.com/apollographql/apollo-client) | 3.7.17 to 3.8.1 |
| [@apollo/server](https://github.com/apollographql/apollo-server/tree/HEAD/packages/server) | 4.7.5 to 4.9.1 |
| [graphql-passport](https://github.com/ericmakesapps/graphql-passport) | 0.6.5 to 0.6.7 |
| [@graphql-codegen/cli](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/graphql-codegen-cli) | 4.0.1 to 5.0.0 |
| [@graphql-eslint/eslint-plugin](https://github.com/B2o5T/graphql-eslint) | 3.20.0 to 3.20.1 |
| [@graphql-inspector/cli](https://github.com/kamilkisiela/graphql-inspector/tree/HEAD/packages/cli) | 4.0.1 to 4.0.2 |
| [graphql-codegen-typescript-validation-schema](https://github.com/Code-Hex/graphql-codegen-typescript-validation-schema) | 0.11.1 to 0.12.0 |


Updates `@apollo/client` from 3.7.17 to 3.8.1
- [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.1)

Updates `@apollo/server` from 4.7.5 to 4.9.1
- [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 `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: 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 @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 17, 2023

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

@dependabot dependabot bot closed this Aug 17, 2023
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/graphql-916bf2be46 branch August 17, 2023 19:01
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.

0 participants