Skip to content

Releases: graphql-hive/console

@graphql-hive/[email protected]

02 Aug 09:21
e22512b
Compare
Choose a tag to compare

Minor Changes

Patch Changes

@graphql-hive/[email protected]

02 Aug 12:30
16a2f92
Compare
Choose a tag to compare

Patch Changes

@graphql-hive/[email protected]

02 Aug 09:21
e22512b
Compare
Choose a tag to compare

Patch Changes

@graphql-hive/[email protected]

02 Aug 12:30
16a2f92
Compare
Choose a tag to compare

Patch Changes

  • #5304
    f2fef08
    Thanks @kamilkisiela! - Fixed a logging issue where both
    initiated requests and successful responses were being recorded. This was causing the logs to be
    filled with unnecessary information and affected hive artifact:fetch --artifact command.

@graphql-hive/[email protected]

02 Aug 09:21
e22512b
Compare
Choose a tag to compare

Minor Changes

@graphql-hive/[email protected]

02 Aug 12:30
16a2f92
Compare
Choose a tag to compare

Patch Changes

  • #5304
    f2fef08
    Thanks @kamilkisiela! - Fixed a logging issue where both
    initiated requests and successful responses were being recorded. This was causing the logs to be
    filled with unnecessary information and affected hive artifact:fetch --artifact command.

  • Updated dependencies
    [f2fef08]:

@graphql-hive/[email protected]

02 Aug 09:21
e22512b
Compare
Choose a tag to compare

Minor Changes

  • #5234
    e6dc5c9
    Thanks @n1ru4l! - Provide debug logging for HTTP requests when
    providing the --debug flag.

Patch Changes

@graphql-hive/[email protected]

02 Aug 12:30
16a2f92
Compare
Choose a tag to compare

Patch Changes

  • #5304
    f2fef08
    Thanks @kamilkisiela! - Fixed a logging issue where both
    initiated requests and successful responses were being recorded. This was causing the logs to be
    filled with unnecessary information and affected hive artifact:fetch --artifact command.

  • Updated dependencies
    [f2fef08]:

@graphql-hive/[email protected]

02 Aug 09:21
e22512b
Compare
Choose a tag to compare

Minor Changes

  • #5234
    e6dc5c9
    Thanks @n1ru4l! - Better HTTP info, error and debug logging.

    For the supergraph manager, pass a console instance as the logger property.

    import { createSupergraphManager } from '@graphql-hive/apollo'
    
    const manager = createSupergraphManager({
      ...otherOptions,
      logger: console
    })

    For the supergraph SDL fetcher pass a console instance as the logger property.

    import { createSupergraphSDLFetcher } from '@graphql-hive/apollo'
    
    const manager = createSupergraphSDLFetcher({
      ...otherOptions,
      logger: console
    })
  • #5234
    e6dc5c9
    Thanks @n1ru4l! - Improved logging output of HTTP requests and
    retires.

Patch Changes

@graphql-hive/[email protected]

24 Jul 09:45
8a6d584
Compare
Choose a tag to compare

Minor Changes

  • #5237
    c20907b
    Thanks @kamilkisiela! - Changes the default behavior of
    hive dev command. Now schema composition is done locally, without substituting subgraphs
    available in the registry.

    We added --remote flag to the hive dev command to mimic the previous behavior.

    Breaking Change The $ hive dev command is still a work in progress (as stated in the command
    description). That's why we are not considering this a breaking change, but a minor change.

    Before:

    The hive dev command would substitute subgraphs available in the registry with their local
    counterparts, performing schema composition over the network according to your project's
    configuration.

    After:

    The hive dev command will now perform schema composition locally, without substituting subgraphs
    available in the registry. This is the default behavior.

    To mimic the previous behavior, you can apply the --remote flag and continue using the command
    as before.