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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f7cc7ce33126b4fdeebc3302a81326921168f6e815a11f16c25961b223c49923
4
- data.tar.gz: 89c207e1063763f94a4ccf6044aa5f302384a46aee5776b02489639ec631c9e1
3
+ metadata.gz: ef6d261effc88541b56e982050d0003a3ed126e5380a3928f3a622eea66633b9
4
+ data.tar.gz: 0ba63812241e5c5694e62271c22bf9e654db0ae96f8b481ddd18c3d6731aa295
5
5
  SHA512:
6
- metadata.gz: fb49f18ada74faebdcee9a9dec6e47ee550454810aa8251c88734b5b5384989a23f3347d6357ab9c8c04ab6375335e65be98484f22d9817d381196482456fcc4
7
- data.tar.gz: 4b87d40f2b4506d3305c681c96b04631c551566c4974d4ca82713d7bc2243a74e01533f3598fc2834ba95b79404bbfbdae802212f4b6fb4ec47673823f11932b
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)
@@ -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) || DEFAULT_SCHEME_PORT[scheme]
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
@@ -1,5 +1,5 @@
1
1
  module Fog
2
2
  module AWS
3
- VERSION = '3.33.1'.freeze
3
+ VERSION = '3.33.2'.freeze
4
4
  end
5
5
  end
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.1
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: 3.6.9
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: []