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(deps): bump @apollo/client from 3.7.17 to 3.8.1 #156

Merged
merged 1 commit into from
Feb 2, 2024

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps @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

Dependabot compatibility score

You can trigger a rebase of this PR 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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Aug 14, 2023
@wa0x6e
Copy link
Contributor

wa0x6e commented Feb 2, 2024

@dependabot rebase

Bumps [@apollo/client](https://github.com/apollographql/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)

---
updated-dependencies:
- dependency-name: "@apollo/client"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/apollo/client-3.8.1 branch from ab6cb1c to bf2751c Compare February 2, 2024 09:52
Copy link

codecov bot commented Feb 2, 2024

Codecov Report

Attention: 43 lines in your changes are missing coverage. Please review.

Files Patch % Lines
src/lib/metrics/index.ts 4.44% 43 Missing ⚠️
Additional details and impacted files

📢 Thoughts on this report? Let us know!

Copy link
Contributor

@wa0x6e wa0x6e left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

utAck

@wa0x6e wa0x6e merged commit 67c0e80 into main Feb 2, 2024
5 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/apollo/client-3.8.1 branch February 2, 2024 10:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant