fog-aws 3.33.1 → 3.33.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/fog/aws/storage.rb +3 -2
- data/lib/fog/aws/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ef6d261effc88541b56e982050d0003a3ed126e5380a3928f3a622eea66633b9
|
|
4
|
+
data.tar.gz: 0ba63812241e5c5694e62271c22bf9e654db0ae96f8b481ddd18c3d6731aa295
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0dab6002b97b2a17003ea277b62572ea04583f8dd109c77ef4dc8db17cec0d5b97e69fe475bba60791f08ee4ffb0bd14283880d3989f3a70bde4f6b5581ff52b
|
|
7
|
+
data.tar.gz: cc0419e84ba54e19b5e4909f94e2133816e40ffd3fac80ec96257c1046071a331b777e11a184d5a88abe84dc1a348f3f9aecc9527f90b047d346e3e631a072be
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [v3.33.2](https://github.com/fog/fog-aws/tree/v3.33.2) (2026-04-20)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.33.0...v3.33.1)
|
|
6
|
+
|
|
7
|
+
**Merged pull requests:**
|
|
8
|
+
|
|
9
|
+
- bug(aws/storage): include non-standard port in Host header for signature v4 [\#755](https://github.com/fog/fog-aws/pull/755) ([stanhu](https://github.com/stanhu))
|
|
10
|
+
- Bump actions/checkout from 5 to 6 [\#753](https://github.com/fog/fog-aws/pull/753) ([dependabot](https://github.com/apps/dependabot))
|
|
11
|
+
|
|
3
12
|
## [v3.33.1](https://github.com/fog/fog-aws/tree/v3.33.1) (2025-11-03)
|
|
4
13
|
|
|
5
14
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.33.0...v3.33.1)
|
data/lib/fog/aws/storage.rb
CHANGED
|
@@ -658,8 +658,9 @@ module Fog
|
|
|
658
658
|
params = request_params(params)
|
|
659
659
|
scheme = params.delete(:scheme)
|
|
660
660
|
host = params.delete(:host)
|
|
661
|
-
port = params.delete(:port)
|
|
662
|
-
params[:headers]['Host'] = host
|
|
661
|
+
port = params.delete(:port)
|
|
662
|
+
params[:headers]['Host'] = port ? "#{host}:#{port}" : host
|
|
663
|
+
port ||= DEFAULT_SCHEME_PORT[scheme]
|
|
663
664
|
|
|
664
665
|
|
|
665
666
|
if @signature_version == 4
|
data/lib/fog/aws/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fog-aws
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.33.
|
|
4
|
+
version: 3.33.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Josh Lane
|
|
@@ -1499,7 +1499,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
1499
1499
|
- !ruby/object:Gem::Version
|
|
1500
1500
|
version: '0'
|
|
1501
1501
|
requirements: []
|
|
1502
|
-
rubygems_version:
|
|
1502
|
+
rubygems_version: 4.0.3
|
|
1503
1503
|
specification_version: 4
|
|
1504
1504
|
summary: Module for the 'fog' gem to support Amazon Web Services.
|
|
1505
1505
|
test_files: []
|