fog-aws 3.26.0 → 3.27.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d377b351cc65edd82e4a62ebe1ae39e76f8bb820d4ef81de7b2780481e032f57
4
- data.tar.gz: a270c2bca933d588509dfc86ff998431a9beb503cbab891fb399c1d63b45a77b
3
+ metadata.gz: 273dd632772ac3f10f6edf04e4c7c92c3f568ccadd00bac17193e911c1924768
4
+ data.tar.gz: 3d6136144890c0be995d55945b871db356933ba10a04021410820d6c3ee22207
5
5
  SHA512:
6
- metadata.gz: 3e2625dd426856c37532ae2183eab70d8ded2fb262e7e411ba92c0c191b3c59d247d90d25f495fc4fd320b69c79f6c30b90e594d1b0c48ca38c9a2c33803e99b
7
- data.tar.gz: f348c94db7db53197f4fedbaff838b122de1a6537d5570f3e45e316745441ef4e76d4c38c90021c3e6bb4f45f06dc5e0ab6bec4b350953cdf947609162b40fdc
6
+ metadata.gz: 9ff9d98293302c8fce70cf5b669d12a8b46d02ec564838813a49514574ebd173a1e1e0ec29c82d22dfd31f5d6c6bbe5e1ddeb56ca189dc01f2137c7b5916af88
7
+ data.tar.gz: 7b5322cd88344b5a2b13ca364300901d9796a244e9a798de693366fcde9123440366130404694f5f2337ad9cb2e9f8ac3150b3d59874a0a8486afb6703a96e4f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [v3.27.0](https://github.com/fog/fog-aws/tree/v3.27.0) (2024-09-16)
4
+
5
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.26.0...v3.27.0)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - avoid merging connection value from headers when saving files [\#725](https://github.com/fog/fog-aws/pull/725) ([geemus](https://github.com/geemus))
10
+
3
11
  ## [v3.26.0](https://github.com/fog/fog-aws/tree/v3.26.0) (2024-09-10)
4
12
 
5
13
  [Full Changelog](https://github.com/fog/fog-aws/compare/v3.25.0...v3.26.0)
@@ -25,19 +33,6 @@
25
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))
26
34
  - add base64 require and dependency [\#716](https://github.com/fog/fog-aws/pull/716) ([geemus](https://github.com/geemus))
27
35
 
28
- ## [v3.24.0](https://github.com/fog/fog-aws/tree/v3.24.0) (2024-07-08)
29
-
30
- [Full Changelog](https://github.com/fog/fog-aws/compare/v3.23.0...v3.24.0)
31
-
32
- **Closed issues:**
33
-
34
- - Fog.mock! not working with Storage provider [\#713](https://github.com/fog/fog-aws/issues/713)
35
-
36
- **Merged pull requests:**
37
-
38
- - Prefer AWS\_REGION over AWS\_DEFAULT\_REGION in credential fetching [\#715](https://github.com/fog/fog-aws/pull/715) ([stanhu](https://github.com/stanhu))
39
- - Provide a 'Changelog' link on rubygems.org/gems/fog-aws [\#714](https://github.com/fog/fog-aws/pull/714) ([mark-young-atg](https://github.com/mark-young-atg))
40
-
41
36
 
42
37
 
43
38
  \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
@@ -281,7 +281,7 @@ module Fog
281
281
  merge_attributes(data.body)
282
282
  else
283
283
  data = service.put_object(directory.key, key, body, options)
284
- merge_attributes(data.headers.reject {|key, value| ['Content-Length', 'Content-Type'].include?(key)})
284
+ merge_attributes(data.headers.reject {|key, value| ['Connection', 'Content-Length', 'Content-Type'].include?(key)})
285
285
  end
286
286
  self.etag = self.etag.gsub('"','') if self.etag
287
287
  self.content_length = Fog::Storage.get_body_size(body)
@@ -1,5 +1,5 @@
1
1
  module Fog
2
2
  module AWS
3
- VERSION = "3.26.0"
3
+ VERSION = "3.27.0"
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.26.0
4
+ version: 3.27.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Lane
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2024-09-10 00:00:00.000000000 Z
12
+ date: 2024-09-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler