fog-aws 3.26.0 → 3.27.0
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 +8 -13
- data/lib/fog/aws/models/storage/file.rb +1 -1
- 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: 273dd632772ac3f10f6edf04e4c7c92c3f568ccadd00bac17193e911c1924768
|
|
4
|
+
data.tar.gz: 3d6136144890c0be995d55945b871db356933ba10a04021410820d6c3ee22207
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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)
|
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.
|
|
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-
|
|
12
|
+
date: 2024-09-16 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|