This repository has been archived by the owner on Mar 4, 2020. It is now read-only.
forked from aws/aws-sdk-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
754 lines (516 loc) · 27.8 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
2012-12-20 Loren Segal <[email protected]>
* lib/aws-sdk.rb: Add missing require call to aws-sdk.rb
* lib/aws/api_config/Glacier-2012-06-01.yml: Update attributions for Amazon
Glacier
* lib/aws.rb: Add missing newline to aws.rb
* lib/aws-sdk.rb, lib/aws.rb: Flip aws.rb and aws-sdk.rb
Makes it possible to workaround #37 by adding `-raws` to the Ruby
process, ie.,
ruby -raws <file.rb>
or,
bundle exec ruby -raws <file.rb>
* Rakefile, tasks/cucumber.rake, tasks/docs.rake, tasks/rspec.rake,
tasks/rvm_tester.rake: Update Rakefile and tasks
* lib/aws/core/options/validator.rb, lib/aws/core/rest_request_builder.rb,
spec/aws/core/rest_request_builder_spec.rb,
spec/aws/route_53/client_spec.rb,
spec/shared/signature/version_4_examples.rb: Resolved some broken specs from
recently merged branches.
* lib/aws/cloud_front/client.rb, lib/aws/core.rb,
lib/aws/core/rest_xml_client.rb, lib/aws/route_53/client.rb: Re-add
deprecated RESTClient constant, update references
* lib/aws/sqs/queue.rb: Update @since tags on new methods
* lib/aws/core.rb, lib/aws/core/client.rb, lib/aws/core/managed_file.rb,
lib/aws/s3/data_options.rb: Fixed a bug where files opened by the S3 and
Glacier clients where not getting closed.
* README.rdoc, features/support/common.rb,
recipebook/config/initializers/aws.rb, spec/spec_helper.rb: Require
'aws-sdk' instead of 'aws'
References #37
* lib/aws/glacier.rb, lib/aws/glacier/archive.rb,
lib/aws/glacier/archive_collection.rb, lib/aws/glacier/resource.rb,
lib/aws/glacier/vault.rb, lib/aws/glacier/vault_collection.rb,
lib/aws/glacier/vault_notification_configuration.rb: Added a few higher
level abstractions to AWS::Glacier.
* lib/aws/core/options/json_serializer.rb,
lib/aws/core/rest_request_builder.rb: Updated the JSON serializer to work
with request payload rules.
* lib/aws.rb, lib/aws/api_config/Glacier-2012-06-01.yml, lib/aws/core.rb,
lib/aws/core/configuration.rb, lib/aws/glacier.rb,
lib/aws/glacier/client.rb, lib/aws/glacier/config.rb,
lib/aws/glacier/errors.rb, lib/aws/glacier/request.rb: Added Glacier client
and api configuration.
* lib/aws/core/options/validator.rb: Added a blob handler to the request
option validator.
* lib/aws/core/signature/version_4.rb: Improved sigv4 implementation,
possible fewer checksums calculated.
This is especially important for glacier support where the sigv4
body checksum is the same as the content sha256 hash header required
for streaming uploads.
* lib/aws/core.rb, lib/aws/core/json_parser.rb,
lib/aws/core/options/json_serializer.rb, lib/aws/core/rest_client.rb,
lib/aws/core/rest_json_client.rb, lib/aws/core/rest_request_builder.rb,
lib/aws/core/rest_response_parser.rb, lib/aws/core/rest_xml_client.rb: Split
Core::RESTClient and associated classes into RESTJSONClient and
RESTXMLClient.
2012-12-18 Loren Segal <[email protected]>
* lib/aws/s3/bucket_lifecycle_configuration.rb: More example updates in
BucketLifecycleConfiguration docs
* lib/aws/s3/bucket_lifecycle_configuration.rb: Update documentation for
BucketLifecycleConfiguration and Rule
2012-12-14 Loren Segal <[email protected]>
* features/s3/high_level/lifecycle_configuration.feature,
features/s3/high_level/step_definitions/lifecycle_configuration.rb,
lib/aws/s3/bucket_lifecycle_configuration.rb,
spec/aws/s3/bucket_lifecycle_configuration_spec.rb: Fix lifecycle
configuration Date support in 1.8.x
Also ensures that date values are always expressed at midnight GMT,
as per the lifecycle configuration specification.
* features/s3/high_level/objects.feature,
features/s3/high_level/step_definitions/objects.rb, lib/aws/s3/client.rb,
lib/aws/s3/request.rb, lib/aws/s3/s3_object.rb, spec/aws/s3/client_spec.rb,
spec/aws/s3/s3_object_spec.rb: Implement S3 restore operation
* Adds S3::Client#restore_object to send restore operation
* Modifies S3::Client#head_object to support x-amz-restore response header
* Adds S3Object#restore for high level client
* Adds S3Object#restore_in_progress? to report on status of restore
operation
* Adds S3Object#restore_expiration_date to report on expiration date of
the restored object
* Adds S3Object#restored_object? to return whether the object is a restored
object.
* features/s3/high_level/lifecycle_configuration.feature,
features/s3/high_level/step_definitions/lifecycle_configuration.rb,
lib/aws/s3/bucket_lifecycle_configuration.rb, lib/aws/s3/client/xml.rb,
spec/aws/s3/bucket_lifecycle_configuration_spec.rb,
spec/aws/s3/bucket_spec.rb: Add Transition and Date support to lifecycle
rules
* lib/aws/core/options/xml_serializer.rb,
spec/aws/core/options/xml_serializer_spec.rb: Added missing spec file
changes from previous commit.
* features/cloud_front/client.feature,
features/cloud_front/step_definitions/client.rb,
lib/aws/api_config/CloudFront-2012-05-05.yml,
lib/aws/core/options/xml_serializer.rb,
lib/aws/core/rest_request_builder.rb: Resolved an issue with AWS::CloudFront
where request payload rules were ignored when serializing requests.
* lib/aws/api_config/EC2-2012-07-20.yml: Resolved in issue where
AWS::EC2::SecurityGroup::IpPermission would incorrectly return :1 as the
value for protocol instead of :any.
* lib/aws/ec2/security_group.rb: Fixed an issue where revoking an ip
permission would fail when protocol is :any.
* lib/aws/ec2/security_group.rb,
lib/aws/ec2/security_group/egress_ip_permission_collection.rb,
lib/aws/ec2/security_group/ingress_ip_permission_collection.rb,
lib/aws/ec2/security_group/ip_permission_collection.rb: DRY'd up EC2 ingress
and egress ip permission collections.
2012-12-19 Loren Segal <[email protected]>
* features/data_pipeline/pipelines.feature,
features/data_pipeline/step_definitions/data_pipeline.rb,
features/data_pipeline/step_definitions/pipelines.rb: Add integration tests
for DataPipeline service
* lib/aws/api_config/DataPipeline-2012-10-29.yml,
lib/aws/data_pipeline/client.rb: Update DataPipeline model and client
2012-12-12 Trevor Rowe <[email protected]>
* lib/aws.rb: Added autoloading hooks for DataPipeline.
* lib/aws/api_config/DataPipeline-2012-10-29.yml, lib/aws/data_pipeline.rb,
lib/aws/data_pipeline/client.rb, lib/aws/data_pipeline/config.rb,
lib/aws/data_pipeline/errors.rb, lib/aws/data_pipeline/request.rb: Added
bootstraping classes for DataPipeline.
* lib/aws/core/data.rb, spec/aws/core/data_spec.rb: Fixed a bug in
AWS::Core::Data and AWS::Core::Data::list #dup behavior.
* lib/aws/core/data.rb: Removed trailing whitespace.
* lib/aws/ec2/instance_collection.rb,
spec/aws/ec2/instance_collection_spec.rb: AWS::EC2::Instances#create now
returns a vanilla Array when running multiple instances.
* features/import_export/client.feature,
features/import_export/step_definitions/client.rb,
features/import_export/step_definitions/import_export.rb: Added basic
integration test for AWS::ImportExport.
* lib/aws/api_config/ImportExport-2010-06-01.yml,
lib/aws/import_export/client.rb: Added API configuration and documentation
for AWS::ImportExport.
* lib/aws/core.rb, lib/aws/core/configuration.rb: Documented configuration
options for AWS::ImportExport.
* lib/aws.rb, lib/aws/import_export.rb, lib/aws/import_export/client.rb,
lib/aws/import_export/config.rb, lib/aws/import_export/errors.rb,
lib/aws/import_export/request.rb: Added bootstrap classes for AWS
Import/Export.
* features/cloud_front/client.feature,
features/cloud_front/step_definitions/client.rb,
features/cloud_front/step_definitions/cloud_front.rb: Added basic
integration test for AWS::CloudFront (listing distributions)
* lib/aws/api_config/CloudFront-2012-05-05.yml,
lib/aws/cloud_front/client.rb: Updated AWS::CloudFront api configuration,
removed wrapping elements from responses.
* lib/aws/cloud_front/config.rb, lib/aws/core.rb,
lib/aws/core/configuration.rb: Added AWS::CloudFront configuration options.
* lib/aws/cloud_front/request.rb: Added require time to CloudFront::Request,
as it needs Time#rfc822.
* lib/aws.rb: Added autoloading hooks for AWS::CloudFront.
* lib/aws/cloud_front/error.rb, lib/aws/cloud_front/errors.rb: Moved
CloudFront::Error source file to fix autoloading.
* lib/aws/cloud_front/client.rb: Added documentation for client methods.
* lib/aws/cloud_front.rb: Updated CloudFront example snippet.
* lib/aws/cloud_front.rb, lib/aws/cloud_front/client.rb,
lib/aws/cloud_front/error.rb, lib/aws/cloud_front/request.rb: Added
bootstrap classes for Amazon CloudFront support.
2012-12-15 sanemat <[email protected]>
* lib/aws/core/collection.rb: Use Object#to_enum instead of Enumerator.new
without a block
Fix warning
warning: Enumerator.new without a block is deprecated; use Object#to_enum
2012-12-13 Trevor Rowe <[email protected]>
* features/storage_gateway/client.feature,
features/storage_gateway/step_definitions/client.rb: DRY'd up a feature for
storage gateway, now testing error case using a shared step definition.
* features/cloud_front/client.feature,
features/cloud_front/step_definitions/client.rb,
features/import_export/client.feature,
features/import_export/step_definitions/client.rb,
features/step_definitions.rb: Added integration tests to test error parsing.
* lib/aws/storage_gateway.rb: Corrected a sample given in the documentation
for AWS::StorageGateway.
* features/storage_gateway/client.feature,
features/storage_gateway/step_definitions/client.rb,
features/storage_gateway/step_definitions/storage_gateway.rb: Added a few
integration tests for storage gateway.
* lib/aws/api_config/StorageGateway-2012-06-30.yml: Added api configuration
for storage gateway.
* lib/aws/core/json_client.rb, lib/aws/core/json_request_builder.rb,
lib/aws/core/json_response_parser.rb: Updated JSON client classes to work
with json v1.1 protocol.
* lib/aws/core.rb, lib/aws/core/configuration.rb: Documented storage gateway
configuration options.
* lib/aws/storage_gateway/client.rb: Documented client API operations for
AWS::StorageGateway.
* lib/aws.rb, lib/aws/storage_gateway.rb, lib/aws/storage_gateway/client.rb,
lib/aws/storage_gateway/config.rb, lib/aws/storage_gateway/errors.rb,
lib/aws/storage_gateway/request.rb: Added bootstrap classes for AWS
StorageGateway.
2012-12-11 Loren Segal <[email protected]>
* features/sqs/messages.feature, features/sqs/queues.feature,
features/sqs/step_definitions/messages.rb, lib/aws/sqs/queue.rb,
spec/aws/sqs/queue_spec.rb: Implement SQS long polling
Changes within AWS::SQS:
* Queue#poll now accept a :wait_time_seconds parameter which sets the
maximum amount of time that SQS should long poll for.
Defaults to 15 seconds. To use the default set for all messages
on the queue, pass in nil.
* The :wait_time_seconds default does not apply to
Queue#receive_message. For this method, you must pass the option
directly, or set the global Queue#wait_time_seconds long polling
value.
* Added Queue#wait_time_seconds attribute to set the queue-wide
long poll timeout value. This setting applies to all calls to
Queue#receive_message or Queue#poll
* Deprecates the Queue::DEFAULT_POLL_INTERVAL constant
* Queue#poll no longer uses :poll_interval; use :wait_time_seconds
instead.
2012-12-10 Trevor Rowe <[email protected]>
* lib/aws/s3/s3_object.rb, spec/aws/s3/s3_object_spec.rb: S3Object#url_for
now accepts objects that respond to #to_int as the :expires option.
* lib/aws/sqs/client.rb: Update Amazon SQS client documentation
* lib/aws/api_config/SQS-2011-10-01.yml,
lib/aws/api_config/SQS-2012-11-05.yml, lib/aws/sqs/client.rb: Update Amazon
SQS api_version and client methods
* lib/aws/api_config/SQS-2011-10-01.yml: Update SQS with WaitTimeSeconds
input
* lib/aws/s3/bucket_lifecycle_configuration.rb: Resolved an issue where
AWS::S3::BucketLifecycleConfiguration::Rule documentation was not getting
generated (was behind private).
2012-12-08 Sean Laurent <[email protected]>
* lib/aws/ec2/instance_collection.rb: Added documentation to
AWS::EC2::InstanceCollection.create() to describe support for launching
ebs_optimized instances.
2012-12-06 Loren Segal <[email protected]>
* features/dynamo_db/crc32.feature,
features/dynamo_db/step_definitions/crc32.rb,
features/dynamo_db/step_definitions/items.rb: Add DynamoDB CRC steps for
manipulating large items (gzip validation)
* features/support/common.rb: Allow loading test credentials from
environment
2012-11-29 Loren Segal <[email protected]>
* lib/aws/s3/cors_rule_collection.rb: Fix doc for incorrectly named param
tag
2012-11-15 Loren Segal <[email protected]>
* README.rdoc: Update getting started with samples command
References #85
* README.rdoc: Update README to point to new GitHub repository
Fixes #85
2012-11-07 Trevor Rowe <[email protected]>
* ChangeLog, lib/aws/version.rb: Bump version to 1.7.1
2012-11-06 Trevor Rowe <[email protected]>
* lib/aws/core/signature/version_3_https.rb: Added x-amz-security-token
header for signature version 3 https requests when a session token is
provided.
2012-11-02 Trevor Rowe <[email protected]>
* CONTRIBUTORS.txt: Added a contributors file.
* ChangeLog, lib/aws/version.rb: Bump version to 1.7.0
2012-10-29 Trevor Rowe <[email protected]>
* features/dynamo_db/batch_get.feature,
features/dynamo_db/step_definitions/batch_get.rb,
features/dynamo_db/step_definitions/batch_write.rb,
lib/aws/dynamo_db/batch_get.rb, lib/aws/dynamo_db/table.rb,
spec/aws/dynamo_db/batch_get_spec.rb, spec/aws/dynamo_db/table_spec.rb:
Added support for consistent reads to AWS::DynamoDB::BatchGet.
* features/dynamo_db/batch_write.feature,
features/dynamo_db/step_definitions/batch_write.rb,
features/dynamo_db/step_definitions/dynamo_db.rb: Sped up a few of the
DynamoDB batch write integration tests.
* lib/aws/api_config/DynamoDB-2011-12-05.yml, lib/aws/dynamo_db/client.rb:
Added consistent read to AWS::DynamoDB::Client#batch_get input and outputs.
* lib/aws/rds/event_collection.rb: Removed the empty file for
AWS::RDS::EventCollection.
* lib/aws/core.rb: Corrected the documentation on
AWS.config.dynamo_db_big_decimals.
* lib/aws/rds/config.rb: Corrected the default RDS endpoint, now
'rds.us-east-1.amazonaws.com'.
* lib/aws/rds/client.rb: Documented AWS::RDS::Client API operation methods.
* lib/aws/rds.rb: Added basic documentation for the AWS::RDS service
interface.
* lib/aws/api_config/RDS-2012-07-31.yml, lib/aws/rds/db_instance.rb,
lib/aws/rds/db_instance_collection.rb, lib/aws/rds/db_snapshot.rb,
lib/aws/rds/db_snapshot_collection.rb, lib/aws/rds/event_collection.rb:
Added missing attribution comment blocks to a few scripts.
* lib/aws/api_config/RDS-2012-07-31.yml: Revert "Added api configuration for
RDS."
This reverts commit c6beb0537b7bbe84190e6aeed1e73e19aaff2ea4.
* lib/aws/rds.rb, lib/aws/rds/client.rb, lib/aws/rds/config.rb,
lib/aws/rds/errors.rb, lib/aws/rds/request.rb: Revert "Wired up a basic RDS
client."
This reverts commit cdabb8967b6c20cb4e2458d406688b47228d3c70.
* lib/aws/rds/client.rb: Revert "Documented the RDS API operations in
AWS::RDS::Client."
This reverts commit 5db2951ab8a24004631ef4b3fc25e3979bdfc89a.
* lib/aws/dynamo_db/item_collection.rb: Corrected documentation on
AWS::DynamoDB::ItemCollection on how to limit items returned.
2012-10-26 Loren Segal <[email protected]>
* features/dynamo_db/crc32.feature,
features/dynamo_db/step_definitions/crc32.rb,
features/dynamo_db/step_definitions/dynamo_db.rb,
lib/aws/dynamo_db/client.rb, lib/aws/dynamo_db/config.rb,
spec/aws/dynamo_db/client_spec.rb: Add CRC32 integrity checking to DynamoDB
* features/support/common.rb: Only run SimpleCov on cucumber when COVERAGE
is set
* features/dynamo_db/step_definitions/dynamo_db.rb: Remove extra whitespace
in a test
2012-11-01 Trevor Rowe <[email protected]>
* features/rds/client.feature, features/rds/step_definitions/client.rb:
Shortened the feature/scenario table for RDS::Client#describe_events.
* features/rds/client.feature, features/rds/step_definitions/client.rb:
Added a basic integration test for the RDS client.
* features/rds/client.feature, features/rds/step_definitions/rds.rb,
lib/aws/rds/db_instance.rb: AWS::RDS::DBInstance#snapshots now uses the
correct filter.
* lib/aws/api_config/RDS-2012-07-31.yml, spec/aws/rds/client_spec.rb: Fixed
a bug in the api_config for RDS where EVERY element was wrapped, when not
all are.
* lib/aws/rds/db_snapshot.rb, spec/aws/rds/db_snapshot_spec.rb: Added unit
tests for AWS::RDS::DBSnapshot.
* lib/aws/rds/db_snapshot_collection.rb,
spec/aws/rds/db_snapshot_collection_spec.rb: Added unit tests for
RDS::DBSnapshotCollection.
* lib/aws/rds/db_instance.rb, lib/aws/rds/db_instance_collection.rb,
spec/aws/rds/db_instance_collection_spec.rb,
spec/shared/collection/with_limit_and_next_token_examples.rb: Added unit
tests for AWS::RDS::DBInstanceCollection.
* lib/aws/rds/db_instance.rb, lib/aws/rds/db_snapshot.rb,
spec/aws/rds/client_spec.rb, spec/aws/rds/db_instance_spec.rb: Added unit
tests for AWS::RDS::DBInstance.
* spec/aws/core/xml/parser_spec.rb, spec/aws/rds/client_spec.rb: Added unit
test for nested ignore rules to the XML parser.
* lib/aws/api_config/RDS-2012-07-31.yml: Added wrapping elements to the RDS
output shapes so the XML can be correctly parsed.
2012-10-31 Trevor Rowe <[email protected]>
* lib/aws/rds.rb, lib/aws/rds/client.rb, lib/aws/rds/db_instance.rb,
lib/aws/rds/db_instance_collection.rb, lib/aws/rds/db_snapshot.rb,
lib/aws/rds/db_snapshot_collection.rb: Documented a large number of
methods/attributes, added additional attirbutes to the RDS interfaces.
* lib/aws/s3/request.rb, lib/aws/s3/s3_object.rb: AWS::S3::S3Object #url_for
and #public_url now share the same default behavior.
Previously, #url_for would check config.use_ssl for the default
http/https mode. #public_url instead always defaulted to https,
ignoring config.use_ssl. They both now default to the mode specified
in config.use_ssl.
Also, they both now work with alternative ports for testing against
local endpoints at non-standard ports (outside of 443 and 80).
* features/s3/high_level/objects.feature, lib/aws/s3/request.rb: Fixed an S3
signing bug where the canonicalized amz header values were not trimmed of
whitespace.
* features/s3/high_level/objects.feature,
features/s3/high_level/step_definitions/objects.rb,
features/sts/step_definitions/sessions.rb, lib/aws/s3/s3_object.rb: Fixed a
bug in generating presigned GET requests for S3.
2012-09-20 Neville Kadwa <[email protected]>
* lib/aws/api_config/RDS-2012-07-31.yml, lib/aws/rds.rb,
lib/aws/rds/db_instance.rb, lib/aws/rds/db_instance_collection.rb,
lib/aws/rds/db_snapshot.rb, lib/aws/rds/db_snapshot_collection.rb,
lib/aws/rds/event_collection.rb: add snapshot modeling
2012-09-18 Neville Kadwa <[email protected]>
* lib/aws/rds.rb, lib/aws/rds/db_instance_collection.rb: cleanup
* lib/aws/api_config/RDS-2012-07-31.yml, lib/aws/rds.rb,
lib/aws/rds/db_instance.rb, lib/aws/rds/db_instance_collection.rb: add
db_instance collection and instance funcitonality
2012-09-17 Neville Kadwa <[email protected]>
* lib/aws/api_config/RDS-2012-07-31.yml: needed methods working
* lib/aws/api_config/RDS-2012-07-31.yml, lib/aws/rds.rb,
lib/aws/rds/client.rb, lib/aws/rds/config.rb, lib/aws/rds/errors.rb,
lib/aws/rds/request.rb: base rds implementation
2012-10-30 Nate Mueller <[email protected]>
* lib/aws/ec2/reserved_instances.rb: Added state attribute to
reserved_instances
2012-10-24 Marco Carvalho <[email protected]>
* lib/aws/cloud_watch/metric.rb: Fixed: Wrong param name: expected
metric_name and metric_item was set
2012-10-20 Oliver Hookins <[email protected]>
* lib/aws/s3/client.rb, lib/aws/s3/object_collection.rb,
spec/aws/s3/client_spec.rb, spec/aws/s3/object_collection_spec.rb: Add MFA
authentication to S3 multiple object deletions.
2012-10-19 Trevor Rowe <[email protected]>
* lib/aws/cloud_watch/alarm.rb: Corrected documentation on
AWS::CloudWatch::Alarm#alarm_actions.
* lib/aws/s3/bucket_tag_collection.rb: Corrected a yard doc tag (typo in tag
name).
2012-10-16 carljparker <[email protected]>
* lib/aws/s3/s3_object.rb: Update lib/aws/s3/s3_object.rb
Fix typo: server_size_encryption should be server_side_encryption
2012-10-15 Jamis Buck <[email protected]>
* lib/aws/s3/s3_object.rb, spec/aws/s3/s3_object_spec.rb: endpoint, port,
and force_path_style should be inherited from config
2012-10-12 Loren Segal <[email protected]>
* .travis.yml, README.rdoc: Only run Travis on master branch
2012-10-11 Loren Segal <[email protected]>
* README.rdoc: Update README with Travis build status
* .travis.yml, tasks/rvm_tester.rake: Don't test jruby on Travis (running
out of memory)
* tasks/rspec.rake: Don't need specdoc output for RSpec
* spec/aws/rails_spec.rb: Reset Config after Rails tests
* spec/aws/core/options/xml_serializer_spec.rb: Fix XML serializer tests
matcher usage
* spec/shared/signature/version_4_examples.rb: Fix broken tests that were
hashed for GMT-8
* spec/aws/record/hash_model/class_methods_spec.rb: Cleanup after modifying
AWS.config in test
2012-10-10 Loren Segal <[email protected]>
* tasks/scan.rake, tasks/secret_scanner.rb: Secret scanner rake task no
longer used
* Rakefile: Load vendor Rakefiles into rake tasks
* .gitignore: Ignore vendor from git
* lib/aws/s3/errors.rb: Removed a @private documentation tag from the
AWS::S3::Errors module.
2012-10-09 Loren Segal <[email protected]>
* .travis.yml, Gemfile, tasks/rspec.rake, tasks/rvm_tester.rake: Add RVM
tester and Travis CI support
* spec/net/http/connection_pool/live_tests_spec.rb: Make
Net::HTTP::ConnectionPool tests more reliable
* Gemfile, spec/aws/config_spec.rb,
spec/aws/core/options/xml_serializer_spec.rb,
spec/aws/route_53/client_spec.rb,
spec/aws/s3/bucket_lifecycle_configuration_spec.rb,
spec/aws/s3/client_spec.rb, spec/aws/s3/s3_object_encrypt_spec.rb,
spec/spec_helper.rb: Fix tests in JRuby
* spec/shared/s3/paginated_collection_examples.rb: Fix broken spec
* Gemfile, Rakefile: Reorder Gemfile to use standard group names
* tasks/rcov.rake, tasks/rspec.rake: Remove rcov rake task, spec task takes
COVERAGE env var
* spec/aws/core/option_grammar_spec.rb, spec/aws/ec2/instance_spec.rb,
spec/aws/simple_db/errors_spec.rb, spec/shared/record/shardable_examples.rb:
Remove some pending tests and comment out EC2 instance tests for now
* Gemfile: Update Gemfile with newer versions of RSpec, remove debug group
* Gemfile: CI reporter library no longer used.
* Gemfile: Remove autotest group from Gemfile
* spec/aws/core/credential_providers_spec.rb: Stub out environment variables
in DefaultProvider specs
Avoids test failure if user has access keys provided in env.
* lib/aws/api_config/EMR-2009-03-31.yml, lib/aws/emr/client.rb: Documented
set_visible_to_all_users method on EMR client and alphabetized the api
configuration.
* lib/aws/api_config/EMR-2009-03-31.yml, lib/aws/emr/client.rb: Added
VisibleToAllUser attributes to the EMR api configuration and documented them
in the client.
2012-10-05 Neville Kadwa <[email protected]>
* lib/aws/api_config/EMR-2009-03-31.yml, lib/aws/emr/job_flow.rb,
spec/aws/emr/job_flow_spec.rb: EMR added set_visible_to_all_users call,
expose this through client
* lib/aws.rb, lib/aws/core.rb, lib/aws/core/configuration.rb: Documented
Cloud Search configurations and added autoloading hooks.
* lib/aws/cloud_search/client.rb: Documented AWS::CloudSearch::Client
control plane operations.
* lib/aws/cloud_search.rb, lib/aws/cloud_search/client.rb,
lib/aws/cloud_search/config.rb, lib/aws/cloud_search/errors.rb,
lib/aws/cloud_search/request.rb: Added Cloud Search control plane API
classes.
* lib/aws/api_config/CloudSearch-2011-02-01.yml: Added Cloud Search API
configuration file.
* lib/aws/ec2/reserved_instances.rb,
lib/aws/ec2/reserved_instances_offering.rb,
spec/shared/ec2/reserved_instances_attributes_examples.rb: Added new
attributes to reserved_instances(_offerings)
recurring_charges and offering_type
2012-10-04 Trevor Rowe <[email protected]>
* lib/aws.rb, lib/aws/core.rb, lib/aws/core/configuration.rb: Added endpoint
documentation and autoloading for RDS.
* lib/aws/rds/client.rb: Documented the RDS API operations in
AWS::RDS::Client.
* lib/aws/rds.rb, lib/aws/rds/client.rb, lib/aws/rds/config.rb,
lib/aws/rds/errors.rb, lib/aws/rds/request.rb: Wired up a basic RDS client.
* lib/aws/api_config/RDS-2012-07-31.yml: Added api configuration for RDS.
* lib/aws.rb, lib/aws/core.rb, lib/aws/core/configuration.rb: Added
AWS::ElasticBeanstalk configuration documentation and autoloading hoooks.
* lib/aws/api_config/ElasticBeanstalk-2010-12-01.yml,
lib/aws/elastic_beanstalk.rb, lib/aws/elastic_beanstalk/client.rb,
lib/aws/elastic_beanstalk/config.rb, lib/aws/elastic_beanstalk/errors.rb,
lib/aws/elastic_beanstalk/request.rb: Added basic support for AWS Elastic
Beanstalk.
* lib/aws/core/inflection.rb, lib/aws/core/service_interface.rb: Provided a
better inflection for ElastiCache (elasticache instead of elasti_cache).
* lib/aws.rb, lib/aws/core.rb, lib/aws/core/configuration.rb: Documented
ElastiCache endpoints and added autoloading hooks.
* lib/aws/elasticache/client.rb: Documented ElastiCache client methods.
* lib/aws/elasticache.rb, lib/aws/elasticache/client.rb,
lib/aws/elasticache/config.rb, lib/aws/elasticache/errors.rb,
lib/aws/elasticache/request.rb: Added basic ElastiCache classes.
* lib/aws/api_config/ElastiCache-2012-03-09.yml: Added API configuration for
ElastiCache.
* features/dynamo_db/items.feature,
features/dynamo_db/step_definitions/img.jpg,
features/dynamo_db/step_definitions/items.rb: Added an integration test that
uploads a small image as a DynamoDB attribute.
* ChangeLog: Updated changelog.
* lib/aws/version.rb: Bump version to 1.6.9
* .yardopts, aws-sdk.gemspec: Removed NOTICE.txt from gem specification and
yardopts.
* lib/aws/api_config/EC2-2012-07-20.yml, lib/aws/ec2/client.rb: Resolved an
issue with specifying security groups while requesting spot instances with
AWS::EC2::Client.
* lib/aws/s3/client.rb, lib/aws/s3/object_version.rb,
lib/aws/s3/s3_object.rb, spec/aws/s3/client_spec.rb,
spec/aws/s3/object_version_spec.rb: Add MFA credential support to S3 object
version delete methods.
2012-10-08 Trevor Rowe <[email protected]>
* lib/aws/s3/object_collection.rb: Removed trailing whitespace from
AWS::S3::ObjectCollection class file.
2012-10-03 Loren Segal <[email protected]>
* ChangeLog: Add ChangeLog
* LICENSE.txt, NOTICE.txt: Remove NOTICE.txt; only LICENSE.txt is needed.
Apache License 2.0 is still being used.
* tasks/secret_scanner.rb: Make secret scanning configurable
2012-10-02 Loren Segal <[email protected]>
* Rakefile: Set default rake task to unit tests
* tasks/gems.rake: Gems tasks no longer necessary
* lib/aws/core.rb, lib/aws/version.rb: Move AWS::VERSION to separate file
* .gitignore: Ignore .gem files from repository
* spec/spec_helper.rb: Only use simplecov if COVERAGE env is set
* aws-sdk.gemspec: Fix gemspec
* aws-sdk.gemspec: Add gemspec
* tasks/scan.rake: Exit with nonzero status if scan finds matches
* .gitignore: Add .gitignore
* tasks/scan.rake: Name secret scanner task
2012-10-01 Diego Elio Pettenò <[email protected]>
* spec/aws/s3/client_spec.rb: spec: do not compare data that can be
differently sorter on Ruby 1.8
* lib/aws/core/option_grammar.rb: Replace Ruby 1.9-specific syntax with
syntax working for 1.8 as well.
While it's less arcane, the 1.9-specific syntax break compatibility
for nothing more than a function name.