Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update graphql-hive-gateway monorepo #5223

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 12, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@graphql-hive/gateway (source) 1.5.2 -> 1.10.4 age adoption passing confidence
@graphql-tools/executor-http (source) 1.1.14 -> 1.2.8 age adoption passing confidence

Release Notes

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

v1.10.4

Compare Source

Patch Changes

v1.10.3

Compare Source

Patch Changes

v1.10.2

Compare Source

Patch Changes

v1.10.1

Compare Source

Patch Changes

v1.10.0

Compare Source

Minor Changes
Patch Changes

v1.9.4

Compare Source

Patch Changes

v1.9.3

Compare Source

Patch Changes

v1.9.2

Compare Source

Patch Changes

v1.9.1

Compare Source

Patch Changes
  • #​574 8c466f4 Thanks @​ardatan! - Fix the regression causing port, host and pollingInterval in the configuration is overriden by the default values of CLI parameters

v1.9.0

Compare Source

Minor Changes
  • #​568 de83dd2 Thanks @​dotansimha! - Improve cache configuration signature.

    The cache configuration key now allow you to pass a custom factory function to get the cache instance:

    import { defineConfig } from '@​graphql-hive/gateway';
    
    export const gatewayConfig = defineConfig({
      // ...
      cache: (ctx) => {
        // Here you may create/retrieve your cache store instance, and return a KeyValueCache instance
      },
    });
Patch Changes
  • #​561 7f6490f Thanks @​ardatan! - Binary for Linux-ARM64

  • #​568 de83dd2 Thanks @​dotansimha! - Use the same logging instance across different components whenever possible

    For example if the log level is set in the configuration, change it immediately for the cache storages etc.

v1.8.1

Compare Source

Patch Changes

v1.8.0

Compare Source

Minor Changes
Patch Changes

v1.7.9

Compare Source

Patch Changes

v1.7.8

Compare Source

Patch Changes

v1.7.7

Compare Source

Patch Changes

v1.7.6

Compare Source

Patch Changes

v1.7.5

Compare Source

Patch Changes

v1.7.4

Compare Source

Patch Changes

v1.7.3

Compare Source

Patch Changes

v1.7.2

Compare Source

Patch Changes

v1.7.1

Compare Source

Patch Changes

v1.7.0

Compare Source

Minor Changes
  • #​322 23b8987 Thanks @​ardatan! - New Retry and Timeout plugins;

    • Retry plugin: Retry a request if it fails

    It respects the Retry-After HTTP header, See more about this HTTP

    export const gatewayConfig = defineConfig({
        upstreamRetry: {
            // The maximum number of retries to attempt.
            maxRetries: 3, // required
            // The delay between retries in milliseconds.
            retryDelay: 1000, // default
            /**
             * A function that determines whether a response should be retried.
             * If the upstream returns `Retry-After` header, the request will be retried.
             */
            shouldRetry: ({ response }) => response?.status >= 500 || response?.status === 429
        }
        // or you can configure it by subgraph name
        upstreamRetry({ subgraphName }) {
            if (subgraphName === 'my-rate-limited-subgraph') {
                return {
                    maxRetries: 3,
                }
            }
            return { maxRetries: 10 }
        }
    })
    • Timeout plugin: Timeout a request if it takes too long
    export const gatewayConfig = defineConfig({
      // The maximum time in milliseconds to wait for a response from the upstream.
      upstreamTimeout: 1000, // required
      // or you can configure it by subgraph name
      upstreamTimeout({ subgraphName }) {
        if (subgraphName === 'my-slow-subgraph') {
          return 1000;
        }
      },
    });
Patch Changes

v1.6.8

Compare Source

Patch Changes

v1.6.7

Compare Source

Patch Changes

v1.6.6

Compare Source

Patch Changes

v1.6.5

Compare Source

Patch Changes

v1.6.4

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added effort: 1 priority: 2day type: chore updating folder structure, initializing projects etc; no production code change labels Feb 12, 2025
Copy link
Contributor

coderabbitai bot commented Feb 12, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@mikeallisonJS
Copy link
Collaborator

careful, possibly breaking

Copy link
Contributor

github-actions bot commented Feb 12, 2025

Warnings
⚠️ ❗ Big PR (4547 changes)

(change count - 4547): Pull Request size seems relatively large. If Pull Request contains multiple changes, split each into separate PR will helps faster, easier review.

Generated by 🚫 dangerJS against a6e1a47

@github-actions github-actions bot temporarily deployed to Preview - arclight February 12, 2025 22:48 Inactive
@github-actions github-actions bot temporarily deployed to Preview - journeys February 12, 2025 22:48 Inactive
@github-actions github-actions bot temporarily deployed to Preview - journeys-admin February 12, 2025 22:48 Inactive
@github-actions github-actions bot temporarily deployed to Preview - videos-admin February 12, 2025 22:49 Inactive
@github-actions github-actions bot temporarily deployed to Preview - short-links February 12, 2025 22:49 Inactive
Copy link
Contributor

github-actions bot commented Feb 12, 2025

The latest updates on your projects.

Name Status Preview Updated (UTC)
docs ✅ Ready docs preview Sat Mar 8 14:23:13 NZDT 2025

Copy link
Contributor

github-actions bot commented Feb 12, 2025

The latest updates on your projects.

Name Status Preview Updated (UTC)
arclight ✅ Ready arclight preview Sat Mar 8 14:25:04 NZDT 2025

Copy link
Contributor

github-actions bot commented Feb 12, 2025

The latest updates on your projects.

Name Status Preview Updated (UTC)
journeys ✅ Ready journeys preview Sat Mar 8 14:22:13 NZDT 2025

Copy link
Contributor

github-actions bot commented Feb 12, 2025

The latest updates on your projects.

Name Status Preview Updated (UTC)
short-links ✅ Ready short-links preview Sat Mar 8 14:23:47 NZDT 2025

Copy link
Contributor

github-actions bot commented Feb 12, 2025

The latest updates on your projects.

Name Status Preview Updated (UTC)
videos-admin ✅ Ready videos-admin preview Sat Mar 8 14:22:21 NZDT 2025

Copy link
Contributor

github-actions bot commented Feb 12, 2025

The latest updates on your projects.

Name Status Preview Updated (UTC)
journeys-admin ✅ Ready journeys-admin preview Sat Mar 8 14:25:17 NZDT 2025

Copy link
Contributor

github-actions bot commented Feb 12, 2025

The latest updates on your projects.

Name Status Preview Updated (UTC)
watch ✅ Ready watch preview Sat Mar 8 14:24:24 NZDT 2025

@renovate renovate bot force-pushed the 00-00-RB-chore-graphql-hive-gateway-monorepo branch from 15aa750 to 1abdb53 Compare February 13, 2025 15:01
@github-actions github-actions bot temporarily deployed to Preview - arclight February 13, 2025 15:03 Inactive
@github-actions github-actions bot temporarily deployed to Preview - journeys-admin February 13, 2025 15:03 Inactive
@github-actions github-actions bot temporarily deployed to Preview - short-links February 13, 2025 15:03 Inactive
@github-actions github-actions bot temporarily deployed to Preview - journeys February 13, 2025 15:03 Inactive
@github-actions github-actions bot temporarily deployed to Preview - arclight March 2, 2025 05:18 Inactive
@github-actions github-actions bot temporarily deployed to Preview - journeys-admin March 2, 2025 05:18 Inactive
@github-actions github-actions bot temporarily deployed to Preview - short-links March 2, 2025 05:19 Inactive
@github-actions github-actions bot temporarily deployed to Preview - videos-admin March 2, 2025 05:19 Inactive
@github-actions github-actions bot temporarily deployed to Preview - watch March 2, 2025 05:19 Inactive
@renovate renovate bot force-pushed the 00-00-RB-chore-graphql-hive-gateway-monorepo branch from 84d84f0 to 29b39b2 Compare March 3, 2025 12:05
@github-actions github-actions bot temporarily deployed to Preview - arclight March 3, 2025 12:14 Inactive
@github-actions github-actions bot temporarily deployed to Preview - journeys March 3, 2025 12:14 Inactive
@github-actions github-actions bot temporarily deployed to Preview - journeys-admin March 3, 2025 12:15 Inactive
@github-actions github-actions bot temporarily deployed to Preview - short-links March 3, 2025 12:15 Inactive
@github-actions github-actions bot temporarily deployed to Preview - videos-admin March 3, 2025 12:15 Inactive
@github-actions github-actions bot temporarily deployed to Preview - watch March 3, 2025 12:15 Inactive
@renovate renovate bot force-pushed the 00-00-RB-chore-graphql-hive-gateway-monorepo branch from 29b39b2 to 8afd343 Compare March 5, 2025 17:38
@github-actions github-actions bot temporarily deployed to Preview - arclight March 5, 2025 17:48 Inactive
@github-actions github-actions bot temporarily deployed to Preview - journeys March 5, 2025 17:48 Inactive
@github-actions github-actions bot temporarily deployed to Preview - short-links March 5, 2025 17:49 Inactive
@github-actions github-actions bot temporarily deployed to Preview - journeys-admin March 5, 2025 17:49 Inactive
@github-actions github-actions bot temporarily deployed to Preview - watch March 5, 2025 17:50 Inactive
@github-actions github-actions bot temporarily deployed to Preview - videos-admin March 5, 2025 17:50 Inactive
@renovate renovate bot force-pushed the 00-00-RB-chore-graphql-hive-gateway-monorepo branch from 8afd343 to a6e1a47 Compare March 8, 2025 01:14
@github-actions github-actions bot temporarily deployed to Preview - journeys March 8, 2025 01:18 Inactive
@github-actions github-actions bot temporarily deployed to Preview - videos-admin March 8, 2025 01:19 Inactive
@github-actions github-actions bot temporarily deployed to Preview - journeys-admin March 8, 2025 01:20 Inactive
@github-actions github-actions bot temporarily deployed to Preview - short-links March 8, 2025 01:21 Inactive
@github-actions github-actions bot temporarily deployed to Preview - watch March 8, 2025 01:21 Inactive
@github-actions github-actions bot temporarily deployed to Preview - arclight March 8, 2025 01:21 Inactive
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
effort: 1 priority: 2day type: chore updating folder structure, initializing projects etc; no production code change
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant