Graphql Hive Versions Save

GraphQL Hive is a schema registry and observability

@graphql-hive/[email protected]

1 month ago

Minor Changes

  • #4573 06d465e Thanks @kamilkisiela! - Break @graphql-hive/client into library-specific packages:

    • @graphql-hive/core - Core functionality
    • @graphql-hive/apollo - Apollo Client integration
    • @graphql-hive/yoga - Yoga Server integration
    • @graphql-hive/envelop - Envelop integration

    Migration steps are available in the README of each package.

  • #4494 c5eeac5 Thanks @kamilkisiela! - 🚨 BREAKING CHANGE 🚨 Requires now Node v16+

  • #4573 06d465e Thanks @kamilkisiela! - 🚨 BREAKING CHANGE 🚨 useYogaHive, createYogaHive is now useHive and createHive

    Migration

    Migration steps are available in the README.

    - import { useYogaHive, createYogaHive } from '@graphql-hive/client';
    + import { useHive, createHive } from '@graphql-hive/yoga';
    

Patch Changes

@graphql-hive/[email protected]

1 month ago

Minor Changes

  • #4573 06d465e Thanks @kamilkisiela! - Break @graphql-hive/client into library-specific packages:

    • @graphql-hive/core - Core functionality
    • @graphql-hive/apollo - Apollo Client integration
    • @graphql-hive/yoga - Yoga Server integration
    • @graphql-hive/envelop - Envelop integration

    Migration steps are available in the README of each package.

  • #4494 c5eeac5 Thanks @kamilkisiela! - 🚨 BREAKING CHANGE 🚨 Requires now Node v16+

  • #4573 06d465e Thanks @kamilkisiela! - Migration

    Migration steps are available in the README.

    - import { useHive } from '@graphql-hive/client';
    + import { useHive } from '@graphql-hive/envelop';
    

Patch Changes

@graphql-hive/[email protected]

1 month ago

Minor Changes

@graphql-hive/[email protected]

1 month ago

Minor Changes

Patch Changes

@graphql-hive/[email protected]

1 month ago

Minor Changes

  • #4573 06d465e Thanks @kamilkisiela! - Break @graphql-hive/client into library-specific packages:

    • @graphql-hive/core - Core functionality
    • @graphql-hive/apollo - Apollo Client integration
    • @graphql-hive/yoga - Yoga Server integration
    • @graphql-hive/envelop - Envelop integration

    Migration steps are available in the README of each package.

  • #4494 c5eeac5 Thanks @kamilkisiela! - 🚨 BREAKING CHANGE 🚨 Requires now Node v16+

  • #4573 06d465e Thanks @kamilkisiela! - 🚨 BREAKING CHANGE 🚨 hiveApollo is now useHive

    Migration

    Migration steps are available in the README.

    - import { hiveApollo } from '@graphql-hive/client';
    + import { useHive } from '@graphql-hive/apollo';
    

Patch Changes

@graphql-hive/[email protected]

1 month ago

Minor Changes

Patch Changes

  • #4564 5262934 Thanks @kamilkisiela! - Fix auto-detection of client name and version based on x-graphql-client-{name,version} header in Apollo Server integration

@graphql-hive/[email protected]

1 month ago

Minor Changes

@graphql-hive/[email protected]

1 month ago

Minor Changes

@graphql-hive/[email protected]

1 month ago

Minor Changes

  • #4383 ff480e9 Thanks @kamilkisiela! - Introducing hive dev command - compose local subgraphs with subgraphs from the registry.

@graphql-hive/[email protected]

2 months ago

Minor Changes

  • #4176 df0ea91 Thanks @n1ru4l! - Support usage reporting for incremental delivery (@defer/@stream) operations with GraphQL Yoga

  • #4176 df0ea91 Thanks @n1ru4l! - Add APIs for reporting subscription usage. The Hive client will now report the usage of Subscription operations to GraphQL Hive.

    We recommend referring to the corresponding documentation of your server framework for configuration adjustments.