Skip to content

Commit

Permalink
v3.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
geemus committed Oct 14, 2024
1 parent 4b0871c commit 1acc1a3
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 23 deletions.
29 changes: 12 additions & 17 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [v3.28.0](https://github.com/fog/fog-aws/tree/v3.28.0) (2024-10-14)

[Full Changelog](https://github.com/fog/fog-aws/compare/v3.27.0...v3.28.0)

**Closed issues:**

- SES needs to support AWS SigV4 [\#726](https://github.com/fog/fog-aws/issues/726)

**Merged pull requests:**

- Update SES to use AWS SigV4 [\#727](https://github.com/fog/fog-aws/pull/727) ([ohookins](https://github.com/ohookins))

## [v3.27.0](https://github.com/fog/fog-aws/tree/v3.27.0) (2024-09-16)

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

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

## [v3.25.0](https://github.com/fog/fog-aws/tree/v3.25.0) (2024-08-29)

[Full Changelog](https://github.com/fog/fog-aws/compare/v3.24.0...v3.25.0)

**Closed issues:**

- gsub exception from normalize\_headers with carrierwave [\#720](https://github.com/fog/fog-aws/issues/720)
- Add AWS EKS Pod Identity support [\#718](https://github.com/fog/fog-aws/issues/718)

**Merged pull requests:**

- 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))
- Added support for EKS Pod Identity. [\#721](https://github.com/fog/fog-aws/pull/721) ([y-sugawara-acs](https://github.com/y-sugawara-acs))
- Disable S3 Signature v4 Streaming by default [\#719](https://github.com/fog/fog-aws/pull/719) ([stanhu](https://github.com/stanhu))
- 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))
- add base64 require and dependency [\#716](https://github.com/fog/fog-aws/pull/716) ([geemus](https://github.com/geemus))



\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
10 changes: 5 additions & 5 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require "bundler/gem_tasks"
require "github_changelog_generator/task"
require 'bundler/gem_tasks'
require 'github_changelog_generator/task'

task :default => :test
task default: :test

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

config.future_release = 'v3.27.0'
config.since_tag = 'v3.24.0'
config.future_release = 'v3.28.0'
config.since_tag = 'v3.25.0'
end
2 changes: 1 addition & 1 deletion lib/fog/aws/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Fog
module AWS
VERSION = "3.27.0"
VERSION = '3.28.0'.freeze
end
end

0 comments on commit 1acc1a3

Please sign in to comment.