Skip to content

Commit 1acc1a3

Browse files
committed
v3.28.0
1 parent 4b0871c commit 1acc1a3

File tree

3 files changed

+18
-23
lines changed

3 files changed

+18
-23
lines changed

CHANGELOG.md

Lines changed: 12 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [v3.28.0](https://github.com/fog/fog-aws/tree/v3.28.0) (2024-10-14)
4+
5+
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.27.0...v3.28.0)
6+
7+
**Closed issues:**
8+
9+
- SES needs to support AWS SigV4 [\#726](https://github.com/fog/fog-aws/issues/726)
10+
11+
**Merged pull requests:**
12+
13+
- Update SES to use AWS SigV4 [\#727](https://github.com/fog/fog-aws/pull/727) ([ohookins](https://github.com/ohookins))
14+
315
## [v3.27.0](https://github.com/fog/fog-aws/tree/v3.27.0) (2024-09-16)
416

517
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.26.0...v3.27.0)
@@ -16,23 +28,6 @@
1628

1729
- Support AWS\_ENDPOINT\_URL\_STS environment variable [\#724](https://github.com/fog/fog-aws/pull/724) ([stanhu](https://github.com/stanhu))
1830

19-
## [v3.25.0](https://github.com/fog/fog-aws/tree/v3.25.0) (2024-08-29)
20-
21-
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.24.0...v3.25.0)
22-
23-
**Closed issues:**
24-
25-
- gsub exception from normalize\_headers with carrierwave [\#720](https://github.com/fog/fog-aws/issues/720)
26-
- Add AWS EKS Pod Identity support [\#718](https://github.com/fog/fog-aws/issues/718)
27-
28-
**Merged pull requests:**
29-
30-
- only try to gsub etag on files if there is one closes \#720 [\#722](https://github.com/fog/fog-aws/pull/722) ([geemus](https://github.com/geemus))
31-
- Added support for EKS Pod Identity. [\#721](https://github.com/fog/fog-aws/pull/721) ([y-sugawara-acs](https://github.com/y-sugawara-acs))
32-
- Disable S3 Signature v4 Streaming by default [\#719](https://github.com/fog/fog-aws/pull/719) ([stanhu](https://github.com/stanhu))
33-
- Drop warning if region is not us-east-1 in mock [\#717](https://github.com/fog/fog-aws/pull/717) ([stanhu](https://github.com/stanhu))
34-
- add base64 require and dependency [\#716](https://github.com/fog/fog-aws/pull/716) ([geemus](https://github.com/geemus))
35-
3631

3732

3833
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*

Rakefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
require "bundler/gem_tasks"
2-
require "github_changelog_generator/task"
1+
require 'bundler/gem_tasks'
2+
require 'github_changelog_generator/task'
33

4-
task :default => :test
4+
task default: :test
55

66
mock = ENV['FOG_MOCK'] || 'true'
77
task :test do
@@ -13,6 +13,6 @@ GitHubChangelogGenerator::RakeTask.new :changelog do |config|
1313
config.project = 'fog-aws'
1414
config.max_issues = 100
1515

16-
config.future_release = 'v3.27.0'
17-
config.since_tag = 'v3.24.0'
16+
config.future_release = 'v3.28.0'
17+
config.since_tag = 'v3.25.0'
1818
end

lib/fog/aws/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Fog
22
module AWS
3-
VERSION = "3.27.0"
3+
VERSION = '3.28.0'.freeze
44
end
55
end

0 commit comments

Comments
 (0)