Releases: graphql-hive/console
@graphql-hive/[email protected]
@graphql-hive/[email protected]
Patch Changes
- Updated dependencies
[f2fef08
]:- @graphql-hive/[email protected]
@graphql-hive/[email protected]
Patch Changes
- Updated dependencies
[e6dc5c9
]:- @graphql-hive/[email protected]
@graphql-hive/[email protected]
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 affectedhive artifact:fetch --artifact
command.
@graphql-hive/[email protected]
@graphql-hive/[email protected]
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 affectedhive artifact:fetch --artifact
command. -
Updated dependencies
[f2fef08
]:- @graphql-hive/[email protected]
@graphql-hive/[email protected]
Minor Changes
- #5234
e6dc5c9
Thanks @n1ru4l! - Provide debug logging for HTTP requests when
providing the--debug
flag.
Patch Changes
- Updated dependencies
[e6dc5c9
]:- @graphql-hive/[email protected]
@graphql-hive/[email protected]
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 affectedhive artifact:fetch --artifact
command. -
Updated dependencies
[f2fef08
]:- @graphql-hive/[email protected]
@graphql-hive/[email protected]
Minor Changes
-
#5234
e6dc5c9
Thanks @n1ru4l! - Better HTTP info, error and debug logging.For the supergraph manager, pass a
console
instance as thelogger
property.import { createSupergraphManager } from '@graphql-hive/apollo' const manager = createSupergraphManager({ ...otherOptions, logger: console })
For the supergraph SDL fetcher pass a
console
instance as thelogger
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
- Updated dependencies
[e6dc5c9
]:- @graphql-hive/[email protected]
@graphql-hive/[email protected]
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 thehive 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.