-
Notifications
You must be signed in to change notification settings - Fork 562
Update github.com/diggerhq/digger/next digest to fd83543 #1912
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
base: develop
Are you sure you want to change the base?
Conversation
ℹ Artifact update noticeFile name: ee/drift/go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Join our Discord community for assistance with any issues or questions. 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)
Other keywords and placeholders
CodeRabbit Configuration File (
|
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.
PR Summary
This PR updates the digger/next dependency to a newer version (3378761) along with several other dependency updates in the ee/drift module.
- Updated
github.com/diggerhq/digger/next
to latest digest version inee/drift/go.mod
- Upgraded multiple AWS SDK packages to newer versions for improved compatibility
- Updated Google Cloud Platform related dependencies with security patches
- Maintained Go 1.22.4 compatibility while updating core dependencies
- Synchronized
go.sum
file with cryptographic hashes for new dependency versions
2 file(s) reviewed, no comment(s)
Edit PR Review Bot Settings | Greptile
1fde5c5
to
b62e994
Compare
b62e994
to
647cf89
Compare
647cf89
to
278ad45
Compare
278ad45
to
b311a26
Compare
b311a26
to
d56d45b
Compare
693143c
to
c567f42
Compare
c567f42
to
6451b4f
Compare
ba4fa90
to
b3b50a4
Compare
b3b50a4
to
4177c0c
Compare
4177c0c
to
2c5993b
Compare
2c5993b
to
c58a454
Compare
5dc82ab
to
ae02d12
Compare
ae02d12
to
3522824
Compare
3522824
to
3bf0efe
Compare
3bf0efe
to
4c27e09
Compare
4c27e09
to
b1a1dbb
Compare
b1a1dbb
to
b710983
Compare
b710983
to
83c2534
Compare
fa47142
to
9619796
Compare
|
Bug SummaryTotal Bugs Found: 1 Critical Bug
|
ee/drift/go.mod
Outdated
@@ -10,7 +10,7 @@ require ( | |||
github.com/bradleyfalzon/ghinstallation/v2 v2.11.0 | |||
github.com/diggerhq/digger/backend v0.0.0-20241111093622-90aa7b8b0d00 | |||
github.com/diggerhq/digger/libs v0.4.15 | |||
github.com/diggerhq/digger/next v0.0.0-20241111115930-58349692eece | |||
github.com/diggerhq/digger/next e42e96520391 |
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.
The module version format for github.com/diggerhq/digger/next
is invalid. Go modules require a specific version format, and using just a commit hash (e42e96520391
) is not valid.
For commit hashes, Go requires using a pseudo-version format like v0.0.0-yyyymmddhhmmss-commithash
. The correct format should be something like v0.0.0-20240611120391-e42e96520391
where the middle part is a timestamp and the last part is the commit hash.
This invalid version format will cause issues with Go's module system and dependency resolution, potentially breaking builds or causing unexpected behavior when other modules try to depend on this one.
github.com/diggerhq/digger/next e42e96520391 | |
github.com/diggerhq/digger/next v0.0.0-20240611120391-e42e96520391 |
9619796
to
84615d9
Compare
Bismuth encountered an error |
84615d9
to
91eb220
Compare
Bug SummaryTotal Bugs Found: 1 Critical Bugs
|
@@ -10,7 +10,7 @@ require ( | |||
github.com/bradleyfalzon/ghinstallation/v2 v2.11.0 | |||
github.com/diggerhq/digger/backend v0.0.0-20241111093622-90aa7b8b0d00 | |||
github.com/diggerhq/digger/libs v0.4.15 | |||
github.com/diggerhq/digger/next v0.0.0-20241111115930-58349692eece | |||
github.com/diggerhq/digger/next fd83543ef8b7 |
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.
The dependency on github.com/diggerhq/digger/next is specified with an incorrect format. Go modules require a specific version format for dependencies, even when using commit hashes. The correct format should be v0.0.0-[date]-[commit hash]
(e.g., v0.0.0-20240000000000-fd83543ef8b7).
The current format github.com/diggerhq/digger/next fd83543ef8b7
is missing the version prefix, which violates Go's module versioning requirements. This can cause build failures or dependency resolution issues when other modules try to use this package or when running go mod tidy
.
github.com/diggerhq/digger/next fd83543ef8b7 | |
github.com/diggerhq/digger/next v0.0.0-20240000000000-fd83543ef8b7 |
This PR contains the following updates:
5834969
->fd83543
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.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.