fog-aws 3.23.0 → 3.24.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 +14 -1
- data/fog-aws.gemspec +2 -0
- data/lib/fog/aws/credential_fetcher.rb +1 -1
- data/lib/fog/aws/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e0e211d55e044aab96a65857f1233e96d51f46a686f1d09b04320018ba06a081
|
|
4
|
+
data.tar.gz: ba929fd4951de9ccd6250f18a154f5c9c8a9a684fd400a6c6f45973847fec392
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bc4d7f54b99cec9fddf93e4ba9bcf7ae5a9aa38f2f056a4a6e13bbb5e505da6683aca5f20645982c10a365d34ea708a83ed6513988909e8b694d88d06fd2360d
|
|
7
|
+
data.tar.gz: 91d4d78e6de77e551c43dad3a121802d5d3e854b0b13bda3d72d6a38a196009a6c55f5e813125b99afc0700b76f12f4b617d11b9dd156e91a34dfa1f1476e315
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [v3.
|
|
3
|
+
## [v3.24.0](https://github.com/fog/fog-aws/tree/v3.24.0) (2024-07-08)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.23.0...v3.24.0)
|
|
6
|
+
|
|
7
|
+
**Closed issues:**
|
|
8
|
+
|
|
9
|
+
- Fog.mock! not working with Storage provider [\#713](https://github.com/fog/fog-aws/issues/713)
|
|
10
|
+
|
|
11
|
+
**Merged pull requests:**
|
|
12
|
+
|
|
13
|
+
- Prefer AWS\_REGION over AWS\_DEFAULT\_REGION in credential fetching [\#715](https://github.com/fog/fog-aws/pull/715) ([stanhu](https://github.com/stanhu))
|
|
14
|
+
- 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))
|
|
15
|
+
|
|
16
|
+
## [v3.23.0](https://github.com/fog/fog-aws/tree/v3.23.0) (2024-06-18)
|
|
4
17
|
|
|
5
18
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.22.0...v3.23.0)
|
|
6
19
|
|
data/fog-aws.gemspec
CHANGED
|
@@ -21,7 +21,7 @@ module Fog
|
|
|
21
21
|
if options[:use_iam_profile]
|
|
22
22
|
begin
|
|
23
23
|
role_data = nil
|
|
24
|
-
region = options[:region] || ENV["AWS_DEFAULT_REGION"]
|
|
24
|
+
region = options[:region] || ENV["AWS_REGION"] || ENV["AWS_DEFAULT_REGION"]
|
|
25
25
|
|
|
26
26
|
if ENV["AWS_CONTAINER_CREDENTIALS_RELATIVE_URI"]
|
|
27
27
|
connection = options[:connection] || Excon.new(CONTAINER_CREDENTIALS_HOST)
|
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.24.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-
|
|
12
|
+
date: 2024-07-08 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -1442,7 +1442,8 @@ files:
|
|
|
1442
1442
|
homepage: https://github.com/fog/fog-aws
|
|
1443
1443
|
licenses:
|
|
1444
1444
|
- MIT
|
|
1445
|
-
metadata:
|
|
1445
|
+
metadata:
|
|
1446
|
+
changelog_uri: https://github.com/fog/fog-aws/blob/master/CHANGELOG.md
|
|
1446
1447
|
post_install_message:
|
|
1447
1448
|
rdoc_options: []
|
|
1448
1449
|
require_paths:
|