3 Commits

Author SHA1 Message Date
releaser 04c3c58fb7 chore(release): prepare for v0.4.1
storage / test (pull_request) Successful in 1m42s
storage / vulnerabilities (pull_request) Successful in 1m40s
pre-commit / pre-commit (pull_request) Successful in 6m20s
2026-05-05 09:16:31 +00:00
releaser 36708382c5 chore(release): prepare for v0.4.1 2026-05-05 09:16:29 +00:00
argoyle 9805d2d213 style: apply gofumpt formatting to s3.go (#112)
Release / release (push) Successful in 1m0s
storage / test (push) Successful in 1m42s
storage / vulnerabilities (push) Successful in 1m40s
pre-commit / pre-commit (push) Successful in 6m5s
2026-05-05 09:14:18 +00:00
3 changed files with 22 additions and 2 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
{
"version": "v0.4.0"
"version": "v0.4.1"
}
+19
View File
@@ -2,6 +2,25 @@
All notable changes to this project will be documented in this file.
## [0.4.1] - 2026-05-05
### 🐛 Bug Fixes
- *(deps)* Update aws-sdk-go-v2 monorepo (#102)
- *(deps)* Update aws-sdk-go-v2 monorepo (#103)
- *(deps)* Update aws-sdk-go-v2 monorepo (#104)
- *(deps)* Update aws-sdk-go-v2 monorepo (#105)
- *(deps)* Update module github.com/aws/aws-sdk-go-v2/feature/s3/transfermanager to v0.1.20 (#108)
### 🎨 Styling
- Apply gofumpt formatting to s3.go (#112)
### ⚙️ Miscellaneous Tasks
- *(deps)* Update pre-commit hook alessandrojcm/commitlint-pre-commit-hook to v9.25.0 (#106)
- *(deps)* Update pre-commit hook golangci/golangci-lint to v2.12.0 (#110)
## [0.4.0] - 2026-04-17
### 🚀 Features
+2 -1
View File
@@ -67,7 +67,8 @@ func (s *S3) storeWithManager(path string, content io.Reader, contentType string
if err != nil {
return "", err
}
presignedUrl, err := s.presigner.PresignGetObject(context.Background(),
presignedUrl, err := s.presigner.PresignGetObject(
context.Background(),
&s3.GetObjectInput{
Bucket: aws.String(s.bucket),
Key: aws.String(*out.Key),