fog-aws 3.8.0 → 3.12.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 +239 -22
- data/README.md +1 -1
- data/fog-aws.gemspec +5 -4
- data/lib/fog/aws/compute.rb +6 -3
- data/lib/fog/aws/credential_fetcher.rb +17 -8
- data/lib/fog/aws/models/compute/security_group.rb +13 -5
- data/lib/fog/aws/models/compute/server.rb +2 -0
- data/lib/fog/aws/models/storage/file.rb +13 -10
- data/lib/fog/aws/models/storage/files.rb +32 -2
- data/lib/fog/aws/parsers/compute/describe_security_groups.rb +18 -4
- data/lib/fog/aws/requests/compute/authorize_security_group_ingress.rb +15 -0
- data/lib/fog/aws/requests/compute/describe_security_groups.rb +2 -0
- data/lib/fog/aws/requests/compute/run_instances.rb +44 -0
- data/lib/fog/aws/requests/storage/delete_multiple_objects.rb +18 -8
- data/lib/fog/aws/requests/storage/get_object.rb +1 -1
- data/lib/fog/aws/storage.rb +42 -3
- data/lib/fog/aws/version.rb +1 -1
- data/tests/credentials_tests.rb +53 -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/compute/security_group_tests.rb +12 -1
- data/tests/requests/storage/bucket_tests.rb +1 -1
- data/tests/requests/storage/versioning_tests.rb +38 -0
- metadata +11 -22
- data/.gitignore +0 -17
- data/.travis.yml +0 -122
- data/Gemfile +0 -14
- data/Rakefile +0 -14
- data/bin/console +0 -14
- data/bin/setup +0 -8
- data/gemfiles/Gemfile-edge +0 -14
- data/gemfiles/Gemfile-ruby-2.0 +0 -7
- data/lib/fog/aws/iam/default_policies.json +0 -1574
- data/lib/fog/aws/iam/default_policy_versions.json +0 -3373
- 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: a9f2992e8c7fe7d8b4ae1bba5a16d00fe98d3c531cd473d4b3a1109d6a774e16
|
4
|
+
data.tar.gz: 781c1889a4c0cf5d0fd8b1aa0d5ebf0101ea577aa0412265dd14aff339aacae4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c81e87c69e6497df16ea76263e57ccd6457acf85378882745ebd2c58322bce9d93fe773dbf68c8b68bcfb5e3aab5231a534d98d38e8101958cc075e0651f8b5
|
7
|
+
data.tar.gz: cd5d6b7fef8eea60e58c7393bb0921fac17e78ad345ab87f199b34d2d20425500a9837a9eef9fcd12f374aa43d979a6cc1a0b6a554acd029517313794f3ab9ab
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,160 @@
|
|
1
|
-
#
|
1
|
+
# Changelog
|
2
2
|
|
3
|
-
## [
|
3
|
+
## [Unreleased](https://github.com/fog/fog-aws/tree/HEAD)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.11.0...HEAD)
|
6
|
+
|
7
|
+
## [v3.11.0](https://github.com/fog/fog-aws/tree/v3.11.0) (2021-08-05)
|
8
|
+
|
9
|
+
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.10.0...v3.11.0)
|
10
|
+
|
11
|
+
**Closed issues:**
|
12
|
+
|
13
|
+
- Support for Regional STS Endpoints [\#604](https://github.com/fog/fog-aws/issues/604)
|
14
|
+
- Pass tags when creating EBS ? [\#603](https://github.com/fog/fog-aws/issues/603)
|
15
|
+
- S3 multiple delete api should handle delete for multiple versions for a single object [\#598](https://github.com/fog/fog-aws/issues/598)
|
16
|
+
- Fog does not return error from s3 [\#586](https://github.com/fog/fog-aws/issues/586)
|
17
|
+
- Add support for r6g and c6g instance types [\#580](https://github.com/fog/fog-aws/issues/580)
|
18
|
+
- Using internal S3 provider ... and something funky is going on! [\#575](https://github.com/fog/fog-aws/issues/575)
|
19
|
+
- How to upload File to S3 with with accelerate? [\#554](https://github.com/fog/fog-aws/issues/554)
|
20
|
+
- How to use assume\_role\_with\_web\_identity auth for S3 storage? [\#543](https://github.com/fog/fog-aws/issues/543)
|
21
|
+
- Fog::AWS::Glacier::TreeHash::add\_part works only sometimes [\#520](https://github.com/fog/fog-aws/issues/520)
|
22
|
+
- fog-aws: Fog::AWS::Glacier::Job doesn't support RetrievalByteRange [\#519](https://github.com/fog/fog-aws/issues/519)
|
23
|
+
- Path style is being deprecated [\#516](https://github.com/fog/fog-aws/issues/516)
|
24
|
+
- Fog::DNS::AWS can't read zones [\#513](https://github.com/fog/fog-aws/issues/513)
|
25
|
+
- Lambda Parser can't handle VPC config, containing array of hash values [\#509](https://github.com/fog/fog-aws/issues/509)
|
26
|
+
- Excon::Error::Forbidden: Expected\(200\) \<=\> Actual\(403 Forbidden\) [\#508](https://github.com/fog/fog-aws/issues/508)
|
27
|
+
- file.save does not work with STDIN [\#500](https://github.com/fog/fog-aws/issues/500)
|
28
|
+
- ELBv2 Support ? [\#489](https://github.com/fog/fog-aws/issues/489)
|
29
|
+
- S3 Select Support? [\#484](https://github.com/fog/fog-aws/issues/484)
|
30
|
+
- nil:NilClass error [\#483](https://github.com/fog/fog-aws/issues/483)
|
31
|
+
- Mocks for VM creation require access and secret key when using instance profiles [\#482](https://github.com/fog/fog-aws/issues/482)
|
32
|
+
- Always use bucket virtual hostname? [\#464](https://github.com/fog/fog-aws/issues/464)
|
33
|
+
- Spot instance creation : Support for BlockDurationMinutes [\#461](https://github.com/fog/fog-aws/issues/461)
|
34
|
+
- How can I remove the `Content-Encoding` metadata properties if I upload from fog [\#447](https://github.com/fog/fog-aws/issues/447)
|
35
|
+
- AWS::ECS with `use_iam_profile` errors out [\#441](https://github.com/fog/fog-aws/issues/441)
|
36
|
+
- Option to turn off Warnings [\#426](https://github.com/fog/fog-aws/issues/426)
|
37
|
+
- Accessing AWS S3 using EC2 Instance Profile [\#423](https://github.com/fog/fog-aws/issues/423)
|
38
|
+
- Support step and target tracking auto scaling policies [\#422](https://github.com/fog/fog-aws/issues/422)
|
39
|
+
- could not create ec2 volume with custom encryption key, volume only create with default 'aws/ebs' encryption key [\#420](https://github.com/fog/fog-aws/issues/420)
|
40
|
+
- Download File with content\_disposition [\#418](https://github.com/fog/fog-aws/issues/418)
|
41
|
+
- Fog::Compute::AWS::Error iamInstanceProfile.name is invalid [\#410](https://github.com/fog/fog-aws/issues/410)
|
42
|
+
- Mocks for EC2 instance creation do not behave as expected [\#404](https://github.com/fog/fog-aws/issues/404)
|
43
|
+
- Cannot copy an encrypted snapshot from one account to another account [\#398](https://github.com/fog/fog-aws/issues/398)
|
44
|
+
- Fog::Compute::AWS::Image\#deregister ignores non-root snapshots. [\#380](https://github.com/fog/fog-aws/issues/380)
|
45
|
+
- AWS S3 overwrites files with same name [\#378](https://github.com/fog/fog-aws/issues/378)
|
46
|
+
- Support S3 object tagging [\#377](https://github.com/fog/fog-aws/issues/377)
|
47
|
+
- Reqeust to support Aws::DynamoDBStreams [\#373](https://github.com/fog/fog-aws/issues/373)
|
48
|
+
- Not all Rds versions and Instance Types are rendered [\#371](https://github.com/fog/fog-aws/issues/371)
|
49
|
+
- Tag instances upon creation of new instance [\#359](https://github.com/fog/fog-aws/issues/359)
|
50
|
+
- Creating instances in AWS fails with Socket Error [\#352](https://github.com/fog/fog-aws/issues/352)
|
51
|
+
- `NameError: uninitialized constant Fog::ServicesMixin` when requiring `fog/storage` [\#345](https://github.com/fog/fog-aws/issues/345)
|
52
|
+
- Add full support for target groups [\#328](https://github.com/fog/fog-aws/issues/328)
|
53
|
+
- Fog transfer acceleration endpoints [\#303](https://github.com/fog/fog-aws/issues/303)
|
54
|
+
- "Fog::DNS\[:aws\] | change\_resource\_record\_sets \(aws, dns\)" test suite flaky [\#301](https://github.com/fog/fog-aws/issues/301)
|
55
|
+
- Cross account access using IAM role [\#294](https://github.com/fog/fog-aws/issues/294)
|
56
|
+
- Write timeout trying to upload a large file to S3 [\#291](https://github.com/fog/fog-aws/issues/291)
|
57
|
+
- Support Autoscaling lifecycle hooks [\#289](https://github.com/fog/fog-aws/issues/289)
|
58
|
+
- directories ignore region option [\#287](https://github.com/fog/fog-aws/issues/287)
|
59
|
+
- Feature: Access logs for ELB [\#271](https://github.com/fog/fog-aws/issues/271)
|
60
|
+
- S3: retry on 500 internal server error [\#264](https://github.com/fog/fog-aws/issues/264)
|
61
|
+
- Alias for server side encryption not working [\#260](https://github.com/fog/fog-aws/issues/260)
|
62
|
+
- InvalidParameterCombination =\> You cannot move a DB instance with Single-Az enabled to a VPC \(Fog::AWS::RDS::Error\) [\#255](https://github.com/fog/fog-aws/issues/255)
|
63
|
+
- Using STS [\#253](https://github.com/fog/fog-aws/issues/253)
|
64
|
+
- Auto Scaling Group does not enable metrics [\#251](https://github.com/fog/fog-aws/issues/251)
|
65
|
+
- aws has no storage service [\#248](https://github.com/fog/fog-aws/issues/248)
|
66
|
+
- Timeouts on Compute\#describe\_volumes due to extreme numbers of volumes [\#244](https://github.com/fog/fog-aws/issues/244)
|
67
|
+
- Support CreateReusableDelegationSet [\#243](https://github.com/fog/fog-aws/issues/243)
|
68
|
+
- Tags server creation in Mock vs Real [\#239](https://github.com/fog/fog-aws/issues/239)
|
69
|
+
- Excon::Errors::SocketError Broken pipe \(Errno::EPIPE\) when use Activeadmin upload image by nested form [\#237](https://github.com/fog/fog-aws/issues/237)
|
70
|
+
- Fog Mock doesn't update [\#236](https://github.com/fog/fog-aws/issues/236)
|
71
|
+
- ECS service\_update does not support "deploymentConfig" [\#234](https://github.com/fog/fog-aws/issues/234)
|
72
|
+
- Fog::Storage::AWS::Files\#each always iterates over entire collection [\#232](https://github.com/fog/fog-aws/issues/232)
|
73
|
+
- repeated bucket name in the URL on AWS and issue with :path\_style [\#228](https://github.com/fog/fog-aws/issues/228)
|
74
|
+
- Already initialized constant warnings [\#212](https://github.com/fog/fog-aws/issues/212)
|
75
|
+
- SQS API version is outdated [\#198](https://github.com/fog/fog-aws/issues/198)
|
76
|
+
- Problem when using irb [\#195](https://github.com/fog/fog-aws/issues/195)
|
77
|
+
- compute.servers \(via DescribeInstances\) does not include tags reliably [\#192](https://github.com/fog/fog-aws/issues/192)
|
78
|
+
- EBS create volume io1 or gp2 [\#186](https://github.com/fog/fog-aws/issues/186)
|
79
|
+
- Aws cloudformation stack-policy-body [\#179](https://github.com/fog/fog-aws/issues/179)
|
80
|
+
- EXCON\_DEBUG and DEBUG env variables do not help debug -S key issues [\#177](https://github.com/fog/fog-aws/issues/177)
|
81
|
+
- AWS4 SignatureDoesNotMatch if header contains two spaces [\#160](https://github.com/fog/fog-aws/issues/160)
|
82
|
+
- Add support for elasticache redis replication groups [\#136](https://github.com/fog/fog-aws/issues/136)
|
83
|
+
- Getting SignatureDoesNotMatch error with eu-central-1 [\#127](https://github.com/fog/fog-aws/issues/127)
|
84
|
+
- Cannot saving auto scaling group [\#125](https://github.com/fog/fog-aws/issues/125)
|
85
|
+
- fog-aws not working with dynamoDB Local [\#118](https://github.com/fog/fog-aws/issues/118)
|
86
|
+
- Fog::Compute::AWS::Error InvalidParameterValue =\> secondary-addresses [\#115](https://github.com/fog/fog-aws/issues/115)
|
87
|
+
- Is there an equivalent to describe-instance-status? [\#66](https://github.com/fog/fog-aws/issues/66)
|
88
|
+
- No usage instructions in Readme [\#64](https://github.com/fog/fog-aws/issues/64)
|
89
|
+
- AWS - distributionConfig.enabled' failed to satisfy constraint: Member must not be null [\#48](https://github.com/fog/fog-aws/issues/48)
|
90
|
+
- Clarify versioning on README [\#42](https://github.com/fog/fog-aws/issues/42)
|
91
|
+
- AWS SQS AddPermission API missing [\#26](https://github.com/fog/fog-aws/issues/26)
|
92
|
+
- AWS China region [\#25](https://github.com/fog/fog-aws/issues/25)
|
93
|
+
- AWS CloudFormation ListStacks options [\#24](https://github.com/fog/fog-aws/issues/24)
|
94
|
+
- Setting region of AWS::Compute after initialization [\#23](https://github.com/fog/fog-aws/issues/23)
|
95
|
+
- Support AWS Support API [\#22](https://github.com/fog/fog-aws/issues/22)
|
96
|
+
- InvalidClientTokenId =\> The security token included in the request is invalid [\#21](https://github.com/fog/fog-aws/issues/21)
|
97
|
+
- Change architecture attribute in AWS::Compute::Server model [\#20](https://github.com/fog/fog-aws/issues/20)
|
98
|
+
- Add support for Amazon Kinesis [\#19](https://github.com/fog/fog-aws/issues/19)
|
99
|
+
- Bring AWS CloudFront API Models/Requests up to date [\#17](https://github.com/fog/fog-aws/issues/17)
|
100
|
+
- AWS security group tests have become unstable [\#16](https://github.com/fog/fog-aws/issues/16)
|
101
|
+
- AWS auto scaling: availability zones are not a required parameter [\#15](https://github.com/fog/fog-aws/issues/15)
|
102
|
+
- Is anyone going to add support for AWS ElasticTranscoder [\#14](https://github.com/fog/fog-aws/issues/14)
|
103
|
+
- add missing attributes to aws describe\_reserved\_instances parser [\#13](https://github.com/fog/fog-aws/issues/13)
|
104
|
+
- AWS AutoScaling group min\_size & max\_size getting set to 0 [\#12](https://github.com/fog/fog-aws/issues/12)
|
105
|
+
- auto\_scaling\_group.instances does not return only instances for that group [\#11](https://github.com/fog/fog-aws/issues/11)
|
106
|
+
- Why are the credential keys not generalized? [\#10](https://github.com/fog/fog-aws/issues/10)
|
107
|
+
- Invalid XML Character in S3 Response [\#8](https://github.com/fog/fog-aws/issues/8)
|
108
|
+
- reading s3 upload progress [\#7](https://github.com/fog/fog-aws/issues/7)
|
109
|
+
- delete\_on\_termination=true attribute on new volume is not set on create [\#6](https://github.com/fog/fog-aws/issues/6)
|
110
|
+
- user\_data is still base64 encoded in Real launch\_configurations [\#5](https://github.com/fog/fog-aws/issues/5)
|
111
|
+
|
112
|
+
**Merged pull requests:**
|
113
|
+
|
114
|
+
- Add storage option to configure multipart put/copy [\#616](https://github.com/fog/fog-aws/pull/616) ([slonopotamus](https://github.com/slonopotamus))
|
115
|
+
- Bump actions/stale from 3.0.19 to 4 [\#615](https://github.com/fog/fog-aws/pull/615) ([dependabot[bot]](https://github.com/apps/dependabot))
|
116
|
+
- Update file.rb [\#613](https://github.com/fog/fog-aws/pull/613) ([iqre8](https://github.com/iqre8))
|
117
|
+
- fix storage for ruby 3.0 [\#611](https://github.com/fog/fog-aws/pull/611) ([vincentjoseph](https://github.com/vincentjoseph))
|
118
|
+
- Implement AWS TagSpecifications \(closes \#603\) [\#610](https://github.com/fog/fog-aws/pull/610) ([eLvErDe](https://github.com/eLvErDe))
|
119
|
+
- Bump actions/stale from 3.0.18 to 3.0.19 [\#609](https://github.com/fog/fog-aws/pull/609) ([dependabot[bot]](https://github.com/apps/dependabot))
|
120
|
+
- Bump actions/stale from 3 to 3.0.18 [\#608](https://github.com/fog/fog-aws/pull/608) ([dependabot[bot]](https://github.com/apps/dependabot))
|
121
|
+
- Bump actions/checkout from 2 to 2.3.4 [\#607](https://github.com/fog/fog-aws/pull/607) ([dependabot[bot]](https://github.com/apps/dependabot))
|
122
|
+
- drop git in gemspec [\#602](https://github.com/fog/fog-aws/pull/602) ([abrahamparayil](https://github.com/abrahamparayil))
|
123
|
+
- Update rubyzip requirement from ~\> 1.3.0 to ~\> 2.3.0 [\#601](https://github.com/fog/fog-aws/pull/601) ([dependabot[bot]](https://github.com/apps/dependabot))
|
124
|
+
|
125
|
+
## [v3.10.0](https://github.com/fog/fog-aws/tree/v3.10.0) (2021-03-22)
|
126
|
+
|
127
|
+
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.9.0...v3.10.0)
|
128
|
+
|
129
|
+
**Closed issues:**
|
130
|
+
|
131
|
+
- Fog::AWS::Storage timeout against S3 [\#599](https://github.com/fog/fog-aws/issues/599)
|
132
|
+
- Incorrect bucket redirection URL generation [\#594](https://github.com/fog/fog-aws/issues/594)
|
133
|
+
- Fully Support SSE-C encryption [\#571](https://github.com/fog/fog-aws/issues/571)
|
134
|
+
- Enable hibernation on creation of ec2 instance [\#566](https://github.com/fog/fog-aws/issues/566)
|
135
|
+
- Tests broken with fog-core 2.1.0 [\#504](https://github.com/fog/fog-aws/issues/504)
|
136
|
+
- changelog? [\#471](https://github.com/fog/fog-aws/issues/471)
|
137
|
+
- How to use iam\_instance\_profile? [\#342](https://github.com/fog/fog-aws/issues/342)
|
138
|
+
- how to support additional aws regions, e.g. cn-north-1 [\#164](https://github.com/fog/fog-aws/issues/164)
|
139
|
+
- Still empty content-encoding when it is not set [\#130](https://github.com/fog/fog-aws/issues/130)
|
140
|
+
|
141
|
+
**Merged pull requests:**
|
142
|
+
|
143
|
+
- 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))
|
144
|
+
- Add Truffleruby head to CI [\#596](https://github.com/fog/fog-aws/pull/596) ([gogainda](https://github.com/gogainda))
|
145
|
+
- Fixes domain name duplication in url [\#593](https://github.com/fog/fog-aws/pull/593) ([midhunkrishna](https://github.com/midhunkrishna))
|
146
|
+
|
147
|
+
## [v3.9.0](https://github.com/fog/fog-aws/tree/v3.9.0) (2021-03-02)
|
148
|
+
|
149
|
+
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.8.0...v3.9.0)
|
150
|
+
|
151
|
+
**Merged pull requests:**
|
152
|
+
|
153
|
+
- Fix handling of lowercased HTTP headers [\#597](https://github.com/fog/fog-aws/pull/597) ([stanhu](https://github.com/stanhu))
|
154
|
+
- Generate a default session name if one is not provided [\#595](https://github.com/fog/fog-aws/pull/595) ([stanhu](https://github.com/stanhu))
|
155
|
+
- Enable test on Ruby 3.0 [\#591](https://github.com/fog/fog-aws/pull/591) ([voxik](https://github.com/voxik))
|
156
|
+
|
157
|
+
## [v3.8.0](https://github.com/fog/fog-aws/tree/v3.8.0) (2021-01-13)
|
4
158
|
|
5
159
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.7.0...v3.8.0)
|
6
160
|
|
@@ -10,12 +164,13 @@
|
|
10
164
|
|
11
165
|
**Merged pull requests:**
|
12
166
|
|
13
|
-
- Filter unknown UploadPartCopy
|
167
|
+
- Filter unknown UploadPartCopy parameters [\#589](https://github.com/fog/fog-aws/pull/589) ([stanhu](https://github.com/stanhu))
|
14
168
|
- Fix NameError in multipart copy [\#588](https://github.com/fog/fog-aws/pull/588) ([stanhu](https://github.com/stanhu))
|
15
169
|
- Rewind pointer if file is eof on put\_object mock [\#587](https://github.com/fog/fog-aws/pull/587) ([ekulz](https://github.com/ekulz))
|
16
170
|
- Update .travis.yml [\#584](https://github.com/fog/fog-aws/pull/584) ([nageshlop](https://github.com/nageshlop))
|
17
171
|
|
18
172
|
## [v3.7.0](https://github.com/fog/fog-aws/tree/v3.7.0) (2020-12-01)
|
173
|
+
|
19
174
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.6.7...v3.7.0)
|
20
175
|
|
21
176
|
**Closed issues:**
|
@@ -32,6 +187,7 @@
|
|
32
187
|
- Add AssumeRoleWithWebIdentity to fetch\_credentials [\#576](https://github.com/fog/fog-aws/pull/576) ([jpac-run](https://github.com/jpac-run))
|
33
188
|
|
34
189
|
## [v3.6.7](https://github.com/fog/fog-aws/tree/v3.6.7) (2020-08-26)
|
190
|
+
|
35
191
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.6.6...v3.6.7)
|
36
192
|
|
37
193
|
**Merged pull requests:**
|
@@ -39,6 +195,7 @@
|
|
39
195
|
- S3 dot Region endpoint structure applied [\#574](https://github.com/fog/fog-aws/pull/574) ([gharutyunyan-vineti](https://github.com/gharutyunyan-vineti))
|
40
196
|
|
41
197
|
## [v3.6.6](https://github.com/fog/fog-aws/tree/v3.6.6) (2020-06-23)
|
198
|
+
|
42
199
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.6.5...v3.6.6)
|
43
200
|
|
44
201
|
**Closed issues:**
|
@@ -49,9 +206,11 @@
|
|
49
206
|
**Merged pull requests:**
|
50
207
|
|
51
208
|
- added missing region EU South \(Milan\) [\#570](https://github.com/fog/fog-aws/pull/570) ([saldan](https://github.com/saldan))
|
209
|
+
- hibernation option to compute [\#569](https://github.com/fog/fog-aws/pull/569) ([taniahagan](https://github.com/taniahagan))
|
52
210
|
- Fix VPC model is\_default requires [\#567](https://github.com/fog/fog-aws/pull/567) ([biinari](https://github.com/biinari))
|
53
211
|
|
54
212
|
## [v3.6.5](https://github.com/fog/fog-aws/tree/v3.6.5) (2020-05-22)
|
213
|
+
|
55
214
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.6.4...v3.6.5)
|
56
215
|
|
57
216
|
**Closed issues:**
|
@@ -66,6 +225,7 @@
|
|
66
225
|
- Gracefully handle failure of IMDSv2 and allow fallback to IMDSv1 [\#562](https://github.com/fog/fog-aws/pull/562) ([atyndall](https://github.com/atyndall))
|
67
226
|
|
68
227
|
## [v3.6.4](https://github.com/fog/fog-aws/tree/v3.6.4) (2020-05-14)
|
228
|
+
|
69
229
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.6.3...v3.6.4)
|
70
230
|
|
71
231
|
**Closed issues:**
|
@@ -78,6 +238,7 @@
|
|
78
238
|
- Don’t install development scripts [\#557](https://github.com/fog/fog-aws/pull/557) ([amarshall](https://github.com/amarshall))
|
79
239
|
|
80
240
|
## [v3.6.3](https://github.com/fog/fog-aws/tree/v3.6.3) (2020-04-22)
|
241
|
+
|
81
242
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.6.2...v3.6.3)
|
82
243
|
|
83
244
|
**Merged pull requests:**
|
@@ -87,6 +248,7 @@
|
|
87
248
|
- Update kinesis.rb [\#553](https://github.com/fog/fog-aws/pull/553) ([ioquatix](https://github.com/ioquatix))
|
88
249
|
|
89
250
|
## [v3.6.2](https://github.com/fog/fog-aws/tree/v3.6.2) (2020-03-24)
|
251
|
+
|
90
252
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.5.2...v3.6.2)
|
91
253
|
|
92
254
|
**Closed issues:**
|
@@ -97,7 +259,6 @@
|
|
97
259
|
|
98
260
|
**Merged pull requests:**
|
99
261
|
|
100
|
-
- hibernation option to compute [\#569](https://github.com/fog/fog-aws/pull/569) ([taniahagan](https://github.com/taniahagan))
|
101
262
|
- Adding two missing regions to Fog::AWS.regions [\#552](https://github.com/fog/fog-aws/pull/552) ([lvangool](https://github.com/lvangool))
|
102
263
|
- Adds missing param WebIdentityToken for the request to the AWS api [\#550](https://github.com/fog/fog-aws/pull/550) ([dgoradia](https://github.com/dgoradia))
|
103
264
|
- Fixes type in class name for STS assume\_role\_with\_web\_identity parser [\#549](https://github.com/fog/fog-aws/pull/549) ([dgoradia](https://github.com/dgoradia))
|
@@ -118,6 +279,7 @@
|
|
118
279
|
- Fix subnet's parsings [\#529](https://github.com/fog/fog-aws/pull/529) ([KevinLoiseau](https://github.com/KevinLoiseau))
|
119
280
|
|
120
281
|
## [v3.5.2](https://github.com/fog/fog-aws/tree/v3.5.2) (2019-07-16)
|
282
|
+
|
121
283
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.5.1...v3.5.2)
|
122
284
|
|
123
285
|
**Closed issues:**
|
@@ -132,6 +294,7 @@
|
|
132
294
|
- Make S3 Signature v4 streaming optional [\#525](https://github.com/fog/fog-aws/pull/525) ([stanhu](https://github.com/stanhu))
|
133
295
|
|
134
296
|
## [v3.5.1](https://github.com/fog/fog-aws/tree/v3.5.1) (2019-06-10)
|
297
|
+
|
135
298
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.5.0...v3.5.1)
|
136
299
|
|
137
300
|
**Merged pull requests:**
|
@@ -140,6 +303,7 @@
|
|
140
303
|
- 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))
|
141
304
|
|
142
305
|
## [v3.5.0](https://github.com/fog/fog-aws/tree/v3.5.0) (2019-04-25)
|
306
|
+
|
143
307
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.4.0...v3.5.0)
|
144
308
|
|
145
309
|
**Closed issues:**
|
@@ -154,6 +318,7 @@
|
|
154
318
|
- Enhance/add attribute db subnet group for db instance [\#511](https://github.com/fog/fog-aws/pull/511) ([KevinLoiseau](https://github.com/KevinLoiseau))
|
155
319
|
|
156
320
|
## [v3.4.0](https://github.com/fog/fog-aws/tree/v3.4.0) (2019-03-11)
|
321
|
+
|
157
322
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.3.0...v3.4.0)
|
158
323
|
|
159
324
|
**Closed issues:**
|
@@ -192,6 +357,7 @@
|
|
192
357
|
- add tags for describe address [\#474](https://github.com/fog/fog-aws/pull/474) ([toubs13](https://github.com/toubs13))
|
193
358
|
|
194
359
|
## [v3.3.0](https://github.com/fog/fog-aws/tree/v3.3.0) (2018-09-18)
|
360
|
+
|
195
361
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.2.0...v3.3.0)
|
196
362
|
|
197
363
|
**Merged pull requests:**
|
@@ -199,6 +365,7 @@
|
|
199
365
|
- Rename CDN::AWS to AWS::CDN [\#467](https://github.com/fog/fog-aws/pull/467) ([jaredbeck](https://github.com/jaredbeck))
|
200
366
|
|
201
367
|
## [v3.2.0](https://github.com/fog/fog-aws/tree/v3.2.0) (2018-09-17)
|
368
|
+
|
202
369
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.1.0...v3.2.0)
|
203
370
|
|
204
371
|
**Merged pull requests:**
|
@@ -208,6 +375,7 @@
|
|
208
375
|
- Rename Compute::AWS to AWS::Compute [\#468](https://github.com/fog/fog-aws/pull/468) ([sue445](https://github.com/sue445))
|
209
376
|
|
210
377
|
## [v3.1.0](https://github.com/fog/fog-aws/tree/v3.1.0) (2018-09-17)
|
378
|
+
|
211
379
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v3.0.0...v3.1.0)
|
212
380
|
|
213
381
|
**Closed issues:**
|
@@ -239,6 +407,7 @@
|
|
239
407
|
- SetInstanceProtection endpoint for auto scaling groups support [\#436](https://github.com/fog/fog-aws/pull/436) ([thorn](https://github.com/thorn))
|
240
408
|
|
241
409
|
## [v3.0.0](https://github.com/fog/fog-aws/tree/v3.0.0) (2018-04-23)
|
410
|
+
|
242
411
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v2.0.1...v3.0.0)
|
243
412
|
|
244
413
|
**Closed issues:**
|
@@ -256,6 +425,7 @@
|
|
256
425
|
- fog-core 2.x, fog-json 1.x [\#433](https://github.com/fog/fog-aws/pull/433) ([lanej](https://github.com/lanej))
|
257
426
|
|
258
427
|
## [v2.0.1](https://github.com/fog/fog-aws/tree/v2.0.1) (2018-02-28)
|
428
|
+
|
259
429
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v2.0.0...v2.0.1)
|
260
430
|
|
261
431
|
**Closed issues:**
|
@@ -273,6 +443,7 @@
|
|
273
443
|
- add france \(eu-west-3\) new region, fix \#424 [\#425](https://github.com/fog/fog-aws/pull/425) ([Val](https://github.com/Val))
|
274
444
|
|
275
445
|
## [v2.0.0](https://github.com/fog/fog-aws/tree/v2.0.0) (2017-11-28)
|
446
|
+
|
276
447
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v1.4.1...v2.0.0)
|
277
448
|
|
278
449
|
**Closed issues:**
|
@@ -298,7 +469,7 @@
|
|
298
469
|
- Update rds instance options model [\#406](https://github.com/fog/fog-aws/pull/406) ([carloslima](https://github.com/carloslima))
|
299
470
|
- Drop Ruby\<2.0 support [\#405](https://github.com/fog/fog-aws/pull/405) ([tbrisker](https://github.com/tbrisker))
|
300
471
|
- allow Gemfile-edge travis builds to fail [\#403](https://github.com/fog/fog-aws/pull/403) ([lanej](https://github.com/lanej))
|
301
|
-
- Add `
|
472
|
+
- Add `default_for_az` attribute to subnet [\#402](https://github.com/fog/fog-aws/pull/402) ([rzaharenkov](https://github.com/rzaharenkov))
|
302
473
|
- bundler ~\> 1.15 [\#399](https://github.com/fog/fog-aws/pull/399) ([lanej](https://github.com/lanej))
|
303
474
|
- Fix detaching instances from auto scaling group. [\#397](https://github.com/fog/fog-aws/pull/397) ([rzaharenkov](https://github.com/rzaharenkov))
|
304
475
|
- 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))
|
@@ -310,6 +481,7 @@
|
|
310
481
|
- fix default\_security\_group detection [\#348](https://github.com/fog/fog-aws/pull/348) ([lanej](https://github.com/lanej))
|
311
482
|
|
312
483
|
## [v1.4.1](https://github.com/fog/fog-aws/tree/v1.4.1) (2017-08-23)
|
484
|
+
|
313
485
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v1.4.0...v1.4.1)
|
314
486
|
|
315
487
|
**Closed issues:**
|
@@ -329,6 +501,7 @@
|
|
329
501
|
- Fix AWS credential mocking [\#374](https://github.com/fog/fog-aws/pull/374) ([v-yarotsky](https://github.com/v-yarotsky))
|
330
502
|
|
331
503
|
## [v1.4.0](https://github.com/fog/fog-aws/tree/v1.4.0) (2017-06-14)
|
504
|
+
|
332
505
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v1.3.0...v1.4.0)
|
333
506
|
|
334
507
|
**Closed issues:**
|
@@ -350,6 +523,7 @@
|
|
350
523
|
- Skip call to instance metadata host if region is specified [\#360](https://github.com/fog/fog-aws/pull/360) ([ankane](https://github.com/ankane))
|
351
524
|
|
352
525
|
## [v1.3.0](https://github.com/fog/fog-aws/tree/v1.3.0) (2017-03-29)
|
526
|
+
|
353
527
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v1.2.1...v1.3.0)
|
354
528
|
|
355
529
|
**Closed issues:**
|
@@ -365,6 +539,7 @@
|
|
365
539
|
- Modify volume [\#350](https://github.com/fog/fog-aws/pull/350) ([ehowe](https://github.com/ehowe))
|
366
540
|
|
367
541
|
## [v1.2.1](https://github.com/fog/fog-aws/tree/v1.2.1) (2017-02-27)
|
542
|
+
|
368
543
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v1.2.0...v1.2.1)
|
369
544
|
|
370
545
|
**Closed issues:**
|
@@ -378,9 +553,9 @@
|
|
378
553
|
- Fog mock accuracy, fixes \#341 [\#344](https://github.com/fog/fog-aws/pull/344) ([easkay](https://github.com/easkay))
|
379
554
|
- Subnet [\#343](https://github.com/fog/fog-aws/pull/343) ([ehowe](https://github.com/ehowe))
|
380
555
|
- Fix multipart upload [\#340](https://github.com/fog/fog-aws/pull/340) ([nobmurakita](https://github.com/nobmurakita))
|
381
|
-
- credential\_fetcher: Mark AWS metadata calls as idempotent [\#329](https://github.com/fog/fog-aws/pull/329) ([mtekel](https://github.com/mtekel))
|
382
556
|
|
383
557
|
## [v1.2.0](https://github.com/fog/fog-aws/tree/v1.2.0) (2017-01-20)
|
558
|
+
|
384
559
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v1.1.0...v1.2.0)
|
385
560
|
|
386
561
|
**Closed issues:**
|
@@ -395,6 +570,7 @@
|
|
395
570
|
- Fixes / improvements for AutoScaling [\#334](https://github.com/fog/fog-aws/pull/334) ([lanej](https://github.com/lanej))
|
396
571
|
|
397
572
|
## [v1.1.0](https://github.com/fog/fog-aws/tree/v1.1.0) (2016-12-16)
|
573
|
+
|
398
574
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v1.0.0...v1.1.0)
|
399
575
|
|
400
576
|
**Closed issues:**
|
@@ -406,18 +582,21 @@
|
|
406
582
|
- Canada and London regions [\#333](https://github.com/fog/fog-aws/pull/333) ([mattheworiordan](https://github.com/mattheworiordan))
|
407
583
|
- Updated ELB Dual Stack hosted zone DNS records [\#332](https://github.com/fog/fog-aws/pull/332) ([mattheworiordan](https://github.com/mattheworiordan))
|
408
584
|
- Added support for attaching auto scaling groups to target groups [\#330](https://github.com/fog/fog-aws/pull/330) ([maf23](https://github.com/maf23))
|
409
|
-
-
|
585
|
+
- credential\_fetcher: Mark AWS metadata calls as idempotent [\#329](https://github.com/fog/fog-aws/pull/329) ([mtekel](https://github.com/mtekel))
|
410
586
|
|
411
587
|
## [v1.0.0](https://github.com/fog/fog-aws/tree/v1.0.0) (2016-12-12)
|
588
|
+
|
412
589
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.13.0...v1.0.0)
|
413
590
|
|
414
591
|
**Merged pull requests:**
|
415
592
|
|
593
|
+
- fix host header with another port on s3 [\#327](https://github.com/fog/fog-aws/pull/327) ([rodrigoapereira](https://github.com/rodrigoapereira))
|
416
594
|
- Add new t2.xlarge, t2.2xlarge and r4 class instances. [\#326](https://github.com/fog/fog-aws/pull/326) ([rogersd](https://github.com/rogersd))
|
417
595
|
- Fix the bug that can't create fifo queue in SQS. [\#323](https://github.com/fog/fog-aws/pull/323) ([ebihara99999](https://github.com/ebihara99999))
|
418
596
|
- data pipeline mocks [\#318](https://github.com/fog/fog-aws/pull/318) ([ehowe](https://github.com/ehowe))
|
419
597
|
|
420
598
|
## [v0.13.0](https://github.com/fog/fog-aws/tree/v0.13.0) (2016-11-29)
|
599
|
+
|
421
600
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.12.0...v0.13.0)
|
422
601
|
|
423
602
|
**Closed issues:**
|
@@ -436,7 +615,7 @@
|
|
436
615
|
- Fixed some missing parts in change sets [\#322](https://github.com/fog/fog-aws/pull/322) ([nilroy](https://github.com/nilroy))
|
437
616
|
- Add creation date and enhanced networking support for images [\#321](https://github.com/fog/fog-aws/pull/321) ([puneetloya](https://github.com/puneetloya))
|
438
617
|
- Fix warnings in running tests [\#319](https://github.com/fog/fog-aws/pull/319) ([ebihara99999](https://github.com/ebihara99999))
|
439
|
-
- Add `Fog::AWS::STS.Mock
|
618
|
+
- Add `Fog::AWS::STS.Mock#assume_role` [\#316](https://github.com/fog/fog-aws/pull/316) ([pedrommonteiro](https://github.com/pedrommonteiro))
|
440
619
|
- Ohio region [\#314](https://github.com/fog/fog-aws/pull/314) ([chanakyacool](https://github.com/chanakyacool))
|
441
620
|
- mime types gem update [\#312](https://github.com/fog/fog-aws/pull/312) ([lucianosousa](https://github.com/lucianosousa))
|
442
621
|
- fix S3 \#delete\_multiple\_objects for UTF-8 names [\#310](https://github.com/fog/fog-aws/pull/310) ([alepore](https://github.com/alepore))
|
@@ -446,6 +625,7 @@
|
|
446
625
|
- Modify Db subnet group [\#293](https://github.com/fog/fog-aws/pull/293) ([chanakyacool](https://github.com/chanakyacool))
|
447
626
|
|
448
627
|
## [v0.12.0](https://github.com/fog/fog-aws/tree/v0.12.0) (2016-09-22)
|
628
|
+
|
449
629
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.11.0...v0.12.0)
|
450
630
|
|
451
631
|
**Implemented enhancements:**
|
@@ -467,6 +647,7 @@
|
|
467
647
|
- 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))
|
468
648
|
|
469
649
|
## [v0.11.0](https://github.com/fog/fog-aws/tree/v0.11.0) (2016-08-04)
|
650
|
+
|
470
651
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.10.0...v0.11.0)
|
471
652
|
|
472
653
|
**Merged pull requests:**
|
@@ -478,6 +659,7 @@
|
|
478
659
|
- Change DBSubnetGroup to DBSubnetGroupName model cluster while creation [\#279](https://github.com/fog/fog-aws/pull/279) ([chanakyacool](https://github.com/chanakyacool))
|
479
660
|
|
480
661
|
## [v0.10.0](https://github.com/fog/fog-aws/tree/v0.10.0) (2016-07-15)
|
662
|
+
|
481
663
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.9.4...v0.10.0)
|
482
664
|
|
483
665
|
**Closed issues:**
|
@@ -495,6 +677,7 @@
|
|
495
677
|
- add default region to use\_iam\_profile [\#268](https://github.com/fog/fog-aws/pull/268) ([shaiguitar](https://github.com/shaiguitar))
|
496
678
|
|
497
679
|
## [v0.9.4](https://github.com/fog/fog-aws/tree/v0.9.4) (2016-06-28)
|
680
|
+
|
498
681
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.9.3...v0.9.4)
|
499
682
|
|
500
683
|
**Closed issues:**
|
@@ -509,6 +692,7 @@
|
|
509
692
|
- 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))
|
510
693
|
|
511
694
|
## [v0.9.3](https://github.com/fog/fog-aws/tree/v0.9.3) (2016-06-20)
|
695
|
+
|
512
696
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.9.2...v0.9.3)
|
513
697
|
|
514
698
|
**Closed issues:**
|
@@ -516,7 +700,7 @@
|
|
516
700
|
- Users list is empty in Fog::AWS::IAM::Groups [\#256](https://github.com/fog/fog-aws/issues/256)
|
517
701
|
- I'd like to configure my Excon read\_timeout and write\_timeout [\#254](https://github.com/fog/fog-aws/issues/254)
|
518
702
|
- Bump fog-core to \>=1.38.0 [\#247](https://github.com/fog/fog-aws/issues/247)
|
519
|
-
- no implicit conversion of Array into String in `aws/storage.rb` from `
|
703
|
+
- 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)
|
520
704
|
- \[S3\] Bucket name gets duplicated in case of redirect from AWS [\#242](https://github.com/fog/fog-aws/issues/242)
|
521
705
|
- CloudFormation stack tags cause describe\_stacks to break [\#240](https://github.com/fog/fog-aws/issues/240)
|
522
706
|
|
@@ -531,6 +715,7 @@
|
|
531
715
|
- Add log warning message about when not on us-region [\#200](https://github.com/fog/fog-aws/pull/200) ([kitofr](https://github.com/kitofr))
|
532
716
|
|
533
717
|
## [v0.9.2](https://github.com/fog/fog-aws/tree/v0.9.2) (2016-03-23)
|
718
|
+
|
534
719
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.9.1...v0.9.2)
|
535
720
|
|
536
721
|
**Closed issues:**
|
@@ -542,9 +727,11 @@
|
|
542
727
|
- Aurora [\#238](https://github.com/fog/fog-aws/pull/238) ([ehowe](https://github.com/ehowe))
|
543
728
|
|
544
729
|
## [v0.9.1](https://github.com/fog/fog-aws/tree/v0.9.1) (2016-03-04)
|
730
|
+
|
545
731
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.8.2...v0.9.1)
|
546
732
|
|
547
733
|
## [v0.8.2](https://github.com/fog/fog-aws/tree/v0.8.2) (2016-03-04)
|
734
|
+
|
548
735
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.9.0...v0.8.2)
|
549
736
|
|
550
737
|
**Merged pull requests:**
|
@@ -552,6 +739,7 @@
|
|
552
739
|
- autoscaler attach/detatch [\#229](https://github.com/fog/fog-aws/pull/229) ([shaiguitar](https://github.com/shaiguitar))
|
553
740
|
|
554
741
|
## [v0.9.0](https://github.com/fog/fog-aws/tree/v0.9.0) (2016-03-03)
|
742
|
+
|
555
743
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.8.1...v0.9.0)
|
556
744
|
|
557
745
|
**Closed issues:**
|
@@ -572,6 +760,7 @@
|
|
572
760
|
- restore db instance fom db snapshot [\#217](https://github.com/fog/fog-aws/pull/217) ([ehowe](https://github.com/ehowe))
|
573
761
|
|
574
762
|
## [v0.8.1](https://github.com/fog/fog-aws/tree/v0.8.1) (2016-01-08)
|
763
|
+
|
575
764
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.8.0...v0.8.1)
|
576
765
|
|
577
766
|
**Merged pull requests:**
|
@@ -579,6 +768,7 @@
|
|
579
768
|
- Add new aws regions [\#213](https://github.com/fog/fog-aws/pull/213) ([atmos](https://github.com/atmos))
|
580
769
|
|
581
770
|
## [v0.8.0](https://github.com/fog/fog-aws/tree/v0.8.0) (2016-01-04)
|
771
|
+
|
582
772
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.7.6...v0.8.0)
|
583
773
|
|
584
774
|
**Fixed bugs:**
|
@@ -619,6 +809,7 @@
|
|
619
809
|
- properly mock rds name update [\#170](https://github.com/fog/fog-aws/pull/170) ([ehowe](https://github.com/ehowe))
|
620
810
|
|
621
811
|
## [v0.7.6](https://github.com/fog/fog-aws/tree/v0.7.6) (2015-08-26)
|
812
|
+
|
622
813
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.7.5...v0.7.6)
|
623
814
|
|
624
815
|
**Closed issues:**
|
@@ -631,6 +822,7 @@
|
|
631
822
|
- Mocked put\_bucket no longer clobbers existing bucket [\#174](https://github.com/fog/fog-aws/pull/174) ([jgr](https://github.com/jgr))
|
632
823
|
|
633
824
|
## [v0.7.5](https://github.com/fog/fog-aws/tree/v0.7.5) (2015-08-24)
|
825
|
+
|
634
826
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.7.4...v0.7.5)
|
635
827
|
|
636
828
|
**Closed issues:**
|
@@ -652,6 +844,7 @@
|
|
652
844
|
- update \#promote\_read\_replica mock [\#158](https://github.com/fog/fog-aws/pull/158) ([lanej](https://github.com/lanej))
|
653
845
|
|
654
846
|
## [v0.7.4](https://github.com/fog/fog-aws/tree/v0.7.4) (2015-07-30)
|
847
|
+
|
655
848
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.7.3...v0.7.4)
|
656
849
|
|
657
850
|
**Fixed bugs:**
|
@@ -663,6 +856,7 @@
|
|
663
856
|
- AutoScaling attach/detach ELB support + tests [\#156](https://github.com/fog/fog-aws/pull/156) ([nbfowler](https://github.com/nbfowler))
|
664
857
|
|
665
858
|
## [v0.7.3](https://github.com/fog/fog-aws/tree/v0.7.3) (2015-07-10)
|
859
|
+
|
666
860
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.7.2...v0.7.3)
|
667
861
|
|
668
862
|
**Closed issues:**
|
@@ -674,6 +868,7 @@
|
|
674
868
|
- encrypted storage on rds [\#153](https://github.com/fog/fog-aws/pull/153) ([ehowe](https://github.com/ehowe))
|
675
869
|
|
676
870
|
## [v0.7.2](https://github.com/fog/fog-aws/tree/v0.7.2) (2015-07-08)
|
871
|
+
|
677
872
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.7.1...v0.7.2)
|
678
873
|
|
679
874
|
**Fixed bugs:**
|
@@ -685,6 +880,7 @@
|
|
685
880
|
- fix \#change\_resource\_record\_sets [\#151](https://github.com/fog/fog-aws/pull/151) ([lanej](https://github.com/lanej))
|
686
881
|
|
687
882
|
## [v0.7.1](https://github.com/fog/fog-aws/tree/v0.7.1) (2015-07-08)
|
883
|
+
|
688
884
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.7.0...v0.7.1)
|
689
885
|
|
690
886
|
**Merged pull requests:**
|
@@ -693,6 +889,7 @@
|
|
693
889
|
- Fix blank content-encoding headers [\#147](https://github.com/fog/fog-aws/pull/147) ([fcheung](https://github.com/fcheung))
|
694
890
|
|
695
891
|
## [v0.7.0](https://github.com/fog/fog-aws/tree/v0.7.0) (2015-07-07)
|
892
|
+
|
696
893
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.6.0...v0.7.0)
|
697
894
|
|
698
895
|
**Closed issues:**
|
@@ -709,6 +906,7 @@
|
|
709
906
|
- 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))
|
710
907
|
|
711
908
|
## [v0.6.0](https://github.com/fog/fog-aws/tree/v0.6.0) (2015-06-23)
|
909
|
+
|
712
910
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.5.0...v0.6.0)
|
713
911
|
|
714
912
|
**Merged pull requests:**
|
@@ -716,6 +914,7 @@
|
|
716
914
|
- Add support for AWS Lambda service [\#123](https://github.com/fog/fog-aws/pull/123) ([nomadium](https://github.com/nomadium))
|
717
915
|
|
718
916
|
## [v0.5.0](https://github.com/fog/fog-aws/tree/v0.5.0) (2015-06-17)
|
917
|
+
|
719
918
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.4.1...v0.5.0)
|
720
919
|
|
721
920
|
**Merged pull requests:**
|
@@ -725,6 +924,7 @@
|
|
725
924
|
- Add support for EC2 Container Service [\#120](https://github.com/fog/fog-aws/pull/120) ([nomadium](https://github.com/nomadium))
|
726
925
|
|
727
926
|
## [v0.4.1](https://github.com/fog/fog-aws/tree/v0.4.1) (2015-06-15)
|
927
|
+
|
728
928
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.4.0...v0.4.1)
|
729
929
|
|
730
930
|
**Closed issues:**
|
@@ -744,6 +944,7 @@
|
|
744
944
|
- model managed policies [\#126](https://github.com/fog/fog-aws/pull/126) ([lanej](https://github.com/lanej))
|
745
945
|
|
746
946
|
## [v0.4.0](https://github.com/fog/fog-aws/tree/v0.4.0) (2015-05-27)
|
947
|
+
|
747
948
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.3.0...v0.4.0)
|
748
949
|
|
749
950
|
**Merged pull requests:**
|
@@ -751,6 +952,7 @@
|
|
751
952
|
- model iam groups [\#121](https://github.com/fog/fog-aws/pull/121) ([lanej](https://github.com/lanej))
|
752
953
|
|
753
954
|
## [v0.3.0](https://github.com/fog/fog-aws/tree/v0.3.0) (2015-05-21)
|
955
|
+
|
754
956
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.2.2...v0.3.0)
|
755
957
|
|
756
958
|
**Closed issues:**
|
@@ -763,9 +965,11 @@
|
|
763
965
|
- Added a new request - describe\_instance\_attribute [\#110](https://github.com/fog/fog-aws/pull/110) ([nilroy](https://github.com/nilroy))
|
764
966
|
|
765
967
|
## [v0.2.2](https://github.com/fog/fog-aws/tree/v0.2.2) (2015-05-13)
|
968
|
+
|
766
969
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.2.1...v0.2.2)
|
767
970
|
|
768
971
|
## [v0.2.1](https://github.com/fog/fog-aws/tree/v0.2.1) (2015-05-13)
|
972
|
+
|
769
973
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.2.0...v0.2.1)
|
770
974
|
|
771
975
|
**Merged pull requests:**
|
@@ -773,6 +977,7 @@
|
|
773
977
|
- mocks for topic permissions [\#111](https://github.com/fog/fog-aws/pull/111) ([lanej](https://github.com/lanej))
|
774
978
|
|
775
979
|
## [v0.2.0](https://github.com/fog/fog-aws/tree/v0.2.0) (2015-05-13)
|
980
|
+
|
776
981
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.1.2...v0.2.0)
|
777
982
|
|
778
983
|
**Implemented enhancements:**
|
@@ -799,13 +1004,14 @@
|
|
799
1004
|
- Fix mock VPC ELB creation in regions other than us-east-1 [\#94](https://github.com/fog/fog-aws/pull/94) ([mrpoundsign](https://github.com/mrpoundsign))
|
800
1005
|
- Fix repository URL in README.md [\#91](https://github.com/fog/fog-aws/pull/91) ([tricknotes](https://github.com/tricknotes))
|
801
1006
|
- adding support for d2 instance type [\#90](https://github.com/fog/fog-aws/pull/90) ([yumminhuang](https://github.com/yumminhuang))
|
802
|
-
- Support weight round robin mock [\#89](https://github.com/fog/fog-aws/pull/89) ([
|
1007
|
+
- Support weight round robin mock [\#89](https://github.com/fog/fog-aws/pull/89) ([freddy61025](https://github.com/freddy61025))
|
803
1008
|
- Update README.md [\#87](https://github.com/fog/fog-aws/pull/87) ([nomadium](https://github.com/nomadium))
|
804
1009
|
- Add mock for EC2 request\_spot\_instances API request [\#86](https://github.com/fog/fog-aws/pull/86) ([nomadium](https://github.com/nomadium))
|
805
1010
|
- Move more requires to autoload [\#85](https://github.com/fog/fog-aws/pull/85) ([plribeiro3000](https://github.com/plribeiro3000))
|
806
1011
|
- Add mock for EC2 describe\_spot\_price\_history API request [\#84](https://github.com/fog/fog-aws/pull/84) ([nomadium](https://github.com/nomadium))
|
807
1012
|
|
808
1013
|
## [v0.1.2](https://github.com/fog/fog-aws/tree/v0.1.2) (2015-04-07)
|
1014
|
+
|
809
1015
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.1.1...v0.1.2)
|
810
1016
|
|
811
1017
|
**Closed issues:**
|
@@ -835,6 +1041,7 @@
|
|
835
1041
|
- Add support for cname buckets [\#61](https://github.com/fog/fog-aws/pull/61) ([dsgh](https://github.com/dsgh))
|
836
1042
|
|
837
1043
|
## [v0.1.1](https://github.com/fog/fog-aws/tree/v0.1.1) (2015-02-25)
|
1044
|
+
|
838
1045
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.1.0...v0.1.1)
|
839
1046
|
|
840
1047
|
**Closed issues:**
|
@@ -856,6 +1063,7 @@
|
|
856
1063
|
- don't allow sg authorization to unknown sgs [\#49](https://github.com/fog/fog-aws/pull/49) ([lanej](https://github.com/lanej))
|
857
1064
|
|
858
1065
|
## [v0.1.0](https://github.com/fog/fog-aws/tree/v0.1.0) (2015-02-03)
|
1066
|
+
|
859
1067
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.8...v0.1.0)
|
860
1068
|
|
861
1069
|
**Closed issues:**
|
@@ -867,21 +1075,11 @@
|
|
867
1075
|
- 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))
|
868
1076
|
- get signin token for federation [\#45](https://github.com/fog/fog-aws/pull/45) ([ehowe](https://github.com/ehowe))
|
869
1077
|
- add 'volumeType' and 'encrypted' to blockDeviceMapping parser [\#43](https://github.com/fog/fog-aws/pull/43) ([ichii386](https://github.com/ichii386))
|
870
|
-
- default namespace and evaluation period on alarm [\#37](https://github.com/fog/fog-aws/pull/37) ([michelleN](https://github.com/michelleN))
|
871
|
-
|
872
|
-
## [v0.0.8](https://github.com/fog/fog-aws/tree/v0.0.8) (2015-01-27)
|
873
|
-
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.7...v0.0.8)
|
874
|
-
|
875
|
-
**Closed issues:**
|
876
|
-
|
877
|
-
- NoMethodError - undefined method `signature\_parameters' for nil:NilClass [\#28](https://github.com/fog/fog-aws/issues/28)
|
878
|
-
|
879
|
-
**Merged pull requests:**
|
880
|
-
|
881
1078
|
- add missing mocks [\#41](https://github.com/fog/fog-aws/pull/41) ([michelleN](https://github.com/michelleN))
|
882
1079
|
- Add idempotent excon option to some route53 API calls [\#40](https://github.com/fog/fog-aws/pull/40) ([josacar](https://github.com/josacar))
|
883
1080
|
- Allow for AWS errors not specifying region [\#39](https://github.com/fog/fog-aws/pull/39) ([greysteil](https://github.com/greysteil))
|
884
1081
|
- correct engine version param on rds replicas [\#38](https://github.com/fog/fog-aws/pull/38) ([lanej](https://github.com/lanej))
|
1082
|
+
- default namespace and evaluation period on alarm [\#37](https://github.com/fog/fog-aws/pull/37) ([michelleN](https://github.com/michelleN))
|
885
1083
|
- \[AWS|Autoscaling\] Add missing ebs attributes to describe\_launch\_configurations [\#35](https://github.com/fog/fog-aws/pull/35) ([fcheung](https://github.com/fcheung))
|
886
1084
|
- \[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))
|
887
1085
|
- 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))
|
@@ -890,7 +1088,16 @@
|
|
890
1088
|
- Add PlacementTenancy to launch configuration parser and test case [\#29](https://github.com/fog/fog-aws/pull/29) ([benpillet](https://github.com/benpillet))
|
891
1089
|
- Use Fog::Formatador [\#27](https://github.com/fog/fog-aws/pull/27) ([ghost](https://github.com/ghost))
|
892
1090
|
|
1091
|
+
## [v0.0.8](https://github.com/fog/fog-aws/tree/v0.0.8) (2015-01-27)
|
1092
|
+
|
1093
|
+
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.7...v0.0.8)
|
1094
|
+
|
1095
|
+
**Closed issues:**
|
1096
|
+
|
1097
|
+
- NoMethodError - undefined method `signature\_parameters' for nil:NilClass [\#28](https://github.com/fog/fog-aws/issues/28)
|
1098
|
+
|
893
1099
|
## [v0.0.7](https://github.com/fog/fog-aws/tree/v0.0.7) (2015-01-23)
|
1100
|
+
|
894
1101
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.6...v0.0.7)
|
895
1102
|
|
896
1103
|
**Closed issues:**
|
@@ -903,6 +1110,7 @@
|
|
903
1110
|
- Support for VPC Classic Link [\#3](https://github.com/fog/fog-aws/pull/3) ([fcheung](https://github.com/fcheung))
|
904
1111
|
|
905
1112
|
## [v0.0.6](https://github.com/fog/fog-aws/tree/v0.0.6) (2015-01-12)
|
1113
|
+
|
906
1114
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.5...v0.0.6)
|
907
1115
|
|
908
1116
|
**Closed issues:**
|
@@ -915,24 +1123,33 @@
|
|
915
1123
|
- another attempt at s3 region redirecting [\#2](https://github.com/fog/fog-aws/pull/2) ([geemus](https://github.com/geemus))
|
916
1124
|
|
917
1125
|
## [v0.0.5](https://github.com/fog/fog-aws/tree/v0.0.5) (2015-01-06)
|
1126
|
+
|
918
1127
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.4...v0.0.5)
|
919
1128
|
|
920
1129
|
## [v0.0.4](https://github.com/fog/fog-aws/tree/v0.0.4) (2015-01-04)
|
1130
|
+
|
921
1131
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.3...v0.0.4)
|
922
1132
|
|
923
1133
|
## [v0.0.3](https://github.com/fog/fog-aws/tree/v0.0.3) (2015-01-02)
|
1134
|
+
|
924
1135
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.2...v0.0.3)
|
925
1136
|
|
926
1137
|
## [v0.0.2](https://github.com/fog/fog-aws/tree/v0.0.2) (2015-01-02)
|
1138
|
+
|
927
1139
|
[Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.1...v0.0.2)
|
928
1140
|
|
929
1141
|
## [v0.0.1](https://github.com/fog/fog-aws/tree/v0.0.1) (2015-01-02)
|
1142
|
+
|
930
1143
|
[Full Changelog](https://github.com/fog/fog-aws/compare/rm...v0.0.1)
|
931
1144
|
|
932
1145
|
## [rm](https://github.com/fog/fog-aws/tree/rm) (2014-11-27)
|
1146
|
+
|
933
1147
|
[Full Changelog](https://github.com/fog/fog-aws/compare/fog-brightbox_v0.0.1...rm)
|
934
1148
|
|
935
1149
|
## [fog-brightbox_v0.0.1](https://github.com/fog/fog-aws/tree/fog-brightbox_v0.0.1) (2014-02-19)
|
936
1150
|
|
1151
|
+
[Full Changelog](https://github.com/fog/fog-aws/compare/d496bcd266d584ffcded6e265e8166138a3fb22a...fog-brightbox_v0.0.1)
|
1152
|
+
|
1153
|
+
|
937
1154
|
|
938
|
-
\* *This
|
1155
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|