-
Notifications
You must be signed in to change notification settings - Fork 668
fix: Update minio-go to fix bug in AWS STS auth #4056
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
Conversation
This PR must be merged before a backport PR will be created. |
1 similar comment
This PR must be merged before a backport PR will be created. |
With the upgrade of objstore libraries from grafana#3954 we introduced bug This fixes the underlying problem and adds a tests to validate that form of auth.
b9a5bee
to
3078277
Compare
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.
LGTM
Thanks for solving this!
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new branch
git switch --create backport-4056-to-release/v1.12 origin/release/v1.12
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x 0d4abec3875dde22b5c4255a0a4c56f81d1ec79a When the conflicts are resolved, stage and commit the changes:
If you have the GitHub CLI installed: # Push the branch to GitHub:
git push --set-upstream origin backport-4056-to-release/v1.12
# Create the PR body template
PR_BODY=$(gh pr view 4056 --json body --template 'Backport 0d4abec3875dde22b5c4255a0a4c56f81d1ec79a from #4056{{ "\n\n---\n\n" }}{{ index . "body" }}')
# Create the PR on GitHub
echo "${PR_BODY}" | gh pr create --title '[release/v1.12] fix: Update minio-go to fix bug in AWS STS auth' --body-file - --label 'type/bug' --label 'backport' --base release/v1.12 --milestone release/v1.12 --web Or, if you don't have the GitHub CLI installed (we recommend you install it!): # Push the branch to GitHub:
git push --set-upstream origin backport-4056-to-release/v1.12
# Create a pull request where the `base` branch is `release/v1.12` and the `compare`/`head` branch is `backport-4056-to-release/v1.12`.
# Remove the local backport branch
git switch main
git branch -D backport-4056-to-release/v1.12 |
Thanks for the fixing this! I build a container image from this PR (ghcr.io/sberz/pyroscope:20250326_s3-auth-issue-3cf63125c) and deployed it to our development environment. |
* fix: Update minio-go to fix bug in AWS STS auth With the upgrade of objstore libraries from #3954 we introduced bug This fixes the underlying problem and adds a tests to validate that form of auth. * lint * Be more specific about the format (cherry picked from commit 0d4abec) Co-authored-by: Christian Simon <[email protected]>
With the upgrade of objstore libraries from #3954 we introduced a bug #4050.
This fixes the underlying problem and adds a tests to validate that form of auth.