forked from dsabanin/fog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
3726 lines (3187 loc) · 189 KB
/
changelog.txt
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
1.8.0 12/01/2012 057c0c525a39e77cb2037c9fec3d851b209c151b
=========================================================
Stats! { 'collaborators' => 41, 'downloads' => 1334733, 'forks' => 630, 'open_issues' => 98, 'watchers' => 2258 }
[AWS]
Adds ModifyVolumeAttribute. thanks Eric Stonfer
[Brightbox]
Removes incorrect yard tag. thanks Paul Thornthwaite
Updates request docs to use Yard. thanks Paul Thornthwaite
Adds baseline documentation. thanks Paul Thornthwaite
Documents #request method. thanks Paul Thornthwaite
Comments out rogue text. thanks Paul Thornthwaite
Fixes generated files EOF with newlines. thanks Paul Thornthwaite
Adds Servers#bootstrap. thanks Paul Thornthwaite
Adds way to check auth method. thanks Paul Thornthwaite
Adds reset FTP for scoped accounts. thanks Paul Thornthwaite
Fixes Compute#account to pass service. thanks Paul Thornthwaite
Fixes Account#reset_ftp_password. thanks Paul Thornthwaite
Fixes test to run out of sequence. thanks Paul Thornthwaite
Expands documentation for Compute class. thanks Paul Thornthwaite
Tests recognised options. thanks Paul Thornthwaite
Refactors credential code in Compute. thanks Paul Thornthwaite
Extracts authentication connection. thanks Paul Thornthwaite
Refactors how tokens are requested. thanks Paul Thornthwaite
Moves tokens to CredentialSet. thanks Paul Thornthwaite
Extracts parts of request out of compute. thanks Paul Thornthwaite
Adds support for refresh tokens. thanks Paul Thornthwaite
Adds option to disable token management. thanks Paul Thornthwaite
Adds means to update scoped account. thanks Paul Thornthwaite
Moves more of public API into Shared. thanks Paul Thornthwaite
Guards unimplemented mock tests. thanks Paul Thornthwaite
[Docs]
Switches to using Yard for documentation. thanks Paul Thornthwaite
[aws]
fixed auto scaling model group 'destroy' method where it needs to use merge! instead of merge to set the opts local variable in place, otherwise the options passed to the method are droppedon the floor. thanks Jay Perry
[aws|compute]
add offeringType to output from describe_reserved_instances_offerings. thanks geemus
fix mocks/tests around describe_reserved_instances_offerings. thanks geemus
fix one more offeringType mock format test failure. thanks geemus
[aws|dynamodb]
port off of sts for credentials, now uses signature v4. thanks geemus
[aws|storage]
Add Fog::Storage::AWS#delete_multiple_objects. thanks Garret Alfert
Add mock for Fog::Storage::AWS#delete_multiple_objects. thanks Garret Alfert
Little improvements to delete_multiple_objects tests. thanks Garret Alfert
Add Fog::Storage::AWS#delete_multiple_objects. thanks Garret Alfert
Add mock for Fog::Storage::AWS#delete_multiple_objects. thanks Garret Alfert
Little improvements to delete_multiple_objects tests. thanks Garret Alfert
[core]
Adds fog User-Agent header. thanks Paul Thornthwaite
Splits Fog::VERSION into own file. thanks Paul Thornthwaite
Adds fog User-Agent header. thanks Paul Thornthwaite
Updates Rakefile to use Fog::VERSION. thanks Paul Thornthwaite
[dns]
Add more record tests. thanks Brian Hartsock
[docs]
Updates link on fog.io to point to doc. thanks Paul Thornthwaite
Updates contributing notes. thanks Paul Thornthwaite
Replaces link to API to `rubydoc.info`. thanks Paul Thornthwaite
Adds 1.8.7 note to fog.io collaborators guide. thanks Paul Thornthwaite
[misc]
Add support for AWS Australia (ap-southeast-2). thanks Amy Woodward
Add Hosted Zone ID for ap-southeast-2. thanks Amy Woodward
Do not add empty security group. thanks Dan Bode
Add attr group. thanks Dan Bode
Sync with latest OpenStack flavors extensions. thanks Dan Prince
OpenStack floating_ip (aka address) test fixes. thanks Dan Prince
OpenStack: Remove volumes from limits tests. thanks Dan Prince
OpenStack: updates to quota tests. thanks Dan Prince
OpenStack: security group test fixes. thanks Dan Prince
add support for Storage::Rackspace::File#access_control_allow_origin and #origin. thanks Dusty Jones
add support for Storage::Rackspace::File#access_control_allow_origin and #origin. thanks Dusty Jones
Save the file instance before testing for presence of attribute. thanks Dusty Jones
Fix describe_instances stateReason handling. thanks Edward Muller
added support for Storage::Rackspace::File#metadata. thanks Evan Smith
added support for Storage::Rackspace::File#metadata. thanks Evan Smith
merged with origin. thanks Evan Smith
Rackspace Cloud Files. can load metadata from existing file. can set metadata for new file. can unset metadata for existing file. thanks Evan Smith
merged with upstream master. thanks Evan Smith
Implemented bootstrap method for Rackspace Compute v2. Added ability to set "metadata" and "personality" fields when creating a server on Rackspace Compute v2. Improved response parsing when dealing with Rackspace DNS service. thanks Jesse Scott
Removed the commented out password setting line for Rackspace Compute v2 bootstrap method. thanks Jesse Scott
Clarified the logic for finding the newly created DNS record for Rackspace Cloud DNS. thanks Jesse Scott
fix warning message to follow correct bucket naming guidelines. thanks Michael Elfassy
Bucket names cannot begin with the "goog" prefix. Also change for DNS compliant subdomain. thanks Michael Elfassy
VMWare vsphere provider refactor. thanks Ohad Levy
do not force trailing / on path. thanks Ohad Levy
Removes dead link to DNS tests. thanks Paul Thornthwaite
Adds link to Code Climate metrics. thanks Paul Thornthwaite
Extracts Changelog Rake task to class. thanks Paul Thornthwaite
Moves fog.io generation a prerequsite. thanks Paul Thornthwaite
Extracts docs rake tasks to a class. thanks Paul Thornthwaite
Extracts testing Rake tasks to class. thanks Paul Thornthwaite
Moves new Task classes to better location. thanks Paul Thornthwaite
Revert "[core] Adds fog User-Agent header". thanks Paul Thornthwaite
Inconsistent usage of cpus / vpcus in libvirt / requests. Reported number of cpus was always 1 for libvirt domains. thanks Romain Vrignaud
use CGI.escape when encoding the POST body. thanks Sam Cooper
Added versioned delete_multiple_objects support. thanks Timur Alperovich
Add support for volume_pool_name. thanks Vincent Demeester
fixes issue#1313 ~ Creating user via `Aws.iam.users` ignores `:path`. thanks VirtualStaticVoid
revised create logic to default path to '/'. thanks VirtualStaticVoid
added test for create logic to default path to '/'. thanks VirtualStaticVoid
added support for mock. thanks VirtualStaticVoid
revised test order. thanks VirtualStaticVoid
README: s/'cloud computing'/'cloud services'. thanks Wesley Beary
Adding explicit support for metadata for Rackspace compute_v2. thanks heyryanw
removed Fog::AWS[:rds] this was creating issues with was security credentials. thanks mauro catenacci
Adding public_ip_address and private_ip_address to Fog::Compute::RackspaceV2::Server. thanks sashap
Adding bootstrap and setup for RackspaceV2 servers. thanks sashap
[openstack]
Add Accept header with application/json media type to requests. thanks Andrew Donald Kennedy
Refactor Openstack Authentication. thanks Nelvin Driz
Fix Typo in Merge of Authentication Refactoring. thanks Nelvin Driz
Make use of the unscoped token for reauthentication. thanks Philip Mark M. Deazeta
[openstack|compute]
Add "Reset Server State" request. thanks Nelvin Driz
Add `get_limits` request. thanks Nelvin Driz
[openstack|identity]
use tenant_id parameter in users model. thanks Philip Mark M. Deazeta
Add `attr_accessor :unscoped_token` to Mock. thanks Philip Mark M. Deazeta
[opnestack|identity]
Added set_tenant request for identity service. thanks Philip Mark M. Deazeta
[rackspace|computev2]
aded test for bootstrap. thanks Brian Hartsock
[rackspace|dns]
fixed tests, merged some formatting to reduce duplication. thanks Brian Hartsock
[rackspace|storage]
rackspace files tests should be pending in mocked mode. thanks geemus
[readme]
update outdated sponsorship section. thanks geemus
[vsphere]
ensure reload works correctly for server. thanks Ohad Levy
1.7.0 11/04/2012 aa853488c9d84d849f52cf348787030fbb963163
=========================================================
Stats! { 'collaborators' => 41, 'downloads' => 1216554, 'forks' => 599, 'open_issues' => 80, 'watchers' => 2206 }
MVP! Nick Osborn
[AWS::Mock|create_image]
automatic registration of ebs image upon image_create. thanks Chielo Zimmerman
[AWS|Glacier]
Fix description header not being passed through Fog.escape. thanks Frederick Cheung
[Brightbox]
Change code to return Single user. thanks Hemant Kumar
Adds ApiClient Model. thanks Hemant Kumar
Add identifier to get_account method. thanks Hemant Kumar
Reuses connection for image selection. thanks Paul Thornthwaite
Fixes cloud IP options default. thanks Paul Thornthwaite
Deprecates overloaded requests. thanks Paul Thornthwaite
Standardises update_firewall_rule. thanks Paul Thornthwaite
Deprecates old account update request. thanks Paul Thornthwaite
Use correct request to update account. thanks Paul Thornthwaite
Brightbox tests should select the smallest official image. thanks Steve Smith
Allows authentication as user. thanks Steve Smith
Allow users to lists all accounts associated with the current credentials. thanks Steve Smith
add support for User Applications. thanks Steve Smith
[HP|Storage]
remove debug output. thanks geemus
[Ninefold|Storage]
Use Atmos in Ninefold storage. thanks Timur Alperovich
[aws|auto_scaling]
update display_*_types. thanks Nick Osborn
Fix documentation URL. thanks Nick Osborn
support termination policies. thanks Nick Osborn
correct DefaultCooldown in mocks. thanks Nick Osborn
documentation tinkering. thanks Nick Osborn
support ForceDelete for delete_auto_scaling_group. thanks Nick Osborn
better tag handling. thanks Nick Osborn
DRY out ARNs in mocks. thanks Nick Osborn
document Tags option to create_auto_scaling_group. thanks Nick Osborn
fix AutoScalingGroupName in mock. thanks Nick Osborn
expose delete_notification_configuration request. thanks Nick Osborn
improve describe_*_types test. thanks Nick Osborn
improve notification configurations. thanks Nick Osborn
s/data/self.data/ in mocks. thanks Nick Osborn
mark describe_*_types requests as idempotent. thanks Nick Osborn
tags support. thanks Nick Osborn
expose termination policies in group model. thanks Nick Osborn
[aws|autoscaling]
fix casting availability_zones to array in create_auto_scaling_group mock. thanks geemus
mark problematic auto_scaling mocked tests as pending see also #1183. thanks geemus
[aws|cdn]
cover AWS CDN with some non-exhaustive tests. thanks Brice Figureau
Implements AWS CDN get_invalidation request. thanks Brice Figureau
fix incorrect get_invalidation result. thanks Brice Figureau
add aws cdn tests for streaming distributions. thanks Brice Figureau
fix cdn documentation. thanks Brice Figureau
AWS CDN models. thanks Brice Figureau
add request mock support for AWS Cloudfront. thanks Brice Figureau
fix up failing mocked tests around invalidations. thanks geemus
[aws|cloud_watch]
Add instrumentation support. thanks Michael Hale
[aws|ec2]
describe_availability_zones parser handles nested <item> tags. thanks Aaron Suggs
[aws|rds]
add region and owner_id as RDS connection attributes. thanks Benton Roberts
add request definitions for RDS tagging and increment RDS API version. thanks Benton Roberts
add tests for RDS tagging requests. thanks Benton Roberts
add tagging methods to RDS server model. thanks Benton Roberts
add tagging tests for RDS server model. thanks Benton Roberts
store mocked RDS instance tags in connection object. thanks Benton Roberts
FIX non-1.8-compliant syntax bug. thanks Benton Roberts
[misc]
modified create function to include options. changed "diskConfig" to "OS-DCF:diskConfig" to allow disk configuration to be properly set. thanks Alex Dunn
Removed options attribute and used the already existing disk_config attribute instead. Passed in options hash to create_server method with disk_config attribute unless nil. thanks Alex Dunn
Replace nil return value with private IP, implementation as in public_ip_address method. thanks Andrew Taylor
Change the metadata method to support amazon tags such as x-amz-website-redirect-location. thanks Arthur Gunawan
Fix issue #1245 - mock register_image fails with block device mapping. thanks Brice Figureau
Added ninefold load balancers. thanks Carl Woodward
Added other commands for load balancers. thanks Carl Woodward
Fix create load balancer test. thanks Carl Woodward
Add assign list to load balancer rules and update load balancer rule for Ninefold. thanks Carl Woodward
Add remove from load balancer test. thanks Carl Woodward
Move ssh private_key, public_key, username to Server model to reduce duplication. thanks Carlos Sanchez
Joyent server creation should not wait for server to be ready. thanks Carlos Sanchez
Added ParameterValue to engine_defaults_parser. thanks Curtis Stewart
Added outputs 'Description' field to DescribeStacks parser. thanks Curtis Stewart
Make region available to mock. thanks Edward Muller
Added OpenStack::Server#created and #updated. thanks Eric Hodel
Use :default from tests/.fog for test credentials. thanks Eric Hodel
Only run mocked tests by default. thanks Eric Hodel
Tested handling of Openstack server created and updated times. thanks Eric Hodel
create image now supports block device mapping. thanks Eric Stonfer
create image extended to allow for EBS volume handling. thanks Eric Stonfer
fix indexed_param usage. thanks Eric Stonfer
forgot to commit some changes. thanks Eric Stonfer
when querying servers by icenter group, servers will return nil. fixed this. thanks Eugene Howe
fixed bad request names. thanks Eugene Howe
correct the options checking in BlueBox create_block. thanks Josh Kalderimis
changed list nova servers request to get details. thanks Julio Feijo
Correct the handling of the power_on option. thanks Karan Misra
Added support for scheduler_hints in OpenStack. thanks Mariusz Pietrzyk
add force option to auto scaling group destroy method. thanks Michael Hale
use hash args. thanks Michael Hale
[AWS|cloud_watch]: fix list_metrics NextMarker should be NextToken. thanks Michael Hale
Fix to resolve "objectid is required for this operation" error message when calling public_url. thanks Michael Harrison
Fix to resolve "objectid is required for this operation" error message when calling public_url. thanks Michael Harrison
Return nil on public_url if the file isn't present on the cloud storage. thanks Michael Harrison
Added file existence check before file deletion attempt. thanks Michael Harrison
Rolled back deletion guard as some may be using the exception raised in their code. thanks Michael Harrison
Changed Atmos::FIle.public_url so an exception is thrown if the file doesn't exist on the cloud storage. thanks Michael Harrison
Changed Atmos::FIle.public_url so returns nil if the file doesn't exist on the cloud storage. This brings the method in line with other storage implementations such as AWS and Rackspace. thanks Michael Harrison
Changed Atmos::FIle.public_url so checks for existence of the file on storage on every call to the method minimising the potential for a 404 error. thanks Michael Harrison
added documentation. thanks Nick Huanuca
ammend dest_folder disclaimer. thanks Nick Huanuca
fixed vm listing problem. thanks Ohad Levy
Allows tests to run against FOG_RC setting. thanks Paul Thornthwaite
Beginning implementation of RDS subnet groups. thanks Rusty Geldmacher
Changes RDS subnet attribute name from subnets to subnet_ids. thanks Rusty Geldmacher
allow port to be included in queue_url. thanks Sairam
Fixed typos in elasticache and rds describe_events. Added better documentation of describe_events. thanks Sean Hart
Added test for describe_events.rb. It is very simple, and I'm not familiar with Shindo, so may need some assistance expanding. thanks Sean Hart
Added parsing for Marker. AWS limits response to 100 lines and gives you a marker to get the next batch with. thanks Sean Hart
Added missing header. thanks Stephen von Takach
Bumped mocked maximum value for provisioned iops. thanks Thom Mahoney
Ignore existing directory when creating on local storage. thanks Thomas Wright
Add config instructions to README. thanks Thomas Wright
Fix reference to config file. thanks Thomas Wright
expect public_key option instead of ssh_key on block create. thanks Trevor Bramble
Added usagePrice the hourly cost for a reserved instance. thanks Ulf Mansson
Added RDS describe_events. thanks Your Name
Created describe events for RDS. thanks Your Name
Update lib/fog/vsphere/requests/compute/vm_clone.rb. thanks endzyme
Update lib/fog/vsphere/requests/compute/vm_clone.rb. thanks endzyme
Update lib/fog/vsphere/requests/compute/vm_clone.rb. thanks endzyme
[ninefold|compute]
update load balancer tests to pass hash parameters for backwards compatability. thanks geemus
mark before/after blocks as pending in mocked mode also. thanks geemus
[openstack]
Authentication Mocks. thanks Nelvin Driz
Fix Failing Shindo Tests. thanks Nelvin Driz
Ensure String Username for Authentication. thanks Nelvin Driz
Changed volumes attributes of mocks from camelcase to snakecase. thanks Philip Mark M. Deazeta
Updated mocks for quota, image, tenant and volumes. thanks Philip Mark M. Deazeta
Fixed mocks for failing shindo tests. thanks Philip Mark M. Deazeta
Updated 'image update' mocks. thanks Philip Mark M. Deazeta
[openstack|compute]
Added auth_token_expiration. thanks Alfonso Juan Dillera
Fixed security groups typos. thanks Alfonso Juan Dillera
Fix Server Mocks and `find_by_id` method. thanks Nelvin Driz
[openstack|identity]
Update for failing mock test. thanks Alvin Garcia
Update Identity Mocking Process. thanks Nelvin Driz
Update Fog Mocks on Authentication, User and Roles. thanks Nelvin Driz
[openstack|image]
Added update_members function. thanks Alvin Garcia
Added updateable attributes. thanks Alvin Garcia
Added optional attributes to set on create image. thanks Alvin Garcia
Fixed update image and list public images mocks. thanks Alvin Garcia
Fix Hash Access on Mock of Create Image. thanks Nelvin Driz
[openstack|network]
Add support for OpenStack Quantum. thanks Ferran Rodenas
Add filters to networks, ports and subnets. thanks Ferran Rodenas
[rackspace|identity]
user should be alphanumeric. thanks geemus
1.6.0 09/15/2012 4bd909557fd595a656ebd86a3d7c5849bd923fe1
=========================================================
Stats! { 'collaborators' => 40, 'downloads' => 1015900, 'forks' => 539, 'open_issues' => 55, 'watchers' => 2119 }
[AWS]
Implement signature v4. thanks Frederick Cheung
Create the time directly in tests, avoids using a method not present in 1.8.7. thanks Frederick Cheung
avoid spurious test failure when tag test returns before images test. thanks Frederick Cheung
Adding missing :glacier case for AWS.collections. thanks Frederick Cheung
[AWS|AutoScaling]
Typo in delete_autoscaling_group mock: Autoscaling->AutoScaling. thanks Frederick Cheung
fix group#instances. thanks Frederick Cheung
Fix describe_auto_scaling_groups parser added spurious nil groups. thanks Frederick Cheung
Fix delete_auto_scaling_group.rb mock not raising the same error as real code. thanks Frederick Cheung
[AWS|Compute]
Add the ablity to pass :version and use newer AWS API. thanks Zuhaib M Siddique
[AWS|Glacier]
Bare glacier service. thanks Frederick Cheung
single part uploads. thanks Frederick Cheung
multipart uploads. thanks Frederick Cheung
Jobs requests. thanks Frederick Cheung
vaults model. thanks Frederick Cheung
Use bytesize rather than length. thanks Frederick Cheung
models for archives. thanks Frederick Cheung
jobs model. thanks Frederick Cheung
Add notification configuration to model. thanks Frederick Cheung
mark tests as pending. thanks Frederick Cheung
byteslice is only available in 1.9.3 - add fallback for 1.9.2. thanks Frederick Cheung
fix 1.9.2 fallback. thanks Frederick Cheung
make 1.8.7 friendly. thanks Frederick Cheung
Fix job type constant. thanks Frederick Cheung
fix setting description on multipart upload. thanks Frederick Cheung
fix name of header used for description. thanks Frederick Cheung
Allow filtering of jobs collection. thanks Frederick Cheung
Don't try to deserialize json when body is empty. thanks Frederick Cheung
[AWS|RDS]
expose the SnapshotType attribute & allow filtering by it. thanks Frederick Cheung
[AWS|Signaturev4]
allow symbols to be used as header/query keys. thanks Frederick Cheung
[AWS|Storage]
mark upload_part as idempotent so it will be retried automatically. thanks Frederick Cheung
[Brightbox]
Fix output format for brightbox cloud ip. thanks Hemant Kumar
[Brightbox|CloudIp]
Remove duplicate constant definition for port translators. thanks Hemant Kumar
[Cloudstack]
1.8.7 compat: on 1.8.7 '123'[0] returns the byte value of '0' and not '1'. thanks Frederick Cheung
[Core]
fix format_helper assuming p returns nil. thanks Frederick Cheung
[HP]
delete_if returns the array, not what was deleted. thanks Frederick Cheung
[OpenStack]
fixes wrong method name. thanks Ohad Levy
[Openstack]
Fix mock returning a hash instead of an array. thanks Frederick Cheung
[Openstack|Compute]
Security Groups are not assigned correctly to servers. thanks Ohad Levy
[aws|auto_scaling]
Add instrumentation support. thanks Michael Hale
[aws|compute]
fix typo in deprecation warning. thanks Aaron Suggs
Nicer interface for security group authorizations. thanks Aaron Suggs
Add instrumentation support. thanks Dan Peterson
Support creating and describing volumes with provisioned IOPS. thanks Dan Peterson
Get instance requests tests working. thanks Dan Peterson
Support for EBS-optimized instances. thanks Dan Peterson
Pass empty groupIds when mocking. thanks Dan Peterson
DescribeInstanceStatus code within eventsSet goes on the item. thanks Dan Peterson
fixes for spot request waiting see also #841. thanks geemus
remove brittle instance tests which rely on tests running fast p.s. these fail on travis-ci. thanks geemus
fix mock filters for internet gateways/subnets/vpcs. thanks geemus
[aws|elb]
Add instrumentation support. thanks Dan Peterson
fixes for mock tests. thanks geemus
[aws|iam]
Add instrumentation support. thanks Dan Peterson
[aws|rds]
Correct server#read_replica_identifiers when mocking. thanks Aaron Suggs
Mocking better supports reboot state. thanks Aaron Suggs
Mocking better supports modifying state. thanks Aaron Suggs
Fix server tests. thanks Aaron Suggs
Mocking support for read replicas. thanks Aaron Suggs
Mock support for setting AZ and MultiAZ. thanks Aaron Suggs
[brightbox]
Use first available image for server tests. thanks Steve Smith
[brightbox|ServerGroup]
ServerGroups can have a nil name. thanks Steve Smith
[brightbox|compute]
Merged outstanding work from Brightbox's fork. thanks Paul Thornthwaite
Implemented reboot using available API commands. thanks Paul Thornthwaite
Updates to Test helper for select image. thanks Paul Thornthwaite
Helper to get default image from API. thanks Paul Thornthwaite
[cloudstack|compute]
remove erroneous comma in merge command. thanks geemus
[compute|Ecloud]
Ecloud should not show up as a valid provider when not providing credentials. thanks Eugene Howe
[dynect|dns]
Only JSON decode when Content-Type says so. Fixes job handling. thanks Dan Peterson
Job polling should use original expected statuses. thanks Dan Peterson
[google/storage]
Fix docs for new GCS urls. thanks Nat Welch
[google|storage]
update expected format to remove StorageClass. thanks geemus
also update mocks to omit storageclass. thanks geemus
[hp|storage]
Use response_block param, as excon has deprecated implicit blocks. thanks Ferran Rodenas
[misc]
When using mock mode, Range header is now not ignored in get_object(). thanks Ahmed Al Hafoudh
Documentation error for delete_object. thanks Alex Tambellini
Add barebones configuration for Travis CI. thanks Alexander Wenzowski
add Travis CI build status image. thanks Alexander Wenzowski
notify #ruby-fog on freenode instead of emailing. thanks Alexander Wenzowski
remove repository_url from notification template Interpolation of %{repository_url} is currently broken on Travis CI. thanks Alexander Wenzowski
CloudStack: added registerTemplate request. thanks Aliaksei Kliuchnikau
CloudStack: listTemplates, registerTemplate requests return hypervisor in the response. thanks Aliaksei Kliuchnikau
Enable AWS spot requests in a VPC by specifying subnet_id. thanks Ben Turley
Fix for RDS VPC subnet groups. thanks Ben Turley
parse ASCII code * in wildcard domain. Fixes #1093. thanks Blake Gentry
automatically figure out the elb hosted_zone_id if possible. thanks Blake Gentry
Add source for getting instance mac address. thanks Carl Caum
Only add VNC password and listen port if present. thanks Carl Caum
Revert 530122d. thanks Carl Caum
Abillity to List Images and List SSH Keys. thanks Chirag Jog
Add support to create, delete internet services. thanks Chirag Jog
Accept vCPUS and Memory as parameters while creating servers. thanks Chirag Jog
Minor Fixes: Remove unncessary prints. Use override_path instead of replace class variable path. thanks Chirag Jog
Fix support to add internet service to the existing Public Ip. thanks Chirag Jog
Support to configure vapp and add multiple internet services. thanks Chirag Jog
Remove uneccessary puts. thanks Chirag Jog
Add support to build/re-build/clobber gem/package/docs. thanks Chirag Jog
Fix minor issue. thanks Chirag Jog
Re-work based on Geemus's review. Manage InternetService and NodeService as separate entities Reload server status properly. thanks Chirag Jog
Revert Rakefile changes. thanks Chirag Jog
1.Ability to fetch/list Orgs, Vdcs, Vapps, Servers. 2.Support to customize CPUs and Password. thanks Chirag Jog
Add ability to configure a vApp with an Org-wide network and associated firewall, NAT rules(limited support). thanks Chirag Jog
1.Fix Catalog Listing for vCD 1.5 2.Construct Valid XML to memory configuration 3.Fix Undeploy vCD 1.5. thanks Chirag Jog
Added m1.medium instance type for AWS flavors. thanks Curtis Stewart
- Updated "@host" variable to "noc.newservers.com" which is the current host for API calls - Added two calls: add_server_by_configuration.rb and list_configurations.rb -- These calls should be used instead of add_server and list_plans, although we still support them. - General comments were updated. thanks Diego Desani
Add gsub to replace URL-encoded characters in the public_url method. thanks Eric Chernuka
fix reboot guest in vsphere to reboot rather than shutdown guest. thanks Eric Stonfer
added file upload and ip add capabilities. thanks Eugene Howe
added error handling for edge cases where there are no networks or ips. thanks Eugene Howe
[AWS|Glacier} basic vault operations. thanks Frederick Cheung
fix mock not returning the right data. thanks Frederick Cheung
set Content-MD5. thanks Frederick Cheung
Add fqdn to server attributes. thanks Hemant Kumar
Brightbox : Include licence_name in Image. thanks Hemant Kumar
Brightbox: Change licence_name type to Fog::Nullable::String. thanks Hemant Kumar
Add support for port translators. thanks Hemant Kumar
Rackspace Storage: new request, get_object_https_url. thanks James Healy
Rackspace Storage: new request, post_set_meta_temp_url_key. thanks James Healy
Rackspace Storage: a backslash shouldn't be escaped when signing URLS. thanks James Healy
add a basic spec for Rackspace::Storage#get_object_https_url. thanks James Healy
add basic spec for Rackspace::Storage##post_set_meta_temp_url_key. thanks James Healy
Rackspace Storage: fix expiring URLs that contain a hyphen. thanks James Healy
Add Serverlove directory. thanks James Rose
Basic Serverlove implementation. thanks James Rose
Wrong directory. thanks James Rose
Typo. thanks James Rose
Proper request arguments. thanks James Rose
Typo. thanks James Rose
Still wrong. thanks James Rose
Works. thanks James Rose
We want JSON. thanks James Rose
Typo. thanks James Rose
add high io flavor to aws flavors. thanks Josh Lane
Move Dynect endpoint from api2 to api-v4. thanks Marc Seeger
don't let the Paulistas be left out of the party. thanks Martin Englund
use 10.04 instead of 12.04. thanks Martin Englund
Google changed their URL scheme for Cloud Storage. thanks Nat Welch
Also change GCS url in dir and file models. thanks Nat Welch
Update lib/fog/hp/models/compute/image.rb. thanks Neill Turner
Update lib/fog/hp/models/compute/server.rb. thanks Neill Turner
Update lib/fog/aws/requests/compute/describe_instance_status.rb. thanks Oleg
Added new Server#fqdn attribute to test helper. thanks Paul Thornthwaite
Rewrite tests to use 1.8 compatible Hash syntax. thanks Paul Thornthwaite
Add missing providers to the all_providers list for testing. thanks Paul Thornthwaite
Use string not symbols for Storage tests to work with Shindo tagging. thanks Paul Thornthwaite
Retagged tests with strings to be skipped by Shindo. thanks Paul Thornthwaite
Tagged AWS URL test so correctly ignored by Shindo. thanks Paul Thornthwaite
Reduce maintenance of tests by using a dynamic list of providers. thanks Paul Thornthwaite
add support for multiple regions in Opentack. thanks Pedro Perez
Fixed the link to GitHub issues. thanks Postmodern
Change iprange --> ec2_secg in Mock. thanks Rob Lockstone
Added support for RDS VPC subnet groups. Bumped RDS API version to 2012-01-15. thanks Rusty Geldmacher
Added DBSubnetGroupName to test format for RDS instances. thanks Rusty Geldmacher
Adding server love disk model. thanks Sean Handley
Changed disk model based on responses from real API requests. thanks Sean Handley
Set up drive objects (not disks). thanks Sean Handley
If you use info, you get all the info. thanks Sean Handley
Alias the encryption cipher. thanks Sean Handley
Sometimes the response body is empty. thanks Sean Handley
Destroying drives is easy. thanks Sean Handley
Allowed setting of params as k/v pairs. thanks Sean Handley
Added create/update functionality. thanks Sean Handley
Made create/save conform to the Fog API. thanks Sean Handley
Returning self is totes better than bools. thanks Sean Handley
Fog calls drives "images", rename for consistency. thanks Sean Handley
Beginnings of shin do request tests. thanks Sean Handley
Need these to run the server love tests. thanks Sean Handley
Beginnings of tests for image operations. thanks Sean Handley
Adding mock for easier testing. thanks Sean Handley
Added get_image function. thanks Sean Handley
Added meaningful test for updating images. thanks Sean Handley
Typo!. thanks Sean Handley
Fix conflict. thanks Sean Handley
This shouldn't be here. thanks Sean Handley
Can't run shindo tests with old references. thanks Sean Handley
Added loading of standard image. thanks Sean Handley
Shindo tests pass. thanks Sean Handley
Test that we can view servers. thanks Sean Handley
Whitespace adjustments. thanks Sean Handley
CRUDs + tests for servers. thanks Sean Handley
Added server power cycle actions + basic tests. thanks Sean Handley
Add new request methods to server object. thanks Sean Handley
Use get_server, not get_image. thanks Sean Handley
Need a mock server id. thanks Sean Handley
This was plain wrong - works now!. thanks Sean Handley
Don't start servers by default. thanks Sean Handley
Contrary to the documentation, this actually returns a 200 status rather than a 204. thanks Sean Handley
Allow setting of memory and disk drives. thanks Sean Handley
Allow DHCP assignment by default. thanks Sean Handley
Key 'vnc:ip' was invalid. thanks Sean Handley
Update allowed attributes and defaults. thanks Sean Handley
Increase test drive size to accommodate a real image. thanks Sean Handley
Without setting SMP the web UI won't load :-/. thanks Sean Handley
Reduce from 80GB to 20GB - big enough, save space. thanks Sean Handley
Standard images need to be unzipped. thanks Sean Handley
Need to wait for imaging to complete. thanks Sean Handley
Add a pseudorandom password generator for VNC. thanks Sean Handley
Auto generate VNC password randomly. thanks Sean Handley
Used the amazon published endpoints for sqs as defined at http://docs.amazonwebservices.com/general/latest/gr/rande.html#sqs_region. thanks Stuart Eccles
Better mocks for invalid Provisioned IOPS values. thanks Thom Mahoney
Add generic support for EMC Atmos. thanks Timur Alperovich
Submit password/ssh_key/username through POST body. thanks Trevor Bramble
Update public_url to handle new header casings from Rackspace. thanks Zachary Danger Campbell
CloudStack: images.get always returns nil - fixed. thanks alex
add changelog for 1.5.0. thanks geemus
fixes for cloudstack mock tests see #1090. thanks geemus
fix mocked elb tests by including InstanceProtocol closes #1090. thanks geemus
expand travis config, build more rubies, use non-threaded runner. thanks geemus
just run mri for now on travis. thanks geemus
remove empty failure block from model_helper. thanks geemus
allow 1.8.7 to fail and not report for now (until I can work out why it fails when 1.9.x works. thanks geemus
return to expecting 1.8.7 to pass. thanks geemus
fix deprecated requires in Rakefile. thanks geemus
Made steps to get update/create working. Work in progress. thanks seanhandley
Update lib/fog/aws/models/compute/security_group.rb. thanks vkhatri
[rackspace|blockstorage]
Add volume tests. thanks Brad Gignac
Add volume type tests. thanks Brad Gignac
Add snapshot tests. thanks Brad Gignac
Add relationship between volumes and snapshots. thanks Brad Gignac
Add block storage provider. thanks Julio Feijo
Add volume types to block storage. thanks Julio Feijo
Add snapshots to block storage. thanks Julio Feijo
[rackspace|compute]
Add service for Cloud Servers v2.0. thanks Brad Gignac
Add flavors and images. thanks Brad Gignac
Add servers model and collection. thanks Brad Gignac
Set password attribute on V2 servers. thanks Brad Gignac
Don't intern nil strings. thanks Brad Gignac
Add method for listing attachments. thanks Brad Gignac
Add tests for volume attachments. thanks Brad Gignac
Improve attachment test reliability. thanks Brad Gignac
Add attachments model and collection. thanks Julio Feijo
[rackspace|storage]
Override path when generating sha1 to make tests past. thanks Brian Hartsock
[serverlove|compute]
fix serverlove tests for 1.8.7 compatibility. thanks Frederick Cheung
fix serverlove tests for 1.8.7 compatibility. thanks geemus
1.5.0 07/28/2012 2e57e2029abbb618411c20f8974e64d8d3fd31fe
=========================================================
Stats! { 'collaborators' => 36, 'downloads' => 870008, 'forks' => 500, 'open_issues' => 44, 'watchers' => 2074 }
[AWS|Autoscaling]
fix group#instances returning all autoscaled instances in the account. thanks Frederick Cheung
[Libvirt]
fixed incorrect mock method signature. thanks Ohad Levy
ensure Fog volumes do not raise on LVM based volumes. thanks Ohad Levy
[aws|compute]
Address#destroy handles VPC addresses, improve address allocate/release mocking for VPC. thanks Dan Peterson
[aws|elasticache]
Fix bug in cache cluster test. thanks Benton Roberts
Remove erroneous whitespace trimming. thanks Benton Roberts
Add Elasticache service-level mocking support. thanks Benton Roberts
Add mocking for cache cluster requests. thanks Benton Roberts
Change modify_cache_cluster test to work in mocking mode. thanks Benton Roberts
Enable mocking for elasticache cluster tests. thanks Benton Roberts
Mock raises NotFound Exception when AWS does. thanks Benton Roberts
[aws|storage]
Default to false for persistent connections. thanks Kenny Johnston
[cloudstack|security_group]
fix rule revoke mock. thanks Josh Lane
[cloudstack|security_groups]
add groups and rules. thanks Josh Lane & Jason Hansen
[cloudstack|server]
assign security group. thanks Josh Lane & Jason Hansen
[dynect|dns]
No more recursion when polling jobs. Raise an error if the body indicates failure. thanks Dan Peterson
[fix-ephemeral-naming]
Typo in ephemeral naming. thanks Josh Pasqualetto
[joyent|compute]
fix dataset format in tests. thanks geemus
[local|storage]
mark tests pending in mock mode. thanks geemus
[misc]
fix changelog task for github API v3. thanks Aaron Suggs
update changelog for release 1.4.0. thanks Aaron Suggs
changelog: backdate to release data. thanks Aaron Suggs
Local storage support for #public_url. thanks Adam Tanner
Bugfix in Fog::DNS::AWS::Records.all!. thanks Alexander Kolesen
Fix for stopping all the servers instead of just specified servers. thanks Avrohom Katz
private ip address should start with a 10. thanks Avrohom Katz
Use proper signature when testing with aws mock. thanks Bohuslav Kabrda
The user must be destroyed even in mock mode, otherwise completely unrelated tests fail (e.g. tests/aws/models/iam/users_tests.rb). thanks Bohuslav Kabrda
The condition here should be the same as for destroying, so that we test iff the instance gets destroyed. thanks Bohuslav Kabrda
The assignment correctly returns nil, just the test has to react to it. thanks Bohuslav Kabrda
The assignment correctly returns false, just the test has to react to it. thanks Bohuslav Kabrda
Include this to make refresh_credentials_if_expired method work properly with Mock. thanks Bohuslav Kabrda
Fix the number where credentials expire - if too high, other tests will fail. thanks Bohuslav Kabrda
Fix openstack tests. thanks Bohuslav Kabrda
Fix more openstack mock tests failures. thanks Bohuslav Kabrda
Add the mock urls to fix some more openstack tests. thanks Bohuslav Kabrda
Fix minor typos and incorrect types in openstack volume tests. thanks Bohuslav Kabrda
More typos in openstack server tests. thanks Bohuslav Kabrda
Rework the quota mock testing to work and be more comfortable. thanks Bohuslav Kabrda
Must use values, so that connection.list_roles gets corrent argument. thanks Bohuslav Kabrda
Deleting returns nothing, so do not expect role. thanks Bohuslav Kabrda
Properly check whether role is present. thanks Bohuslav Kabrda
Return the properly updated image. thanks Bohuslav Kabrda
Add the 'new_image' public images, so that find_by_id can find it. thanks Bohuslav Kabrda
The pending block fails the outer one => make sure we return proper result. thanks Bohuslav Kabrda
Use proper parameters when testing deploying cloudstact VMs. thanks Bohuslav Kabrda
This was implemented right previously, shouldn't have changed it. thanks Bohuslav Kabrda
Correct solution for subnet failing tests - use a collection in self.data. thanks Bohuslav Kabrda
Do the same thing for vpcs as previously done for subnets. thanks Bohuslav Kabrda
...and the same for dhcp_options. thanks Bohuslav Kabrda
And the same for internet gateways. thanks Bohuslav Kabrda
Fixes the failure for hp storage. thanks Bohuslav Kabrda
[rackspace|databases| Add service tests. thanks Brad Gignac
fix for RDS mocking to avoid state flipping between "modifying" and "available". thanks Brian Nelson
Fix typo listing datacenters. thanks Carlos Sanchez
Stop vSphere vms before destroying, or destroy will fail. thanks Carlos Sanchez
Add a failure for #1014. :v:. thanks Dylan Egan
Only dup @attributes if it's not nil. thanks Edward Muller
each based pagination for Fog::AWS::IAM#users. thanks Edward Muller
fixes elb test in mocking mode. thanks Eric Stonfer
fix running subnet tests in mocking mode. thanks Eric Stonfer
fix subnet tests in mocking mode. thanks Eric Stonfer
fog bombs out on ruby 1.8.x because it cannot find Mutex. thanks Eric Stonfer
fix not pulling InstanceProtocol from the xml. thanks Frederick Cheung
Add Sao Paulo server to Amazon RDS known regions. thanks Irio Irineu Musskopf Junior
Add Sao Paulo server to Amazon SQS known regions. thanks Irio Irineu Musskopf Junior
Fix bug in local storage #copy_object. thanks Jade Tucker
Add and get SSL certificates to Rackspace Soft LB. thanks Justin Barry
Default to being less pessimistic about excon. thanks Kevin Moore
Fix ssh key behavior when passing specified private keys to ssh/scp. thanks Marc Seeger
Should not modify passed in "params" variable since block might run several times due to authentication failure producing erroneous path. thanks Max Stepanov
As discussed in #991, this converts the readme from SimpleMarkup to Markdown. thanks Mike Fiedler
added PeopleAdmin to list of users. thanks Mike Manewitz
Fixing typo bug in rackspace load balancer set_ssl_termination request. thanks Paul
add us-east-1e to mock. thanks Shai Rosenfeld
Pass up all the options that have been assigned. thanks Trotter Cashion
Pass options on to AutoScalingGroup. thanks Trotter Cashion
Add better ScalingPolicy support. thanks Trotter Cashion
Add more AWS Alarm functionality. thanks Trotter Cashion
Add delete mocks. thanks Trotter Cashion
Properly array-ify keys for create_auto_scaling_group. thanks Trotter Cashion
Add tags to autoscaling groups. thanks Trotter Cashion
Enable tests when mocking. thanks Trotter Cashion
Recognize ninefold_api_url option for pre-production testing. thanks Warren Bain
remove specs (likely from a bad merge). thanks geemus
update tests/helper to have bare_metal_cloud instead of new_servers. thanks geemus
Mock for filter ec2 instances by group name. thanks phillc
[openstack]
Fix Authentication for OpenStack v1.1 Authentication. thanks Nelvin Driz
[openstack|compute]
Add filters to list servers details. thanks Ferran Rodenas
Added adminPass attribute in create_server. thanks Philip Mark M. Deazeta
fix method signature for mock list_servers_detail. thanks geemus
[openstack|image]
Stream OpenStack image. thanks Vadim Spivak
[rackspace|databases]
Add read-only support for Rackspace Cloud Databases. thanks Brad Gignac
Add write support for Rackspace Cloud Databases. thanks Brad Gignac
Register Rackspace Cloud Databases service with Fog. thanks Brad Gignac
Remove "list/details" API calls in favor of "list" calls. thanks Brad Gignac
Add model tests. thanks Brad Gignac
Finish request tests. thanks Brad Gignac
Remove old comments. thanks Brad Gignac
Handle breaking API changes. thanks Brad Gignac
Initial pass at request tests. thanks Brian Hartsock
[rackspace|identity]
Add Rackspace identity service. thanks Brad Gignac
Add requests and request tests. thanks Brad Gignac
Add user model and collection with tests. thanks Brad Gignac
Handle non-array responses from list calls. thanks Brad Gignac
Better checking around hash/array responses. thanks Brad Gignac
Handle NotAuthorized respones from the identity API in the user model. thanks Brian Hartsock
use a valid username in tests. thanks geemus
[rackspace|lb]
fixed broken tests because of API format changes. thanks Brian Hartsock
ssl termination fixes. thanks Brian Hartsock
moved to Fog::JSON.encode instead of MultiJson.encode. thanks Brian Hartsock
1.4.0 06/24/2012 24e0be755e251159f07d5d82beb1e8ef57c962d9
=========================================================
Stats! { 'collaborators' => 35, 'downloads' => 800348, 'forks' => 477, 'open_issues' => 43, 'watchers' => 2080 }
MVP! Nelvin Driz
[AWS]
make beanstalk, cdn, cloudformation, cloudwatch, elasticache, elb, storage, rds, ses, sns, route53 temporary credential friendly. thanks Frederick Cheung
[AWS|Auto Scale]
Add support for put_notification_configuration and change AWS API to use 01-01-2011 Spec. thanks Zuhaib M Siddique
[AWS|Autoscale]
Fixing Parameters notes for autoscale create launch configuration for InstanceMonitoring. Credit goes to boto, https://github.com/boto/boto/blob/develop/boto/ec2/autoscale/__init__.py , for having it correct. thanks Zuhaib M Siddique
Fixing Parameters notes for autoscale create launch configuration for InstanceMonitoring. Credit goes to boto, https://github.com/boto/boto/blob/develop/boto/ec2/autoscale/__init__.py , for having it correct. thanks Zuhaib M Siddique
[Openstack|Compute]
Usage Requests. thanks Hunter Nield
Migration and Console output. thanks Hunter Nield
server methods for console and migration. thanks Hunter Nield
Minor address cleanup. thanks Hunter Nield
[aws|address]
fixes release_address for VPC EIPs * amazon requires allocation_id only for vpc eips, and public_ip otherwise. thanks Albert Choi
[aws|beanstalk]
Added missing :beanstalk case. thanks George Scott
Added #load_balancer method. thanks George Scott
Serialize keys for SourceConfiguration. thanks George Scott
Added modify method for template. thanks George Scott
Support different AWS regions. thanks George Scott
Added swap_cnames method. thanks George Scott
[aws|compute]
add networkInterfaceSet context to EC2 instance parser. thanks Benton Roberts
[aws|dns]
Allow both Ruby and AWS style names for alias. thanks George Scott
Support for latency/weighted resource sets. thanks George Scott
Fixed #all iteration. thanks George Scott
Reimplemented #get. thanks George Scott
Added #all! method to Records. thanks George Scott
[aws|dynamodb]
correct batch_put_item to batch_write_item for consistency with API. thanks geemus
[aws|elb]
Failing test for load_balancers marker support. thanks Dan Peterson
Deprecate describe_load_balancers with just an array of names. thanks Dan Peterson
Marker support for describe_load_balancers. thanks Dan Peterson
Fix use of describe_load_balancers in tests. thanks Dan Peterson
load_balancers.get(nil) returns nil instead of the first of all load balancers. thanks Dan Peterson
[aws|iam]
Add test for AWS[:iam].get_user. thanks Benton Roberts
add test for AWS[:iam].get_user_policy. thanks Benton Roberts
FIX - make arguments AWS::IAM.get_user conform to expected standard for this module. thanks Benton Roberts
Fix Users model to comply with updated request parameter set. thanks Benton Roberts
mark role tests as pending in mock mode. thanks geemus
[aws|storage]
fix flipped logic on valid acl check closes #889. thanks geemus
fix method signature for setup_credentials. thanks geemus
[aws|storage|]
Make get_object_http_url use correct S3 host in returned URL. thanks Michiel Sikkes
Make get_object_http_url use correct S3 host in returned URL. thanks Michiel Sikkes
[brightbox|compute]
Updated image reference where unfortunately hardcoded. thanks Paul Thornthwaite
Remove resize request since not available. thanks Paul Thornthwaite
Update format tests for new attributes on Cloud IPs. thanks Paul Thornthwaite
Update format tests for "fqdn" attribute. thanks Paul Thornthwaite
Update format tests for updates to Image. thanks Paul Thornthwaite
[cloudstack]
prevent mock test failure when cloudstack credentials are not defined. thanks geemus
add to list of providers so it can be skipped when lacking credentials. thanks geemus
[cloudstack|compute]
zones,flavors,images,address. thanks Jason Hansen & Josh Lane
support async jobs. thanks Jason Hansen & Josh Lane
server abstraction and mocks. thanks Josh Lane & Jason Hansen
volumes support. thanks Josh Lane & Jason Hansen
[compute]
volume tests. thanks Josh Lane & Jason Hansen
[compute|aws]
Apply tags to volume at creation. thanks Dan Carley
Respect extra register_image options when mocking. thanks Dan Peterson
extend polling interval for spot_requests bootstrap. thanks geemus
cleanup internet_gateway mocks and remove debug output. thanks geemus
[compute|openstack]
update server attributes for shared compute tests. thanks geemus
cleanup for list security groups request/mock. thanks geemus
[docs]
fix link to EngineYard logo (broken in /storage, /compute, etc.). thanks Len
[ecloud|compute]
Adding multiple disks at once was not working properly. thanks Eugene Howe
fix optional params for validate_data closes #969. thanks geemus
[glesys|compute]
update server/status format to include cpu hash and warnings. thanks Anton Lindström
add reboot and compute test params. thanks Anton Lindström
[hp|compute]
fix tests to properly set default base image. thanks geemus
[ibm|compute]
Typo in parameter name, should be storageID. thanks Decklin Foster
[joyent|compute]
Fixes issue where params are not properly passed to #keys_create from #create_key. thanks Kevin Chan
Added #list_datacenters. thanks Kevin Chan
Support for DSA keys for auth. thanks Kevin Chan
[libVirt]
added tests. thanks Amos Benari
[libvirt]
refactored libvirt entire code. thanks Ohad Levy
expose node hostname. thanks Ohad Levy
added display attributes and allowed to change display of a running server. thanks Ohad Levy
volumes dev names must be uniq. thanks Ohad Levy
makes libvirt code more debian friendly. thanks Ohad Levy
- ensure no nil pools are returned. thanks Ohad Levy
Fix SSH keyfile being pulled from wrong param. thanks brookemckim
skip tests if ruby-libvirt is unavailable. thanks geemus
correct error message when skipping tests. thanks geemus
[misc]
Add support for internal ELBs in VPC. thanks Aaron Bell
cleaning up model. thanks Aaron Bell
fix parser to show scheme, add test for internal ELB creation. thanks Aaron Bell
fixing test. thanks Aaron Bell
add scheme to elb helper. thanks Aaron Bell
adds batch_put_item functionality to AWS dynamodb + test. thanks Alex Gaudio
Fixed non-persistent connections handling to AWS. thanks Alexander Kolesen
Fixed handling options[:persistent] in some cases. thanks Alexander Kolesen
added mock implementation. thanks Amos Benari
removed unneeded dependency,. thanks Amos Benari
new rbovirt version. thanks Amos Benari
use constant for GB. thanks Amos Benari
Adding network interface information and security group ids. thanks Artem Veremey
Adding network interface information and security group ids to the model. thanks Artem Veremey
Store the region for S3. thanks Ben Butler-Cole
add create_hosted_zone and get_hosted_zone request mocks. thanks Bulat Shakirzyanov
add list_hosted_zones request mock. thanks Bulat Shakirzyanov
add change_resource_record_set request mock. thanks Bulat Shakirzyanov
fix response codes and formatting. thanks Bulat Shakirzyanov
fix typos. thanks Bulat Shakirzyanov
fix identifiers. thanks Bulat Shakirzyanov
use hard-coded sample value to eliminate randomness. thanks Bulat Shakirzyanov
fix typos. thanks Bulat Shakirzyanov
fix zone id in create_hosted_zone response. thanks Bulat Shakirzyanov
fix attribute name. thanks Bulat Shakirzyanov
add authorize and revoke port range for security group. thanks Bulat Shakirzyanov
Fix typo. thanks Christopher Meiklejohn
Specify image_ref rather than trying to instantiate object. thanks Christopher Meiklejohn
Fog::Compute::AWS::Address#server -> assigned Server. thanks Dr Nic Williams
fix auto-discovery for HP Cloud by fog bin. thanks Dr Nic Williams
whitespace. :bomb: :v:. thanks Dylan Egan
Default to false for persistent connections. You can't pass in false. This now behaves like other connections in fog. :v:. thanks Dylan Egan
Idempotent Dynect calls. :v:. thanks Dylan Egan
Fix up describe_volume_status to work with THE ARRAYZ. :v:. thanks Dylan Egan
Fog::AWS.indexed_reuqest_param. thanks Edward Muller
include the nextToken in the body. thanks Edward Muller
complete Request param support. thanks Edward Muller
refactor to use Fog::AWS.indexed_request_param. thanks Edward Muller
the old parser was not working properly. thanks Edward Muller
All directories.create on us-east-1. thanks Edward Muller
us-west-2 default ami. thanks Edward Muller
some small fixups. thanks Edward Muller
make the aws region accessible. thanks Edward Muller
Fog::Compute::Server#private_key=. thanks Edward Muller
Fog::Compute::Server#sshable?. thanks Edward Muller
ssh/run optionally takes a block. thanks Edward Muller
Cleanup after talking to @dpiddy. thanks Edward Muller
return '' not nil. thanks Edward Muller
Revert "Add debug option to Fog::Compute::Server#ssh". thanks Edward Muller
Mock stop_instances. thanks Edward Muller
Mock aws compute start_instances. thanks Edward Muller
Don't duplicate effort. thanks Edward Muller
Add ssh_port to Fog::Compute::Server. thanks Edward Muller
Generalize NoLeak Inspector for Fog::Service. thanks Edward Muller
Don't leak HP cdn & storage. thanks Edward Muller
Make aws compute server retry SSH on EHOSTUNREACH. thanks Eric Boehs
Copied auth token reauthentication from rackspace|compute. thanks Eric Hankins
https://github.com/fog/fog/issues/810 - Add ENI support by maf23. thanks Eric Stonfer
minor fix to ENI tests. thanks Eric Stonfer
VPC ELBs, Tests, and the introduction of the InternetGateway object. thanks Eric Stonfer
clean up conflict. thanks Eric Stonfer
this adds the dhcp_options object and associated operations. thanks Eric Stonfer
merge upstream. thanks Eric Stonfer
forgot to commit dhcp_options tests. thanks Eric Stonfer
fix describe_volume_status parser. thanks Eric Stonfer