console/packages/libraries/envelop/CHANGELOG.md
TheGuildBot 535283c136
Upcoming Release Changes (#6601)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-03-20 13:22:26 +01:00

7.8 KiB

@graphql-hive/envelop

0.35.1

Patch Changes

0.35.0

Minor Changes

  • #6574 494697e Thanks @n1ru4l! - Add support for providing a target for usage reporting with organization access tokens. This can either be a slug following the format $organizationSlug/$projectSlug/$targetSlug (e.g the-guild/graphql-hive/staging) or an UUID (e.g. a0f4c605-6541-4350-8cfe-b31f21a4bf80)

    import { useHive } from '@graphql-hive/envelop'
    
    const hivePlugin = useHive({
      enabled: true,
      token: 'ORGANIZATION_ACCESS_TOKEN',
      usage: {
        target: 'my-org/my-project/my-target'
      }
    })
    

Patch Changes

  • Updated dependencies [494697e]:
    • @graphql-hive/core@0.10.0

0.34.1

Patch Changes

  • Updated dependencies [ae2d16d]:
    • @graphql-hive/core@0.9.1

0.34.0

Minor Changes

  • #6488 f7d65fe Thanks @n1ru4l! - Include and log a x-request-id header for all requests sent to the Hive API. This helps users to share more context with Hive staff when encountering errors.

Patch Changes

  • Updated dependencies [f7d65fe]:
    • @graphql-hive/core@0.9.0

0.33.13

Patch Changes

0.33.12

Patch Changes

  • Updated dependencies [039c66b]:
    • @graphql-hive/core@0.8.3

0.33.11

Patch Changes

0.33.10

Patch Changes

0.33.9

Patch Changes

0.33.8

Patch Changes

  • Updated dependencies [3ffdb6e]:
    • @graphql-hive/core@0.8.0

0.33.7

Patch Changes

  • Updated dependencies [a896642]:
    • @graphql-hive/core@0.7.1

0.33.6

Patch Changes

  • #5361 3f03e7b Thanks @kamilkisiela! - Fixed issue where usage reports were sent only on app disposal or max batch size, now also sent at set intervals.
  • Updated dependencies [3f03e7b, 0a3b24d]:
    • @graphql-hive/core@0.7.0

0.33.5

Patch Changes

  • Updated dependencies [f2fef08]:
    • @graphql-hive/core@0.6.1

0.33.4

Patch Changes

  • Updated dependencies [e6dc5c9]:
    • @graphql-hive/core@0.6.0

0.33.3

Patch Changes

  • Updated dependencies [f1e43c6]:
    • @graphql-hive/core@0.5.0

0.33.2

Patch Changes

  • Updated dependencies [b8998e7]:
    • @graphql-hive/core@0.4.0

0.33.1

Patch Changes

  • #4932 cbc8364 Thanks @n1ru4l! - Prevent failing usage reporting when returning an object with additional properties aside from name and version from the client info object/factory function.
  • Updated dependencies [cbc8364]:
    • @graphql-hive/core@0.3.1

0.33.0

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