Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Conversation

grafbase-ci
Copy link
Collaborator

@grafbase-ci grafbase-ci commented Aug 25, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@graphql-tools/federation (source) ^1.1.0 -> ^4.0.0 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

graphql-hive/gateway (@​graphql-tools/federation)

v4.0.4

Compare Source

Patch Changes

v4.0.3

Compare Source

Patch Changes

v4.0.2

Compare Source

Patch Changes

v4.0.1

Compare Source

Patch Changes

v4.0.0

Compare Source

Major Changes
Patch Changes

v3.2.9

Compare Source

Patch Changes

v3.2.8

Compare Source

Patch Changes

v3.2.7

Compare Source

Patch Changes

v3.2.6

Compare Source

Patch Changes

v3.2.5

Compare Source

Patch Changes

v3.2.4

Compare Source

Patch Changes

v3.2.3

Compare Source

Patch Changes

v3.2.2

Compare Source

Patch Changes

v3.2.1

Compare Source

Patch Changes

v3.2.0

Compare Source

Minor Changes
  • #​946 7d771d8 Thanks @​ardatan! - As Apollo suggests and uses in their implementation, we set the request timeout to 30 seconds for GraphOS uplinks
Patch Changes

v3.1.7

Compare Source

Patch Changes

v3.1.6

Compare Source

Patch Changes

v3.1.5

Compare Source

Patch Changes

v3.1.4

Compare Source

Patch Changes

v3.1.3

Compare Source

Patch Changes

v3.1.2

Compare Source

Patch Changes

v3.1.1

Compare Source

Patch Changes

v3.1.0

Compare Source

Minor Changes
  • #​444 b52c9ba Thanks @​ardatan! - Now SupergraphSchemaManager can be used in ApolloServer as gateway;

    import { ApolloServer } from '@​apollo/server';
    import { SupergraphSchemaManager } from '@​graphql-tools/federation';
    
    const gateway = new SupergraphSchemaManager();
    const apolloServer = new ApolloServer({
      gateway,
    });

    And with the new onStitchedSchema option, you can manipulate the executable schema created from the supergraph.
    The following example demonstrates how to use onStitchedSchema with applyMiddleware from graphql-middleware:

    import { SupergraphSchemaManager } from '@​graphql-tools/federation';
    import { applyMiddleware } from 'graphql-middleware';
    
    const logInput = async (resolve, root, args, context, info) => {
      console.log(`1. logInput: ${JSON.stringify(args)}`);
      const result = await resolve(root, args, context, info);
      console.log(`5. logInput`);
      return result;
    };
    
    const logResult = async (resolve, root, args, context, info) => {
      console.log(`2. logResult`);
      const result = await resolve(root, args, context, info);
      console.log(`4. logResult: ${JSON.stringify(result)}`);
      return result;
    };
    
    const gateway = new SupergraphSchemaManager({
      onStitchedSchema: async (schema) => {
        // Manipulate the schema
        return applyMiddleware(schema, logInput, logResult);
      },
    });
Patch Changes

v3.0.10

Compare Source

Patch Changes

v3.0.9

Compare Source

Patch Changes

v3.0.8

Compare Source

Patch Changes

v3.0.7

Compare Source

Patch Changes

v3.0.6

Compare Source

Patch Changes

v3.0.5

Compare Source

Patch Changes

v3.0.4

Compare Source

Patch Changes

v3.0.3

Compare Source

Patch Changes

v3.0.2

Compare Source

Patch Changes

v3.0.1

Compare Source

Patch Changes

v3.0.0

Compare Source

Major Changes
  • #​308 d747d4c Thanks @​ardatan! - BREAKING CHANGES;

    • Removed buildSubgraphSchema, use @apollo/subgraph instead.
    • Removed the following gateway related functions, and prefer using Supergraph approach instead
      • getSubschemaForFederationWithURL
      • getSubschemaForFederationWithTypeDefs
      • getSubschemaForFederationWithExecutor
      • getSubschemaForFederationWithSchema
      • federationSubschemaTransformer
    • SupergraphSchemaManager is no longer an EventEmitter but EventTarget instead, and it emits a real Event object.
    • SupergraphSchemaManager is now Disposable and it no longer stops based on Nodejs terminate events, so you should use using syntax.
    using manager = new SupergraphSchemaManager({ ... });
    
    manager.addEventListener('error', (event: SupergraphSchemaManagerErrorEvent) => {
      console.error(event.detail.error);
    });
    
    let schema: GraphQLSchema | null = null;
    manager.addEventListener('schema', (event: SupergraphSchemaManagerSchemaEvent) => {
        schema = event.detail.schema;
    });
Patch Changes

v2.2.40

Compare Source

Patch Changes

v2.2.39

Compare Source

Patch Changes

v2.2.38

Compare Source

Patch Changes

v2.2.37

Compare Source

Patch Changes

v2.2.36

Compare Source

Patch Changes

v2.2.35

Compare Source

Patch Changes

v2.2.34

Compare Source

Patch Changes

v2.2.33

[Compare Source](https://redirect.github.com/graphql-hive/gateway/compare/@graphql-tools/federation


Configuration

📅 Schedule: Branch creation - "after 8pm,before 6am" in timezone Europe/Berlin, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@grafbase-ci grafbase-ci requested a review from a team as a code owner August 25, 2025 12:14
@grafbase-ci grafbase-ci requested a review from pimeys August 25, 2025 12:14
@grafbase-ci grafbase-ci added the dependencies Pull requests that update a dependency file label Aug 25, 2025
@fbjork fbjork enabled auto-merge August 25, 2025 12:34
@grafbase-ci grafbase-ci changed the title fix(deps): update dependency @graphql-tools/federation to v3 fix(deps): update dependency @graphql-tools/federation to v3 - autoclosed Aug 26, 2025
auto-merge was automatically disabled August 26, 2025 12:31

Pull request was closed

@grafbase-ci grafbase-ci deleted the renovate/major-graphql-hive-gateway-monorepo branch August 26, 2025 12:31
@grafbase-ci grafbase-ci changed the title fix(deps): update dependency @graphql-tools/federation to v3 - autoclosed fix(deps): update dependency @graphql-tools/federation to v3 Aug 26, 2025
@grafbase-ci grafbase-ci reopened this Aug 26, 2025
@grafbase-ci grafbase-ci force-pushed the renovate/major-graphql-hive-gateway-monorepo branch from 200eee1 to 808e764 Compare September 4, 2025 18:13
@grafbase-ci grafbase-ci changed the title fix(deps): update dependency @graphql-tools/federation to v3 fix(deps): update dependency @graphql-tools/federation to v4 Sep 4, 2025
@grafbase-ci grafbase-ci force-pushed the renovate/major-graphql-hive-gateway-monorepo branch from 808e764 to 000570a Compare September 6, 2025 21:23
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
Development

Successfully merging this pull request may close these issues.

3 participants