fog-aws 3.5.2 → 3.19.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (333) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +485 -22
  3. data/LICENSE.md +1 -1
  4. data/README.md +117 -7
  5. data/fog-aws.gemspec +8 -8
  6. data/lib/fog/aws/compute.rb +6 -3
  7. data/lib/fog/aws/credential_fetcher.rb +75 -7
  8. data/lib/fog/aws/elasticache.rb +4 -2
  9. data/lib/fog/aws/elb.rb +1 -1
  10. data/lib/fog/aws/elbv2.rb +72 -0
  11. data/lib/fog/aws/kinesis.rb +23 -15
  12. data/lib/fog/aws/models/compute/flavors.rb +2563 -521
  13. data/lib/fog/aws/models/compute/security_group.rb +13 -5
  14. data/lib/fog/aws/models/compute/server.rb +6 -2
  15. data/lib/fog/aws/models/compute/servers.rb +2 -0
  16. data/lib/fog/aws/models/compute/snapshot.rb +7 -6
  17. data/lib/fog/aws/models/compute/vpc.rb +8 -2
  18. data/lib/fog/aws/models/storage/directories.rb +1 -0
  19. data/lib/fog/aws/models/storage/directory.rb +0 -1
  20. data/lib/fog/aws/models/storage/file.rb +164 -20
  21. data/lib/fog/aws/models/storage/files.rb +32 -2
  22. data/lib/fog/aws/parsers/compute/create_snapshot.rb +1 -1
  23. data/lib/fog/aws/parsers/compute/create_subnet.rb +33 -6
  24. data/lib/fog/aws/parsers/compute/describe_security_groups.rb +18 -4
  25. data/lib/fog/aws/parsers/compute/describe_subnets.rb +33 -6
  26. data/lib/fog/aws/parsers/dns/create_hosted_zone.rb +1 -1
  27. data/lib/fog/aws/parsers/dns/get_hosted_zone.rb +3 -3
  28. data/lib/fog/aws/parsers/dns/list_hosted_zones.rb +3 -1
  29. data/lib/fog/aws/parsers/elbv2/create_load_balancer.rb +88 -0
  30. data/lib/fog/aws/parsers/elbv2/describe_listeners.rb +110 -0
  31. data/lib/fog/aws/parsers/elbv2/describe_load_balancers.rb +88 -0
  32. data/lib/fog/aws/parsers/elbv2/describe_tags.rb +53 -0
  33. data/lib/fog/aws/parsers/elbv2/empty.rb +10 -0
  34. data/lib/fog/aws/parsers/iam/get_group_policy.rb +1 -1
  35. data/lib/fog/aws/parsers/iam/get_role_policy.rb +1 -1
  36. data/lib/fog/aws/parsers/iam/get_user_policy.rb +1 -1
  37. data/lib/fog/aws/parsers/iam/policy_version.rb +1 -1
  38. data/lib/fog/aws/parsers/storage/get_object_tagging.rb +33 -0
  39. data/lib/fog/aws/parsers/storage/upload_part_copy_object.rb +18 -0
  40. data/lib/fog/aws/parsers/sts/assume_role_with_web_identity.rb +1 -1
  41. data/lib/fog/aws/requests/compute/authorize_security_group_ingress.rb +15 -0
  42. data/lib/fog/aws/requests/compute/create_network_interface.rb +7 -4
  43. data/lib/fog/aws/requests/compute/create_subnet.rb +3 -3
  44. data/lib/fog/aws/requests/compute/create_vpc.rb +2 -2
  45. data/lib/fog/aws/requests/compute/describe_security_groups.rb +2 -0
  46. data/lib/fog/aws/requests/compute/request_spot_instances.rb +1 -1
  47. data/lib/fog/aws/requests/compute/run_instances.rb +64 -0
  48. data/lib/fog/aws/requests/compute/stop_instances.rb +11 -3
  49. data/lib/fog/aws/requests/elbv2/add_tags.rb +45 -0
  50. data/lib/fog/aws/requests/elbv2/create_load_balancer.rb +160 -0
  51. data/lib/fog/aws/requests/elbv2/describe_listeners.rb +38 -0
  52. data/lib/fog/aws/requests/elbv2/describe_load_balancers.rb +100 -0
  53. data/lib/fog/aws/requests/elbv2/describe_tags.rb +50 -0
  54. data/lib/fog/aws/requests/elbv2/remove_tags.rb +45 -0
  55. data/lib/fog/aws/requests/rds/add_tags_to_resource.rb +12 -10
  56. data/lib/fog/aws/requests/rds/list_tags_for_resource.rb +10 -7
  57. data/lib/fog/aws/requests/rds/remove_tags_from_resource.rb +9 -8
  58. data/lib/fog/aws/requests/storage/delete_multiple_objects.rb +18 -8
  59. data/lib/fog/aws/requests/storage/get_object.rb +1 -1
  60. data/lib/fog/aws/requests/storage/get_object_tagging.rb +41 -0
  61. data/lib/fog/aws/requests/storage/get_service.rb +1 -1
  62. data/lib/fog/aws/requests/storage/put_object_tagging.rb +42 -0
  63. data/lib/fog/aws/requests/storage/shared_mock_methods.rb +1 -0
  64. data/lib/fog/aws/requests/storage/sync_clock.rb +9 -1
  65. data/lib/fog/aws/requests/storage/upload_part_copy.rb +119 -0
  66. data/lib/fog/aws/requests/sts/assume_role_with_web_identity.rb +7 -6
  67. data/lib/fog/aws/storage.rb +56 -5
  68. data/lib/fog/aws/version.rb +1 -1
  69. data/lib/fog/aws.rb +7 -2
  70. metadata +35 -295
  71. data/.gitignore +0 -16
  72. data/.travis.yml +0 -53
  73. data/Gemfile +0 -14
  74. data/Rakefile +0 -14
  75. data/gemfiles/Gemfile-edge +0 -14
  76. data/gemfiles/Gemfile-ruby-2.0 +0 -7
  77. data/stale.yml +0 -17
  78. data/tests/credentials_tests.rb +0 -87
  79. data/tests/helper.rb +0 -29
  80. data/tests/helpers/collection_helper.rb +0 -90
  81. data/tests/helpers/compute/flavors_helper.rb +0 -28
  82. data/tests/helpers/compute/server_helper.rb +0 -23
  83. data/tests/helpers/compute/servers_helper.rb +0 -8
  84. data/tests/helpers/dns_helper.rb +0 -56
  85. data/tests/helpers/formats_helper.rb +0 -100
  86. data/tests/helpers/formats_helper_tests.rb +0 -107
  87. data/tests/helpers/mock_helper.rb +0 -109
  88. data/tests/helpers/model_helper.rb +0 -30
  89. data/tests/helpers/responds_to_helper.rb +0 -11
  90. data/tests/helpers/schema_validator_tests.rb +0 -104
  91. data/tests/helpers/succeeds_helper.rb +0 -9
  92. data/tests/lorem.txt +0 -1
  93. data/tests/models/auto_scaling/activities_tests.rb +0 -6
  94. data/tests/models/auto_scaling/configuration_test.rb +0 -13
  95. data/tests/models/auto_scaling/configurations_tests.rb +0 -11
  96. data/tests/models/auto_scaling/groups_test.rb +0 -27
  97. data/tests/models/auto_scaling/helper.rb +0 -0
  98. data/tests/models/auto_scaling/instance_tests.rb +0 -15
  99. data/tests/models/auto_scaling/instances_tests.rb +0 -6
  100. data/tests/models/beanstalk/application_tests.rb +0 -69
  101. data/tests/models/beanstalk/applications_tests.rb +0 -7
  102. data/tests/models/beanstalk/environment_tests.rb +0 -131
  103. data/tests/models/beanstalk/environments_tests.rb +0 -34
  104. data/tests/models/beanstalk/template_tests.rb +0 -47
  105. data/tests/models/beanstalk/templates_tests.rb +0 -62
  106. data/tests/models/beanstalk/version_tests.rb +0 -66
  107. data/tests/models/beanstalk/versions_tests.rb +0 -60
  108. data/tests/models/cdn/distribution_tests.rb +0 -15
  109. data/tests/models/cdn/distributions_tests.rb +0 -15
  110. data/tests/models/cdn/invalidation_tests.rb +0 -31
  111. data/tests/models/cdn/invalidations_tests.rb +0 -14
  112. data/tests/models/cdn/streaming_distribution_tests.rb +0 -15
  113. data/tests/models/cdn/streaming_distributions_tests.rb +0 -15
  114. data/tests/models/cloud_watch/alarm_data_tests.rb +0 -42
  115. data/tests/models/cloud_watch/alarm_history_tests.rb +0 -22
  116. data/tests/models/cloud_watch/metric_statistics_tests.rb +0 -51
  117. data/tests/models/cloud_watch/metrics_tests.rb +0 -32
  118. data/tests/models/compute/address_tests.rb +0 -43
  119. data/tests/models/compute/addresses_tests.rb +0 -5
  120. data/tests/models/compute/dhcp_option_tests.rb +0 -3
  121. data/tests/models/compute/dhcp_options_tests.rb +0 -3
  122. data/tests/models/compute/internet_gateway_tests.rb +0 -3
  123. data/tests/models/compute/internet_gateways_tests.rb +0 -3
  124. data/tests/models/compute/key_pair_tests.rb +0 -26
  125. data/tests/models/compute/key_pairs_tests.rb +0 -5
  126. data/tests/models/compute/network_acl_tests.rb +0 -109
  127. data/tests/models/compute/network_acls_tests.rb +0 -20
  128. data/tests/models/compute/network_interfaces_test.rb +0 -12
  129. data/tests/models/compute/security_group_tests.rb +0 -98
  130. data/tests/models/compute/security_groups_tests.rb +0 -5
  131. data/tests/models/compute/server_tests.rb +0 -94
  132. data/tests/models/compute/snapshot_tests.rb +0 -10
  133. data/tests/models/compute/snapshots_tests.rb +0 -10
  134. data/tests/models/compute/subnet_tests.rb +0 -13
  135. data/tests/models/compute/subnets_tests.rb +0 -5
  136. data/tests/models/compute/volume_tests.rb +0 -65
  137. data/tests/models/compute/volumes_tests.rb +0 -5
  138. data/tests/models/compute/vpc_tests.rb +0 -26
  139. data/tests/models/compute/vpcs_tests.rb +0 -19
  140. data/tests/models/data_pipeline/pipeline_tests.rb +0 -8
  141. data/tests/models/data_pipeline/pipelines_tests.rb +0 -8
  142. data/tests/models/dns/record_tests.rb +0 -33
  143. data/tests/models/dns/records_tests.rb +0 -41
  144. data/tests/models/dns/zone_tests.rb +0 -4
  145. data/tests/models/dns/zones_tests.rb +0 -4
  146. data/tests/models/efs/file_system_tests.rb +0 -12
  147. data/tests/models/efs/mount_target_tests.rb +0 -45
  148. data/tests/models/efs/mount_targets_tests.rb +0 -30
  149. data/tests/models/elasticache/cluster_tests.rb +0 -30
  150. data/tests/models/elasticache/parameter_groups_tests.rb +0 -15
  151. data/tests/models/elasticache/security_groups_tests.rb +0 -52
  152. data/tests/models/elasticache/subnet_groups_tests.rb +0 -43
  153. data/tests/models/elb/model_tests.rb +0 -360
  154. data/tests/models/elb/tagging_tests.rb +0 -15
  155. data/tests/models/glacier/model_tests.rb +0 -47
  156. data/tests/models/iam/access_keys_tests.rb +0 -53
  157. data/tests/models/iam/groups_tests.rb +0 -59
  158. data/tests/models/iam/instance_profile_tests.rb +0 -18
  159. data/tests/models/iam/managed_policies_tests.rb +0 -89
  160. data/tests/models/iam/policies_tests.rb +0 -57
  161. data/tests/models/iam/roles_tests.rb +0 -71
  162. data/tests/models/iam/users_tests.rb +0 -119
  163. data/tests/models/rds/cluster_tests.rb +0 -54
  164. data/tests/models/rds/clusters_tests.rb +0 -5
  165. data/tests/models/rds/event_subscription_tests.rb +0 -9
  166. data/tests/models/rds/event_subscriptions_tests.rb +0 -6
  167. data/tests/models/rds/helper.rb +0 -25
  168. data/tests/models/rds/instance_option_tests.rb +0 -14
  169. data/tests/models/rds/parameter_group_tests.rb +0 -24
  170. data/tests/models/rds/parameter_groups_tests.rb +0 -8
  171. data/tests/models/rds/security_group_tests.rb +0 -77
  172. data/tests/models/rds/security_groups_tests.rb +0 -5
  173. data/tests/models/rds/server_tests.rb +0 -131
  174. data/tests/models/rds/servers_tests.rb +0 -24
  175. data/tests/models/rds/snapshot_tests.rb +0 -12
  176. data/tests/models/rds/snapshots_tests.rb +0 -12
  177. data/tests/models/rds/tagging_tests.rb +0 -20
  178. data/tests/models/sns/topic_tests.rb +0 -15
  179. data/tests/models/sns/topics_tests.rb +0 -6
  180. data/tests/models/storage/directory_tests.rb +0 -91
  181. data/tests/models/storage/file_tests.rb +0 -129
  182. data/tests/models/storage/files_tests.rb +0 -58
  183. data/tests/models/storage/url_tests.rb +0 -25
  184. data/tests/models/storage/version_tests.rb +0 -52
  185. data/tests/models/storage/versions_tests.rb +0 -51
  186. data/tests/models/support/trusted_advisor_tests.rb +0 -25
  187. data/tests/parsers/compute/describe_images_tests.rb +0 -33
  188. data/tests/parsers/elb/describe_load_balancers.rb +0 -65
  189. data/tests/requests/auto_scaling/auto_scaling_tests.rb +0 -111
  190. data/tests/requests/auto_scaling/describe_types_tests.rb +0 -102
  191. data/tests/requests/auto_scaling/helper.rb +0 -229
  192. data/tests/requests/auto_scaling/model_tests.rb +0 -235
  193. data/tests/requests/auto_scaling/notification_configuration_tests.rb +0 -124
  194. data/tests/requests/auto_scaling/tag_tests.rb +0 -63
  195. data/tests/requests/beanstalk/application_tests.rb +0 -140
  196. data/tests/requests/beanstalk/solution_stack_tests.rb +0 -22
  197. data/tests/requests/cdn/cdn_tests.rb +0 -252
  198. data/tests/requests/cloud_formation/stack_tests.rb +0 -167
  199. data/tests/requests/cloud_watch/get_metric_statistics_tests.rb +0 -28
  200. data/tests/requests/cloud_watch/list_metrics_test.rb +0 -64
  201. data/tests/requests/cloud_watch/put_metric_data_tests.rb +0 -36
  202. data/tests/requests/compute/address_tests.rb +0 -144
  203. data/tests/requests/compute/assign_private_ip_tests.rb +0 -55
  204. data/tests/requests/compute/availability_zone_tests.rb +0 -25
  205. data/tests/requests/compute/client_tests.rb +0 -25
  206. data/tests/requests/compute/dhcp_options_tests.rb +0 -39
  207. data/tests/requests/compute/helper.rb +0 -27
  208. data/tests/requests/compute/image_tests.rb +0 -169
  209. data/tests/requests/compute/instance_attrib_tests.rb +0 -168
  210. data/tests/requests/compute/instance_tests.rb +0 -338
  211. data/tests/requests/compute/internet_gateway_tests.rb +0 -49
  212. data/tests/requests/compute/key_pair_tests.rb +0 -67
  213. data/tests/requests/compute/network_acl_tests.rb +0 -112
  214. data/tests/requests/compute/network_interface_tests.rb +0 -239
  215. data/tests/requests/compute/placement_group_tests.rb +0 -48
  216. data/tests/requests/compute/region_tests.rb +0 -52
  217. data/tests/requests/compute/route_tests.rb +0 -341
  218. data/tests/requests/compute/security_group_tests.rb +0 -446
  219. data/tests/requests/compute/snapshot_tests.rb +0 -77
  220. data/tests/requests/compute/spot_datafeed_subscription_tests.rb +0 -47
  221. data/tests/requests/compute/spot_instance_tests.rb +0 -55
  222. data/tests/requests/compute/spot_price_history_tests.rb +0 -23
  223. data/tests/requests/compute/subnet_tests.rb +0 -87
  224. data/tests/requests/compute/tag_tests.rb +0 -101
  225. data/tests/requests/compute/volume_tests.rb +0 -263
  226. data/tests/requests/compute/vpc_tests.rb +0 -216
  227. data/tests/requests/data_pipeline/helper.rb +0 -78
  228. data/tests/requests/data_pipeline/pipeline_tests.rb +0 -80
  229. data/tests/requests/dns/change_resource_record_sets_tests.rb +0 -34
  230. data/tests/requests/dns/dns_tests.rb +0 -240
  231. data/tests/requests/dns/health_check_tests.rb +0 -159
  232. data/tests/requests/dns/helper.rb +0 -21
  233. data/tests/requests/dynamodb/item_tests.rb +0 -137
  234. data/tests/requests/dynamodb/table_tests.rb +0 -99
  235. data/tests/requests/ecs/cluster_tests.rb +0 -112
  236. data/tests/requests/ecs/container_instance_tests.rb +0 -119
  237. data/tests/requests/ecs/helper.rb +0 -276
  238. data/tests/requests/ecs/sample_task_definition1.json +0 -56
  239. data/tests/requests/ecs/service_tests.rb +0 -132
  240. data/tests/requests/ecs/task_definitions_tests.rb +0 -97
  241. data/tests/requests/ecs/task_tests.rb +0 -145
  242. data/tests/requests/efs/file_system_tests.rb +0 -152
  243. data/tests/requests/efs/helper.rb +0 -44
  244. data/tests/requests/elasticache/cache_cluster_tests.rb +0 -137
  245. data/tests/requests/elasticache/describe_events.rb +0 -17
  246. data/tests/requests/elasticache/describe_reserved_cache_nodes.rb +0 -17
  247. data/tests/requests/elasticache/helper.rb +0 -103
  248. data/tests/requests/elasticache/parameter_group_tests.rb +0 -105
  249. data/tests/requests/elasticache/security_group_tests.rb +0 -108
  250. data/tests/requests/elasticache/subnet_group_tests.rb +0 -52
  251. data/tests/requests/elb/helper.rb +0 -91
  252. data/tests/requests/elb/listener_tests.rb +0 -68
  253. data/tests/requests/elb/load_balancer_tests.rb +0 -89
  254. data/tests/requests/elb/policy_tests.rb +0 -132
  255. data/tests/requests/emr/helper.rb +0 -167
  256. data/tests/requests/emr/instance_group_tests.rb +0 -106
  257. data/tests/requests/emr/job_flow_tests.rb +0 -88
  258. data/tests/requests/federation/get_signin_token_tests.rb +0 -11
  259. data/tests/requests/glacier/archive_tests.rb +0 -13
  260. data/tests/requests/glacier/multipart_upload_tests.rb +0 -29
  261. data/tests/requests/glacier/tree_hash_tests.rb +0 -91
  262. data/tests/requests/glacier/vault_tests.rb +0 -35
  263. data/tests/requests/iam/access_key_tests.rb +0 -53
  264. data/tests/requests/iam/account_policy_tests.rb +0 -20
  265. data/tests/requests/iam/account_tests.rb +0 -34
  266. data/tests/requests/iam/group_policy_tests.rb +0 -48
  267. data/tests/requests/iam/group_tests.rb +0 -44
  268. data/tests/requests/iam/helper.rb +0 -154
  269. data/tests/requests/iam/instance_profile_tests.rb +0 -44
  270. data/tests/requests/iam/login_profile_tests.rb +0 -62
  271. data/tests/requests/iam/managed_policy_tests.rb +0 -110
  272. data/tests/requests/iam/mfa_tests.rb +0 -23
  273. data/tests/requests/iam/role_tests.rb +0 -156
  274. data/tests/requests/iam/server_certificate_tests.rb +0 -130
  275. data/tests/requests/iam/user_policy_tests.rb +0 -45
  276. data/tests/requests/iam/user_tests.rb +0 -78
  277. data/tests/requests/iam/versioned_managed_policy_tests.rb +0 -105
  278. data/tests/requests/kinesis/helper.rb +0 -111
  279. data/tests/requests/kinesis/stream_tests.rb +0 -169
  280. data/tests/requests/kms/helper.rb +0 -27
  281. data/tests/requests/kms/key_tests.rb +0 -23
  282. data/tests/requests/lambda/function_sample_1.js +0 -9
  283. data/tests/requests/lambda/function_sample_2.js +0 -9
  284. data/tests/requests/lambda/function_tests.rb +0 -460
  285. data/tests/requests/lambda/helper.rb +0 -81
  286. data/tests/requests/rds/cluster_snapshot_tests.rb +0 -43
  287. data/tests/requests/rds/cluster_tests.rb +0 -37
  288. data/tests/requests/rds/db_engine_versions.rb +0 -7
  289. data/tests/requests/rds/db_snapshot_tests.rb +0 -62
  290. data/tests/requests/rds/describe_events.rb +0 -16
  291. data/tests/requests/rds/event_subscription_tests.rb +0 -30
  292. data/tests/requests/rds/helper.rb +0 -406
  293. data/tests/requests/rds/instance_option_tests.rb +0 -27
  294. data/tests/requests/rds/instance_tests.rb +0 -149
  295. data/tests/requests/rds/log_file_tests.rb +0 -19
  296. data/tests/requests/rds/parameter_group_tests.rb +0 -62
  297. data/tests/requests/rds/parameter_request_tests.rb +0 -32
  298. data/tests/requests/rds/security_group_tests.rb +0 -101
  299. data/tests/requests/rds/subnet_groups_tests.rb +0 -52
  300. data/tests/requests/rds/tagging_tests.rb +0 -78
  301. data/tests/requests/redshift/cluster_parameter_group_tests.rb +0 -76
  302. data/tests/requests/redshift/cluster_security_group_tests.rb +0 -42
  303. data/tests/requests/redshift/cluster_snapshot_tests.rb +0 -73
  304. data/tests/requests/redshift/cluster_tests.rb +0 -80
  305. data/tests/requests/ses/helper.rb +0 -9
  306. data/tests/requests/ses/verified_domain_identity_tests.rb +0 -16
  307. data/tests/requests/ses/verified_email_address_tests.rb +0 -27
  308. data/tests/requests/simpledb/attributes_tests.rb +0 -86
  309. data/tests/requests/simpledb/domain_tests.rb +0 -51
  310. data/tests/requests/simpledb/helper.rb +0 -10
  311. data/tests/requests/sns/helper.rb +0 -9
  312. data/tests/requests/sns/subscription_tests.rb +0 -86
  313. data/tests/requests/sns/topic_tests.rb +0 -53
  314. data/tests/requests/sqs/helper.rb +0 -9
  315. data/tests/requests/sqs/message_tests.rb +0 -51
  316. data/tests/requests/sqs/queue_tests.rb +0 -50
  317. data/tests/requests/storage/acl_utils_tests.rb +0 -209
  318. data/tests/requests/storage/bucket_tests.rb +0 -416
  319. data/tests/requests/storage/cors_utils_tests.rb +0 -108
  320. data/tests/requests/storage/delete_multiple_objects_tests.rb +0 -12
  321. data/tests/requests/storage/multipart_upload_tests.rb +0 -121
  322. data/tests/requests/storage/object_tests.rb +0 -262
  323. data/tests/requests/storage/versioning_tests.rb +0 -262
  324. data/tests/requests/sts/assume_role_tests.rb +0 -19
  325. data/tests/requests/sts/assume_role_with_saml_tests.rb +0 -18
  326. data/tests/requests/sts/assume_role_with_web_identity_tests.rb +0 -28
  327. data/tests/requests/sts/get_federation_token_tests.rb +0 -20
  328. data/tests/requests/sts/session_token_tests.rb +0 -16
  329. data/tests/requests/support/helper.rb +0 -43
  330. data/tests/requests/support/trusted_advisor_check_tests.rb +0 -16
  331. data/tests/signaturev4_tests.rb +0 -106
  332. data/tests/signed_params_tests.rb +0 -17
  333. data/tests/storage_tests.rb +0 -7
data/CHANGELOG.md CHANGED
@@ -1,8 +1,418 @@
1
- # Change Log
1
+ # Changelog
2
2
 
3
- ## [Unreleased](https://github.com/fog/fog-aws/tree/HEAD)
3
+ ## [v3.19.0](https://github.com/fog/fog-aws/tree/v3.19.0) (2023-05-18)
4
4
 
5
- [Full Changelog](https://github.com/fog/fog-aws/compare/v3.5.0...HEAD)
5
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.18.0...v3.19.0)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - gopalcoupa:add-me-central-1 [\#679]
10
+ - Fix S3 Transfer Acceleration [\#676]
11
+ - configure connection_options to improve s3 retry see https://github.com/fog/fog-aws/issues/674 [\#675]
12
+ - s3: remove hardcoded host [\#673]
13
+ - Bump actions/stale from 7 to 8 [\#671]
14
+
15
+
16
+ ## [v3.18.0](https://github.com/fog/fog-aws/tree/v3.18.0) (2023-02-16)
17
+
18
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.17.0...v3.18.0)
19
+
20
+ **Merged pull requests:**
21
+
22
+ - Only compute SSE-C headers when needed in multipart upload [\#669](https://github.com/fog/fog-aws/pull/669) ([stanhu](https://github.com/stanhu))
23
+
24
+ ## [v3.17.0](https://github.com/fog/fog-aws/tree/v3.17.0) (2023-02-09)
25
+
26
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.16.0...v3.17.0)
27
+
28
+ **Merged pull requests:**
29
+
30
+ - Support disabling of Content-MD5 for FIPS [\#668](https://github.com/fog/fog-aws/pull/668) ([stanhu](https://github.com/stanhu))
31
+
32
+ ## [v3.16.0](https://github.com/fog/fog-aws/tree/v3.16.0) (2023-01-26)
33
+
34
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.15.0...v3.16.0)
35
+
36
+ **Closed issues:**
37
+
38
+ - README lists incorrect usage of IAM auth [\#663](https://github.com/fog/fog-aws/issues/663)
39
+ - How can i config to use s3 in localstack [\#657](https://github.com/fog/fog-aws/issues/657)
40
+ - Fog::Storage::AWS::Files#each always iterates over entire collection [\#232](https://github.com/fog/fog-aws/issues/232)
41
+ - superclass mismatch for class AWS [\#655](https://github.com/fog/fog-aws/issues/655)
42
+ - Lambda IAM Role Not Working [\#650](https://github.com/fog/fog-aws/issues/650)
43
+
44
+ **Merged pull requests:**
45
+
46
+ - adding missing region ap-southeast-4 [\#665](https://github.com/fog/fog-aws/pull/665) ([emptyhammond](https://github.com/emptyhammond))
47
+ o
48
+ - adding missing region eu-south-2 [\#662](https://github.com/fog/fog-aws/pull/662) ([ivangool](https://github.com/ivangool))
49
+ - Bump actions/dependency-review-action from 2 to 3 [\#659](https://github.com/fog/fog-aws/pull/659) ([dependabot[bot]](https://github.com/apps/dependabot))
50
+ - Update aws.rb [\#658](https://github.com/fog/fog-aws/pull/658) ([ivangool](https://github.com/ivangool))
51
+ - Bump actions/stale from 5 to 6 [\#656](https://github.com/fog/fog-aws/pull/656) ([dependabot[bot]](https://github.com/apps/dependabot))
52
+
53
+ ## [v3.15.0](https://github.com/fog/fog-aws/tree/v3.15.0) (2022-09-12)
54
+
55
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.14.0...v3.15.0)
56
+
57
+ **Closed issues:**
58
+
59
+ - URI.decode is obsolete \(and not available in Ruby 3.0\) [\#653](https://github.com/fog/fog-aws/issues/653)
60
+ - S3: File copy not working outside us-east-1 region [\#645](https://github.com/fog/fog-aws/issues/645)
61
+ - Unable to list, update and remove RDS tags in AWS GovCloud Account regions. [\#644](https://github.com/fog/fog-aws/issues/644)
62
+ - Documentation links broken / 404 [\#642](https://github.com/fog/fog-aws/issues/642)
63
+
64
+ **Merged pull requests:**
65
+
66
+ - Replace URI.decode as obsolete, and removed in Ruby 3.0 [\#654](https://github.com/fog/fog-aws/pull/654) ([kuahyeow](https://github.com/kuahyeow))
67
+ - Fix typo in readme [\#652](https://github.com/fog/fog-aws/pull/652) ([geemus](https://github.com/geemus))
68
+ - change sync\_clock to plain GET [\#651](https://github.com/fog/fog-aws/pull/651) ([duckworth](https://github.com/duckworth))
69
+ - Update README file with download url example [\#649](https://github.com/fog/fog-aws/pull/649) ([lucasocon](https://github.com/lucasocon))
70
+ - Bump actions/dependency-review-action from 1 to 2 [\#648](https://github.com/fog/fog-aws/pull/648) ([dependabot[bot]](https://github.com/apps/dependabot))
71
+ - add x2gd and t4g instance flavours [\#647](https://github.com/fog/fog-aws/pull/647) ([mushyy](https://github.com/mushyy))
72
+ - Fix a typo in CHANGELOG [\#646](https://github.com/fog/fog-aws/pull/646) ([y-yagi](https://github.com/y-yagi))
73
+
74
+ ## [v3.14.0](https://github.com/fog/fog-aws/tree/v3.14.0) (2022-05-09)
75
+
76
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.13.0...v3.14.0)
77
+
78
+ **Closed issues:**
79
+
80
+ - Add a special note to the documentation around the danger of using directory.get [\#633](https://github.com/fog/fog-aws/issues/633)
81
+
82
+ **Merged pull requests:**
83
+
84
+ - RDS tags issue in AWS GovCloud Account regions. [\#643](https://github.com/fog/fog-aws/pull/643) ([svavhal](https://github.com/svavhal))
85
+ - Create codeql.yml [\#641](https://github.com/fog/fog-aws/pull/641) ([naveensrinivasan](https://github.com/naveensrinivasan))
86
+ - chore\(deps\): Included dependency review [\#640](https://github.com/fog/fog-aws/pull/640) ([naveensrinivasan](https://github.com/naveensrinivasan))
87
+ - Bump actions/stale from 4 to 5 [\#639](https://github.com/fog/fog-aws/pull/639) ([dependabot[bot]](https://github.com/apps/dependabot))
88
+ - Set permissions for GitHub actions [\#638](https://github.com/fog/fog-aws/pull/638) ([naveensrinivasan](https://github.com/naveensrinivasan))
89
+ - Add option to control IAM credential refresh [\#637](https://github.com/fog/fog-aws/pull/637) ([gl-gh-hchouraria](https://github.com/gl-gh-hchouraria))
90
+ - Add warning messages around directories.get [\#636](https://github.com/fog/fog-aws/pull/636) ([orrin-naylor-instacart](https://github.com/orrin-naylor-instacart))
91
+ - Bump actions/checkout from 2.4.0 to 3 [\#632](https://github.com/fog/fog-aws/pull/632) ([dependabot[bot]](https://github.com/apps/dependabot))
92
+ - Add Ruby 3.1 to the CI matrix [\#631](https://github.com/fog/fog-aws/pull/631) ([petergoldstein](https://github.com/petergoldstein))
93
+
94
+ ## [v3.13.0](https://github.com/fog/fog-aws/tree/v3.13.0) (2022-02-13)
95
+
96
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.12.0...v3.13.0)
97
+
98
+ **Closed issues:**
99
+
100
+ - Please include all files required for running tests in the gem [\#625](https://github.com/fog/fog-aws/issues/625)
101
+ - Using Hitachi compatible S3 and still see the AWS S3 host [\#624](https://github.com/fog/fog-aws/issues/624)
102
+ - Spawn compute node with Elastic Inference [\#617](https://github.com/fog/fog-aws/issues/617)
103
+
104
+ **Merged pull requests:**
105
+
106
+ - Drop ipaddress dependency in favor of built in ipaddr [\#630](https://github.com/fog/fog-aws/pull/630) ([ekohl](https://github.com/ekohl))
107
+ - Exclude test files from gem [\#629](https://github.com/fog/fog-aws/pull/629) ([ursm](https://github.com/ursm))
108
+ - Add Truffleruby head to CI [\#628](https://github.com/fog/fog-aws/pull/628) ([gogainda](https://github.com/gogainda))
109
+ - Bump actions/checkout from 2.3.5 to 2.4.0 [\#627](https://github.com/fog/fog-aws/pull/627) ([dependabot[bot]](https://github.com/apps/dependabot))
110
+ - Update Fog::AWS::Storage::File\#body [\#626](https://github.com/fog/fog-aws/pull/626) ([10io](https://github.com/10io))
111
+ - Bump actions/checkout from 2.3.4 to 2.3.5 [\#623](https://github.com/fog/fog-aws/pull/623) ([dependabot[bot]](https://github.com/apps/dependabot))
112
+ - Add json files to the gem file [\#622](https://github.com/fog/fog-aws/pull/622) ([acant](https://github.com/acant))
113
+
114
+ ## [v3.12.0](https://github.com/fog/fog-aws/tree/v3.12.0) (2021-08-23)
115
+
116
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.11.0...v3.12.0)
117
+
118
+ **Merged pull requests:**
119
+
120
+ - Add support for regional STS endpoints [\#620](https://github.com/fog/fog-aws/pull/620) ([stanhu](https://github.com/stanhu))
121
+ - Add IPv6 support for Ingress Security Groups [\#619](https://github.com/fog/fog-aws/pull/619) ([p8](https://github.com/p8))
122
+ - Separate CHANGELOG entry for 3.11.0 [\#618](https://github.com/fog/fog-aws/pull/618) ([sunny](https://github.com/sunny))
123
+
124
+ ## [v3.11.0](https://github.com/fog/fog-aws/tree/v3.11.0) (2021-08-05)
125
+
126
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.10.0...v3.11.0)
127
+
128
+ **Closed issues:**
129
+
130
+ - Support for Regional STS Endpoints [\#604](https://github.com/fog/fog-aws/issues/604)
131
+ - Pass tags when creating EBS ? [\#603](https://github.com/fog/fog-aws/issues/603)
132
+ - S3 multiple delete api should handle delete for multiple versions for a single object [\#598](https://github.com/fog/fog-aws/issues/598)
133
+ - Fog does not return error from s3 [\#586](https://github.com/fog/fog-aws/issues/586)
134
+ - Add support for r6g and c6g instance types [\#580](https://github.com/fog/fog-aws/issues/580)
135
+ - Using internal S3 provider ... and something funky is going on! [\#575](https://github.com/fog/fog-aws/issues/575)
136
+ - How to upload File to S3 with with accelerate? [\#554](https://github.com/fog/fog-aws/issues/554)
137
+ - How to use assume\_role\_with\_web\_identity auth for S3 storage? [\#543](https://github.com/fog/fog-aws/issues/543)
138
+ - Fog::AWS::Glacier::TreeHash::add\_part works only sometimes [\#520](https://github.com/fog/fog-aws/issues/520)
139
+ - fog-aws: Fog::AWS::Glacier::Job doesn't support RetrievalByteRange [\#519](https://github.com/fog/fog-aws/issues/519)
140
+ - Path style is being deprecated [\#516](https://github.com/fog/fog-aws/issues/516)
141
+ - Fog::DNS::AWS can't read zones [\#513](https://github.com/fog/fog-aws/issues/513)
142
+ - Lambda Parser can't handle VPC config, containing array of hash values [\#509](https://github.com/fog/fog-aws/issues/509)
143
+ - Excon::Error::Forbidden: Expected\(200\) \<=\> Actual\(403 Forbidden\) [\#508](https://github.com/fog/fog-aws/issues/508)
144
+ - file.save does not work with STDIN [\#500](https://github.com/fog/fog-aws/issues/500)
145
+ - ELBv2 Support ? [\#489](https://github.com/fog/fog-aws/issues/489)
146
+ - S3 Select Support? [\#484](https://github.com/fog/fog-aws/issues/484)
147
+ - nil:NilClass error [\#483](https://github.com/fog/fog-aws/issues/483)
148
+ - Mocks for VM creation require access and secret key when using instance profiles [\#482](https://github.com/fog/fog-aws/issues/482)
149
+ - Always use bucket virtual hostname? [\#464](https://github.com/fog/fog-aws/issues/464)
150
+ - Spot instance creation : Support for BlockDurationMinutes [\#461](https://github.com/fog/fog-aws/issues/461)
151
+ - How can I remove the `Content-Encoding` metadata properties if I upload from fog [\#447](https://github.com/fog/fog-aws/issues/447)
152
+ - AWS::ECS with `use_iam_profile` errors out [\#441](https://github.com/fog/fog-aws/issues/441)
153
+ - Option to turn off Warnings [\#426](https://github.com/fog/fog-aws/issues/426)
154
+ - Accessing AWS S3 using EC2 Instance Profile [\#423](https://github.com/fog/fog-aws/issues/423)
155
+ - Support step and target tracking auto scaling policies [\#422](https://github.com/fog/fog-aws/issues/422)
156
+ - 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)
157
+ - Download File with content\_disposition [\#418](https://github.com/fog/fog-aws/issues/418)
158
+ - Fog::Compute::AWS::Error iamInstanceProfile.name is invalid [\#410](https://github.com/fog/fog-aws/issues/410)
159
+ - Mocks for EC2 instance creation do not behave as expected [\#404](https://github.com/fog/fog-aws/issues/404)
160
+ - Cannot copy an encrypted snapshot from one account to another account [\#398](https://github.com/fog/fog-aws/issues/398)
161
+ - Fog::Compute::AWS::Image\#deregister ignores non-root snapshots. [\#380](https://github.com/fog/fog-aws/issues/380)
162
+ - AWS S3 overwrites files with same name [\#378](https://github.com/fog/fog-aws/issues/378)
163
+ - Support S3 object tagging [\#377](https://github.com/fog/fog-aws/issues/377)
164
+ - Reqeust to support Aws::DynamoDBStreams [\#373](https://github.com/fog/fog-aws/issues/373)
165
+ - Not all Rds versions and Instance Types are rendered [\#371](https://github.com/fog/fog-aws/issues/371)
166
+ - Tag instances upon creation of new instance [\#359](https://github.com/fog/fog-aws/issues/359)
167
+ - Creating instances in AWS fails with Socket Error [\#352](https://github.com/fog/fog-aws/issues/352)
168
+ - `NameError: uninitialized constant Fog::ServicesMixin` when requiring `fog/storage` [\#345](https://github.com/fog/fog-aws/issues/345)
169
+ - Add full support for target groups [\#328](https://github.com/fog/fog-aws/issues/328)
170
+ - Fog transfer acceleration endpoints [\#303](https://github.com/fog/fog-aws/issues/303)
171
+ - "Fog::DNS\[:aws\] | change\_resource\_record\_sets \(aws, dns\)" test suite flaky [\#301](https://github.com/fog/fog-aws/issues/301)
172
+ - Cross account access using IAM role [\#294](https://github.com/fog/fog-aws/issues/294)
173
+ - Write timeout trying to upload a large file to S3 [\#291](https://github.com/fog/fog-aws/issues/291)
174
+ - Support Autoscaling lifecycle hooks [\#289](https://github.com/fog/fog-aws/issues/289)
175
+ - directories ignore region option [\#287](https://github.com/fog/fog-aws/issues/287)
176
+ - Feature: Access logs for ELB [\#271](https://github.com/fog/fog-aws/issues/271)
177
+ - S3: retry on 500 internal server error [\#264](https://github.com/fog/fog-aws/issues/264)
178
+ - Alias for server side encryption not working [\#260](https://github.com/fog/fog-aws/issues/260)
179
+ - 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)
180
+ - Using STS [\#253](https://github.com/fog/fog-aws/issues/253)
181
+ - Auto Scaling Group does not enable metrics [\#251](https://github.com/fog/fog-aws/issues/251)
182
+ - aws has no storage service [\#248](https://github.com/fog/fog-aws/issues/248)
183
+ - Timeouts on Compute\#describe\_volumes due to extreme numbers of volumes [\#244](https://github.com/fog/fog-aws/issues/244)
184
+ - Support CreateReusableDelegationSet [\#243](https://github.com/fog/fog-aws/issues/243)
185
+ - Tags server creation in Mock vs Real [\#239](https://github.com/fog/fog-aws/issues/239)
186
+ - Excon::Errors::SocketError Broken pipe \(Errno::EPIPE\) when use Activeadmin upload image by nested form [\#237](https://github.com/fog/fog-aws/issues/237)
187
+ - Fog Mock doesn't update [\#236](https://github.com/fog/fog-aws/issues/236)
188
+ - ECS service\_update does not support "deploymentConfig" [\#234](https://github.com/fog/fog-aws/issues/234)
189
+ - Fog::Storage::AWS::Files\#each always iterates over entire collection [\#232](https://github.com/fog/fog-aws/issues/232)
190
+ - repeated bucket name in the URL on AWS and issue with :path\_style [\#228](https://github.com/fog/fog-aws/issues/228)
191
+ - Already initialized constant warnings [\#212](https://github.com/fog/fog-aws/issues/212)
192
+ - SQS API version is outdated [\#198](https://github.com/fog/fog-aws/issues/198)
193
+ - Problem when using irb [\#195](https://github.com/fog/fog-aws/issues/195)
194
+ - compute.servers \(via DescribeInstances\) does not include tags reliably [\#192](https://github.com/fog/fog-aws/issues/192)
195
+ - EBS create volume io1 or gp2 [\#186](https://github.com/fog/fog-aws/issues/186)
196
+ - Aws cloudformation stack-policy-body [\#179](https://github.com/fog/fog-aws/issues/179)
197
+ - EXCON\_DEBUG and DEBUG env variables do not help debug -S key issues [\#177](https://github.com/fog/fog-aws/issues/177)
198
+ - AWS4 SignatureDoesNotMatch if header contains two spaces [\#160](https://github.com/fog/fog-aws/issues/160)
199
+ - Add support for elasticache redis replication groups [\#136](https://github.com/fog/fog-aws/issues/136)
200
+ - Getting SignatureDoesNotMatch error with eu-central-1 [\#127](https://github.com/fog/fog-aws/issues/127)
201
+ - Cannot saving auto scaling group [\#125](https://github.com/fog/fog-aws/issues/125)
202
+ - fog-aws not working with dynamoDB Local [\#118](https://github.com/fog/fog-aws/issues/118)
203
+ - Fog::Compute::AWS::Error InvalidParameterValue =\> secondary-addresses [\#115](https://github.com/fog/fog-aws/issues/115)
204
+ - Is there an equivalent to describe-instance-status? [\#66](https://github.com/fog/fog-aws/issues/66)
205
+ - No usage instructions in Readme [\#64](https://github.com/fog/fog-aws/issues/64)
206
+ - AWS - distributionConfig.enabled' failed to satisfy constraint: Member must not be null [\#48](https://github.com/fog/fog-aws/issues/48)
207
+ - Clarify versioning on README [\#42](https://github.com/fog/fog-aws/issues/42)
208
+ - AWS SQS AddPermission API missing [\#26](https://github.com/fog/fog-aws/issues/26)
209
+ - AWS China region [\#25](https://github.com/fog/fog-aws/issues/25)
210
+ - AWS CloudFormation ListStacks options [\#24](https://github.com/fog/fog-aws/issues/24)
211
+ - Setting region of AWS::Compute after initialization [\#23](https://github.com/fog/fog-aws/issues/23)
212
+ - Support AWS Support API [\#22](https://github.com/fog/fog-aws/issues/22)
213
+ - InvalidClientTokenId =\> The security token included in the request is invalid [\#21](https://github.com/fog/fog-aws/issues/21)
214
+ - Change architecture attribute in AWS::Compute::Server model [\#20](https://github.com/fog/fog-aws/issues/20)
215
+ - Add support for Amazon Kinesis [\#19](https://github.com/fog/fog-aws/issues/19)
216
+ - Bring AWS CloudFront API Models/Requests up to date [\#17](https://github.com/fog/fog-aws/issues/17)
217
+ - AWS security group tests have become unstable [\#16](https://github.com/fog/fog-aws/issues/16)
218
+ - AWS auto scaling: availability zones are not a required parameter [\#15](https://github.com/fog/fog-aws/issues/15)
219
+ - Is anyone going to add support for AWS ElasticTranscoder [\#14](https://github.com/fog/fog-aws/issues/14)
220
+ - add missing attributes to aws describe\_reserved\_instances parser [\#13](https://github.com/fog/fog-aws/issues/13)
221
+ - AWS AutoScaling group min\_size & max\_size getting set to 0 [\#12](https://github.com/fog/fog-aws/issues/12)
222
+ - auto\_scaling\_group.instances does not return only instances for that group [\#11](https://github.com/fog/fog-aws/issues/11)
223
+ - Why are the credential keys not generalized? [\#10](https://github.com/fog/fog-aws/issues/10)
224
+ - Invalid XML Character in S3 Response [\#8](https://github.com/fog/fog-aws/issues/8)
225
+ - reading s3 upload progress [\#7](https://github.com/fog/fog-aws/issues/7)
226
+ - delete\_on\_termination=true attribute on new volume is not set on create [\#6](https://github.com/fog/fog-aws/issues/6)
227
+ - user\_data is still base64 encoded in Real launch\_configurations [\#5](https://github.com/fog/fog-aws/issues/5)
228
+
229
+ **Merged pull requests:**
230
+
231
+ - Add storage option to configure multipart put/copy [\#616](https://github.com/fog/fog-aws/pull/616) ([slonopotamus](https://github.com/slonopotamus))
232
+ - 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))
233
+ - Update file.rb [\#613](https://github.com/fog/fog-aws/pull/613) ([iqre8](https://github.com/iqre8))
234
+ - fix storage for ruby 3.0 [\#611](https://github.com/fog/fog-aws/pull/611) ([vincentjoseph](https://github.com/vincentjoseph))
235
+ - Implement AWS TagSpecifications \(closes \#603\) [\#610](https://github.com/fog/fog-aws/pull/610) ([eLvErDe](https://github.com/eLvErDe))
236
+ - 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))
237
+ - 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))
238
+ - 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))
239
+ - drop git in gemspec [\#602](https://github.com/fog/fog-aws/pull/602) ([abrahamparayil](https://github.com/abrahamparayil))
240
+ - 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))
241
+
242
+ ## [v3.10.0](https://github.com/fog/fog-aws/tree/v3.10.0) (2021-03-22)
243
+
244
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.9.0...v3.10.0)
245
+
246
+ **Closed issues:**
247
+
248
+ - Fog::AWS::Storage timeout against S3 [\#599](https://github.com/fog/fog-aws/issues/599)
249
+ - Incorrect bucket redirection URL generation [\#594](https://github.com/fog/fog-aws/issues/594)
250
+ - Fully Support SSE-C encryption [\#571](https://github.com/fog/fog-aws/issues/571)
251
+ - Enable hibernation on creation of ec2 instance [\#566](https://github.com/fog/fog-aws/issues/566)
252
+ - Tests broken with fog-core 2.1.0 [\#504](https://github.com/fog/fog-aws/issues/504)
253
+ - changelog? [\#471](https://github.com/fog/fog-aws/issues/471)
254
+ - How to use iam\_instance\_profile? [\#342](https://github.com/fog/fog-aws/issues/342)
255
+ - how to support additional aws regions, e.g. cn-north-1 [\#164](https://github.com/fog/fog-aws/issues/164)
256
+ - Still empty content-encoding when it is not set [\#130](https://github.com/fog/fog-aws/issues/130)
257
+
258
+ **Merged pull requests:**
259
+
260
+ - Handle multiple versions of objects in multiple delete request [\#600](https://github.com/fog/fog-aws/pull/600) ([shanu-kr](https://github.com/shanu-kr))
261
+ - Add Truffleruby head to CI [\#596](https://github.com/fog/fog-aws/pull/596) ([gogainda](https://github.com/gogainda))
262
+ - Fixes domain name duplication in url [\#593](https://github.com/fog/fog-aws/pull/593) ([midhunkrishna](https://github.com/midhunkrishna))
263
+
264
+ ## [v3.9.0](https://github.com/fog/fog-aws/tree/v3.9.0) (2021-03-02)
265
+
266
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.8.0...v3.9.0)
267
+
268
+ **Merged pull requests:**
269
+
270
+ - Fix handling of lowercased HTTP headers [\#597](https://github.com/fog/fog-aws/pull/597) ([stanhu](https://github.com/stanhu))
271
+ - Generate a default session name if one is not provided [\#595](https://github.com/fog/fog-aws/pull/595) ([stanhu](https://github.com/stanhu))
272
+ - Enable test on Ruby 3.0 [\#591](https://github.com/fog/fog-aws/pull/591) ([voxik](https://github.com/voxik))
273
+
274
+ ## [v3.8.0](https://github.com/fog/fog-aws/tree/v3.8.0) (2021-01-13)
275
+
276
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.7.0...v3.8.0)
277
+
278
+ **Closed issues:**
279
+
280
+ - Getting Auth failure Exception for non enabled AWS regions in AWS account. [\#585](https://github.com/fog/fog-aws/issues/585)
281
+
282
+ **Merged pull requests:**
283
+
284
+ - Filter unknown UploadPartCopy parameters [\#589](https://github.com/fog/fog-aws/pull/589) ([stanhu](https://github.com/stanhu))
285
+ - Fix NameError in multipart copy [\#588](https://github.com/fog/fog-aws/pull/588) ([stanhu](https://github.com/stanhu))
286
+ - Rewind pointer if file is eof on put\_object mock [\#587](https://github.com/fog/fog-aws/pull/587) ([ekulz](https://github.com/ekulz))
287
+ - Update .travis.yml [\#584](https://github.com/fog/fog-aws/pull/584) ([nageshlop](https://github.com/nageshlop))
288
+
289
+ ## [v3.7.0](https://github.com/fog/fog-aws/tree/v3.7.0) (2020-12-01)
290
+
291
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.6.7...v3.7.0)
292
+
293
+ **Closed issues:**
294
+
295
+ - File\#copy does not support files above 5 GB [\#577](https://github.com/fog/fog-aws/issues/577)
296
+ - fog-aws: AWS extended length resource ID issues \(8-\>18\) [\#517](https://github.com/fog/fog-aws/issues/517)
297
+
298
+ **Merged pull requests:**
299
+
300
+ - Add all m6gd, r6g, r6gd, c6g, and c6gd instance classes [\#582](https://github.com/fog/fog-aws/pull/582) ([calebwoofenden](https://github.com/calebwoofenden))
301
+ - 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))
302
+ - Add multi-threaded support for File\#copy [\#579](https://github.com/fog/fog-aws/pull/579) ([stanhu](https://github.com/stanhu))
303
+ - Add support for multipart Fog::AWS::Storage::File\#copy [\#578](https://github.com/fog/fog-aws/pull/578) ([stanhu](https://github.com/stanhu))
304
+ - Add AssumeRoleWithWebIdentity to fetch\_credentials [\#576](https://github.com/fog/fog-aws/pull/576) ([jpac-run](https://github.com/jpac-run))
305
+
306
+ ## [v3.6.7](https://github.com/fog/fog-aws/tree/v3.6.7) (2020-08-26)
307
+
308
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.6.6...v3.6.7)
309
+
310
+ **Merged pull requests:**
311
+
312
+ - S3 dot Region endpoint structure applied [\#574](https://github.com/fog/fog-aws/pull/574) ([gharutyunyan-vineti](https://github.com/gharutyunyan-vineti))
313
+
314
+ ## [v3.6.6](https://github.com/fog/fog-aws/tree/v3.6.6) (2020-06-23)
315
+
316
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.6.5...v3.6.6)
317
+
318
+ **Closed issues:**
319
+
320
+ - max\_keys param in storage.directories.get.... what am I missing? [\#568](https://github.com/fog/fog-aws/issues/568)
321
+ - Fog Logs? [\#561](https://github.com/fog/fog-aws/issues/561)
322
+
323
+ **Merged pull requests:**
324
+
325
+ - added missing region EU South \(Milan\) [\#570](https://github.com/fog/fog-aws/pull/570) ([saldan](https://github.com/saldan))
326
+ - hibernation option to compute [\#569](https://github.com/fog/fog-aws/pull/569) ([taniahagan](https://github.com/taniahagan))
327
+ - Fix VPC model is\_default requires [\#567](https://github.com/fog/fog-aws/pull/567) ([biinari](https://github.com/biinari))
328
+
329
+ ## [v3.6.5](https://github.com/fog/fog-aws/tree/v3.6.5) (2020-05-22)
330
+
331
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.6.4...v3.6.5)
332
+
333
+ **Closed issues:**
334
+
335
+ - Fog::Compute::AWS is deprecated, please use Fog::AWS::Compute warning [\#565](https://github.com/fog/fog-aws/issues/565)
336
+ - Duplicate compute flavours [\#563](https://github.com/fog/fog-aws/issues/563)
337
+ - 3.6.4 does not fetch iam credentials using IMDSv2 when running from inside containers with IMDSv2 Defaults [\#560](https://github.com/fog/fog-aws/issues/560)
338
+
339
+ **Merged pull requests:**
340
+
341
+ - Fix naming of various AWS compute flavors [\#564](https://github.com/fog/fog-aws/pull/564) ([abrom](https://github.com/abrom))
342
+ - Gracefully handle failure of IMDSv2 and allow fallback to IMDSv1 [\#562](https://github.com/fog/fog-aws/pull/562) ([atyndall](https://github.com/atyndall))
343
+
344
+ ## [v3.6.4](https://github.com/fog/fog-aws/tree/v3.6.4) (2020-05-14)
345
+
346
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.6.3...v3.6.4)
347
+
348
+ **Closed issues:**
349
+
350
+ - Is fog-aws compatible with AWS Trust Services? [\#558](https://github.com/fog/fog-aws/issues/558)
351
+
352
+ **Merged pull requests:**
353
+
354
+ - Add support for IMDSv2 in CredentialFetcher [\#559](https://github.com/fog/fog-aws/pull/559) ([atyndall](https://github.com/atyndall))
355
+ - Don’t install development scripts [\#557](https://github.com/fog/fog-aws/pull/557) ([amarshall](https://github.com/amarshall))
356
+
357
+ ## [v3.6.3](https://github.com/fog/fog-aws/tree/v3.6.3) (2020-04-22)
358
+
359
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.6.2...v3.6.3)
360
+
361
+ **Merged pull requests:**
362
+
363
+ - Add South Africa \(Cape Town\) Region [\#556](https://github.com/fog/fog-aws/pull/556) ([lvangool](https://github.com/lvangool))
364
+ - Adds Instance Type r5.16xlarge and r5.8xlarge [\#555](https://github.com/fog/fog-aws/pull/555) ([rupikakapoor](https://github.com/rupikakapoor))
365
+ - Update kinesis.rb [\#553](https://github.com/fog/fog-aws/pull/553) ([ioquatix](https://github.com/ioquatix))
366
+
367
+ ## [v3.6.2](https://github.com/fog/fog-aws/tree/v3.6.2) (2020-03-24)
368
+
369
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.5.2...v3.6.2)
370
+
371
+ **Closed issues:**
372
+
373
+ - config.assets.prefix is being looked at as a bucket name [\#551](https://github.com/fog/fog-aws/issues/551)
374
+ - Class name typo: AssumeRoleWithWithWebIdentity [\#548](https://github.com/fog/fog-aws/issues/548)
375
+ - filename too long [\#544](https://github.com/fog/fog-aws/issues/544)
376
+
377
+ **Merged pull requests:**
378
+
379
+ - Adding two missing regions to Fog::AWS.regions [\#552](https://github.com/fog/fog-aws/pull/552) ([lvangool](https://github.com/lvangool))
380
+ - 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))
381
+ - 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))
382
+ - Add missing AWS flavors [\#547](https://github.com/fog/fog-aws/pull/547) ([ybart](https://github.com/ybart))
383
+ - Update elasticache mocking regions [\#545](https://github.com/fog/fog-aws/pull/545) ([yads](https://github.com/yads))
384
+ - Feature/elbv2 creation endpoint [\#542](https://github.com/fog/fog-aws/pull/542) ([KevinLoiseau](https://github.com/KevinLoiseau))
385
+ - Fix/sd 8581/retrieve provider snapshot status from provider [\#541](https://github.com/fog/fog-aws/pull/541) ([toubs13](https://github.com/toubs13))
386
+ - Fix/missing implementation in listener parser [\#540](https://github.com/fog/fog-aws/pull/540) ([KevinLoiseau](https://github.com/KevinLoiseau))
387
+ - Enhance/elbv2 tag endpoints [\#539](https://github.com/fog/fog-aws/pull/539) ([KevinLoiseau](https://github.com/KevinLoiseau))
388
+ - Improve documentation and development setup [\#538](https://github.com/fog/fog-aws/pull/538) ([gustavosobral](https://github.com/gustavosobral))
389
+ - Add object tagging [\#537](https://github.com/fog/fog-aws/pull/537) ([gustavosobral](https://github.com/gustavosobral))
390
+ - Fix load balancers parser to handle more than one availability zone with addresses [\#536](https://github.com/fog/fog-aws/pull/536) ([KevinLoiseau](https://github.com/KevinLoiseau))
391
+ - Remove useless attribute location from directory model [\#535](https://github.com/fog/fog-aws/pull/535) ([KevinLoiseau](https://github.com/KevinLoiseau))
392
+ - Create service ELBV2 to handle specificities of 2015-12-01 API version [\#534](https://github.com/fog/fog-aws/pull/534) ([KevinLoiseau](https://github.com/KevinLoiseau))
393
+ - Add missing m5a flavors [\#533](https://github.com/fog/fog-aws/pull/533) ([ybart](https://github.com/ybart))
394
+ - Enhance/add some attributes to hosted zone parsers [\#531](https://github.com/fog/fog-aws/pull/531) ([KevinLoiseau](https://github.com/KevinLoiseau))
395
+ - Fix VPC tenancy on creation [\#530](https://github.com/fog/fog-aws/pull/530) ([ramonpm](https://github.com/ramonpm))
396
+ - Fix subnet's parsings [\#529](https://github.com/fog/fog-aws/pull/529) ([KevinLoiseau](https://github.com/KevinLoiseau))
397
+
398
+ ## [v3.5.2](https://github.com/fog/fog-aws/tree/v3.5.2) (2019-07-16)
399
+
400
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.5.1...v3.5.2)
401
+
402
+ **Closed issues:**
403
+
404
+ - Support for Hong Kong Region \(ap-east-1\)? [\#527](https://github.com/fog/fog-aws/issues/527)
405
+ - Make S3 Signature v4 Streaming Optional [\#523](https://github.com/fog/fog-aws/issues/523)
406
+
407
+ **Merged pull requests:**
408
+
409
+ - Add ap-east-1 \(Hong Kong\) to Fog::AWS.regions [\#528](https://github.com/fog/fog-aws/pull/528) ([tisba](https://github.com/tisba))
410
+ - Update shared\_mock\_methods.rb [\#526](https://github.com/fog/fog-aws/pull/526) ([MiWieczo](https://github.com/MiWieczo))
411
+ - Make S3 Signature v4 streaming optional [\#525](https://github.com/fog/fog-aws/pull/525) ([stanhu](https://github.com/stanhu))
412
+
413
+ ## [v3.5.1](https://github.com/fog/fog-aws/tree/v3.5.1) (2019-06-10)
414
+
415
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.5.0...v3.5.1)
6
416
 
7
417
  **Merged pull requests:**
8
418
 
@@ -10,6 +420,7 @@
10
420
  - 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))
11
421
 
12
422
  ## [v3.5.0](https://github.com/fog/fog-aws/tree/v3.5.0) (2019-04-25)
423
+
13
424
  [Full Changelog](https://github.com/fog/fog-aws/compare/v3.4.0...v3.5.0)
14
425
 
15
426
  **Closed issues:**
@@ -24,6 +435,7 @@
24
435
  - Enhance/add attribute db subnet group for db instance [\#511](https://github.com/fog/fog-aws/pull/511) ([KevinLoiseau](https://github.com/KevinLoiseau))
25
436
 
26
437
  ## [v3.4.0](https://github.com/fog/fog-aws/tree/v3.4.0) (2019-03-11)
438
+
27
439
  [Full Changelog](https://github.com/fog/fog-aws/compare/v3.3.0...v3.4.0)
28
440
 
29
441
  **Closed issues:**
@@ -62,6 +474,7 @@
62
474
  - add tags for describe address [\#474](https://github.com/fog/fog-aws/pull/474) ([toubs13](https://github.com/toubs13))
63
475
 
64
476
  ## [v3.3.0](https://github.com/fog/fog-aws/tree/v3.3.0) (2018-09-18)
477
+
65
478
  [Full Changelog](https://github.com/fog/fog-aws/compare/v3.2.0...v3.3.0)
66
479
 
67
480
  **Merged pull requests:**
@@ -69,6 +482,7 @@
69
482
  - Rename CDN::AWS to AWS::CDN [\#467](https://github.com/fog/fog-aws/pull/467) ([jaredbeck](https://github.com/jaredbeck))
70
483
 
71
484
  ## [v3.2.0](https://github.com/fog/fog-aws/tree/v3.2.0) (2018-09-17)
485
+
72
486
  [Full Changelog](https://github.com/fog/fog-aws/compare/v3.1.0...v3.2.0)
73
487
 
74
488
  **Merged pull requests:**
@@ -78,6 +492,7 @@
78
492
  - Rename Compute::AWS to AWS::Compute [\#468](https://github.com/fog/fog-aws/pull/468) ([sue445](https://github.com/sue445))
79
493
 
80
494
  ## [v3.1.0](https://github.com/fog/fog-aws/tree/v3.1.0) (2018-09-17)
495
+
81
496
  [Full Changelog](https://github.com/fog/fog-aws/compare/v3.0.0...v3.1.0)
82
497
 
83
498
  **Closed issues:**
@@ -109,6 +524,7 @@
109
524
  - SetInstanceProtection endpoint for auto scaling groups support [\#436](https://github.com/fog/fog-aws/pull/436) ([thorn](https://github.com/thorn))
110
525
 
111
526
  ## [v3.0.0](https://github.com/fog/fog-aws/tree/v3.0.0) (2018-04-23)
527
+
112
528
  [Full Changelog](https://github.com/fog/fog-aws/compare/v2.0.1...v3.0.0)
113
529
 
114
530
  **Closed issues:**
@@ -126,6 +542,7 @@
126
542
  - fog-core 2.x, fog-json 1.x [\#433](https://github.com/fog/fog-aws/pull/433) ([lanej](https://github.com/lanej))
127
543
 
128
544
  ## [v2.0.1](https://github.com/fog/fog-aws/tree/v2.0.1) (2018-02-28)
545
+
129
546
  [Full Changelog](https://github.com/fog/fog-aws/compare/v2.0.0...v2.0.1)
130
547
 
131
548
  **Closed issues:**
@@ -143,6 +560,7 @@
143
560
  - add france \(eu-west-3\) new region, fix \#424 [\#425](https://github.com/fog/fog-aws/pull/425) ([Val](https://github.com/Val))
144
561
 
145
562
  ## [v2.0.0](https://github.com/fog/fog-aws/tree/v2.0.0) (2017-11-28)
563
+
146
564
  [Full Changelog](https://github.com/fog/fog-aws/compare/v1.4.1...v2.0.0)
147
565
 
148
566
  **Closed issues:**
@@ -168,7 +586,7 @@
168
586
  - Update rds instance options model [\#406](https://github.com/fog/fog-aws/pull/406) ([carloslima](https://github.com/carloslima))
169
587
  - Drop Ruby\<2.0 support [\#405](https://github.com/fog/fog-aws/pull/405) ([tbrisker](https://github.com/tbrisker))
170
588
  - allow Gemfile-edge travis builds to fail [\#403](https://github.com/fog/fog-aws/pull/403) ([lanej](https://github.com/lanej))
171
- - Add `default\_for\_az` attribute to subnet [\#402](https://github.com/fog/fog-aws/pull/402) ([rzaharenkov](https://github.com/rzaharenkov))
589
+ - Add `default_for_az` attribute to subnet [\#402](https://github.com/fog/fog-aws/pull/402) ([rzaharenkov](https://github.com/rzaharenkov))
172
590
  - bundler ~\> 1.15 [\#399](https://github.com/fog/fog-aws/pull/399) ([lanej](https://github.com/lanej))
173
591
  - Fix detaching instances from auto scaling group. [\#397](https://github.com/fog/fog-aws/pull/397) ([rzaharenkov](https://github.com/rzaharenkov))
174
592
  - 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))
@@ -180,6 +598,7 @@
180
598
  - fix default\_security\_group detection [\#348](https://github.com/fog/fog-aws/pull/348) ([lanej](https://github.com/lanej))
181
599
 
182
600
  ## [v1.4.1](https://github.com/fog/fog-aws/tree/v1.4.1) (2017-08-23)
601
+
183
602
  [Full Changelog](https://github.com/fog/fog-aws/compare/v1.4.0...v1.4.1)
184
603
 
185
604
  **Closed issues:**
@@ -199,6 +618,7 @@
199
618
  - Fix AWS credential mocking [\#374](https://github.com/fog/fog-aws/pull/374) ([v-yarotsky](https://github.com/v-yarotsky))
200
619
 
201
620
  ## [v1.4.0](https://github.com/fog/fog-aws/tree/v1.4.0) (2017-06-14)
621
+
202
622
  [Full Changelog](https://github.com/fog/fog-aws/compare/v1.3.0...v1.4.0)
203
623
 
204
624
  **Closed issues:**
@@ -215,11 +635,12 @@
215
635
  - Add a top-level require that matches the gem name [\#367](https://github.com/fog/fog-aws/pull/367) ([lanej](https://github.com/lanej))
216
636
  - Fixed credential refresh when instance metadata host is inaccessible [\#366](https://github.com/fog/fog-aws/pull/366) ([ankane](https://github.com/ankane))
217
637
  - Handle multipart upload of empty files [\#365](https://github.com/fog/fog-aws/pull/365) ([fcheung](https://github.com/fcheung))
218
- - Add p2 instance types [\#362](https://github.com/fog/fog-aws/pull/362) ([Caged](https://github.com/Caged))
638
+ - Add p2 instance types [\#362](https://github.com/fog/fog-aws/pull/362) ([caged](https://github.com/caged))
219
639
  - Exponential backoff [\#361](https://github.com/fog/fog-aws/pull/361) ([VVMichaelSawyer](https://github.com/VVMichaelSawyer))
220
640
  - Skip call to instance metadata host if region is specified [\#360](https://github.com/fog/fog-aws/pull/360) ([ankane](https://github.com/ankane))
221
641
 
222
642
  ## [v1.3.0](https://github.com/fog/fog-aws/tree/v1.3.0) (2017-03-29)
643
+
223
644
  [Full Changelog](https://github.com/fog/fog-aws/compare/v1.2.1...v1.3.0)
224
645
 
225
646
  **Closed issues:**
@@ -235,6 +656,7 @@
235
656
  - Modify volume [\#350](https://github.com/fog/fog-aws/pull/350) ([ehowe](https://github.com/ehowe))
236
657
 
237
658
  ## [v1.2.1](https://github.com/fog/fog-aws/tree/v1.2.1) (2017-02-27)
659
+
238
660
  [Full Changelog](https://github.com/fog/fog-aws/compare/v1.2.0...v1.2.1)
239
661
 
240
662
  **Closed issues:**
@@ -250,6 +672,7 @@
250
672
  - Fix multipart upload [\#340](https://github.com/fog/fog-aws/pull/340) ([nobmurakita](https://github.com/nobmurakita))
251
673
 
252
674
  ## [v1.2.0](https://github.com/fog/fog-aws/tree/v1.2.0) (2017-01-20)
675
+
253
676
  [Full Changelog](https://github.com/fog/fog-aws/compare/v1.1.0...v1.2.0)
254
677
 
255
678
  **Closed issues:**
@@ -264,6 +687,7 @@
264
687
  - Fixes / improvements for AutoScaling [\#334](https://github.com/fog/fog-aws/pull/334) ([lanej](https://github.com/lanej))
265
688
 
266
689
  ## [v1.1.0](https://github.com/fog/fog-aws/tree/v1.1.0) (2016-12-16)
690
+
267
691
  [Full Changelog](https://github.com/fog/fog-aws/compare/v1.0.0...v1.1.0)
268
692
 
269
693
  **Closed issues:**
@@ -278,6 +702,7 @@
278
702
  - credential\_fetcher: Mark AWS metadata calls as idempotent [\#329](https://github.com/fog/fog-aws/pull/329) ([mtekel](https://github.com/mtekel))
279
703
 
280
704
  ## [v1.0.0](https://github.com/fog/fog-aws/tree/v1.0.0) (2016-12-12)
705
+
281
706
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.13.0...v1.0.0)
282
707
 
283
708
  **Merged pull requests:**
@@ -288,6 +713,7 @@
288
713
  - data pipeline mocks [\#318](https://github.com/fog/fog-aws/pull/318) ([ehowe](https://github.com/ehowe))
289
714
 
290
715
  ## [v0.13.0](https://github.com/fog/fog-aws/tree/v0.13.0) (2016-11-29)
716
+
291
717
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.12.0...v0.13.0)
292
718
 
293
719
  **Closed issues:**
@@ -306,7 +732,7 @@
306
732
  - Fixed some missing parts in change sets [\#322](https://github.com/fog/fog-aws/pull/322) ([nilroy](https://github.com/nilroy))
307
733
  - Add creation date and enhanced networking support for images [\#321](https://github.com/fog/fog-aws/pull/321) ([puneetloya](https://github.com/puneetloya))
308
734
  - Fix warnings in running tests [\#319](https://github.com/fog/fog-aws/pull/319) ([ebihara99999](https://github.com/ebihara99999))
309
- - Add `Fog::AWS::STS.Mock\#assume\_role` [\#316](https://github.com/fog/fog-aws/pull/316) ([pedrommonteiro](https://github.com/pedrommonteiro))
735
+ - Add `Fog::AWS::STS.Mock#assume_role` [\#316](https://github.com/fog/fog-aws/pull/316) ([pedrommonteiro](https://github.com/pedrommonteiro))
310
736
  - Ohio region [\#314](https://github.com/fog/fog-aws/pull/314) ([chanakyacool](https://github.com/chanakyacool))
311
737
  - mime types gem update [\#312](https://github.com/fog/fog-aws/pull/312) ([lucianosousa](https://github.com/lucianosousa))
312
738
  - fix S3 \#delete\_multiple\_objects for UTF-8 names [\#310](https://github.com/fog/fog-aws/pull/310) ([alepore](https://github.com/alepore))
@@ -316,6 +742,7 @@
316
742
  - Modify Db subnet group [\#293](https://github.com/fog/fog-aws/pull/293) ([chanakyacool](https://github.com/chanakyacool))
317
743
 
318
744
  ## [v0.12.0](https://github.com/fog/fog-aws/tree/v0.12.0) (2016-09-22)
745
+
319
746
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.11.0...v0.12.0)
320
747
 
321
748
  **Implemented enhancements:**
@@ -337,6 +764,7 @@
337
764
  - 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))
338
765
 
339
766
  ## [v0.11.0](https://github.com/fog/fog-aws/tree/v0.11.0) (2016-08-04)
767
+
340
768
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.10.0...v0.11.0)
341
769
 
342
770
  **Merged pull requests:**
@@ -348,13 +776,13 @@
348
776
  - Change DBSubnetGroup to DBSubnetGroupName model cluster while creation [\#279](https://github.com/fog/fog-aws/pull/279) ([chanakyacool](https://github.com/chanakyacool))
349
777
 
350
778
  ## [v0.10.0](https://github.com/fog/fog-aws/tree/v0.10.0) (2016-07-15)
779
+
351
780
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.9.4...v0.10.0)
352
781
 
353
782
  **Closed issues:**
354
783
 
355
784
  - How to setup private files with CloudFront? [\#275](https://github.com/fog/fog-aws/issues/275)
356
785
  - Feature: Custom Managed Policies [\#272](https://github.com/fog/fog-aws/issues/272)
357
- - Question: which aws-sdk version is used [\#270](https://github.com/fog/fog-aws/issues/270)
358
786
  - Support an IAM list\_attached\_role\_policies method [\#191](https://github.com/fog/fog-aws/issues/191)
359
787
 
360
788
  **Merged pull requests:**
@@ -365,6 +793,7 @@
365
793
  - add default region to use\_iam\_profile [\#268](https://github.com/fog/fog-aws/pull/268) ([shaiguitar](https://github.com/shaiguitar))
366
794
 
367
795
  ## [v0.9.4](https://github.com/fog/fog-aws/tree/v0.9.4) (2016-06-28)
796
+
368
797
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.9.3...v0.9.4)
369
798
 
370
799
  **Closed issues:**
@@ -379,6 +808,7 @@
379
808
  - 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))
380
809
 
381
810
  ## [v0.9.3](https://github.com/fog/fog-aws/tree/v0.9.3) (2016-06-20)
811
+
382
812
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.9.2...v0.9.3)
383
813
 
384
814
  **Closed issues:**
@@ -386,7 +816,7 @@
386
816
  - Users list is empty in Fog::AWS::IAM::Groups [\#256](https://github.com/fog/fog-aws/issues/256)
387
817
  - I'd like to configure my Excon read\_timeout and write\_timeout [\#254](https://github.com/fog/fog-aws/issues/254)
388
818
  - Bump fog-core to \>=1.38.0 [\#247](https://github.com/fog/fog-aws/issues/247)
389
- - 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)
819
+ - 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)
390
820
  - \[S3\] Bucket name gets duplicated in case of redirect from AWS [\#242](https://github.com/fog/fog-aws/issues/242)
391
821
  - CloudFormation stack tags cause describe\_stacks to break [\#240](https://github.com/fog/fog-aws/issues/240)
392
822
 
@@ -401,6 +831,7 @@
401
831
  - Add log warning message about when not on us-region [\#200](https://github.com/fog/fog-aws/pull/200) ([kitofr](https://github.com/kitofr))
402
832
 
403
833
  ## [v0.9.2](https://github.com/fog/fog-aws/tree/v0.9.2) (2016-03-23)
834
+
404
835
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.9.1...v0.9.2)
405
836
 
406
837
  **Closed issues:**
@@ -412,9 +843,11 @@
412
843
  - Aurora [\#238](https://github.com/fog/fog-aws/pull/238) ([ehowe](https://github.com/ehowe))
413
844
 
414
845
  ## [v0.9.1](https://github.com/fog/fog-aws/tree/v0.9.1) (2016-03-04)
846
+
415
847
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.8.2...v0.9.1)
416
848
 
417
849
  ## [v0.8.2](https://github.com/fog/fog-aws/tree/v0.8.2) (2016-03-04)
850
+
418
851
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.9.0...v0.8.2)
419
852
 
420
853
  **Merged pull requests:**
@@ -422,6 +855,7 @@
422
855
  - autoscaler attach/detatch [\#229](https://github.com/fog/fog-aws/pull/229) ([shaiguitar](https://github.com/shaiguitar))
423
856
 
424
857
  ## [v0.9.0](https://github.com/fog/fog-aws/tree/v0.9.0) (2016-03-03)
858
+
425
859
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.8.1...v0.9.0)
426
860
 
427
861
  **Closed issues:**
@@ -442,6 +876,7 @@
442
876
  - restore db instance fom db snapshot [\#217](https://github.com/fog/fog-aws/pull/217) ([ehowe](https://github.com/ehowe))
443
877
 
444
878
  ## [v0.8.1](https://github.com/fog/fog-aws/tree/v0.8.1) (2016-01-08)
879
+
445
880
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.8.0...v0.8.1)
446
881
 
447
882
  **Merged pull requests:**
@@ -449,6 +884,7 @@
449
884
  - Add new aws regions [\#213](https://github.com/fog/fog-aws/pull/213) ([atmos](https://github.com/atmos))
450
885
 
451
886
  ## [v0.8.0](https://github.com/fog/fog-aws/tree/v0.8.0) (2016-01-04)
887
+
452
888
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.7.6...v0.8.0)
453
889
 
454
890
  **Fixed bugs:**
@@ -481,7 +917,7 @@
481
917
  - make net/ssh require optional [\#197](https://github.com/fog/fog-aws/pull/197) ([geemus](https://github.com/geemus))
482
918
  - Cache cluster security group parser [\#190](https://github.com/fog/fog-aws/pull/190) ([eherot](https://github.com/eherot))
483
919
  - Allow region to be set for STS [\#189](https://github.com/fog/fog-aws/pull/189) ([fcheung](https://github.com/fcheung))
484
- - add cn support for s3 [\#187](https://github.com/fog/fog-aws/pull/187) ([ming-relax](https://github.com/ming-relax))
920
+ - add cn support for s3 [\#187](https://github.com/fog/fog-aws/pull/187) ([ming535](https://github.com/ming535))
485
921
  - mock instance stop and start properly [\#184](https://github.com/fog/fog-aws/pull/184) ([ehowe](https://github.com/ehowe))
486
922
  - Disable idempotent option when block is passed to get\_object [\#183](https://github.com/fog/fog-aws/pull/183) ([ghost](https://github.com/ghost))
487
923
  - 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))
@@ -489,6 +925,7 @@
489
925
  - properly mock rds name update [\#170](https://github.com/fog/fog-aws/pull/170) ([ehowe](https://github.com/ehowe))
490
926
 
491
927
  ## [v0.7.6](https://github.com/fog/fog-aws/tree/v0.7.6) (2015-08-26)
928
+
492
929
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.7.5...v0.7.6)
493
930
 
494
931
  **Closed issues:**
@@ -501,6 +938,7 @@
501
938
  - Mocked put\_bucket no longer clobbers existing bucket [\#174](https://github.com/fog/fog-aws/pull/174) ([jgr](https://github.com/jgr))
502
939
 
503
940
  ## [v0.7.5](https://github.com/fog/fog-aws/tree/v0.7.5) (2015-08-24)
941
+
504
942
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.7.4...v0.7.5)
505
943
 
506
944
  **Closed issues:**
@@ -522,6 +960,7 @@
522
960
  - update \#promote\_read\_replica mock [\#158](https://github.com/fog/fog-aws/pull/158) ([lanej](https://github.com/lanej))
523
961
 
524
962
  ## [v0.7.4](https://github.com/fog/fog-aws/tree/v0.7.4) (2015-07-30)
963
+
525
964
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.7.3...v0.7.4)
526
965
 
527
966
  **Fixed bugs:**
@@ -533,6 +972,7 @@
533
972
  - AutoScaling attach/detach ELB support + tests [\#156](https://github.com/fog/fog-aws/pull/156) ([nbfowler](https://github.com/nbfowler))
534
973
 
535
974
  ## [v0.7.3](https://github.com/fog/fog-aws/tree/v0.7.3) (2015-07-10)
975
+
536
976
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.7.2...v0.7.3)
537
977
 
538
978
  **Closed issues:**
@@ -544,6 +984,7 @@
544
984
  - encrypted storage on rds [\#153](https://github.com/fog/fog-aws/pull/153) ([ehowe](https://github.com/ehowe))
545
985
 
546
986
  ## [v0.7.2](https://github.com/fog/fog-aws/tree/v0.7.2) (2015-07-08)
987
+
547
988
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.7.1...v0.7.2)
548
989
 
549
990
  **Fixed bugs:**
@@ -555,6 +996,7 @@
555
996
  - fix \#change\_resource\_record\_sets [\#151](https://github.com/fog/fog-aws/pull/151) ([lanej](https://github.com/lanej))
556
997
 
557
998
  ## [v0.7.1](https://github.com/fog/fog-aws/tree/v0.7.1) (2015-07-08)
999
+
558
1000
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.7.0...v0.7.1)
559
1001
 
560
1002
  **Merged pull requests:**
@@ -563,6 +1005,7 @@
563
1005
  - Fix blank content-encoding headers [\#147](https://github.com/fog/fog-aws/pull/147) ([fcheung](https://github.com/fcheung))
564
1006
 
565
1007
  ## [v0.7.0](https://github.com/fog/fog-aws/tree/v0.7.0) (2015-07-07)
1008
+
566
1009
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.6.0...v0.7.0)
567
1010
 
568
1011
  **Closed issues:**
@@ -579,6 +1022,7 @@
579
1022
  - 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))
580
1023
 
581
1024
  ## [v0.6.0](https://github.com/fog/fog-aws/tree/v0.6.0) (2015-06-23)
1025
+
582
1026
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.5.0...v0.6.0)
583
1027
 
584
1028
  **Merged pull requests:**
@@ -586,6 +1030,7 @@
586
1030
  - Add support for AWS Lambda service [\#123](https://github.com/fog/fog-aws/pull/123) ([nomadium](https://github.com/nomadium))
587
1031
 
588
1032
  ## [v0.5.0](https://github.com/fog/fog-aws/tree/v0.5.0) (2015-06-17)
1033
+
589
1034
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.4.1...v0.5.0)
590
1035
 
591
1036
  **Merged pull requests:**
@@ -595,6 +1040,7 @@
595
1040
  - Add support for EC2 Container Service [\#120](https://github.com/fog/fog-aws/pull/120) ([nomadium](https://github.com/nomadium))
596
1041
 
597
1042
  ## [v0.4.1](https://github.com/fog/fog-aws/tree/v0.4.1) (2015-06-15)
1043
+
598
1044
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.4.0...v0.4.1)
599
1045
 
600
1046
  **Closed issues:**
@@ -614,6 +1060,7 @@
614
1060
  - model managed policies [\#126](https://github.com/fog/fog-aws/pull/126) ([lanej](https://github.com/lanej))
615
1061
 
616
1062
  ## [v0.4.0](https://github.com/fog/fog-aws/tree/v0.4.0) (2015-05-27)
1063
+
617
1064
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.3.0...v0.4.0)
618
1065
 
619
1066
  **Merged pull requests:**
@@ -621,6 +1068,7 @@
621
1068
  - model iam groups [\#121](https://github.com/fog/fog-aws/pull/121) ([lanej](https://github.com/lanej))
622
1069
 
623
1070
  ## [v0.3.0](https://github.com/fog/fog-aws/tree/v0.3.0) (2015-05-21)
1071
+
624
1072
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.2.2...v0.3.0)
625
1073
 
626
1074
  **Closed issues:**
@@ -633,9 +1081,11 @@
633
1081
  - Added a new request - describe\_instance\_attribute [\#110](https://github.com/fog/fog-aws/pull/110) ([nilroy](https://github.com/nilroy))
634
1082
 
635
1083
  ## [v0.2.2](https://github.com/fog/fog-aws/tree/v0.2.2) (2015-05-13)
1084
+
636
1085
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.2.1...v0.2.2)
637
1086
 
638
1087
  ## [v0.2.1](https://github.com/fog/fog-aws/tree/v0.2.1) (2015-05-13)
1088
+
639
1089
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.2.0...v0.2.1)
640
1090
 
641
1091
  **Merged pull requests:**
@@ -643,6 +1093,7 @@
643
1093
  - mocks for topic permissions [\#111](https://github.com/fog/fog-aws/pull/111) ([lanej](https://github.com/lanej))
644
1094
 
645
1095
  ## [v0.2.0](https://github.com/fog/fog-aws/tree/v0.2.0) (2015-05-13)
1096
+
646
1097
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.1.2...v0.2.0)
647
1098
 
648
1099
  **Implemented enhancements:**
@@ -669,13 +1120,14 @@
669
1120
  - 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))
670
1121
  - Fix repository URL in README.md [\#91](https://github.com/fog/fog-aws/pull/91) ([tricknotes](https://github.com/tricknotes))
671
1122
  - adding support for d2 instance type [\#90](https://github.com/fog/fog-aws/pull/90) ([yumminhuang](https://github.com/yumminhuang))
672
- - Support weight round robin mock [\#89](https://github.com/fog/fog-aws/pull/89) ([freddy1666](https://github.com/freddy1666))
1123
+ - Support weight round robin mock [\#89](https://github.com/fog/fog-aws/pull/89) ([freddy61025](https://github.com/freddy61025))
673
1124
  - Update README.md [\#87](https://github.com/fog/fog-aws/pull/87) ([nomadium](https://github.com/nomadium))
674
1125
  - Add mock for EC2 request\_spot\_instances API request [\#86](https://github.com/fog/fog-aws/pull/86) ([nomadium](https://github.com/nomadium))
675
1126
  - Move more requires to autoload [\#85](https://github.com/fog/fog-aws/pull/85) ([plribeiro3000](https://github.com/plribeiro3000))
676
1127
  - Add mock for EC2 describe\_spot\_price\_history API request [\#84](https://github.com/fog/fog-aws/pull/84) ([nomadium](https://github.com/nomadium))
677
1128
 
678
1129
  ## [v0.1.2](https://github.com/fog/fog-aws/tree/v0.1.2) (2015-04-07)
1130
+
679
1131
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.1.1...v0.1.2)
680
1132
 
681
1133
  **Closed issues:**
@@ -705,6 +1157,7 @@
705
1157
  - Add support for cname buckets [\#61](https://github.com/fog/fog-aws/pull/61) ([dsgh](https://github.com/dsgh))
706
1158
 
707
1159
  ## [v0.1.1](https://github.com/fog/fog-aws/tree/v0.1.1) (2015-02-25)
1160
+
708
1161
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.1.0...v0.1.1)
709
1162
 
710
1163
  **Closed issues:**
@@ -726,6 +1179,7 @@
726
1179
  - don't allow sg authorization to unknown sgs [\#49](https://github.com/fog/fog-aws/pull/49) ([lanej](https://github.com/lanej))
727
1180
 
728
1181
  ## [v0.1.0](https://github.com/fog/fog-aws/tree/v0.1.0) (2015-02-03)
1182
+
729
1183
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.8...v0.1.0)
730
1184
 
731
1185
  **Closed issues:**
@@ -737,21 +1191,11 @@
737
1191
  - 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))
738
1192
  - get signin token for federation [\#45](https://github.com/fog/fog-aws/pull/45) ([ehowe](https://github.com/ehowe))
739
1193
  - add 'volumeType' and 'encrypted' to blockDeviceMapping parser [\#43](https://github.com/fog/fog-aws/pull/43) ([ichii386](https://github.com/ichii386))
740
- - default namespace and evaluation period on alarm [\#37](https://github.com/fog/fog-aws/pull/37) ([michelleN](https://github.com/michelleN))
741
-
742
- ## [v0.0.8](https://github.com/fog/fog-aws/tree/v0.0.8) (2015-01-27)
743
- [Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.7...v0.0.8)
744
-
745
- **Closed issues:**
746
-
747
- - NoMethodError - undefined method `signature\_parameters' for nil:NilClass [\#28](https://github.com/fog/fog-aws/issues/28)
748
-
749
- **Merged pull requests:**
750
-
751
1194
  - add missing mocks [\#41](https://github.com/fog/fog-aws/pull/41) ([michelleN](https://github.com/michelleN))
752
1195
  - Add idempotent excon option to some route53 API calls [\#40](https://github.com/fog/fog-aws/pull/40) ([josacar](https://github.com/josacar))
753
1196
  - Allow for AWS errors not specifying region [\#39](https://github.com/fog/fog-aws/pull/39) ([greysteil](https://github.com/greysteil))
754
1197
  - correct engine version param on rds replicas [\#38](https://github.com/fog/fog-aws/pull/38) ([lanej](https://github.com/lanej))
1198
+ - default namespace and evaluation period on alarm [\#37](https://github.com/fog/fog-aws/pull/37) ([michelleN](https://github.com/michelleN))
755
1199
  - \[AWS|Autoscaling\] Add missing ebs attributes to describe\_launch\_configurations [\#35](https://github.com/fog/fog-aws/pull/35) ([fcheung](https://github.com/fcheung))
756
1200
  - \[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))
757
1201
  - 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))
@@ -760,7 +1204,16 @@
760
1204
  - Add PlacementTenancy to launch configuration parser and test case [\#29](https://github.com/fog/fog-aws/pull/29) ([benpillet](https://github.com/benpillet))
761
1205
  - Use Fog::Formatador [\#27](https://github.com/fog/fog-aws/pull/27) ([ghost](https://github.com/ghost))
762
1206
 
1207
+ ## [v0.0.8](https://github.com/fog/fog-aws/tree/v0.0.8) (2015-01-27)
1208
+
1209
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.7...v0.0.8)
1210
+
1211
+ **Closed issues:**
1212
+
1213
+ - NoMethodError - undefined method `signature\_parameters' for nil:NilClass [\#28](https://github.com/fog/fog-aws/issues/28)
1214
+
763
1215
  ## [v0.0.7](https://github.com/fog/fog-aws/tree/v0.0.7) (2015-01-23)
1216
+
764
1217
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.6...v0.0.7)
765
1218
 
766
1219
  **Closed issues:**
@@ -773,6 +1226,7 @@
773
1226
  - Support for VPC Classic Link [\#3](https://github.com/fog/fog-aws/pull/3) ([fcheung](https://github.com/fcheung))
774
1227
 
775
1228
  ## [v0.0.6](https://github.com/fog/fog-aws/tree/v0.0.6) (2015-01-12)
1229
+
776
1230
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.5...v0.0.6)
777
1231
 
778
1232
  **Closed issues:**
@@ -785,24 +1239,33 @@
785
1239
  - another attempt at s3 region redirecting [\#2](https://github.com/fog/fog-aws/pull/2) ([geemus](https://github.com/geemus))
786
1240
 
787
1241
  ## [v0.0.5](https://github.com/fog/fog-aws/tree/v0.0.5) (2015-01-06)
1242
+
788
1243
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.4...v0.0.5)
789
1244
 
790
1245
  ## [v0.0.4](https://github.com/fog/fog-aws/tree/v0.0.4) (2015-01-04)
1246
+
791
1247
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.3...v0.0.4)
792
1248
 
793
1249
  ## [v0.0.3](https://github.com/fog/fog-aws/tree/v0.0.3) (2015-01-02)
1250
+
794
1251
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.2...v0.0.3)
795
1252
 
796
1253
  ## [v0.0.2](https://github.com/fog/fog-aws/tree/v0.0.2) (2015-01-02)
1254
+
797
1255
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.1...v0.0.2)
798
1256
 
799
1257
  ## [v0.0.1](https://github.com/fog/fog-aws/tree/v0.0.1) (2015-01-02)
1258
+
800
1259
  [Full Changelog](https://github.com/fog/fog-aws/compare/rm...v0.0.1)
801
1260
 
802
1261
  ## [rm](https://github.com/fog/fog-aws/tree/rm) (2014-11-27)
1262
+
803
1263
  [Full Changelog](https://github.com/fog/fog-aws/compare/fog-brightbox_v0.0.1...rm)
804
1264
 
805
1265
  ## [fog-brightbox_v0.0.1](https://github.com/fog/fog-aws/tree/fog-brightbox_v0.0.1) (2014-02-19)
806
1266
 
1267
+ [Full Changelog](https://github.com/fog/fog-aws/compare/d496bcd266d584ffcded6e265e8166138a3fb22a...fog-brightbox_v0.0.1)
1268
+
1269
+
807
1270
 
808
- \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
1271
+ \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*