-
Notifications
You must be signed in to change notification settings - Fork 125
enable dependabot #7562
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
enable dependabot #7562
Conversation
Summary of ChangesHello @dotansimha, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request integrates Dependabot into the repository, automating the process of keeping project dependencies current. By establishing daily checks across various package ecosystems, it aims to enhance security, maintain stability, and reduce the manual effort required for dependency management. Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request enables Dependabot for various package ecosystems, which is a great step for keeping dependencies up-to-date. My feedback focuses on improving the configuration by adding update groups to reduce the number of pull requests and make them more manageable.
.github/dependabot.yml
Outdated
| - package-ecosystem: "npm" | ||
| directory: "/" | ||
| schedule: | ||
| interval: "daily" | ||
| - package-ecosystem: "docker" | ||
| directory: "/docker" | ||
| schedule: | ||
| interval: "daily" | ||
| - package-ecosystem: "cargo" | ||
| directory: "/" | ||
| schedule: | ||
| interval: "daily" | ||
| - package-ecosystem: "github-actions" | ||
| directory: "/" | ||
| schedule: | ||
| interval: "daily" | ||
| - package-ecosystem: "rust-toolchain" | ||
| directory: "/" | ||
| schedule: | ||
| interval: "daily" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This configuration will generate a separate pull request for each dependency update, which can become overwhelming. To make updates more manageable, I recommend using groups to bundle multiple updates into single PRs.
Here are suggested grouping strategies for each ecosystem:
-
npm: Group packages by scope.
groups: graphql-codegen: patterns: - "@graphql-codegen/*" the-guild: patterns: - "@theguild/*" changesets: patterns: - "@changesets/*" graphql-inspector: patterns: - "@graphql-inspector/*"
-
docker & cargo: Group minor and patch updates. Major version bumps will remain in separate PRs.
groups: minor-and-patch-updates: update-types: - "minor" - "patch"
-
github-actions & rust-toolchain: Group all updates together.
groups: all-updates: patterns: - "*"
📚 Storybook DeploymentThe latest changes are available as preview in: https://pr-7562.hive-storybook.pages.dev |
🚀 Snapshot Release (
|
| Package | Version | Info |
|---|---|---|
@graphql-hive/apollo |
0.47.2-alpha-20260127072417-c941d923df4a02cd0ff392c828b3d0375c04c525 |
npm ↗︎ unpkg ↗︎ |
@graphql-hive/cli |
0.57.4-alpha-20260127072417-c941d923df4a02cd0ff392c828b3d0375c04c525 |
npm ↗︎ unpkg ↗︎ |
@graphql-hive/core |
0.20.2-alpha-20260127072417-c941d923df4a02cd0ff392c828b3d0375c04c525 |
npm ↗︎ unpkg ↗︎ |
@graphql-hive/envelop |
0.40.4-alpha-20260127072417-c941d923df4a02cd0ff392c828b3d0375c04c525 |
npm ↗︎ unpkg ↗︎ |
@graphql-hive/yoga |
0.47.2-alpha-20260127072417-c941d923df4a02cd0ff392c828b3d0375c04c525 |
npm ↗︎ unpkg ↗︎ |
hive |
9.2.0-alpha-20260127072417-c941d923df4a02cd0ff392c828b3d0375c04c525 |
npm ↗︎ unpkg ↗︎ |
|
🐋 This PR was built and pushed to the following Docker images: Targets: Platforms: Image Tag: |
Updated the dependabot configuration to include npm, docker, cargo, GitHub Actions, and rust-toolchain with daily update schedules.
Added groups for various dependencies in dependabot configuration.
831de82 to
bf4ca5b
Compare
💻 Website PreviewThe latest changes are available as preview in: https://pr-7562.hive-landing-page.pages.dev |
No description provided.