-
Notifications
You must be signed in to change notification settings - Fork 563
Update github.com/diggerhq/digger/backend digest to fd83543 #1910
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?
Update github.com/diggerhq/digger/backend digest to fd83543 #1910
Conversation
ℹ Artifact update noticeFile name: ee/cli/go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
File 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 (
|
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the 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. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
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
Updates backend dependency across multiple modules to version d07625c, along with routine maintenance updates to various indirect dependencies.
- Updates github.com/diggerhq/digger/backend from 9a40639/90aa7b8 to d07625c in ee/backend, ee/cli, ee/drift, and next modules
- Adds new dependency ktrysmt/go-bitbucket v0.9.81 across modules
- Updates AWS SDK packages to v1.32.4 series
- Updates database drivers including jackc/pgx and gorm.io/gorm to latest versions
- Updates core golang.org/x packages including crypto, net, and sys
7 file(s) reviewed, no comment(s)
Edit PR Review Bot Settings | Greptile
bb28b87
to
01d681c
Compare
8f46ae0
to
fd40834
Compare
fd40834
to
3d2e8db
Compare
54605ce
to
2903b5e
Compare
2903b5e
to
e0179ae
Compare
e0179ae
to
88a31ee
Compare
88a31ee
to
7c26a00
Compare
ffb2e55
to
7117607
Compare
02fb25a
to
0531529
Compare
0531529
to
bd50be9
Compare
b649b9b
to
ff4ea8c
Compare
ff4ea8c
to
4674c27
Compare
4674c27
to
983c7f5
Compare
983c7f5
to
1a5c3d7
Compare
b0a9773
to
c632442
Compare
|
Bismuth completed its review and found no issues. |
c632442
to
320c975
Compare
Bismuth completed its review and found no issues. |
320c975
to
21d352f
Compare
Summary of Bugs FoundTotal bugs found: 4 Critical Issues:
|
@@ -10,7 +10,7 @@ require ( | |||
github.com/bradleyfalzon/ghinstallation/v2 v2.11.0 | |||
github.com/buildkite/go-buildkite/v3 v3.11.0 | |||
github.com/dchest/uniuri v1.2.0 | |||
github.com/diggerhq/digger/backend v0.0.0-20241111113338-9a40639ab83c | |||
github.com/diggerhq/digger/backend v0.0.0-20250718034728-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 backend dependency in ee/backend/go.mod has a timestamp in the future (July 2025) which could cause issues with dependency resolution. The version string v0.0.0-20250718034728-fd83543ef8b7
contains a date component that is set to 2025-07-18, which is in the future. This is likely a typo where 2025 was written instead of 2024.
Go modules use these pseudo-version timestamps for version ordering, and having a future timestamp could cause problems with dependency resolution, especially when other tools or systems try to validate the timestamp. The same future timestamp appears in multiple files (ee/cli/go.mod and next/go.mod), indicating this is a systematic issue across the codebase.
github.com/diggerhq/digger/backend v0.0.0-20250718034728-fd83543ef8b7 | |
github.com/diggerhq/digger/backend v0.0.0-20240718034728-fd83543ef8b7 |
@@ -7,7 +7,7 @@ replace github.com/diggerhq/digger/libs => ../../libs | |||
replace github.com/diggerhq/digger/cli => ../../cli | |||
|
|||
require ( | |||
github.com/diggerhq/digger/backend v0.0.0-20241111113338-9a40639ab83c | |||
github.com/diggerhq/digger/backend v0.0.0-20250718034728-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 backend dependency in ee/cli/go.mod has a timestamp in the future (July 2025) which could cause issues with dependency resolution. The version string v0.0.0-20250718034728-fd83543ef8b7
contains a date component that is set to 2025-07-18, which is in the future. This is likely a typo where 2025 was written instead of 2024.
Go modules use these pseudo-version timestamps for version ordering, and having a future timestamp could cause problems with dependency resolution, especially when other tools or systems try to validate the timestamp.
github.com/diggerhq/digger/backend v0.0.0-20250718034728-fd83543ef8b7 | |
github.com/diggerhq/digger/backend v0.0.0-20240718034728-fd83543ef8b7 |
@@ -9,7 +9,7 @@ replace github.com/diggerhq/digger/libs => ../libs | |||
require ( | |||
github.com/bradleyfalzon/ghinstallation/v2 v2.11.0 | |||
github.com/dchest/uniuri v1.2.0 | |||
github.com/diggerhq/digger/backend v0.0.0-20241111113338-9a40639ab83c | |||
github.com/diggerhq/digger/backend v0.0.0-20250718034728-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 backend dependency in next/go.mod has a timestamp in the future (July 2025) which could cause issues with dependency resolution. The version string v0.0.0-20250718034728-fd83543ef8b7
contains a date component that is set to 2025-07-18, which is in the future. This is likely a typo where 2025 was written instead of 2024.
Go modules use these pseudo-version timestamps for version ordering, and having a future timestamp could cause problems with dependency resolution, especially when other tools or systems try to validate the timestamp.
github.com/diggerhq/digger/backend v0.0.0-20250718034728-fd83543ef8b7 | |
github.com/diggerhq/digger/backend v0.0.0-20240718034728-fd83543ef8b7 |
This PR contains the following updates:
9a40639
->fd83543
90aa7b8
->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 these updates again.
This PR was generated by Mend Renovate. View the repository job log.