Skip to content

build(deps): bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.102.0 to 1.102.1#457

Merged
github-actions[bot] merged 1 commit into
mainfrom
dependabot/go_modules/github.com/aws/aws-sdk-go-v2/service/s3-1.102.1
May 29, 2026
Merged

build(deps): bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.102.0 to 1.102.1#457
github-actions[bot] merged 1 commit into
mainfrom
dependabot/go_modules/github.com/aws/aws-sdk-go-v2/service/s3-1.102.1

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github May 29, 2026

Bumps github.com/aws/aws-sdk-go-v2/service/s3 from 1.102.0 to 1.102.1.

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Summary by CodeRabbit

  • Dependencies

    • Updated AWS SDK for Go v2 to v1.41.8 and S3 service to v1.102.1 along with related internal modules.
  • New Features

    • Added configuration option to control file permissions on credential cache files, with support for user read/write-only, unrestricted, or unset modes.

Review Change Stack

Bumps [github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2) from 1.102.0 to 1.102.1.
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/s3/v1.102.0...service/s3/v1.102.1)

---
updated-dependencies:
- dependency-name: github.com/aws/aws-sdk-go-v2/service/s3
  dependency-version: 1.102.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label May 29, 2026
@dependabot dependabot Bot requested a review from dongjiang1989 as a code owner May 29, 2026 10:15
@dependabot dependabot Bot added go Pull requests that update Go code dependencies Pull requests that update a dependency file labels May 29, 2026
@CLAassistant
Copy link
Copy Markdown

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.

@github-actions github-actions Bot merged commit 1d96ddb into main May 29, 2026
4 of 11 checks passed
@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented May 29, 2026

Caution

Review failed

The pull request is closed.

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: d593458e-eb58-4604-8e4c-4d0f2b5733f5

📥 Commits

Reviewing files that changed from the base of the PR and between a8b17f7 and b6b7651.

⛔ Files ignored due to path filters (1)
  • go.sum is excluded by !**/*.sum
📒 Files selected for processing (19)
  • go.mod
  • vendor/github.com/aws/aws-sdk-go-v2/aws/config.go
  • vendor/github.com/aws/aws-sdk-go-v2/aws/go_module_metadata.go
  • vendor/github.com/aws/aws-sdk-go-v2/aws/restrict_file_permissions.go
  • vendor/github.com/aws/aws-sdk-go-v2/internal/configsources/CHANGELOG.md
  • vendor/github.com/aws/aws-sdk-go-v2/internal/configsources/go_module_metadata.go
  • vendor/github.com/aws/aws-sdk-go-v2/internal/endpoints/v2/CHANGELOG.md
  • vendor/github.com/aws/aws-sdk-go-v2/internal/endpoints/v2/go_module_metadata.go
  • vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/CHANGELOG.md
  • vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/go_module_metadata.go
  • vendor/github.com/aws/aws-sdk-go-v2/service/internal/checksum/CHANGELOG.md
  • vendor/github.com/aws/aws-sdk-go-v2/service/internal/checksum/go_module_metadata.go
  • vendor/github.com/aws/aws-sdk-go-v2/service/internal/presigned-url/CHANGELOG.md
  • vendor/github.com/aws/aws-sdk-go-v2/service/internal/presigned-url/go_module_metadata.go
  • vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/CHANGELOG.md
  • vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/go_module_metadata.go
  • vendor/github.com/aws/aws-sdk-go-v2/service/s3/CHANGELOG.md
  • vendor/github.com/aws/aws-sdk-go-v2/service/s3/go_module_metadata.go
  • vendor/modules.txt

📝 Walkthrough

Walkthrough

AWS SDK for Go v2 is upgraded from v1.41.7 to v1.41.8 with S3 service updated to v1.102.1. A new RestrictFilePermissions configuration type is added to control credential cache file permissions, with three permission modes exposed as constants. All dependency manifests and generated metadata files are updated to reflect these versions.

Changes

AWS SDK v2 Dependency Upgrade with RestrictFilePermissions Configuration

Layer / File(s) Summary
RestrictFilePermissions configuration contract and type
vendor/github.com/aws/aws-sdk-go-v2/aws/restrict_file_permissions.go, vendor/github.com/aws/aws-sdk-go-v2/aws/config.go
New RestrictFilePermissions string type with exported constants RestrictFilePermissionsUnset, RestrictFilePermissionsUserReadWrite, and RestrictFilePermissionsUnrestricted define credential cache file permission modes. The Config struct adds a RestrictFilePermissions field to enable this configuration.
Root dependency manifests and AWS core module version updates
go.mod, vendor/modules.txt, vendor/github.com/aws/aws-sdk-go-v2/aws/go_module_metadata.go, vendor/github.com/aws/aws-sdk-go-v2/service/s3/go_module_metadata.go
AWS SDK for Go v2 root module bumped from v1.41.7 to v1.41.8 and S3 service module from v1.102.0 to v1.102.1 in both go.mod and vendor/modules.txt. Core module metadata version constants updated to match.
AWS SDK submodule metadata and changelog updates
vendor/github.com/aws/aws-sdk-go-v2/internal/configsources/*, vendor/github.com/aws/aws-sdk-go-v2/internal/endpoints/v2/*, vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/*, vendor/github.com/aws/aws-sdk-go-v2/service/internal/checksum/*, vendor/github.com/aws/aws-sdk-go-v2/service/internal/presigned-url/*, vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/*
Version constants in go_module_metadata.go and changelog entries added across all AWS SDK internal and service submodules (configsources v1.4.24, endpoints/v2 v2.7.24, v4a v1.4.25, checksum v1.9.17, presigned-url v1.13.24, s3shared v1.19.24) reflecting dependency updates.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~8 minutes

Suggested labels

size/XS

Suggested reviewers

  • dongjiang1989
  • github-actions

🐰 Whiskers twitches with delight,
AWS SDK hops to new heights,
Permissions now safely confined,
Credentials in caches refined!

✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch dependabot/go_modules/github.com/aws/aws-sdk-go-v2/service/s3-1.102.1

Comment @coderabbitai help to get the list of available commands and usage tips.

@dependabot dependabot Bot deleted the dependabot/go_modules/github.com/aws/aws-sdk-go-v2/service/s3-1.102.1 branch May 29, 2026 10:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update Go code size/M

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant