forked from aws/aws-sdk-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
5798 lines (4495 loc) · 243 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2013-11-27 Alex Wood <[email protected]>
* doc-src/EC2/V20131001.yml, lib/aws/api_config/EC2-2013-10-01.yml: Amazon
EC2 API Update
Added support for pagination of the describe_instances and describe_tags
operations to the Amazon EC2 client.
Added support for the new C3 instance types and the g2.2xlarge instance
type to the Amazon EC2 client.
Added support for enabling Single Root I/O Virtualization (SR-IOV)
support for the new C3 instance types to the Amazon EC2 client.
2013-11-26 Sean McCann <[email protected]>
* lib/aws/sns/topic.rb: Fix spelling error in comment
* features/cloud_formation/stacks.feature,
features/cloud_formation/step_definitions/stacks.rb,
lib/aws/cloud_formation/stack_collection.rb,
spec/aws/cloud_formation/stack_collection_spec.rb: Resolved an issue where
the `AWS::CloudFormation::Stacks#with_status` would not apply the filter.
Updated the unit tests and added an integration test that
exercises this feature.
Fixes #419
2013-11-23 Trevor Rowe <[email protected]>
* lib/aws/version.rb: Bump version to 1.28.1
2013-11-22 Trevor Rowe <[email protected]>
* lib/aws/core.rb: Replaced autoload relative paths with expanded paths.
This eliminates load order issues with aws-sdk-core.
See (https://github.com/aws/aws-sdk-core-ruby/issues/15)
2013-11-21 Alex Wood <[email protected]>
* README.md: Update README
Include new Amazon RDS API version in README file.
* ChangeLog, lib/aws/version.rb: Bump version to 1.28.0
* doc-src/RDS/V20130909.yml, lib/aws/api_config/RDS-2013-09-09.yml,
lib/aws/rds/client.rb: Add New API Version for Amazon RDS 2013-09-09
This release of the Amazon Relational Database Service (RDS) introduces
support
for copying DB snapshots from one AWS region to another. The release also
includes a new Amazon RDS API version, 2013-09-09.
* features/s3/high_level/step_definitions/urls.rb,
features/s3/high_level/urls.feature, lib/aws/s3/s3_object.rb: Added support
for canned ACLs to S3 presigned urls.
Example:
bucket.objects['target-key'].url_for(:write, :acl => :public_read)
Fixes #412
2013-11-20 Trevor Rowe <[email protected]>
* lib/aws/s3/s3_object.rb, spec/aws/s3/s3_object_encrypt_spec.rb,
spec/aws/s3/s3_object_spec.rb: A fix/workaround for streaming encrypted IO
objects via S3.
The `AWS::S3::CipherIO` class has a bug that causes it to report
`#eof?` before reaching the end of the stream if `#read` is called
with a number of bytes not divisible by 16.
This patch works around this limitation by causing the multipart
uploader to always use part sizes evenly divisible by 16. CipherIO
is a private/undocumented class, but this is a shim. CipherIO
should be updated to properly work when `#read` is called on the
non-final chunk with an odd number of bytes.
The underlying cause is the internal encryption cipher
buffers internally and only returns values 16 bytes at a time.
Using an internal buffer in CipherIO could solve this problem.
Fixes #414
* lib/aws/core/rest_request_builder.rb, lib/aws/s3/data_options.rb: Fixed a
bug with Ruby 1.8 and how StringIO#path.
It was assumed that IO objects responding to `#path` could be
given to `File.size`. This is incorrect for Ruby 1.8.7, where
`StringIO` responds to `#path`, returning `nil`.
This check has been expanded to responds to path and path not nil.
2013-11-19 Trevor Rowe <[email protected]>
* Gemfile: Added a nokogiri dependendency to the Gemfile for local
development.
This allows the travis-ci build for 1.8.7 to install Nokogiri < 1.6
which is required for unit tests.
* lib/aws/cloud_watch/request.rb: Updating AWS::CloudWatch to use sigv4.
* lib/aws/core/rest_request_builder.rb, lib/aws/s3/data_options.rb: Now
using File.size to determine file size for File/Tempfile objects.
It is possible for a File/Tempfile to report an incorrect value
from `#size`. This change causes the SDK to prefer the response
from `File.size(file.path)` over `file.size`.
See https://github.com/thoughtbot/paperclip/issues/751
* lib/aws/version.rb: Bump version to 1.27.0
2013-11-14 Alex Wood <[email protected]>
* README.md, lib/aws/core/region.rb: Add AWS CloudTrail to README and Region
File
* ChangeLog, lib/aws/version.rb: Bump version to 1.26.0
* doc-src/CloudTrail/V20131101.yml, endpoints.json,
features/cloud_trail/client.feature,
features/cloud_trail/step_definitions/client.rb,
features/cloud_trail/step_definitions/cloud_trail.rb,
lib/aws/api_config/CloudTrail-2013-11-01.yml, lib/aws/cloud_trail.rb,
lib/aws/cloud_trail/client.rb, lib/aws/cloud_trail/config.rb,
lib/aws/cloud_trail/errors.rb, lib/aws/cloud_trail/request.rb,
lib/aws/core.rb, spec/aws/cloud_trail_spec.rb: Initial Support for AWS
CloudTrail
AWS CloudTrail is a web service that records AWS API calls for your account
and
delivers log files to you. The recorded information includes the identity of
the
API caller, the time of the API call, the source IP address of the API
caller,
the request parameters, and the response elements returned by the AWS
service.
2013-11-13 Alex Wood <[email protected]>
* doc-src/IAM/V20100508.yml, lib/aws/api_config/IAM-2010-05-08.yml: API
Updates to AWS Identity and Access Management
With this release of AWS Identity and Access Management (IAM), you can
enable
identity federation using SAML 2.0 (Security Assertion Markup Language 2.0),
an
open standard. This feature enables federated single sign-on, or SSO, which
lets
users log into the AWS Management Console or make programmatic calls to AWS
APIs
using authentication responses (assertions) from a SAML-compliant identity
provider.
* doc-src/STS/V20110615.yml, lib/aws/api_config/STS-2011-06-15.yml: Add SAML
support for AWS Security Token Service
Includes a new AWS Security Token Service (STS) API action called
AssumeRoleWithSAML that returns a set of temporary security credentials for
users who have been authenticated via a SAML authentication response.
* doc-src/Redshift/V20121201.yml,
lib/aws/api_config/Redshift-2012-12-01.yml: API Updates to Amazon Redshift
This release for Amazon Redshift includes several new features related to
event
notifications, encryption, audit logging, data load from external hosts, WLM
configuration, and database distribution styles and functions.
2013-11-12 Trevor Rowe <[email protected]>
* lib/aws/core/response.rb: Rewinding the body before re-signing. This
affects sigv4 signed retries.
2013-11-11 Trevor Rowe <[email protected]>
* lib/aws/dynamo_db/table.rb: Removed a documentation note about reducing
provisioned capacity that was incorrect.
Fixes #406
2013-11-08 Alex Wood <[email protected]>
* README.md: Update README
Add new AWS Storage Gateway API version to README.
* ChangeLog, lib/aws/version.rb: Bump version to 1.25.0
* doc-src/CloudFormation/V20100515.yml,
lib/aws/api_config/CloudFormation-2010-05-15.yml: API Updates for AWS
CloudFormation
* doc-src/ElasticTranscoder/V20120925.yml,
lib/aws/api_config/ElasticTranscoder-2012-09-25.yml: API Updates for Amazon
Elastic Transcoder
* doc-src/ELB/V20120601.yml, lib/aws/api_config/ELB-2012-06-01.yml: Add
Cross-Zone Balancing to Elastic Load Balancing
Updates AWS::ELB::Client.
* doc-src/StorageGateway/V20130630.yml,
features/storage_gateway/client.feature,
lib/aws/api_config/StorageGateway-2013-06-30.yml,
lib/aws/storage_gateway/client.rb: New API Version 2013-06-30 for AWS
Storage Gateway
AWS Storage Gateway now supports Gateway-VTL.
AWS::StorageGateway::Client supports the '2012-06-30' and '2013-06-30' API
versions, this change defaults users to the '2013-06-30' version and updates
tests to handle this version.
* lib/aws/core.rb, lib/aws/core/configuration.rb: Updating documentation
about :max_retries to include information about throttling errors.
2013-11-06 Torsten Becker <[email protected]>
* lib/aws/sns/subscription.rb, spec/aws/sns/subscription_spec.rb: Support
RawMessageDelivery on SNS subscriptions.
2013-11-03 Kyle VanderBeek <[email protected]>
* README.md, aws-sdk.gemspec: Remove Nokogiri < 1.6 restriction and explain
in the README how to get things working on Ruby 1.8.x.
2013-11-02 osamu1203 <[email protected]>
* lib/aws/s3/uploaded_part.rb: Fixed raise message
2013-10-31 Alex Wood <[email protected]>
* doc-src/ElastiCache/V20121115.yml: Remove Unused Amazon ElastiCache
Documentation
An older client doc source was causing the AWS::ElastiCache::Client docs
to be out of date. This change deletes the offending file.
* lib/aws/auto_scaling/scheduled_action.rb,
lib/aws/auto_scaling/scheduled_action_collection.rb,
spec/aws/auto_scaling/scheduled_action_collection_spec.rb,
spec/aws/auto_scaling/scheduled_action_spec.rb: Fixed a bug with AutoScaling
scheduled actions.
The `AWS::AutoScaling::ScheduledAction` class incorrectly assumed that their
group names were unique and suffient to identify the action. In order to
correct
this bug, it was required to add a new positional required argument to the
`ScheduledAction` constructor. This affects two code paths.
First, the scheduled action collection must now be scoped by a group:
# now raises an error, must scope to a group first
auto_scaling.scheduled_actions['name']
# this works
auto_scaling.groups['group-name'].scheduled_actions['name']
# this also works
auto_scaling.scheduled_actions.filter(:group => 'group-name')['name']
Also the constructor now requires a group:
# no longer works, raises error
AWS::AutoScaling::ScheduledAction.new('name')
# this works
group = AWS::AutoScaling::Group.new('group-name')
AWS::AutoScaling::ScheduledAction.new(group, 'name')
* lib/aws/ec2/elastic_ip.rb: Allow the ability to supply private IP to the
associate method and use a particular secondary IP on an ENI
* ChangeLog, lib/aws/version.rb: Bump version to 1.24.0
2013-10-30 Alex Wood <[email protected]>
* doc-src/ElastiCache/V20130615.yml,
lib/aws/api_config/ElastiCache-2013-06-15.yml: Amazon ElastiCache Updates
Update ElastiCache docs to latest version, adds an optional parameter and
makes
some required parameters optional.
* lib/aws/ec2/volume_collection.rb: Update volume_collection.rb
VolumeCollection#each docs says that the method yields on the Instance. It
actually yields on the Volume. Update docs to reflect clode
2013-10-28 Alex Wood <[email protected]>
* doc-src/EMR/V20090331.yml, lib/aws/api_config/EMR-2009-03-31.yml: API
Updates for Amazon Elastic MapReduce
* lib/aws/s3/client.rb, spec/aws/s3/client_spec.rb: Support S3 GET Object
torrent
2013-01-28 Bernat Foj Capell <[email protected]>
* lib/aws/api_config/EC2-2013-08-15.yml,
lib/aws/api_config/EC2-2013-10-01.yml: Updated API definition of Monitoring
field in request_spot_instances method
* ChangeLog, lib/aws/version.rb: Bump version to 1.8.1.1
* .travis.yml: Removed REE from travis configuration, currently broken on
travis-ci.org.
* aws-sdk.gemspec: Removed HTTParty from gem specification.
* ChangeLog, lib/aws/version.rb: Bump version to 1.8.1
* features/elastic_transcoder/client.feature,
features/elastic_transcoder/step_definitions/client.rb,
features/elastic_transcoder/step_definitions/elastic_transcoder.rb,
features/iam/step_definitions/iam.rb,
features/iam/step_definitions/roles.rb,
lib/aws/elastic_transcoder/client.rb: Added support for Elastic Transcoding
errors and some integration tests.
2013-10-26 Michael H. Oshita <[email protected]>
* lib/aws/core/credential_providers.rb: fixed typo
cashed -> cached
2013-10-24 Alex Wood <[email protected]>
* README.md: Add all supported CloudFront API versions to README
* ChangeLog, lib/aws/version.rb: Bump version to 1.23.0
* features/direct_connect/step_definitions/client.rb: Update AWS
DirectConnect Integration Test
Cucumber test points to a method now removed, change test to
point to a new function.
* README.md: Fix README Tables
* doc-src/DirectConnect/V20121025.yml,
lib/aws/api_config/DirectConnect-2012-10-25.yml: Update AWS DirectConnect to
latest API Version
2013-10-22 Jason LaPier <[email protected]>
* lib/aws/ec2/instance_collection.rb: delete the associate_public_ip_address
option from create instance params whether it is true or false
2013-10-20 Joel Van Horn <[email protected]>
* lib/aws/s3/s3_object.rb: Fixed link
* lib/aws/s3/tree.rb: fix documentation typo from 20011 to 2011
2013-10-18 Alex Wood <[email protected]>
* ChangeLog, lib/aws/version.rb: Bump version to 1.22.1
* lib/aws/core/json_parser.rb: Handle Null Values in JSON Parser
* lib/aws/ec2/instance_collection.rb: adds public IP option to instances in
VPC
allows you to pass :associate_public_ip_address to
InstanceCollection#create,
and applies this value to the network interface options.
NOTE: in order for this to work, a couple of other options have to be moved
out of the base and into the network interface:
private_ip_address, subnet, and security_group_ids
* lib/aws/s3/s3_object.rb: S3Object#url_for docummentation update
2013-10-17 Alex Wood <[email protected]>
* lib/aws/cloud_front/client.rb: Support Older CloudFront Clients
* README.md: Fix Amazon CloudFront Version in README
* ChangeLog, lib/aws/version.rb: Bump version to 1.22.0
* doc-src/ElasticTranscoder/V20120925.yml,
lib/aws/api_config/ElasticTranscoder-2012-09-25.yml: Audio-Only Support for
Amazon Elastic Transcoder.
Adds support for audio-only transcoding features in Amazon Elastic
Transcoder.
* doc-src/CloudFront/V20130927.yml,
lib/aws/api_config/CloudFront-2013-09-27.yml, lib/aws/cloud_front/client.rb:
Amazon CloudFront API Version Bump to 2013-09-27
* spec/aws/dynamo_db/client_versions_spec.rb: Fixed spec that was using 1.9+
syntax to work with 1.8
* lib/aws/core/xml/frame_stack.rb,
lib/aws/core/xml/sax_handlers/nokogiri.rb,
lib/aws/core/xml/sax_handlers/rexml.rb: Fixed the REXML xml parser.
Fixes #318
* lib/aws/core/client.rb, spec/aws/dynamo_db/client_versions_spec.rb: When
constructing a client, the API version can be specified via the :config
option.
Here is an example of the behavior that was fixed:
config = AWS.config.with(dynamo_db: { api_version: '2012-08-10' })
AWS::DynamoDB::Client.new(config: config)
#=> #<AWS::DynamoDB::Client::V20120810>
Fixed #355
* features/dynamo_db/scan.feature,
features/dynamo_db/step_definitions/dynamo_db.rb,
features/dynamo_db/step_definitions/scan.rb,
lib/aws/dynamo_db/item_collection.rb: Fixed a bug in
AWS::DynamoDB::ItemCollection#first
When calling `#first` on a collection with a where collection,
the `:limit` param was incorrectly being used, causing many
extra requets.
Fixes #385
* lib/aws/s3/object_collection.rb: Corrected the documentation for
AWS::S3::ObjectCollection#create.
Fixes #368
* lib/aws/simple_db/item_collection.rb,
spec/aws/simple_db/item_collection_spec.rb: Fixed issue with
SimpleDB::ItemCollection#where.
If a placeholder received a substituted value that looked
like another placeholder, then an `ArgumentError` was
raised.
Now placeholders in the final string are checked against the
original to see if they are actual placeholders that were
not replaced before raising.
Fixes #386
* README.md: Updated the list of supported AWS API versions in the README.
* lib/aws/core/rest_request_builder.rb: Fixed an issue with uploading files
to Glacier in Ruby 1.8.
2013-10-10 Dan Fried <[email protected]>
* lib/aws/sts/config.rb: Add conditional to STS to work with both govcloud
and commercial API endpoints
2013-10-09 Trevor Rowe <[email protected]>
* ChangeLog, lib/aws/version.rb: Bump version to 1.21.0
* doc-src/EC2/V20131001.yml, lib/aws/api_config/EC2-2013-10-01.yml,
lib/aws/ec2/client.rb: Added support for Reserved Instance instance type
modifications in Amazon EC2 (API version 2013-10-01).
* doc-src/OpsWorks/V20130218.yml,
lib/aws/api_config/OpsWorks-2013-02-18.yml: Added support for new resource
management features in AWS OpsWorks.
2013-10-04 Andy Brody <[email protected]>
* spec/aws/iam/signing_certificate_spec.rb: Add test for signing cert
upload_date.
* lib/aws/iam/signing_certificate.rb: Expose upload_date attribute on
certificates.
* spec/aws/iam/access_key_spec.rb: Add test of create_date.
* lib/aws/iam/access_key.rb: Expose the create_date attribute of access
keys.
* samples/sns/publish.rb: Update publish.rb
2013-10-03 Bouke van der Bijl <[email protected]>
* lib/aws/s3/data_options.rb, spec/aws/s3/s3_object_spec.rb: Duplicate
frozen strings before forcing the encoding to prevent a RuntimeError
2013-10-01 Alex Wood <[email protected]>
* ChangeLog, lib/aws/version.rb: Bump version to 1.20.0
* doc-src/CloudFront/V20130826.yml,
lib/aws/api_config/CloudFront-2013-08-26.yml, lib/aws/cloud_front/client.rb:
Update API version for Amazon CloudFront.
2013-09-27 Volker Tietz <[email protected]>
* lib/aws/auto_scaling/launch_configuration.rb,
lib/aws/auto_scaling/launch_configuration_collection.rb,
spec/aws/auto_scaling/launch_configuration_collection_spec.rb,
spec/aws/auto_scaling/launch_configuration_spec.rb: Added support for
AssociatePublicIpAddress option in LaunchConfiguration. Fixes Issue #372
2013-09-24 Dan Fried <[email protected]>
* endpoints.json, lib/aws/sts/config.rb: Add Simple Token Service API
support for Govcloud region, which has a different API endpoint
2013-09-20 Alex Wood <[email protected]>
* ChangeLog, lib/aws/version.rb: Bump version to 1.19.0
* doc-src/AutoScaling/V20110101.yml,
lib/aws/api_config/AutoScaling-2011-01-01.yml: API Updates for Auto Scaling
* lib/aws/s3/s3_object.rb: Add documentation for setting Content-Disposition
in copy_from
#66 added support for setting the Content-Disposition header in `copy_from`,
but the documentation didn't reflect that this new option was available.
2013-09-19 Markus Krogemann <[email protected]>
* lib/aws/route_53/change_info.rb: fix documentation: replace 'alarm' with
'change'
2013-09-16 Loren Segal <[email protected]>
* aws-sdk.gemspec: Give Bundler a hint about which Nokogiri version to use.
Bundler seems to have problems resolving version conflicts with
less-than constraints (as per bundler/bundler#2593), so provide a
greater-or-equal-to constraint as well to give Bundler a hint.
Closes #361
* tasks/docs.rake: Add SITEMAP_BASEURL to docs task
2013-09-14 Loren Segal <[email protected]>
* Gemfile: Use 1.8 syntax in Gemfile
* .yardopts: Use yard-sitemap plugin when generating documentation
* Gemfile: Add yard-sitemap to Gemfile, update rdiscount gem location
2013-09-13 Alex Wood <[email protected]>
* lib/aws/s3/client.rb: Add parameter validation to put_bucket_cors
Adds validation that two required parameters in
AWS::S3::Client#put_bucket_cors
are present and match the type requirements.
Resolves Issue #357
2013-09-11 Alex Wood <[email protected]>
* README.md: Update EC2 Version in README
* ChangeLog, lib/aws/version.rb: Bump version to 1.18.0
* doc-src/EC2/V20130201.yml, doc-src/EC2/V20130815.yml,
lib/aws/api_config/EC2-2013-07-15.yml,
lib/aws/api_config/EC2-2013-08-15.yml, lib/aws/ec2/client.rb: Upgrade
AWS::EC2::Client to latest API version.
Upgrades AWS::EC2::Client to 2013-08-15 API version. Includes modifications
to
Amazon EC2 Reserved Instances API.
2013-09-10 Trevor Rowe <[email protected]>
* features/glacier/step_definitions/vaults.rb,
features/glacier/vaults.feature, lib/aws/glacier/vault.rb: Fixed a bug with
Glacier::Vault attributes.
2013-09-09 Alex Wood <[email protected]>
* doc-src/OpsWorks/V20130218.yml,
lib/aws/api_config/OpsWorks-2013-02-18.yml: Update AWS OpsWorks to latest
API version.
Adds VPC support to AWS OpsWorks.
2013-09-06 Trevor Rowe <[email protected]>
* lib/aws/s3/client.rb: Moved code from the s3 versioned client into the
base client class.
This fixes a few broken specs.
2013-09-05 Trevor Rowe <[email protected]>
* lib/aws/core/client.rb, lib/aws/s3/client.rb: Resolved an issue where
service client classes returned an empty list from .operations
The versioned client classes correctly return the list of operations
they support. The service client class now proxies the call to the
versioned client class.
2013-09-04 Alex Wood <[email protected]>
* ChangeLog, lib/aws/version.rb: Bump version to 1.17.0
* README.md, doc-src/ElastiCache/V20130615.yml,
lib/aws/api_config/ElastiCache-2012-11-15.yml,
lib/aws/api_config/ElastiCache-2013-06-15.yml,
lib/aws/elasticache/client.rb: Add Redis support to Amazon ElastiCache
Updates the AWS::ElastiCache::Client class to the latest API version.
* lib/aws/simple_workflow.rb: fix AWS::SimpleWorkflow documentation example.
2013-09-03 Kyle Dayton <[email protected]>
* lib/aws/simple_email_service.rb, spec/aws/simple_email_service_spec.rb:
Updated Spec for simple email service
* lib/aws/simple_email_service.rb: Updated SimpleEmailService#send_email and
#send_raw_email to return Message ID instead of nil
* README.md: Bump EC2 API version in README
2013-08-30 Alex Wood <[email protected]>
* ChangeLog, lib/aws/version.rb: Bump version to 1.16.1
* lib/aws/api_config/EC2-2013-02-01.yml,
lib/aws/api_config/EC2-2013-07-15.yml, lib/aws/ec2/client.rb: Correct EC2
Client Version to 2013-07-15
2013-08-29 Alex Wood <[email protected]>
* ChangeLog, lib/aws/version.rb: Bump version to 1.16.0
2013-08-28 Alex Wood <[email protected]>
* lib/aws/simple_workflow/request.rb: Upgrade AWS::SimpleWorkflow to SigV4
* doc-src/EC2/V20130201.yml, lib/aws/api_config/EC2-2013-02-01.yml: API
Update for Amazon EC2
Updates AWS::EC2::Client to support public IPs in VPC, and an optional
dry run flag.
* lib/aws/core/configuration.rb, spec/aws/dynamo_db_spec.rb: Test failure
fixes for DynamoDB.
The way we dealt with the configuration in the previous change on
DynamoDB clients had knock on effects to clients of, for example,
Simple Email Service. Fixed those, and updated tests for DynamoDB
to handle the different way we instantiate its client.
* features/dynamo_db/step_definitions/versioning.rb,
features/dynamo_db/versioning.feature, lib/aws/core/configuration.rb,
lib/aws/dynamo_db.rb: Make AWS::DynamoDB use legacy client.
The higher level abstractions provided for DynamoDB only work fully with
the legacy version of the low-level client. This change forces the higher
level abstractions to fall back to the legacy client API, but allows use of
the new client-level API directly.
2013-08-26 Alex Wood <[email protected]>
* lib/aws/s3/object_metadata.rb, lib/aws/s3/s3_object.rb: Deprecated
AWS::S3::ObjectMetadata#[]=
Marked AWS::S3::ObjectMetadata#[]= as deprecated and updated documentation
to include a warning note on unexpected changes to metadata and values it
does not set. Updated AWS::S3::S3Object#copy_from documentation to explain
risks of setting metadata hash without copying previous values.
Resolves Issue #325
2013-08-23 Alex Wood <[email protected]>
* spec/aws/dynamo_db/table_spec.rb: Make AWS::DynamoDB::Table tests support
1.8.7
Ruby 1.8.7 doesn't support Time.new with parameters. Using Time.now
instead since that is sufficient for the cases covered.
* features/dynamo_db/step_definitions/tables.rb,
features/dynamo_db/tables.feature, lib/aws/dynamo_db/table.rb,
spec/aws/dynamo_db/table_spec.rb: Add high level methods to
AWS::DynamoDB::Table
Adds item_count and size_bytes to the Amazon DynamoDB high level
abstraction layer. Relevant Cucumber and RSpec tests included to
make the process of adding these for later releases a little easier.
2013-08-22 Jon <[email protected]>
* lib/aws/sqs/errors.rb: Update documentation for BatchSendError.
Note that the previous documentation was copied from
BatchChangeVisibilityError and contained inaccuracies.
* lib/aws/sqs/queue.rb, spec/aws/sqs/queue_spec.rb: Add body and index to
BatchSendError.failures
* Add :message_body and :batch_index to entries in BatchSendError.failures.
* Updates specs to reflect this
Updates specs to reflect the changes.
* lib/aws/core/xml/sax_handlers/nokogiri.rb, lib/aws/s3/client.rb,
lib/aws/s3/client/xml.rb, spec/aws/s3/client_spec.rb: Add AWS::S3::Client
Bucket Logging Methods
Adds the following methods and associated tests:
AWS::S3::Client#get_bucket_logging
AWS::S3::Client#put_bucket_logging
Also adds a method to the Nokogiri Sax Handler to handle comments
in XML by ignoring them.
* spec/aws/s3/client_spec.rb, spec/aws/simple_email_service_spec.rb,
spec/aws/sqs/queue_spec.rb, spec/shared/aws_client_examples.rb: Replaced
#stub! calls with #stub to silence rspec deprecation warnings.
* lib/aws/core/configuration.rb, spec/aws_spec.rb: Resolved an issue where
config might get stuck in a recursive loop.
When building a service endpoint, the region is used to construct the
default endpoint. When attempting to determine the region, the endpoint
is is parsed (recursive loop).
The recent patch to make endpoint use the svc region instead of the global
region uncovered this bug. This patch stops the loops by changing the logic
in #svc_endpoint to used only the explicitly configured regions, and never
a region guessed from the endpoint.
* lib/aws/core/configuration.rb, spec/aws_spec.rb: Fixed an issue around
configuring endpoints by service region.
* Gemfile: Loosened the rspec version dependency.
2013-08-13 Trevor Rowe <[email protected]>
* spec/aws/s3/s3_object_encrypt_spec.rb, spec/spec_helper.rb: Updated a spec
to work with a newer version of rspec.
* lib/aws/sqs/errors.rb, lib/aws/sqs/queue.rb, spec/aws/sqs/queue_spec.rb:
Add MD5 validation for Amazon SQS.
When available, validates SQS operations against MD5 checksums,
raising errors when there are mismatches.
2013-08-14 Alex Wood <[email protected]>
* lib/aws/core/configuration.rb: Remove SQS checksum verification from
global config.
Accidentally left the old location of :sqs_validate_checksums
out of the pull request. Removing the old version, tests still
pass.
* lib/aws/core.rb, lib/aws/core/configuration.rb, lib/aws/sqs/config.rb,
lib/aws/sqs/queue.rb: Configuration toggle for SQS MD5 check.
Adds :sqs_verify_checksums to the AWS config. True by default,
setting this value to false will skip the validation of MD5
checksums for SQS operations.
2013-08-12 Alex Wood <[email protected]>
* lib/aws/version.rb: Bump version to 1.15.0
* ChangeLog, spec/aws/emr/instance_group_collection_spec.rb,
spec/aws/emr/instance_group_spec.rb: Fix EMR spec stubbing.
JSON stubbing is not as sophisticated as XML stubbing, added missing
values to spec tests.
* doc-src/SNS/V20100331.yml, lib/aws/api_config/SNS-2010-03-31.yml: Update
AWS::SNS::Client API to latest version.
SNS now supports mobile push.
* doc-src/Redshift/V20121201.yml,
lib/aws/api_config/Redshift-2012-12-01.yml: API updates for Amazon Redshift.
Adds cluster snapshot identifiers to CopyClusterSnapshot and
DeleteClusterSnapshot. Enables better status reporting for
restoring from snapshots.
* lib/aws/api_config/EMR-2009-03-31.yml, lib/aws/emr/client.rb,
lib/aws/emr/request.rb: Updated EMR to use SigV4 and AWS JSON protocol.
2013-08-11 Loren Segal <[email protected]>
* lib/aws/s3/client.rb, spec/aws/s3/client_spec.rb: Fix
S3::Client#get_object with exclusive Range
Fixes #326
2013-08-01 Anatoly Mikhailov <[email protected]>
* lib/aws/rails.rb: Make possible to use without ActionMailer
I use aws-sdk with background uploading queue, so it makes sense to turn off
any unused Rails libraries. It's possible to turn off every Rails specific
libraries except ActionMailer, so it works:
```ruby
config.frameworks -= [ :active_record, :active_resource, :action_controller,
:action_view]
```
But it doesn't work
```ruby
config.frameworks -= [:action_mailer]
```
The fix makes sure that you load ActionMailer to use it with SNS
2013-07-30 Alex Wood <[email protected]>
* lib/aws/core/configuration.rb: Update AWS::Core::Configuration
documentation.
Document the verify_response_body_content_length parameter.
* lib/aws/dynamo_db.rb: Update AWS::DynamoDB documentation example.
Example of table creation in docs did not work, added missing
parameters.
2013-07-29 Alex Wood <[email protected]>
* lib/aws/core/configuration.rb, lib/aws/core/http/net_http_handler.rb,
spec/aws/core/http/net_http_handler_spec.rb: Verify content-length for
Net::HTTP responses.
Some downloads from Amazon S3 can be truncated, and Net::HTTP
does not check response body size against the content-length
specified in the response header. This change adds such a check,
which can be toggled on or off (on by default) in the AWS.config.
* lib/aws/sns/message.rb: Add accessors for Token and SubscribeURL
* lib/aws/sns/message.rb: Support SubscriptionConfirmation and
UnsubscribeConfirmation messages
* spec/aws/sns/message_spec.rb: Validate that a properly signed message is
authentic
* .yardopts, Gemfile: Use --hide-api private instead of --no-api
* lib/aws/core/configuration.rb, lib/aws/core/http/net_http_handler.rb,
spec/aws/core/http/net_http_handler_spec.rb: Verify content-length for
Net::HTTP responses.
Some downloads from Amazon S3 can be truncated, and Net::HTTP
does not check response body size against the content-length
specified in the response header. This change adds such a check,
which can be toggled on or off (on by default) in the AWS.config.
2013-07-25 Alex Wood <[email protected]>
* ChangeLog, lib/aws/version.rb: Bump version to 1.14.1
* features/cloud_front/step_definitions/client.rb: Fixed broken
AWS::CloudFront integration tests.
* lib/aws/cloud_front/request.rb: Updated CloudFront to use signature v4
Fixes #317
2013-07-24 Trevor Rowe <[email protected]>
* README.md: Removed GitHub style code blocks from README, they were causing
issues in the YARD documentation.
* ChangeLog, lib/aws/version.rb: Bump version to 1.14.0
* doc-src/OpsWorks/V20130218.yml,
lib/aws/api_config/OpsWorks-2013-02-18.yml: Updated AWS::OpsWorks::Client to
latest API version.
* doc-src/templates/default/layout/html/footer.erb: Fix SiteCatalyst link
* lib/aws/dynamo_db/client.rb: Added back missing zlib statement.
2013-07-23 Landon Clark <[email protected]>
* lib/aws/ec2/tag_collection.rb: Fixed example for creating a tag collection
for an ec2 instance.
* .yardopts, doc-src/CloudSearch/V20110201.yml,
doc-src/CloudWatch/V20100801.yml, doc-src/DataPipeline/V20121029.yml,
doc-src/DynamoDB/V20111205.yml, doc-src/DynamoDB/V20120810.yml,
doc-src/EC2/V20130201.yml, doc-src/ELB/V20120601.yml,
doc-src/EMR/V20090331.yml, doc-src/ElastiCache/V20121115.yml,
doc-src/IAM/V20100508.yml, doc-src/OpsWorks/V20130218.yml,
doc-src/RDS/V20130515.yml, doc-src/Redshift/V20121201.yml,
doc-src/Route53/V20121212.yml, doc-src/SNS/V20100331.yml,
doc-src/SQS/V20121105.yml, doc-src/STS/V20110615.yml,
doc-src/SimpleDB/V20090415.yml, doc-src/SimpleEmailService/V20101201.yml,
doc-src/SimpleWorkflow/V20120125.yml: Moved API doc src from client classes
into YAML files.
* lib/aws/api_config/SNS-2010-03-31.yml,
lib/aws/api_config/SimpleWorkflow-2012-01-25.yml: Updated SWF and SNS api
configurations.
2013-07-22 Trevor Rowe <[email protected]>
* doc-src/AutoScaling/V20110101.yml, doc-src/CloudFormation/V20100515.yml,
doc-src/CloudFront/V20130512.yml, doc-src/CloudSearch/V20110201.yml,
doc-src/CloudWatch/V20100801.yml, doc-src/DataPipeline/V20121029.yml,
doc-src/DirectConnect/V20121025.yml, doc-src/DynamoDB/V20111205.yml,
doc-src/DynamoDB/V20120810.yml, doc-src/EC2/V20130201.yml,
doc-src/ELB/V20120601.yml, doc-src/EMR/V20090331.yml,
doc-src/ElastiCache/V20121115.yml, doc-src/ElasticBeanstalk/V20101201.yml,
doc-src/ElasticTranscoder/V20120925.yml, doc-src/Glacier/V20120601.yml,
doc-src/OpsWorks/V20130218.yml, doc-src/RDS/V20130515.yml,
doc-src/Redshift/V20121201.yml, doc-src/Route53/V20121212.yml,
doc-src/SNS/V20100331.yml, doc-src/SQS/V20121105.yml,
doc-src/SimpleDB/V20090415.yml, doc-src/SimpleEmailService/V20101201.yml,
doc-src/SimpleWorkflow/V20120125.yml, doc-src/StorageGateway/V20120630.yml,
doc-src/Support/V20130415.yml: Fixed faultly formatting of api docs.
* lib/aws/dynamo_db/client_v2.rb: Replaces @api private with @deprecated for
AWS::DynamoDB::ClientV2.
* lib/aws/dynamo_db.rb, lib/aws/dynamo_db/client.rb,
lib/aws/dynamo_db/client_base.rb: Removed the no-longer-needed
DynamoDB::ClientBase class.
* .yardopts, doc-src/AutoScaling/V20110101.yml,
doc-src/CloudFormation/V20100515.yml, doc-src/CloudFront/V20130512.yml,
doc-src/CloudSearch/V20110201.yml, doc-src/CloudWatch/V20100801.yml,
doc-src/DataPipeline/V20121029.yml, doc-src/DirectConnect/V20121025.yml,
doc-src/DynamoDB/V20111205.yml, doc-src/DynamoDB/V20120810.yml,
doc-src/EC2/V20130201.yml, doc-src/ELB/V20120601.yml,
doc-src/EMR/V20090331.yml, doc-src/ElastiCache/V20121115.yml,
doc-src/ElasticBeanstalk/V20101201.yml,
doc-src/ElasticTranscoder/V20120925.yml, doc-src/Glacier/V20120601.yml,
doc-src/IAM/V20100508.yml, doc-src/ImportExport/V20100601.yml,
doc-src/OpsWorks/V20130218.yml, doc-src/RDS/V20130515.yml,
doc-src/Redshift/V20121201.yml, doc-src/Route53/V20121212.yml,
doc-src/SNS/V20100331.yml, doc-src/SQS/V20121105.yml,
doc-src/STS/V20110615.yml, doc-src/SimpleDB/V20090415.yml,
doc-src/SimpleEmailService/V20101201.yml,
doc-src/SimpleWorkflow/V20120125.yml, doc-src/StorageGateway/V20120630.yml,
doc-src/Support/V20130415.yml, doc-src/api_docs_plugin.rb: Moved Client
class API documentation into yaml files inside doc-src.
These are now applied to the client classes as well as the parent Client
class.
* lib/aws/sns/message.rb: Minor yard doc tag fix.
2013-07-19 Trevor Rowe <[email protected]>
* lib/aws/auto_scaling/client.rb, lib/aws/cloud_formation/client.rb,
lib/aws/cloud_front/client.rb, lib/aws/cloud_search/client.rb,
lib/aws/cloud_watch/client.rb, lib/aws/data_pipeline/client.rb,
lib/aws/direct_connect/client.rb, lib/aws/ec2/client.rb,
lib/aws/elastic_beanstalk/client.rb, lib/aws/elastic_transcoder/client.rb,
lib/aws/elasticache/client.rb, lib/aws/elb/client.rb, lib/aws/emr/client.rb,
lib/aws/glacier/client.rb, lib/aws/iam/client.rb,
lib/aws/import_export/client.rb, lib/aws/ops_works/client.rb,
lib/aws/rds/client.rb, lib/aws/redshift/client.rb,
lib/aws/route_53/client.rb, lib/aws/simple_db/client.rb,
lib/aws/simple_email_service/client.rb, lib/aws/simple_workflow/client.rb,
lib/aws/sns/client.rb, lib/aws/sqs/client.rb,
lib/aws/storage_gateway/client.rb, lib/aws/sts/client.rb,
lib/aws/support/client.rb: Removed static API documentation from client
classes.
* .yardopts, Gemfile: Configured yard to use rdiscount instead of redcarpet.
* features/ec2/reserved_instances.feature,
features/ec2/step_definitions/reserved_instances.rb,
lib/aws/ec2/reserved_instances_offering_collection.rb: Added support for
paging Amazon EC2 reserved instances offerings.
2013-07-18 Alex Wood <[email protected]>
* ChangeLog, lib/aws/version.rb: Bump version to 1.13.0
* lib/aws/api_config/Redshift-2012-12-01.yml, lib/aws/redshift/client.rb:
Updated AWS::Redshift::Client to latest API version.
2013-07-15 Trevor Rowe <[email protected]>
* spec/shared/aws_client_examples.rb: Disabed aync test.
* lib/aws/s3/client.rb, spec/aws/s3/client_spec.rb:
AWS::S3::Client#put_bucket_website now omits empty routing rules.
This resolves an issue where passing `:routing_rules => []` to the
client would result in an error returned from Amazon S3. S3 does
not accept `<RoutingRules/>`.
Fixes #308