fog-aws 3.6.6 → 3.10.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/.github/dependabot.yml +10 -0
- data/.github/workflows/ruby.yml +36 -0
- data/.github/workflows/stale.yml +23 -0
- data/CHANGELOG.md +169 -18
- data/Gemfile +1 -1
- data/README.md +21 -1
- data/fog-aws.gemspec +2 -2
- data/lib/fog/aws/credential_fetcher.rb +34 -3
- data/lib/fog/aws/models/compute/flavors.rb +460 -0
- data/lib/fog/aws/models/storage/file.rb +125 -3
- data/lib/fog/aws/models/storage/files.rb +32 -2
- data/lib/fog/aws/parsers/storage/upload_part_copy_object.rb +18 -0
- data/lib/fog/aws/requests/compute/request_spot_instances.rb +1 -1
- data/lib/fog/aws/requests/storage/delete_multiple_objects.rb +18 -8
- data/lib/fog/aws/requests/storage/shared_mock_methods.rb +1 -0
- data/lib/fog/aws/requests/storage/upload_part_copy.rb +119 -0
- data/lib/fog/aws/storage.rb +6 -3
- data/lib/fog/aws/version.rb +1 -1
- data/tests/credentials_tests.rb +42 -0
- data/tests/helpers/succeeds_helper.rb +2 -2
- data/tests/models/storage/directory_tests.rb +113 -2
- data/tests/models/storage/files_tests.rb +32 -0
- data/tests/requests/storage/bucket_tests.rb +1 -1
- data/tests/requests/storage/multipart_copy_tests.rb +93 -0
- data/tests/requests/storage/object_tests.rb +7 -0
- data/tests/requests/storage/versioning_tests.rb +38 -0
- metadata +18 -15
- data/.travis.yml +0 -53
- data/gemfiles/Gemfile-ruby-2.0 +0 -7
- data/stale.yml +0 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c26ecb900344f1066e888bd42bea0bb74295915f367cea6fc9ee76987fccf3bd
|
4
|
+
data.tar.gz: 0267b3e9130ea0496810e4432da4d695a37ea959892d30020defc58b93a872d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b94b3169aac81043a5847d4f644d03274ddfc1454ac6704f0c3c534e9031d693ce0cde7f50fd0ae396c4225d9145eacc27ed9be774bb2a80854e2f9d19b66baa
|
7
|
+
data.tar.gz: b756f7198948b5f5971a6e78f4474525d2827d58f8a393d8e36fbc961806104f4e4d83e288a3d5845c9b94b595c047341e7a4d7f0258e45cdf21dcc4c6dbd71e
|
@@ -0,0 +1,36 @@
|
|
1
|
+
# This workflow uses actions that are not certified by GitHub.
|
2
|
+
# They are provided by a third-party and are governed by
|
3
|
+
# separate terms of service, privacy policy, and support
|
4
|
+
# documentation.
|
5
|
+
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
|
6
|
+
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
|
7
|
+
|
8
|
+
name: Ruby
|
9
|
+
|
10
|
+
on:
|
11
|
+
push:
|
12
|
+
branches: [ master ]
|
13
|
+
pull_request:
|
14
|
+
branches: [ master ]
|
15
|
+
|
16
|
+
jobs:
|
17
|
+
test:
|
18
|
+
|
19
|
+
env:
|
20
|
+
BUNDLER_GEMFILE: gemfiles/Gemfile-edge
|
21
|
+
runs-on: ubuntu-latest
|
22
|
+
strategy:
|
23
|
+
matrix:
|
24
|
+
ruby-version: ['2.3', '2.4', '2.5', '2.6', '2.7', '3.0', 'head']
|
25
|
+
|
26
|
+
steps:
|
27
|
+
- uses: actions/checkout@v2
|
28
|
+
- name: Set up Ruby
|
29
|
+
uses: ruby/setup-ruby@v1
|
30
|
+
with:
|
31
|
+
ruby-version: ${{ matrix.ruby-version }}
|
32
|
+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
33
|
+
- name: Install dependencies
|
34
|
+
run: bundle install
|
35
|
+
- name: Run tests
|
36
|
+
run: bundle exec rake
|
@@ -0,0 +1,23 @@
|
|
1
|
+
name: Mark stale issues and pull requests
|
2
|
+
|
3
|
+
on:
|
4
|
+
schedule:
|
5
|
+
- cron: "30 1 * * *"
|
6
|
+
|
7
|
+
jobs:
|
8
|
+
stale:
|
9
|
+
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
|
12
|
+
steps:
|
13
|
+
- uses: actions/stale@v3
|
14
|
+
with:
|
15
|
+
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
16
|
+
days-before-stale: 60
|
17
|
+
days-before-close: 7
|
18
|
+
exempt-issue-labels: 'pinned,security'
|
19
|
+
exempt-pr-labels: 'pinned,security'
|
20
|
+
stale-issue-message: 'This issue has been marked inactive and will be closed if no further activity occurs.'
|
21
|
+
stale-pr-message: 'This pr has been marked inactive and will be closed if no further activity occurs.'
|
22
|
+
stale-issue-label: 'no-issue-activity'
|
23
|
+
stale-pr-label: 'no-pr-activity'
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,95 @@
|
|
1
|
-
#
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## [v3.10.0](https://github.com/fog/fog-aws/tree/v3.10.0) (2021-03-22)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.9.0...v3.10.0)
|
6
|
+
|
7
|
+
**Closed issues:**
|
8
|
+
|
9
|
+
- Fog::AWS::Storage timeout against S3 [\#599](https://github.com/fog/fog-aws/issues/599)
|
10
|
+
- Incorrect bucket redirection URL generation [\#594](https://github.com/fog/fog-aws/issues/594)
|
11
|
+
- Fully Support SSE-C encryption [\#571](https://github.com/fog/fog-aws/issues/571)
|
12
|
+
- Enable hibernation on creation of ec2 instance [\#566](https://github.com/fog/fog-aws/issues/566)
|
13
|
+
- Tests broken with fog-core 2.1.0 [\#504](https://github.com/fog/fog-aws/issues/504)
|
14
|
+
- changelog? [\#471](https://github.com/fog/fog-aws/issues/471)
|
15
|
+
- Changelog: Listing breaking changes [\#419](https://github.com/fog/fog-aws/issues/419)
|
16
|
+
- How to use iam\_instance\_profile? [\#342](https://github.com/fog/fog-aws/issues/342)
|
17
|
+
- how to support additional aws regions, e.g. cn-north-1 [\#164](https://github.com/fog/fog-aws/issues/164)
|
18
|
+
- Still empty content-encoding when it is not set [\#130](https://github.com/fog/fog-aws/issues/130)
|
19
|
+
|
20
|
+
**Merged pull requests:**
|
21
|
+
|
22
|
+
- Handle multiple versions of objects in multiple delete request [\#600](https://github.com/fog/fog-aws/pull/600) ([shanu-idrive](https://github.com/shanu-idrive))
|
23
|
+
- Add Truffleruby head to CI [\#596](https://github.com/fog/fog-aws/pull/596) ([gogainda](https://github.com/gogainda))
|
24
|
+
- Fixes domain name duplication in url [\#593](https://github.com/fog/fog-aws/pull/593) ([midhunkrishna](https://github.com/midhunkrishna))
|
25
|
+
|
26
|
+
## [v3.9.0](https://github.com/fog/fog-aws/tree/v3.9.0) (2021-03-02)
|
27
|
+
|
28
|
+
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.8.0...v3.9.0)
|
29
|
+
|
30
|
+
**Merged pull requests:**
|
31
|
+
|
32
|
+
- Fix handling of lowercased HTTP headers [\#597](https://github.com/fog/fog-aws/pull/597) ([stanhu](https://github.com/stanhu))
|
33
|
+
- Generate a default session name if one is not provided [\#595](https://github.com/fog/fog-aws/pull/595) ([stanhu](https://github.com/stanhu))
|
34
|
+
- Enable test on Ruby 3.0 [\#591](https://github.com/fog/fog-aws/pull/591) ([voxik](https://github.com/voxik))
|
35
|
+
|
36
|
+
## [v3.8.0](https://github.com/fog/fog-aws/tree/v3.8.0) (2021-01-13)
|
37
|
+
|
38
|
+
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.7.0...v3.8.0)
|
39
|
+
|
40
|
+
**Closed issues:**
|
41
|
+
|
42
|
+
- Getting Auth failure Exception for non enabled AWS regions in AWS account. [\#585](https://github.com/fog/fog-aws/issues/585)
|
43
|
+
|
44
|
+
**Merged pull requests:**
|
45
|
+
|
46
|
+
- Filter unknown UploadPartCopy parameters [\#589](https://github.com/fog/fog-aws/pull/589) ([stanhu](https://github.com/stanhu))
|
47
|
+
- Fix NameError in multipart copy [\#588](https://github.com/fog/fog-aws/pull/588) ([stanhu](https://github.com/stanhu))
|
48
|
+
- Rewind pointer if file is eof on put\_object mock [\#587](https://github.com/fog/fog-aws/pull/587) ([ekulz](https://github.com/ekulz))
|
49
|
+
- Update .travis.yml [\#584](https://github.com/fog/fog-aws/pull/584) ([nageshlop](https://github.com/nageshlop))
|
50
|
+
|
51
|
+
## [v3.7.0](https://github.com/fog/fog-aws/tree/v3.7.0) (2020-12-01)
|
52
|
+
|
53
|
+
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.6.7...v3.7.0)
|
54
|
+
|
55
|
+
**Closed issues:**
|
56
|
+
|
57
|
+
- File\#copy does not support files above 5 GB [\#577](https://github.com/fog/fog-aws/issues/577)
|
58
|
+
- fog-aws: AWS extended length resource ID issues \(8-\>18\) [\#517](https://github.com/fog/fog-aws/issues/517)
|
59
|
+
|
60
|
+
**Merged pull requests:**
|
61
|
+
|
62
|
+
- Add all m6gd, r6g, r6gd, c6g, and c6gd instance classes [\#582](https://github.com/fog/fog-aws/pull/582) ([calebwoofenden](https://github.com/calebwoofenden))
|
63
|
+
- Test Ruby v2.6.6 and v2.7.2 in CI [\#581](https://github.com/fog/fog-aws/pull/581) ([stanhu](https://github.com/stanhu))
|
64
|
+
- Add multi-threaded support for File\#copy [\#579](https://github.com/fog/fog-aws/pull/579) ([stanhu](https://github.com/stanhu))
|
65
|
+
- Add support for multipart Fog::AWS::Storage::File\#copy [\#578](https://github.com/fog/fog-aws/pull/578) ([stanhu](https://github.com/stanhu))
|
66
|
+
- Add AssumeRoleWithWebIdentity to fetch\_credentials [\#576](https://github.com/fog/fog-aws/pull/576) ([jpac-run](https://github.com/jpac-run))
|
67
|
+
|
68
|
+
## [v3.6.7](https://github.com/fog/fog-aws/tree/v3.6.7) (2020-08-26)
|
69
|
+
|
70
|
+
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.6.6...v3.6.7)
|
71
|
+
|
72
|
+
**Merged pull requests:**
|
73
|
+
|
74
|
+
- S3 dot Region endpoint structure applied [\#574](https://github.com/fog/fog-aws/pull/574) ([gharutyunyan-vineti](https://github.com/gharutyunyan-vineti))
|
75
|
+
|
76
|
+
## [v3.6.6](https://github.com/fog/fog-aws/tree/v3.6.6) (2020-06-23)
|
77
|
+
|
78
|
+
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.6.5...v3.6.6)
|
79
|
+
|
80
|
+
**Closed issues:**
|
81
|
+
|
82
|
+
- max\_keys param in storage.directories.get.... what am I missing? [\#568](https://github.com/fog/fog-aws/issues/568)
|
83
|
+
- Fog Logs? [\#561](https://github.com/fog/fog-aws/issues/561)
|
84
|
+
|
85
|
+
**Merged pull requests:**
|
86
|
+
|
87
|
+
- added missing region EU South \(Milan\) [\#570](https://github.com/fog/fog-aws/pull/570) ([saldan](https://github.com/saldan))
|
88
|
+
- hibernation option to compute [\#569](https://github.com/fog/fog-aws/pull/569) ([taniahagan](https://github.com/taniahagan))
|
89
|
+
- Fix VPC model is\_default requires [\#567](https://github.com/fog/fog-aws/pull/567) ([biinari](https://github.com/biinari))
|
2
90
|
|
3
91
|
## [v3.6.5](https://github.com/fog/fog-aws/tree/v3.6.5) (2020-05-22)
|
92
|
+
|
4
93
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.6.4...v3.6.5)
|
5
94
|
|
6
95
|
**Closed issues:**
|
@@ -15,6 +104,7 @@
|
|
15
104
|
- Gracefully handle failure of IMDSv2 and allow fallback to IMDSv1 [\#562](https://github.com/fog/fog-aws/pull/562) ([atyndall](https://github.com/atyndall))
|
16
105
|
|
17
106
|
## [v3.6.4](https://github.com/fog/fog-aws/tree/v3.6.4) (2020-05-14)
|
107
|
+
|
18
108
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.6.3...v3.6.4)
|
19
109
|
|
20
110
|
**Closed issues:**
|
@@ -27,6 +117,7 @@
|
|
27
117
|
- Don’t install development scripts [\#557](https://github.com/fog/fog-aws/pull/557) ([amarshall](https://github.com/amarshall))
|
28
118
|
|
29
119
|
## [v3.6.3](https://github.com/fog/fog-aws/tree/v3.6.3) (2020-04-22)
|
120
|
+
|
30
121
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.6.2...v3.6.3)
|
31
122
|
|
32
123
|
**Merged pull requests:**
|
@@ -36,6 +127,7 @@
|
|
36
127
|
- Update kinesis.rb [\#553](https://github.com/fog/fog-aws/pull/553) ([ioquatix](https://github.com/ioquatix))
|
37
128
|
|
38
129
|
## [v3.6.2](https://github.com/fog/fog-aws/tree/v3.6.2) (2020-03-24)
|
130
|
+
|
39
131
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.5.2...v3.6.2)
|
40
132
|
|
41
133
|
**Closed issues:**
|
@@ -66,6 +158,7 @@
|
|
66
158
|
- Fix subnet's parsings [\#529](https://github.com/fog/fog-aws/pull/529) ([KevinLoiseau](https://github.com/KevinLoiseau))
|
67
159
|
|
68
160
|
## [v3.5.2](https://github.com/fog/fog-aws/tree/v3.5.2) (2019-07-16)
|
161
|
+
|
69
162
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.5.1...v3.5.2)
|
70
163
|
|
71
164
|
**Closed issues:**
|
@@ -80,6 +173,7 @@
|
|
80
173
|
- Make S3 Signature v4 streaming optional [\#525](https://github.com/fog/fog-aws/pull/525) ([stanhu](https://github.com/stanhu))
|
81
174
|
|
82
175
|
## [v3.5.1](https://github.com/fog/fog-aws/tree/v3.5.1) (2019-06-10)
|
176
|
+
|
83
177
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.5.0...v3.5.1)
|
84
178
|
|
85
179
|
**Merged pull requests:**
|
@@ -88,6 +182,7 @@
|
|
88
182
|
- Add support for generating tree hash tests by adding unaligned parts. [\#521](https://github.com/fog/fog-aws/pull/521) ([hkmaly](https://github.com/hkmaly))
|
89
183
|
|
90
184
|
## [v3.5.0](https://github.com/fog/fog-aws/tree/v3.5.0) (2019-04-25)
|
185
|
+
|
91
186
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.4.0...v3.5.0)
|
92
187
|
|
93
188
|
**Closed issues:**
|
@@ -102,6 +197,7 @@
|
|
102
197
|
- Enhance/add attribute db subnet group for db instance [\#511](https://github.com/fog/fog-aws/pull/511) ([KevinLoiseau](https://github.com/KevinLoiseau))
|
103
198
|
|
104
199
|
## [v3.4.0](https://github.com/fog/fog-aws/tree/v3.4.0) (2019-03-11)
|
200
|
+
|
105
201
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.3.0...v3.4.0)
|
106
202
|
|
107
203
|
**Closed issues:**
|
@@ -140,6 +236,7 @@
|
|
140
236
|
- add tags for describe address [\#474](https://github.com/fog/fog-aws/pull/474) ([toubs13](https://github.com/toubs13))
|
141
237
|
|
142
238
|
## [v3.3.0](https://github.com/fog/fog-aws/tree/v3.3.0) (2018-09-18)
|
239
|
+
|
143
240
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.2.0...v3.3.0)
|
144
241
|
|
145
242
|
**Merged pull requests:**
|
@@ -147,6 +244,7 @@
|
|
147
244
|
- Rename CDN::AWS to AWS::CDN [\#467](https://github.com/fog/fog-aws/pull/467) ([jaredbeck](https://github.com/jaredbeck))
|
148
245
|
|
149
246
|
## [v3.2.0](https://github.com/fog/fog-aws/tree/v3.2.0) (2018-09-17)
|
247
|
+
|
150
248
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.1.0...v3.2.0)
|
151
249
|
|
152
250
|
**Merged pull requests:**
|
@@ -156,6 +254,7 @@
|
|
156
254
|
- Rename Compute::AWS to AWS::Compute [\#468](https://github.com/fog/fog-aws/pull/468) ([sue445](https://github.com/sue445))
|
157
255
|
|
158
256
|
## [v3.1.0](https://github.com/fog/fog-aws/tree/v3.1.0) (2018-09-17)
|
257
|
+
|
159
258
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.0.0...v3.1.0)
|
160
259
|
|
161
260
|
**Closed issues:**
|
@@ -187,6 +286,7 @@
|
|
187
286
|
- SetInstanceProtection endpoint for auto scaling groups support [\#436](https://github.com/fog/fog-aws/pull/436) ([thorn](https://github.com/thorn))
|
188
287
|
|
189
288
|
## [v3.0.0](https://github.com/fog/fog-aws/tree/v3.0.0) (2018-04-23)
|
289
|
+
|
190
290
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v2.0.1...v3.0.0)
|
191
291
|
|
192
292
|
**Closed issues:**
|
@@ -204,6 +304,7 @@
|
|
204
304
|
- fog-core 2.x, fog-json 1.x [\#433](https://github.com/fog/fog-aws/pull/433) ([lanej](https://github.com/lanej))
|
205
305
|
|
206
306
|
## [v2.0.1](https://github.com/fog/fog-aws/tree/v2.0.1) (2018-02-28)
|
307
|
+
|
207
308
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v2.0.0...v2.0.1)
|
208
309
|
|
209
310
|
**Closed issues:**
|
@@ -221,6 +322,7 @@
|
|
221
322
|
- add france \(eu-west-3\) new region, fix \#424 [\#425](https://github.com/fog/fog-aws/pull/425) ([Val](https://github.com/Val))
|
222
323
|
|
223
324
|
## [v2.0.0](https://github.com/fog/fog-aws/tree/v2.0.0) (2017-11-28)
|
325
|
+
|
224
326
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v1.4.1...v2.0.0)
|
225
327
|
|
226
328
|
**Closed issues:**
|
@@ -246,7 +348,7 @@
|
|
246
348
|
- Update rds instance options model [\#406](https://github.com/fog/fog-aws/pull/406) ([carloslima](https://github.com/carloslima))
|
247
349
|
- Drop Ruby\<2.0 support [\#405](https://github.com/fog/fog-aws/pull/405) ([tbrisker](https://github.com/tbrisker))
|
248
350
|
- allow Gemfile-edge travis builds to fail [\#403](https://github.com/fog/fog-aws/pull/403) ([lanej](https://github.com/lanej))
|
249
|
-
- Add `
|
351
|
+
- Add `default_for_az` attribute to subnet [\#402](https://github.com/fog/fog-aws/pull/402) ([rzaharenkov](https://github.com/rzaharenkov))
|
250
352
|
- bundler ~\> 1.15 [\#399](https://github.com/fog/fog-aws/pull/399) ([lanej](https://github.com/lanej))
|
251
353
|
- Fix detaching instances from auto scaling group. [\#397](https://github.com/fog/fog-aws/pull/397) ([rzaharenkov](https://github.com/rzaharenkov))
|
252
354
|
- Issue \#387 Fog::Compute::AWS::Vpcs returns VPCs with nil ids [\#396](https://github.com/fog/fog-aws/pull/396) ([maguec](https://github.com/maguec))
|
@@ -258,6 +360,7 @@
|
|
258
360
|
- fix default\_security\_group detection [\#348](https://github.com/fog/fog-aws/pull/348) ([lanej](https://github.com/lanej))
|
259
361
|
|
260
362
|
## [v1.4.1](https://github.com/fog/fog-aws/tree/v1.4.1) (2017-08-23)
|
363
|
+
|
261
364
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v1.4.0...v1.4.1)
|
262
365
|
|
263
366
|
**Closed issues:**
|
@@ -277,6 +380,7 @@
|
|
277
380
|
- Fix AWS credential mocking [\#374](https://github.com/fog/fog-aws/pull/374) ([v-yarotsky](https://github.com/v-yarotsky))
|
278
381
|
|
279
382
|
## [v1.4.0](https://github.com/fog/fog-aws/tree/v1.4.0) (2017-06-14)
|
383
|
+
|
280
384
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v1.3.0...v1.4.0)
|
281
385
|
|
282
386
|
**Closed issues:**
|
@@ -298,6 +402,7 @@
|
|
298
402
|
- Skip call to instance metadata host if region is specified [\#360](https://github.com/fog/fog-aws/pull/360) ([ankane](https://github.com/ankane))
|
299
403
|
|
300
404
|
## [v1.3.0](https://github.com/fog/fog-aws/tree/v1.3.0) (2017-03-29)
|
405
|
+
|
301
406
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v1.2.1...v1.3.0)
|
302
407
|
|
303
408
|
**Closed issues:**
|
@@ -313,6 +418,7 @@
|
|
313
418
|
- Modify volume [\#350](https://github.com/fog/fog-aws/pull/350) ([ehowe](https://github.com/ehowe))
|
314
419
|
|
315
420
|
## [v1.2.1](https://github.com/fog/fog-aws/tree/v1.2.1) (2017-02-27)
|
421
|
+
|
316
422
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v1.2.0...v1.2.1)
|
317
423
|
|
318
424
|
**Closed issues:**
|
@@ -328,6 +434,7 @@
|
|
328
434
|
- Fix multipart upload [\#340](https://github.com/fog/fog-aws/pull/340) ([nobmurakita](https://github.com/nobmurakita))
|
329
435
|
|
330
436
|
## [v1.2.0](https://github.com/fog/fog-aws/tree/v1.2.0) (2017-01-20)
|
437
|
+
|
331
438
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v1.1.0...v1.2.0)
|
332
439
|
|
333
440
|
**Closed issues:**
|
@@ -342,6 +449,7 @@
|
|
342
449
|
- Fixes / improvements for AutoScaling [\#334](https://github.com/fog/fog-aws/pull/334) ([lanej](https://github.com/lanej))
|
343
450
|
|
344
451
|
## [v1.1.0](https://github.com/fog/fog-aws/tree/v1.1.0) (2016-12-16)
|
452
|
+
|
345
453
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v1.0.0...v1.1.0)
|
346
454
|
|
347
455
|
**Closed issues:**
|
@@ -356,6 +464,7 @@
|
|
356
464
|
- credential\_fetcher: Mark AWS metadata calls as idempotent [\#329](https://github.com/fog/fog-aws/pull/329) ([mtekel](https://github.com/mtekel))
|
357
465
|
|
358
466
|
## [v1.0.0](https://github.com/fog/fog-aws/tree/v1.0.0) (2016-12-12)
|
467
|
+
|
359
468
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.13.0...v1.0.0)
|
360
469
|
|
361
470
|
**Merged pull requests:**
|
@@ -366,6 +475,7 @@
|
|
366
475
|
- data pipeline mocks [\#318](https://github.com/fog/fog-aws/pull/318) ([ehowe](https://github.com/ehowe))
|
367
476
|
|
368
477
|
## [v0.13.0](https://github.com/fog/fog-aws/tree/v0.13.0) (2016-11-29)
|
478
|
+
|
369
479
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.12.0...v0.13.0)
|
370
480
|
|
371
481
|
**Closed issues:**
|
@@ -384,7 +494,7 @@
|
|
384
494
|
- Fixed some missing parts in change sets [\#322](https://github.com/fog/fog-aws/pull/322) ([nilroy](https://github.com/nilroy))
|
385
495
|
- Add creation date and enhanced networking support for images [\#321](https://github.com/fog/fog-aws/pull/321) ([puneetloya](https://github.com/puneetloya))
|
386
496
|
- Fix warnings in running tests [\#319](https://github.com/fog/fog-aws/pull/319) ([ebihara99999](https://github.com/ebihara99999))
|
387
|
-
- Add `Fog::AWS::STS.Mock
|
497
|
+
- Add `Fog::AWS::STS.Mock#assume_role` [\#316](https://github.com/fog/fog-aws/pull/316) ([pedrommonteiro](https://github.com/pedrommonteiro))
|
388
498
|
- Ohio region [\#314](https://github.com/fog/fog-aws/pull/314) ([chanakyacool](https://github.com/chanakyacool))
|
389
499
|
- mime types gem update [\#312](https://github.com/fog/fog-aws/pull/312) ([lucianosousa](https://github.com/lucianosousa))
|
390
500
|
- fix S3 \#delete\_multiple\_objects for UTF-8 names [\#310](https://github.com/fog/fog-aws/pull/310) ([alepore](https://github.com/alepore))
|
@@ -394,6 +504,7 @@
|
|
394
504
|
- Modify Db subnet group [\#293](https://github.com/fog/fog-aws/pull/293) ([chanakyacool](https://github.com/chanakyacool))
|
395
505
|
|
396
506
|
## [v0.12.0](https://github.com/fog/fog-aws/tree/v0.12.0) (2016-09-22)
|
507
|
+
|
397
508
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.11.0...v0.12.0)
|
398
509
|
|
399
510
|
**Implemented enhancements:**
|
@@ -415,6 +526,7 @@
|
|
415
526
|
- Cloud Formation: support for change sets, stack policy and other missing calls. [\#297](https://github.com/fog/fog-aws/pull/297) ([neillturner](https://github.com/neillturner))
|
416
527
|
|
417
528
|
## [v0.11.0](https://github.com/fog/fog-aws/tree/v0.11.0) (2016-08-04)
|
529
|
+
|
418
530
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.10.0...v0.11.0)
|
419
531
|
|
420
532
|
**Merged pull requests:**
|
@@ -426,6 +538,7 @@
|
|
426
538
|
- Change DBSubnetGroup to DBSubnetGroupName model cluster while creation [\#279](https://github.com/fog/fog-aws/pull/279) ([chanakyacool](https://github.com/chanakyacool))
|
427
539
|
|
428
540
|
## [v0.10.0](https://github.com/fog/fog-aws/tree/v0.10.0) (2016-07-15)
|
541
|
+
|
429
542
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.9.4...v0.10.0)
|
430
543
|
|
431
544
|
**Closed issues:**
|
@@ -441,9 +554,9 @@
|
|
441
554
|
- Expanding IAM support [\#274](https://github.com/fog/fog-aws/pull/274) ([MrPrimate](https://github.com/MrPrimate))
|
442
555
|
- Rds snapshot improvements [\#269](https://github.com/fog/fog-aws/pull/269) ([tekken](https://github.com/tekken))
|
443
556
|
- add default region to use\_iam\_profile [\#268](https://github.com/fog/fog-aws/pull/268) ([shaiguitar](https://github.com/shaiguitar))
|
444
|
-
- autoscaler attach/detatch [\#229](https://github.com/fog/fog-aws/pull/229) ([shaiguitar](https://github.com/shaiguitar))
|
445
557
|
|
446
558
|
## [v0.9.4](https://github.com/fog/fog-aws/tree/v0.9.4) (2016-06-28)
|
559
|
+
|
447
560
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.9.3...v0.9.4)
|
448
561
|
|
449
562
|
**Closed issues:**
|
@@ -458,6 +571,7 @@
|
|
458
571
|
- AWS DNS - support newer DNS hosted zone IDs for dualstack ELBs [\#263](https://github.com/fog/fog-aws/pull/263) ([mattheworiordan](https://github.com/mattheworiordan))
|
459
572
|
|
460
573
|
## [v0.9.3](https://github.com/fog/fog-aws/tree/v0.9.3) (2016-06-20)
|
574
|
+
|
461
575
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.9.2...v0.9.3)
|
462
576
|
|
463
577
|
**Closed issues:**
|
@@ -465,7 +579,7 @@
|
|
465
579
|
- Users list is empty in Fog::AWS::IAM::Groups [\#256](https://github.com/fog/fog-aws/issues/256)
|
466
580
|
- I'd like to configure my Excon read\_timeout and write\_timeout [\#254](https://github.com/fog/fog-aws/issues/254)
|
467
581
|
- Bump fog-core to \>=1.38.0 [\#247](https://github.com/fog/fog-aws/issues/247)
|
468
|
-
- no implicit conversion of Array into String in `aws/storage.rb` from `
|
582
|
+
- no implicit conversion of Array into String in `aws/storage.rb` from `bucket_name` in params. [\#246](https://github.com/fog/fog-aws/issues/246)
|
469
583
|
- \[S3\] Bucket name gets duplicated in case of redirect from AWS [\#242](https://github.com/fog/fog-aws/issues/242)
|
470
584
|
- CloudFormation stack tags cause describe\_stacks to break [\#240](https://github.com/fog/fog-aws/issues/240)
|
471
585
|
|
@@ -480,6 +594,7 @@
|
|
480
594
|
- Add log warning message about when not on us-region [\#200](https://github.com/fog/fog-aws/pull/200) ([kitofr](https://github.com/kitofr))
|
481
595
|
|
482
596
|
## [v0.9.2](https://github.com/fog/fog-aws/tree/v0.9.2) (2016-03-23)
|
597
|
+
|
483
598
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.9.1...v0.9.2)
|
484
599
|
|
485
600
|
**Closed issues:**
|
@@ -491,12 +606,19 @@
|
|
491
606
|
- Aurora [\#238](https://github.com/fog/fog-aws/pull/238) ([ehowe](https://github.com/ehowe))
|
492
607
|
|
493
608
|
## [v0.9.1](https://github.com/fog/fog-aws/tree/v0.9.1) (2016-03-04)
|
609
|
+
|
494
610
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.8.2...v0.9.1)
|
495
611
|
|
496
612
|
## [v0.8.2](https://github.com/fog/fog-aws/tree/v0.8.2) (2016-03-04)
|
613
|
+
|
497
614
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.9.0...v0.8.2)
|
498
615
|
|
616
|
+
**Merged pull requests:**
|
617
|
+
|
618
|
+
- autoscaler attach/detatch [\#229](https://github.com/fog/fog-aws/pull/229) ([shaiguitar](https://github.com/shaiguitar))
|
619
|
+
|
499
620
|
## [v0.9.0](https://github.com/fog/fog-aws/tree/v0.9.0) (2016-03-03)
|
621
|
+
|
500
622
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.8.1...v0.9.0)
|
501
623
|
|
502
624
|
**Closed issues:**
|
@@ -517,6 +639,7 @@
|
|
517
639
|
- restore db instance fom db snapshot [\#217](https://github.com/fog/fog-aws/pull/217) ([ehowe](https://github.com/ehowe))
|
518
640
|
|
519
641
|
## [v0.8.1](https://github.com/fog/fog-aws/tree/v0.8.1) (2016-01-08)
|
642
|
+
|
520
643
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.8.0...v0.8.1)
|
521
644
|
|
522
645
|
**Merged pull requests:**
|
@@ -524,6 +647,7 @@
|
|
524
647
|
- Add new aws regions [\#213](https://github.com/fog/fog-aws/pull/213) ([atmos](https://github.com/atmos))
|
525
648
|
|
526
649
|
## [v0.8.0](https://github.com/fog/fog-aws/tree/v0.8.0) (2016-01-04)
|
650
|
+
|
527
651
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.7.6...v0.8.0)
|
528
652
|
|
529
653
|
**Fixed bugs:**
|
@@ -556,7 +680,7 @@
|
|
556
680
|
- make net/ssh require optional [\#197](https://github.com/fog/fog-aws/pull/197) ([geemus](https://github.com/geemus))
|
557
681
|
- Cache cluster security group parser [\#190](https://github.com/fog/fog-aws/pull/190) ([eherot](https://github.com/eherot))
|
558
682
|
- Allow region to be set for STS [\#189](https://github.com/fog/fog-aws/pull/189) ([fcheung](https://github.com/fcheung))
|
559
|
-
- add cn support for s3 [\#187](https://github.com/fog/fog-aws/pull/187) ([
|
683
|
+
- add cn support for s3 [\#187](https://github.com/fog/fog-aws/pull/187) ([ming535](https://github.com/ming535))
|
560
684
|
- mock instance stop and start properly [\#184](https://github.com/fog/fog-aws/pull/184) ([ehowe](https://github.com/ehowe))
|
561
685
|
- Disable idempotent option when block is passed to get\_object [\#183](https://github.com/fog/fog-aws/pull/183) ([ghost](https://github.com/ghost))
|
562
686
|
- Yield arguments to Mock\#get\_object block more similar to Excon [\#182](https://github.com/fog/fog-aws/pull/182) ([tdg5](https://github.com/tdg5))
|
@@ -564,6 +688,7 @@
|
|
564
688
|
- properly mock rds name update [\#170](https://github.com/fog/fog-aws/pull/170) ([ehowe](https://github.com/ehowe))
|
565
689
|
|
566
690
|
## [v0.7.6](https://github.com/fog/fog-aws/tree/v0.7.6) (2015-08-26)
|
691
|
+
|
567
692
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.7.5...v0.7.6)
|
568
693
|
|
569
694
|
**Closed issues:**
|
@@ -576,6 +701,7 @@
|
|
576
701
|
- Mocked put\_bucket no longer clobbers existing bucket [\#174](https://github.com/fog/fog-aws/pull/174) ([jgr](https://github.com/jgr))
|
577
702
|
|
578
703
|
## [v0.7.5](https://github.com/fog/fog-aws/tree/v0.7.5) (2015-08-24)
|
704
|
+
|
579
705
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.7.4...v0.7.5)
|
580
706
|
|
581
707
|
**Closed issues:**
|
@@ -597,6 +723,7 @@
|
|
597
723
|
- update \#promote\_read\_replica mock [\#158](https://github.com/fog/fog-aws/pull/158) ([lanej](https://github.com/lanej))
|
598
724
|
|
599
725
|
## [v0.7.4](https://github.com/fog/fog-aws/tree/v0.7.4) (2015-07-30)
|
726
|
+
|
600
727
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.7.3...v0.7.4)
|
601
728
|
|
602
729
|
**Fixed bugs:**
|
@@ -608,6 +735,7 @@
|
|
608
735
|
- AutoScaling attach/detach ELB support + tests [\#156](https://github.com/fog/fog-aws/pull/156) ([nbfowler](https://github.com/nbfowler))
|
609
736
|
|
610
737
|
## [v0.7.3](https://github.com/fog/fog-aws/tree/v0.7.3) (2015-07-10)
|
738
|
+
|
611
739
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.7.2...v0.7.3)
|
612
740
|
|
613
741
|
**Closed issues:**
|
@@ -619,6 +747,7 @@
|
|
619
747
|
- encrypted storage on rds [\#153](https://github.com/fog/fog-aws/pull/153) ([ehowe](https://github.com/ehowe))
|
620
748
|
|
621
749
|
## [v0.7.2](https://github.com/fog/fog-aws/tree/v0.7.2) (2015-07-08)
|
750
|
+
|
622
751
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.7.1...v0.7.2)
|
623
752
|
|
624
753
|
**Fixed bugs:**
|
@@ -630,6 +759,7 @@
|
|
630
759
|
- fix \#change\_resource\_record\_sets [\#151](https://github.com/fog/fog-aws/pull/151) ([lanej](https://github.com/lanej))
|
631
760
|
|
632
761
|
## [v0.7.1](https://github.com/fog/fog-aws/tree/v0.7.1) (2015-07-08)
|
762
|
+
|
633
763
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.7.0...v0.7.1)
|
634
764
|
|
635
765
|
**Merged pull requests:**
|
@@ -638,6 +768,7 @@
|
|
638
768
|
- Fix blank content-encoding headers [\#147](https://github.com/fog/fog-aws/pull/147) ([fcheung](https://github.com/fcheung))
|
639
769
|
|
640
770
|
## [v0.7.0](https://github.com/fog/fog-aws/tree/v0.7.0) (2015-07-07)
|
771
|
+
|
641
772
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.6.0...v0.7.0)
|
642
773
|
|
643
774
|
**Closed issues:**
|
@@ -654,6 +785,7 @@
|
|
654
785
|
- list\_hosted\_zones expects that options to be hash with symbol as key [\#139](https://github.com/fog/fog-aws/pull/139) ([slashmili](https://github.com/slashmili))
|
655
786
|
|
656
787
|
## [v0.6.0](https://github.com/fog/fog-aws/tree/v0.6.0) (2015-06-23)
|
788
|
+
|
657
789
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.5.0...v0.6.0)
|
658
790
|
|
659
791
|
**Merged pull requests:**
|
@@ -661,6 +793,7 @@
|
|
661
793
|
- Add support for AWS Lambda service [\#123](https://github.com/fog/fog-aws/pull/123) ([nomadium](https://github.com/nomadium))
|
662
794
|
|
663
795
|
## [v0.5.0](https://github.com/fog/fog-aws/tree/v0.5.0) (2015-06-17)
|
796
|
+
|
664
797
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.4.1...v0.5.0)
|
665
798
|
|
666
799
|
**Merged pull requests:**
|
@@ -670,6 +803,7 @@
|
|
670
803
|
- Add support for EC2 Container Service [\#120](https://github.com/fog/fog-aws/pull/120) ([nomadium](https://github.com/nomadium))
|
671
804
|
|
672
805
|
## [v0.4.1](https://github.com/fog/fog-aws/tree/v0.4.1) (2015-06-15)
|
806
|
+
|
673
807
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.4.0...v0.4.1)
|
674
808
|
|
675
809
|
**Closed issues:**
|
@@ -689,6 +823,7 @@
|
|
689
823
|
- model managed policies [\#126](https://github.com/fog/fog-aws/pull/126) ([lanej](https://github.com/lanej))
|
690
824
|
|
691
825
|
## [v0.4.0](https://github.com/fog/fog-aws/tree/v0.4.0) (2015-05-27)
|
826
|
+
|
692
827
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.3.0...v0.4.0)
|
693
828
|
|
694
829
|
**Merged pull requests:**
|
@@ -696,6 +831,7 @@
|
|
696
831
|
- model iam groups [\#121](https://github.com/fog/fog-aws/pull/121) ([lanej](https://github.com/lanej))
|
697
832
|
|
698
833
|
## [v0.3.0](https://github.com/fog/fog-aws/tree/v0.3.0) (2015-05-21)
|
834
|
+
|
699
835
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.2.2...v0.3.0)
|
700
836
|
|
701
837
|
**Closed issues:**
|
@@ -708,9 +844,11 @@
|
|
708
844
|
- Added a new request - describe\_instance\_attribute [\#110](https://github.com/fog/fog-aws/pull/110) ([nilroy](https://github.com/nilroy))
|
709
845
|
|
710
846
|
## [v0.2.2](https://github.com/fog/fog-aws/tree/v0.2.2) (2015-05-13)
|
847
|
+
|
711
848
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.2.1...v0.2.2)
|
712
849
|
|
713
850
|
## [v0.2.1](https://github.com/fog/fog-aws/tree/v0.2.1) (2015-05-13)
|
851
|
+
|
714
852
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.2.0...v0.2.1)
|
715
853
|
|
716
854
|
**Merged pull requests:**
|
@@ -718,6 +856,7 @@
|
|
718
856
|
- mocks for topic permissions [\#111](https://github.com/fog/fog-aws/pull/111) ([lanej](https://github.com/lanej))
|
719
857
|
|
720
858
|
## [v0.2.0](https://github.com/fog/fog-aws/tree/v0.2.0) (2015-05-13)
|
859
|
+
|
721
860
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.1.2...v0.2.0)
|
722
861
|
|
723
862
|
**Implemented enhancements:**
|
@@ -751,6 +890,7 @@
|
|
751
890
|
- Add mock for EC2 describe\_spot\_price\_history API request [\#84](https://github.com/fog/fog-aws/pull/84) ([nomadium](https://github.com/nomadium))
|
752
891
|
|
753
892
|
## [v0.1.2](https://github.com/fog/fog-aws/tree/v0.1.2) (2015-04-07)
|
893
|
+
|
754
894
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.1.1...v0.1.2)
|
755
895
|
|
756
896
|
**Closed issues:**
|
@@ -780,6 +920,7 @@
|
|
780
920
|
- Add support for cname buckets [\#61](https://github.com/fog/fog-aws/pull/61) ([dsgh](https://github.com/dsgh))
|
781
921
|
|
782
922
|
## [v0.1.1](https://github.com/fog/fog-aws/tree/v0.1.1) (2015-02-25)
|
923
|
+
|
783
924
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.1.0...v0.1.1)
|
784
925
|
|
785
926
|
**Closed issues:**
|
@@ -801,6 +942,7 @@
|
|
801
942
|
- don't allow sg authorization to unknown sgs [\#49](https://github.com/fog/fog-aws/pull/49) ([lanej](https://github.com/lanej))
|
802
943
|
|
803
944
|
## [v0.1.0](https://github.com/fog/fog-aws/tree/v0.1.0) (2015-02-03)
|
945
|
+
|
804
946
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.8...v0.1.0)
|
805
947
|
|
806
948
|
**Closed issues:**
|
@@ -812,21 +954,11 @@
|
|
812
954
|
- Fix v4 signature when path has repeated slashes in the middle [\#46](https://github.com/fog/fog-aws/pull/46) ([fcheung](https://github.com/fcheung))
|
813
955
|
- get signin token for federation [\#45](https://github.com/fog/fog-aws/pull/45) ([ehowe](https://github.com/ehowe))
|
814
956
|
- add 'volumeType' and 'encrypted' to blockDeviceMapping parser [\#43](https://github.com/fog/fog-aws/pull/43) ([ichii386](https://github.com/ichii386))
|
815
|
-
- default namespace and evaluation period on alarm [\#37](https://github.com/fog/fog-aws/pull/37) ([michelleN](https://github.com/michelleN))
|
816
|
-
|
817
|
-
## [v0.0.8](https://github.com/fog/fog-aws/tree/v0.0.8) (2015-01-27)
|
818
|
-
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.7...v0.0.8)
|
819
|
-
|
820
|
-
**Closed issues:**
|
821
|
-
|
822
|
-
- NoMethodError - undefined method `signature\_parameters' for nil:NilClass [\#28](https://github.com/fog/fog-aws/issues/28)
|
823
|
-
|
824
|
-
**Merged pull requests:**
|
825
|
-
|
826
957
|
- add missing mocks [\#41](https://github.com/fog/fog-aws/pull/41) ([michelleN](https://github.com/michelleN))
|
827
958
|
- Add idempotent excon option to some route53 API calls [\#40](https://github.com/fog/fog-aws/pull/40) ([josacar](https://github.com/josacar))
|
828
959
|
- Allow for AWS errors not specifying region [\#39](https://github.com/fog/fog-aws/pull/39) ([greysteil](https://github.com/greysteil))
|
829
960
|
- correct engine version param on rds replicas [\#38](https://github.com/fog/fog-aws/pull/38) ([lanej](https://github.com/lanej))
|
961
|
+
- default namespace and evaluation period on alarm [\#37](https://github.com/fog/fog-aws/pull/37) ([michelleN](https://github.com/michelleN))
|
830
962
|
- \[AWS|Autoscaling\] Add missing ebs attributes to describe\_launch\_configurations [\#35](https://github.com/fog/fog-aws/pull/35) ([fcheung](https://github.com/fcheung))
|
831
963
|
- \[AWS|Storage\] signed\_url should use v2 signature when aws\_signature\_version is 2 [\#34](https://github.com/fog/fog-aws/pull/34) ([fcheung](https://github.com/fcheung))
|
832
964
|
- BUGFIX: When fog\_credentials endpoint is set @region defaults to nil [\#33](https://github.com/fog/fog-aws/pull/33) ([nicholasklick](https://github.com/nicholasklick))
|
@@ -835,7 +967,16 @@
|
|
835
967
|
- Add PlacementTenancy to launch configuration parser and test case [\#29](https://github.com/fog/fog-aws/pull/29) ([benpillet](https://github.com/benpillet))
|
836
968
|
- Use Fog::Formatador [\#27](https://github.com/fog/fog-aws/pull/27) ([ghost](https://github.com/ghost))
|
837
969
|
|
970
|
+
## [v0.0.8](https://github.com/fog/fog-aws/tree/v0.0.8) (2015-01-27)
|
971
|
+
|
972
|
+
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.7...v0.0.8)
|
973
|
+
|
974
|
+
**Closed issues:**
|
975
|
+
|
976
|
+
- NoMethodError - undefined method `signature\_parameters' for nil:NilClass [\#28](https://github.com/fog/fog-aws/issues/28)
|
977
|
+
|
838
978
|
## [v0.0.7](https://github.com/fog/fog-aws/tree/v0.0.7) (2015-01-23)
|
979
|
+
|
839
980
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.6...v0.0.7)
|
840
981
|
|
841
982
|
**Closed issues:**
|
@@ -848,6 +989,7 @@
|
|
848
989
|
- Support for VPC Classic Link [\#3](https://github.com/fog/fog-aws/pull/3) ([fcheung](https://github.com/fcheung))
|
849
990
|
|
850
991
|
## [v0.0.6](https://github.com/fog/fog-aws/tree/v0.0.6) (2015-01-12)
|
992
|
+
|
851
993
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.5...v0.0.6)
|
852
994
|
|
853
995
|
**Closed issues:**
|
@@ -860,24 +1002,33 @@
|
|
860
1002
|
- another attempt at s3 region redirecting [\#2](https://github.com/fog/fog-aws/pull/2) ([geemus](https://github.com/geemus))
|
861
1003
|
|
862
1004
|
## [v0.0.5](https://github.com/fog/fog-aws/tree/v0.0.5) (2015-01-06)
|
1005
|
+
|
863
1006
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.4...v0.0.5)
|
864
1007
|
|
865
1008
|
## [v0.0.4](https://github.com/fog/fog-aws/tree/v0.0.4) (2015-01-04)
|
1009
|
+
|
866
1010
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.3...v0.0.4)
|
867
1011
|
|
868
1012
|
## [v0.0.3](https://github.com/fog/fog-aws/tree/v0.0.3) (2015-01-02)
|
1013
|
+
|
869
1014
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.2...v0.0.3)
|
870
1015
|
|
871
1016
|
## [v0.0.2](https://github.com/fog/fog-aws/tree/v0.0.2) (2015-01-02)
|
1017
|
+
|
872
1018
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.1...v0.0.2)
|
873
1019
|
|
874
1020
|
## [v0.0.1](https://github.com/fog/fog-aws/tree/v0.0.1) (2015-01-02)
|
1021
|
+
|
875
1022
|
[Full Changelog](https://github.com/fog/fog-aws/compare/rm...v0.0.1)
|
876
1023
|
|
877
1024
|
## [rm](https://github.com/fog/fog-aws/tree/rm) (2014-11-27)
|
1025
|
+
|
878
1026
|
[Full Changelog](https://github.com/fog/fog-aws/compare/fog-brightbox_v0.0.1...rm)
|
879
1027
|
|
880
1028
|
## [fog-brightbox_v0.0.1](https://github.com/fog/fog-aws/tree/fog-brightbox_v0.0.1) (2014-02-19)
|
881
1029
|
|
1030
|
+
[Full Changelog](https://github.com/fog/fog-aws/compare/d496bcd266d584ffcded6e265e8166138a3fb22a...fog-brightbox_v0.0.1)
|
1031
|
+
|
1032
|
+
|
882
1033
|
|
883
|
-
\* *This
|
1034
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|