forked from fog/fog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
2436 lines (2052 loc) · 118 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.3.1 03/27/2012 f0f692456956fe2e414ef8205d0268259901644a
=========================================================
Stats! { 'collaborators' => 32, 'downloads' => 527366, 'forks' => 392, 'open_issues' => 27, 'watchers' => 1901 }
MVP! George Scott
[aws|dns]
Preserves change_id. Support for checking sync status via reload. thanks George Scott
Changed #insync? to #ready?. thanks George Scott
[ibm]
avoid using constants (Rails loads files multiple times, issue #807). thanks Decklin Foster
Make usage of #state rather than #status consistent. thanks Decklin Foster
[ibm|compute]
Add clone/destroy methods and tests to Image. thanks Decklin Foster
Add request test for list_vlans and fix mock. thanks Decklin Foster
[ibm|storage]
Restore storage_area, platform_version, clone_status Volume attributes. thanks Decklin Foster
[misc]
Allow custom headers in Storage#put_object_url. thanks Jacob Mattingley
Use https_url instead of deprecated url for put_object_url. thanks Jacob Mattingley
Adding Vlan class to IBM SmartCloud. thanks Joe Kinsella
bump excon dep to get jruby openssl fixes. thanks geemus
[storage]
properly update content-type at save time for file models. thanks geemus
1.3.0 03/21/2012 f78afe98242a60ae4dbbfcd8c5ab67ba71c6d773
=========================================================
Stats! { 'collaborators' => 32, 'downloads' => 513974, 'forks' => 387, 'open_issues' => 24, 'watchers' => 1893 }
MVP! Decklin Foster
[aws|cloud_watch]
GitHub Edit! s/prodide/provide/ :v:. thanks Dylan Egan
[aws|simpledb]
fix region/host for us-east-1. thanks geemus
[ibm]
Added Mocking and Tests. thanks Carl Hicks
Moar convenience methods for servers. thanks Carl Hicks
Update model for Volume. thanks Carl Hicks
Added request tests for addresses. thanks Carl Hicks
Initial IBM SmartCloud support. thanks Decklin Foster
Add Location model and requests. thanks Decklin Foster
Rename collection requests get->list so we have get_foo and list_foos. thanks Decklin Foster
Don't need json_body, so we can simplify requests; remove unused params. thanks Decklin Foster
Pass optional params to requests with hashes. thanks Decklin Foster
Add a InstanceType model, returned as part of Images. thanks Decklin Foster
Rename model test files into compute, storage dirs. thanks Decklin Foster
Remove trailing whitespace. thanks Decklin Foster
Update tests to match model arguments (attribs hash) and lower-level request methods. thanks Decklin Foster
Update mocks to reflect moving volume models from from compute to storage. thanks Decklin Foster
Add some missing mocks, fix list_instances. thanks Decklin Foster
Raise NotFound in mock instead of returning a 404. thanks Decklin Foster
Fix form_encode to stringify args (e.g. booleans) to URI.escape. thanks Decklin Foster
Typos in state names and status vs. state. thanks Decklin Foster
Fix key model for passing public_key, add setting/testing whether key is default. thanks Decklin Foster
Setting default key returns success, not key name. thanks Decklin Foster
Typo, assignment instead of equality, made some tests incorrectly pass. thanks Decklin Foster
Flesh out modify_instance and modify_key for different modes. thanks Decklin Foster
Restarting should return success, changing expiration should only return time. thanks Decklin Foster
Delete instance mock should return success. thanks Decklin Foster
Remove IBM from flavors tests. thanks Decklin Foster
Make names used in tests unique using current time. thanks Decklin Foster
Add vlan_id attrib so that it can be used in creating an instance. thanks Decklin Foster
Return nil for public_hostname if primary_ip unset (e.g. state is Failed). thanks Decklin Foster
Change default location and image ID. thanks Decklin Foster
Rename ibm_user_id -> ibm_username. thanks Decklin Foster
Create temporary keys in tests that need to create instances. thanks Decklin Foster
servers are not sorted, don't assume we can just take the last. thanks Decklin Foster
create_image should do a PUT, not a POST, and needs 'state' param. thanks Decklin Foster
Correct spelling of test volume format ('RAW') and fix parameter typo. thanks Decklin Foster
Rename data -> body. thanks Decklin Foster
Don't reboot or immediately expire, interferes with other tests. thanks Decklin Foster
Use Raleigh location for tests. thanks Decklin Foster
Nullable formats for attributes that may not be returned. thanks Decklin Foster
Set expire a few seconds in the future since it takes a while to process. thanks Decklin Foster
Return nil if instance_id is nil. thanks Decklin Foster
Can't access Fog::Compute::IBM::Location class from here, just check if ID returned. thanks Decklin Foster
servers.length will include already existing servers. thanks Decklin Foster
Add state and ready? method to Image. thanks Decklin Foster
Change public key format. thanks Decklin Foster
vlan is part of primaryIP. thanks Decklin Foster
Rename root_only -> is_mini_ephemeral. thanks Decklin Foster
Description is mandatory. thanks Decklin Foster
Wait for instance to be ready before deleting it or creating image. thanks Decklin Foster
Add state/ready? methods for Address. thanks Decklin Foster
Expiration time should be epoch in ms. thanks Decklin Foster
launched_at convenience method. thanks Decklin Foster
Don't set server to nil. thanks Decklin Foster
Set a longer timeout on all wait_for calls. thanks Decklin Foster
Generated key needs different name, supplied key only returns success. thanks Decklin Foster
Invalid instance creation will return a 412 and thus raise PreconditionFailed. thanks Decklin Foster
Don't calculate expiration time until ready to make the request. thanks Decklin Foster
Fix volume formats and mocks. thanks Decklin Foster
Wait for volume to be ready before deleting. thanks Decklin Foster
Mark volume attach/detach pending, won't create instance. thanks Decklin Foster
Return pending if provisioning times out in the real tests. thanks Decklin Foster
adding documentation. thanks Wyatt Walter
add bin helpers for storage. thanks geemus
[misc]
ovirt added support for 'set vm ticket'. This api call is needed for openning a console to the server. thanks Amos Benari
wrangled security tests into working. thanks Eric Stonfer
Changes to the security group handling: * CreateSecurityGroup now includes the group id in the reply, this patch makes the code store this * The patch also changes the delete call to use the group id if present (since you must use the id when deleting VPC groups). thanks MaF
Changes to the security group handling: * CreateSecurityGroup now includes the group id in the reply, this patch makes the code store this * The patch also changes the delete call to use the group id if present (since you must use the id when deleting VPC groups) * Fix teh security group mock and test code to handle this new behavior. thanks MaF
Removed merge commit. thanks MaF
[release]
add Kevin Menard to future MVP exclusion list. thanks geemus
[storage|aws]
fix hardcoded host in get_object_http(s)_url methods. thanks geemus
1.2.0 03/19/2012 70e0f48fa446dbf233ae31c4f055eb26ea2dadd1
=========================================================
Stats! { 'collaborators' => 30, 'downloads' => 508132, 'forks' => 384, 'open_issues' => 23, 'watchers' => 1874 }
MVP! Kevin Menard
[AWS]
Compute: The security group parser was not parsing groupid properly. thanks Christopher Oliver
[AWS|DynamoDB]
table requests. thanks geemus
cleanup/fixes for tables. thanks geemus
item requests. thanks geemus
update item should not be idempotent when an action is specified. thanks geemus
fix for UpdateItem idempotency. thanks geemus
first pass at query/scan requests. thanks geemus
ConsumedCapacityUnits should be a Float. thanks geemus
add missing pending for mocked tests. thanks geemus
[AWS|ELB]
Added support for InstanceProtocol to listeners. thanks James Stremick
Updating listener and LB tests to include InstancePort checks. thanks James Stremick
[AWS|Storage]
versioning related fixes copy_object mocks. thanks geemus
fix for put_bucket_website mock. thanks geemus
remove redundant mock setup in tests #731. thanks geemus
[AWS|storage]
fix for versioned copy_object. thanks geemus
[Brightbox]
Updates to format tests. thanks Paul Thornthwaite
Updated Server output format. thanks Paul Thornthwaite
Updated format test to use correct link name. thanks Paul Thornthwaite
Updated Image format for min_ram attribute. thanks Paul Thornthwaite
Updated LoadBalancer format to include listeners in listing. thanks Paul Thornthwaite
Updated format for nested firewall policies. thanks Paul Thornthwaite
Merge in various spec corrections. thanks Paul Thornthwaite
Update format test to not fail on new attributes in JSON. thanks Paul Thornthwaite
Load balancer listener timeouts are now reported. thanks Paul Thornthwaite
Correct server snapshot test. thanks Paul Thornthwaite
[Compute|OpenStack]
match auth response to stable/diablo branch of keystone. thanks Todd Willey
[Rackspace|Storage]
set put_object to idempotent. thanks geemus
[aws]
add sts helper. thanks geemus
[aws|compute]
Fixed failing instance tests. thanks Christopher Oliver
Update API version and support new DescribeInstanceStatus format. thanks Dan Peterson
Fix allocate_address mocking. thanks Dan Peterson
Mock detach_volume should raise proper error if volume is not attached. thanks Dan Peterson
added group id to security group parser and model. thanks bdorry
added security group get by id method. thanks bdorry
[aws|dns]
Record identity is 'Name'. thanks Aaron Suggs
Add Record#modify method. thanks Aaron Suggs
Add model tests. thanks Aaron Suggs
add test for Record#modify. thanks Aaron Suggs
Parse IsTruncated as boolean in list_resource_record_set. thanks Aaron Suggs
Add support for aliasing records to Elastic Load Balancers (API 2011-05-05). thanks James Miller
[aws|elb]
start working on policies. :v:. thanks Dylan Egan
create policies, describe policies, fix old mocking and yup. :v:. thanks Dylan Egan
PolicyNotFound. :v:. thanks Dylan Egan
remove test debugging. :v:. thanks Dylan Egan
actually raise a PolicyNotFound. :v:. thanks Dylan Egan
InstanceProtocol support. :v:. thanks Dylan Egan
[aws|fog]
crapiness and hacks. :v:. thanks Dylan Egan
[aws|iam]
Mock upload_server_certificate errors if private key is not RSA. thanks Dan Peterson
P. :v:. thanks Dylan Egan
[aws|rds]
Mock DB snapshot requests. thanks Aaron Suggs
Enabled model tests that pass when mocking. thanks Aaron Suggs
[aws|storage]
Simple multipart uploads; supports files > 5GB. thanks Aaron Suggs
Automatically abort multipart uploads on exceptions. thanks Aaron Suggs
Add mock for Fog::Storage::AWS#put_bucket_website. thanks Garret Alfert
Handle S3 object deletions in the face of versioning. thanks Kevin Menard
Return the object version in the request header and set an attribute value in the model. thanks Kevin Menard
Allow options to be passed to the destroy method, facilitating passing of versionId. thanks Kevin Menard
Added ability to control bucket versioning from Directory model. thanks Kevin Menard
Added the ability to fetch a list of versions from a file. thanks Kevin Menard
Allow passing of options to fetching versions. thanks Kevin Menard
Added the pagination offset params to the get_object_bucket_versions parser. thanks Kevin Menard
Added the MfaDelete value to the get_bucket_versioning parser. thanks Kevin Menard
Fix put bucket website test, request returns not found when the bucket does not exist. thanks Peter Weldon
Add bucket lifecycle / object expiration requests. thanks Peter Weldon
make head_object idempotent. thanks geemus
direct https urls to subdomains even with dots this may result in ssl warnings, but that seems better than the alternative (redirects) see #611. thanks geemus
[aws|storage|test]
use a random directory key; prevent collision. thanks Aaron Suggs
Mark multipart upload test as pending. thanks Aaron Suggs
Added mock support for setting and retrieving versioning on a bucket. thanks Kevin Menard
Added in versioning support for S3 objects, sans deletion markers. thanks Kevin Menard
Track if the version is the latest or not. thanks Kevin Menard
Basic handling of version-id-marker. thanks Kevin Menard
Added the ability to get_object by versionId. thanks Kevin Menard
Added S3 versioning support for delete_object. thanks Kevin Menard
Deal with suspended buckets properly. thanks Kevin Menard
Added request tests for put_bucket_versioning and get_bucket_versioning. thanks Kevin Menard
Added tests for get_bucket_object_versions. thanks Kevin Menard
Added request test for get_object with versioning. thanks Kevin Menard
Added request tests for delete_object with versioning. thanks Kevin Menard
Added failing request test for delete_object with versioning. thanks Kevin Menard
Added in some file and directory model tests. thanks Kevin Menard
Added model tests for versioning Directory and File models. thanks Kevin Menard
Added tests for the Version model. thanks Kevin Menard
Added versioning test for Files collection. thanks Kevin Menard
Added versioning tests for Versions collection. thanks Kevin Menard
Added versioning test for Files#head. thanks Kevin Menard
Removed a commented-out test. thanks Kevin Menard
Make sure tests pass with both mocking enabled and disabled. thanks Kevin Menard
Fixed a regression with mocked get_bucket requests, due to a change in the mock data ordering. thanks Kevin Menard
Fixed handling of options in mocked get_bucket_object_versions. thanks Kevin Menard
Replaced random ETag implementation with MD5, per S3 docs. thanks Kevin Menard
[aws|sts]
make get_*_token requests idempotent. thanks geemus
[beanstalk]
avoid one remaining error with mocked tests. thanks geemus
[cloudstack]
Fix warning in ruby 1.8.7. thanks Aaron Suggs
added additional networking support and volume management commands. thanks Brian Dorry
added unit tests. thanks Brian Dorry
skip ssl verification. thanks geemus
[cloudstack|compute]
merged in upstream. thanks bdorry
added ssh key support, snapshot policy support. thanks bdorry
added update resource count action. thanks bdorry
[compute|aws]
fix for describe_images parser that accidently split records. thanks geemus
fix error in describe_security_groups parser closes #678. thanks geemus
[compute|cloudstack]
added basic cloudstack list support. thanks bdorry
added user management support. thanks bdorry
added domain management support. thanks bdorry
added domain management support, added documentation links to existing cloudstack requests. thanks bdorry
[core]
no need to expand the already exanded __LIB_DIR__. thanks geemus
update connection to use new excon response_block format. thanks geemus
[docs]
Update GitHub repository references from geemus/fog to fog/fog. thanks Benjamin Manns
[dynect|dns]
Pass zone.records.all options through to get_node_list. thanks Dan Peterson
[glesys|compute]
fix for changes in api. thanks Anton Lindström
[joyent|compute]
rename _test files to _tests for shindo. thanks geemus
make password required. thanks geemus
fix format of joyent to match real output and remove mock-only test. thanks geemus
[local|storage]
Fix Local::File deletion for Ruby 1.8. thanks Benjamin Manns
Add copy_object method to Local::Storage. thanks Benjamin Manns
Add copy method to Local::File. thanks Benjamin Manns
[misc]
whitespace. thanks Aaron Suggs
fix typo in comment. thanks Aaron Suggs
whitespace cleanup. thanks Aaron Suggs
Refactor to support ruby 1.8.7. thanks Aaron Suggs
Whoops, don't need to require digest/md5. thanks Aaron Suggs
whitespace. thanks Aaron Suggs
Adds Supprt for oVirt (http://ovirt.org). thanks Amos Benari
oVirt: Added tests to work on both real and mock. thanks Amos Benari
Removing duplicates from reservation's groupSet. thanks Artem
Remove coverage Rake task. thanks Benjamin Manns
Remove a step that referenced a private config file. thanks Bob Briski
updated cloudstack tests for user level permissions, added ssh key, disk offering, service offering, os type, security group tests. thanks Brian Dorry
Adding update_firewall_rule request. thanks Caius Durling
Correct an error with long keys where Base64.encode64 would add "\n" at 60 chars. thanks Chris Hasenpflug
Use gsub for Ruby 1.8.7 compatibility. thanks Chris Hasenpflug
Correct copy & paste error. thanks Chris Hasenpflug
implement #scp_download method to allow downloads in addition to uploads via scp. alias #scp method as #scp_upload. thanks Christoph Schiessl
tests for scp_download. thanks Christoph Schiessl
Removed various 'puts' statements... thanks Christopher Oliver
fix for free choice of region. thanks Daniel Schweighoefer
save the region in a instance variable. thanks Daniel Schweighoefer
rounding out API coverage in 'Virtual Machine section. thanks David Nalley
mock #create_user and #create_access_keys". thanks Edward Muller
fix typo. thanks Edward Muller
Enable Shindo tests for the mocked methods. thanks Edward Muller
Refactor mock data structure. thanks Edward Muller
mock #put_user_policy. thanks Edward Muller
Mock out #list_users. thanks Edward Muller
Mock #delete_user_policy. thanks Edward Muller
Move this is Mock.key_id and don't default the path. thanks Edward Muller
Add group mock data. thanks Edward Muller
Use #has_key? instead of #keys.include?. thanks Edward Muller
rework these to use #tap instead. Cleaner IMNSHO. thanks Edward Muller
Additional mocks. thanks Edward Muller
missing raise. thanks Edward Muller
DescribeVolumeStatus. thanks Edward Muller
Add code to support the creation and modification of security groups existing in a VPC. thanks Eric Stonfer
modified security group tests to accomodate the new security group data model. Also allowed permissions to be nil in the security tests for groups with no ACLs. thanks Eric Stonfer
Change default for vpc_id from '' to nil. thanks Eric Stonfer
fixed a conditional that was assigining = rather than evaluating == in vsphere clone routine. This resulted in cloning from folders always failing. thanks Eric Stonfer
Add the ability to create linked clones in vsphere. thanks Eric Stonfer
whitespace fix. thanks Eric Stonfer
whitespace fix. thanks Eric Stonfer
add a linked clone test scenario, set the vm_clone test to wait, and clean up old servers after the VM clone test. thanks Eric Stonfer
linked clone tests. thanks Eric Stonfer
This patch allows the ability to create 'blank' vms in vsphere. thanks Eric Stonfer
fix list_virtual_machines when using :folder. thanks Eric Stonfer
add vm reconfiguration functions for memory cpu / generic spec. thanks Eric Stonfer
add subnet and vpc info to instance gets. thanks Eric Stonfer
fixed a typo in vm_power_on_tests.rb. thanks Eric Stonfer
make eips useable in a VPC. thanks Eric Stonfer
associate EIPs in a vpc. thanks Eric Stonfer
update autoscaling groups to allow the use of recurrence, start and end times. thanks Eric Stonfer
realized that @activity was actually not used. thanks Eric Stonfer
fixed some whitespace issues in auto_scaling tests. Fixed auto_scaling tests formats. thanks Eric Stonfer
add host based vmotion. thanks Eric Stonfer
basic VPC creation. thanks Eric Stonfer
[aws]Add in subnets. thanks Eric Stonfer
enable_metrics_collection requires a granularity argument (1Minute is the only legal value). thanks Frederick Cheung
New file additions for AWS Elastic Beanstalk support. thanks George Scott
Added beanstalk service to AWS Provider. thanks George Scott
Unit tests for beanstalk. thanks George Scott
Now sets pending when mocking for all beanstalk model tests. thanks George Scott
environment now uses name as identity. thanks George Scott
Added additional convenience methods to application. thanks George Scott
remove rubygems require from core.rb. thanks Hemant Kumar
Reset the alias_target hash for good measure. thanks James Miller
Add a test for ALIAS records. thanks James Miller
Cleanups and crazy long sleep to ensure ALIAS zone is found. thanks James Miller
Fix linked clone mocked test unhandled exception. thanks Jeff McCune
(maint) Whitespace and format only clean up. thanks Jeff McCune
added support for server-side encryption on s3. thanks John Parker
Switch from NewServers to BareMetalCloud for #773. thanks John Wang
Add deprecation warning. thanks John Wang
Fixed bug in SQS :receive_message mock. thanks Joshua Krall
Fixed a typo in the warning. thanks Kashif Rasul
One more typo fix. thanks Kashif Rasul
GH-690 Joyent Cloud Provider. thanks Kevin Chan
Credentials: cloudapi_* -> joyent_* for consistency. thanks Kevin Chan
Revert "[joyent|compute] make password required" This reverts commit 6e93321e29e69cc863aa9d78cdcf1c83203a2fa7. thanks Kevin Chan
Fixes dataset tests. thanks Kevin Chan
- Fixes tests to run in both mock and non-mock mode - Clean ups and fixes. thanks Kevin Chan
Cleanups + Fixes #get_machine test breaking when there are no machines. thanks Kevin Chan
cleanups + refactorings + better error reporting per joyent cloudapi spec. thanks Kevin Chan
Fixed #673: Zerigo DNS - update_host fails with some options. thanks Kevin Menard
Fixed a filename. thanks Kevin Menard
implement respond_to? corresponding to method_missing for VirtualBox and libvirt. thanks Konstantin Haase
Swap aws_access_key_id and aws_secret_access_key positions in hash to match typical usage convention. thanks Kyle Drake
When Exists boolean is not specified, this request is not idempotent. thanks Lance Carlson
Scan sort of acts like a GET request, which are idempotent. thanks Lance Carlson
Only do a 'head' on the file that we've copied - no need to go download it now, that would defeat the purpose. thanks Lars Pind
Improved support for SecurityGroup IDs. thanks MaF
We must create the VPC before we can create a security group in it. thanks MaF
Changed verify_permission_options in mocked version of authorize_security_group_ingress to accept any ipProtocol for vpc groups. Also changed the security group test to use protocol 42 when testing vpc security_groups. thanks MaF
Check if exception has a #response method before calling it, otherwise call #message. thanks Manuel Meurer
Fix sync_clock method, only rescue Excon::Errors::HTTPStatusError that are known to have a #response method, let all other exceptions bubble up. thanks Manuel Meurer
Updated excon to version ~>0.10.0. Closes #781. thanks Marc Seeger
include fission gem. thanks Michael Brodhead & Shai Rosenfeld
Move fission from reg dependency to dev dependency per comments on pull request #736. thanks Michael Brodhead & Shai Rosenfeld
adding required gem to run the tests. thanks Ohad Levy
first cut of cleaning up libvirt server class. thanks Ohad Levy
minor cleanups. thanks Ohad Levy
fixes libvirt wrong state check. thanks Ohad Levy
libvirt - avoids exception if a uuid is not found. thanks Ohad Levy
libvirt: servers return nil, not an empty array... thanks Ohad Levy
Added basic tests to Ovirt compute provider. thanks Ohad Levy
Added check if Fog.mock! should be used in AWS tests. thanks Paul Thornthwaite
Nix hardcoded regions: DynamoDB. thanks Pavel Repin
Nix hardcoded regions: Autoscaling. thanks Pavel Repin
Nix hardcoded regions: CloudFormation. thanks Pavel Repin
Nix hardcoded regions: CloudWatch. thanks Pavel Repin
Nix hardcoded regions: EC2. thanks Pavel Repin
Nix hardcoded regions: ElastiCache. thanks Pavel Repin
Nix hardcoded regions: ELB. thanks Pavel Repin
Nix hardcoded regions: EMR. thanks Pavel Repin
Nix hardcoded regions: RDS. thanks Pavel Repin
Nix hardcoded regions: SES. thanks Pavel Repin
Nix hardcoded regions: SimpleDB. thanks Pavel Repin
Nix hardcoded regions: SNS. thanks Pavel Repin
Nix hardcoded regions: SQS (us-east-1 is special). thanks Pavel Repin
Nix hardcoded regions: S3 (us-east-1 is special). thanks Pavel Repin
Fixing typo "retreive" -> "retrieve". thanks Pedro Nascimento
Add the ":idempotent => true" property to create_tags to fix an issue when launching many instance from cluster_chef. thanks Peter C. Norton
Ran M-x align-regexp on the hashrockets. thanks Peter C. Norton
Passing half of rds/instance_tests.rb shindo tests. thanks Rodrigo Estebanez
making shindo tests for security groups in rds. thanks Rodrigo Estebanez
Better rds/security_group_test. Mocking rds security_groups. thanks Rodrigo Estebanez
Support for rds parameter groups mocking. thanks Rodrigo Estebanez
[aws][auto_scaling] Bug fixed: configurations.get(launch-configuration) always shows the first element. thanks Rodrigo Estebanez
it doesn't throw an error when the launch configuration doesnt exist. thanks Rodrigo Estebanez
[aws][auto_scaling]. Support delete_launch_configuration mocking. thanks Rodrigo Estebanez
Added PrivateIpAddress to the list of valid parameters for instance creation. thanks Rusty Geldmacher
Add Ecloud version 2.8 as supported. thanks Shai Rosenfeld
support alias records in the route53 models. thanks Thom May
Remove unused comment / commented code. thanks Todd Willey
Fix intial public_url when saving using rackspace_cdn_ssl = true. thanks Zachary Danger Campbell
added virtual machine support and security group support. thanks bdorry
merged in 0.11.0 release. thanks bdorry
merged 1.0.0. thanks bdorry
remove latest MVP from future possibilities. thanks geemus
examples should use providers.values. thanks geemus
fix Fog::Nullable::Boolean to include true/false. thanks geemus
update fog.io copyright year. thanks geemus
use path style access for https public_urls that include . to avoid certificate issues closes #743. thanks geemus
fix AWS get_object_http(s)_url methods to properly use subdomain vs path urls as appropriate closes #611. thanks geemus
loosen multi-json dependency closes #757. thanks geemus
remove examples as they are not that helpful or well supported. thanks geemus
bump excon dep closes #799. thanks geemus
bump excon dep. thanks geemus
strip ARNs - AWS is sensitive to leading and trailing whitespace/cr/lf. thanks hedgehog
allow for bundler+rbenv best practice. thanks hedgehog
Rackspace create_image request - pass all options. thanks kbockmanrs
Add Blue Box location support. thanks leehuffman
Update location UUID. thanks leehuffman
Add passing tests. thanks leehuffman
Fix location_id typo. thanks leehuffman
Add Blue Box location support. thanks leehuffman
Update location UUID. thanks leehuffman
Add passing tests. thanks leehuffman
Fix location_id typo. thanks leehuffman
[ninefold|storage]
Add copy method to Ninefold::File. thanks Benjamin Manns
[oVirt]
Fixed syntax error in ovirt parser. thanks Amos Benari
added option to block on start. Start action will block instead of fail. It can be useful in case of start after stop or create. thanks Amos Benari
added support for update vm on ovirt. thanks Amos Benari
Added VM and Template network-interfaces crud. thanks Amos Benari
[ovirt|compute]
#instance_variables returns Symbols in 1.9.2+. thanks Dan Peterson
[rackspace/compute]
Add 30GB (30720) compute size. thanks Phil Kates
[rackspace|storage]
Add copy_object request. thanks Benjamin Manns
Add copy method to Rackspace::File. thanks Benjamin Manns
[slicehost]
add deprecation warnings. thanks geemus
[storage]
fixes for deprecated implicit block usage to excon requests. thanks geemus
update get_object requests to use excon response_blocks. thanks geemus
[storage|test]
Run storage tests on a file in a subdirectory. thanks Benjamin Manns
[storage|tests]
Add copy method to storage tests. thanks Benjamin Manns
Check that the copied file body matches the original file. thanks Benjamin Manns
[vcloud]
mark mock tests pending. thanks geemus
[vcloud|compute]
rather mock Fog::Vcloud::Connection as this is the right place to mock things. thanks Peter Meier
improve models + additional tests. thanks Peter Meier
add API version 1.5 compability. thanks Peter Meier
[vmfusion|compute]
Sync fission v0.4.0 plus more. thanks Cody Herriges
[voxel]
update ssl_verify_peer = false setting. thanks geemus
[vsphere]
add to test skip list when lacking credentials. thanks geemus
[zerigo|dns]
Fixed an issue with updating a record since the response body is an empty string, not nil. thanks Kevin Menard
Fixed the parser. TTL and priority values can be nil and should not be coerced into integers in that case. thanks Kevin Menard
1.1.2 12/18/2011 c1873e37e76af83e9de3f3308f3baa0664dd8dc2
=========================================================
Stats! { 'collaborators' => 20, 'downloads' => 351821, 'forks' => 332, 'open_issues' => 21, 'watchers' => 1731 }
MVP! Stepan G. Fedorov
[Brightbox]
Fix zone_id/flavour_id getter/setter for Server. thanks Hemant Kumar
Add zone/server_type attribute for Server. thanks Hemant Kumar
Add username to Image. thanks Hemant Kumar
Add request for remove_firewall_policy. thanks Hemant Kumar
Add model method for remove. thanks Hemant Kumar
Change logic of fetching zone and flavour_id. thanks Hemant Kumar
Remove name as mandatory parameter for creating server group. thanks Hemant Kumar
Add created_at attribute for server_group,policy and firewall rule. thanks Hemant Kumar
Updated Image format tests for username. thanks Paul Thornthwaite
Updated ServerGroup format for created_at time. thanks Paul Thornthwaite
[aws|autoscaling]
allow sa-east-1 region in mocks. thanks Nick Osborn
[aws|compute]
fix security_group format for mock tests. thanks geemus
[aws|dns]
fix capitilization for records#all options. thanks geemus
[aws|elb]
update SSL certificates on listeners. :christmas_tree:. thanks Dylan Egan
[aws|storage]
Support ACL on copy_object. :v:. thanks Dylan Egan
[brightbox]
Adding *_server actions to ServerGroup model. thanks Caius Durling
Pass along server_groups when creating a server. thanks Caius Durling
Make update_cloud_ip request work. thanks Caius Durling
Firewall models. thanks Paul Thornthwaite
Added missing requirement and request arg. thanks Paul Thornthwaite
Corrected deprecated argument. thanks Paul Thornthwaite
Dynamically select testing image. thanks Paul Thornthwaite
Helper to get a test server ready. thanks Paul Thornthwaite
Revised tests structure. thanks Paul Thornthwaite
Test and fix for API client secret reset. thanks Paul Thornthwaite
Test update of reverse DNS for CIP. thanks Paul Thornthwaite
Updated default Ubuntu image. thanks Paul Thornthwaite
Make Cloud IP model's map nicer to use. thanks Paul Thornthwaite
Correctly get Server's IP addresses as strings. thanks Paul Thornthwaite
ServerGroup association to Servers. thanks Paul Thornthwaite
Replace duplicate remove with move test. thanks Paul Thornthwaite
Load balancer request tests expanded. thanks Paul Thornthwaite
Request test for snapshotting a server. thanks Paul Thornthwaite
fix mock tests. thanks geemus
[clodo]
: Added missing field. thanks NomadRain
Some cleanup before pool request. thanks NomadRain
add fake credentials for mock tests. thanks geemus
[clodo|compute]
Bug fixes. thanks NomadRain
I don't know what is ignore_awful_caching, so i removed it. thanks Stepan G Fedorov
server.ssh with password. Not only with key. thanks Stepan G Fedorov
Fix Mocks. thanks Stepan G Fedorov
Enable get_image_details. thanks Stepan G Fedorov
Actualize Mocks. thanks Stepan G. Fedorov
Enable :get_image_details. thanks Stepan G. Fedorov
Add tests. thanks Stepan G. Fedorov
Remove ddosprotect field from Mock. thanks Stepan G. Fedorov
Add ip-address management. thanks Stepan G. Fedorov
Rename moveip to move_ip_address. thanks Stepan G. Fedorov
Enable ip-management. thanks Stepan G. Fedorov
Fix delete_server mock. thanks Stepan G. Fedorov
Fix move_ip_address behaviour. thanks Stepan G. Fedorov
Add ip-address management. thanks Stepan G. Fedorov
Rename moveip to move_ip_address. thanks Stepan G. Fedorov
Enable ip-management. thanks Stepan G. Fedorov
Fix delete_server mock. thanks Stepan G. Fedorov
Fix move_ip_address behaviour. thanks Stepan G. Fedorov
Added missing field (server.type). thanks Обоев Рулон ибн Хаттаб
[core]
Cast Fog.wait_for interval to float. thanks Aaron Suggs
fix exceptions from nil credential value. thanks Blake Gentry
`@credential` should always be a symbol. thanks Hunter Haugen
[docs]
note in title that multiple keys is an EC2 thing. thanks geemus
[glesys|compute]
fixed tests due to changes in the api. thanks Anton Lindström
fix test formats and whitespaces. thanks Anton Lindström
[misc]
parse SQS timestamps as milliseconds. thanks Andrew Bruce
Allow use of sa-east-1 in the ec2 mock as well. thanks Andy Delcambre
Enabled tests for setting S3 ACL by id and uri on buckets and objects when mocking. thanks Arvid Andersson
Added acl_to_hash helper method to Fog::Storage::AWS. thanks Arvid Andersson
Ensuring that get_object_acl and get_bucket_acl mock methods returns a hash representation of the ACL. thanks Arvid Andersson
Created Rackspace LB models folder. thanks Brian Hartsock
This patch adds the ability to specify security groups by security group id, rather than group name. This is a required feature to use security groups within a VPC. thanks Eric Stonfer
indentation change. thanks Eric Stonfer
Add the ability to return the security group ID when requesting a SecurityGroupData object. thanks Eric Stonfer
fix tests to accomodate the new SecurityGroupId. thanks Eric Stonfer
Revert "fix tests to accomodate the new SecurityGroupId". thanks Eric Stonfer
fix tests to accomodate the addition of security_group_id. thanks Eric Stonfer
indentation fix. thanks Eric Stonfer
indentation fix. thanks Eric Stonfer
[Brightbox]Add remove_firewall_policy to computer.rb. thanks Hemant Kumar
[Brightbox]Protocol is no longer required parameter for firewall. thanks Hemant Kumar
Add implementation of DescribeInstanceStatus. thanks JD Huntington & Jason Hansen
fixed type-o in rdoc on Fog::DNS:DNSMadeEasy. thanks John Dyer
add query options to Fog::Storage::AWS#get_object_https_url. thanks Mateusz Juraszek
add options hash to Fog::Storage::AWS::File#url and Fog::Storage::AWS::Files#get_https_url which use get_object_https_url method. thanks Mateusz Juraszek
add query param to get_object_http_url for consistency. thanks Mateusz Juraszek
Fix regression in Rakefile introduced in 70e7ea13. thanks Michael Brodhead
add são paulo/brasil region. thanks Raphael Costa
mock create_db_instance. thanks Rodrigo Estebanez
mocking describe_db_instance. Fix hash structure in create_db_instance. thanks Rodrigo Estebanez
mocking delete_db_instance. thanks Rodrigo Estebanez
mocking wait_for through describe_db_instances. thanks Rodrigo Estebanez
mocking modify_db_instance and reboot_db_instance. thanks Rodrigo Estebanez
raise exception instead of excon response. thanks Rodrigo Estebanez
Fixing bug: It always showed the first instance when using get. thanks Rodrigo Estebanez
Fixes for issues 616 and 617. thanks Sergio Rubio
* remove unnecessary debugging. thanks Sergio Rubio
* Add missing recognized :libvirt_ip_command. thanks Sergio Rubio
* Add server_name environment variable to ip_command. thanks Sergio Rubio
* implement :destroy_volumes in Server.destroy (libvirt provider). thanks Sergio Rubio
Add documentation for using multiple ssh keys on AWS. thanks Sven Pfleiderer
Update bootstrap description. thanks Sven Pfleiderer
Escape underscore charakters. thanks Sven Pfleiderer
implement STS support. thanks Thom May
Allow use of session tokens in AWS Compute. thanks Thom May
handle session tokens for SQS and SimpleDB. thanks Thom May
Split [AWS|STS] tests into separate files per #609. thanks Thom May
Bug fix, metric_statistic#save would always fail. thanks bmiller
bump excon dep. thanks geemus
bump excon dep. thanks geemus
Fixing Rackspace's lack of integer-as-string support as per https://github.com/fog/fog/pull/657#issuecomment-3145337. thanks jimworm
add current set of elasticache endpoints. thanks lostboy
added sa-east-1 region. thanks thattommyhall
Add clodo support. thanks Обоев Рулон ибн Хаттаб
Enable clodo support. thanks Обоев Рулон ибн Хаттаб
[rackspace|dns]
error state callbacks now return an error. thanks Brian Hartsock
fixed broken test. thanks Brian Hartsock
should recognize rackspace_dns_endpoint argument. thanks geemus
record should pass priority. thanks geemus
mark tests for models pending in mocked mode. thanks geemus
[rackspace|lb]
Fixed bug #644 with HTTP health monitors. thanks Brian Hartsock
fix for #650 - Connection logging now loads appropriately. thanks Brian Hartsock
added error page requests. thanks Brian Hartsock
Added error pages to the model. thanks Brian Hartsock
Added list parameter for nodeddress. thanks Brian Hartsock
fixed broken test; cleaned up some tests. thanks Brian Hartsock
[rackspace|load balancers]
fixed broken tests. thanks Brian Hartsock
[rackspace|loadbalancers]
Fixed bug in deleting multiple nodes. thanks Brian Hartsock
[slicehost|compute]
update image id in tests. thanks geemus
[storm_on_demand]
fixes for formats in tests. thanks geemus
[tests | clodo]
Added ip-management tests. thanks Stepan G. Fedorov
Added ip-management tests. thanks Stepan G. Fedorov
[tests | clodo ]
ddosprotect field must not exist. thanks Stepan G. Fedorov
[tests | clodo | compute]
Add most tests. thanks Stepan G Fedorov
Add image tests. thanks Stepan G Fedorov
[tests | clodo | compute ]
create_server - First try. thanks Stepan G Fedorov
[vcloud]
mark tests pending in mocked mode. thanks geemus
[vcloud|compute]
introduce organizations. thanks Peter Meier
make networks working also in organizations. thanks Peter Meier
remove server from organizations as they are within vApps of vDC. thanks Peter Meier
add catalogs to an organization. thanks Peter Meier
a vdc does not have a tasklist. thanks Peter Meier
introduce vapps. thanks Peter Meier
More work on getting server in a useable shape. thanks Peter Meier
fix network to the minimum. thanks Peter Meier
a vapp might not have any childrens attached. thanks Peter Meier
improve models add tests. thanks Peter Meier
improve disk info access. thanks Peter Meier
improve network. thanks Peter Meier
introduce link on a network to parent network. thanks Peter Meier
fix an issue if this is not parsed as an array. thanks Peter Meier
stopgap fix for test data files. thanks geemus
properly namespace vcloud test to prevent breaking others. thanks geemus
[vsphere]
(#10644) Add servers filter to improve clone performance. thanks Jeff McCune
fix whitespace issue in yaml for mocks. thanks geemus
1.1.1 11/11/2011 a468aa9a3445aae4f496b1a51e26572b8379c3da
=========================================================
Stats! { 'collaborators' => 19, 'downloads' => 300403, 'forks' => 300, 'open_issues' => 14, 'watchers' => 1667 }
[core]
loosen net-ssh dependency to avoid chef conflict. thanks geemus
[misc]
1.1.0 changelog. thanks geemus
1.1.0 11/11/2011 b706c7ed66c2e760fdd6222e38c68768575483b2
=========================================================
Stats! { 'collaborators' => 19, 'downloads' => 300383, 'forks' => 300, 'open_issues' => 16, 'watchers' => 1667 }
MVP! Michael Zeng
[Compute|Libvirt]
Take into account a query string can be empty, different on some rubies it gives nil, on some empty string. thanks Patrick Debois
[OpenStack|compute]
fix v2.0 auth endpoints. thanks Todd Willey
default metadata to empy hash. thanks Todd Willey
add zone awareness. thanks Todd Willey
[aws]
add us-west-2 region. thanks geemus
[aws|cloud_watch]
mark tests pending when mocked. thanks geemus
[aws|cloudwatch]
Add support for put-metric-alarm call. thanks Jens Braeuer
Remove duplicate RequestId from response. thanks Jens Braeuer
Add mocked implementation of put_metric_alarm. thanks Jens Braeuer
Fix whitespace. thanks Jens Braeuer
Fix merge error. thanks Jens Braeuer
Add mocked version of put_metric_alarm. thanks Jens Braeuer
[aws|compute]
Mock modify_image_attribute add/remove users. thanks Dan Peterson
Allow mock tagging to work across accounts. thanks Dan Peterson
Fix new instance eventual consistency for the non-filtered case. thanks Dan Peterson
Update security group operations. thanks Dan Peterson
Test for more invalid security group request input when mocking. thanks Dan Peterson
Fix a bug in delete_tags, but come up against a bug in AWS where tags aren't deleted if the resource still exists. thanks Dylan Egan
tags are reset when reloading. #570. thanks Dylan Egan
fixed sopt_instance_request reply parsing when the original request contained a device mapping. thanks MaF
wait_for reload then add server tags. thanks geemus
spot request fixes. thanks geemus
tweaks for spot request bootstrap. thanks geemus
save tags for spot_requests#bootstrap. thanks geemus
update ami for windows. thanks geemus
[aws|elb]
Missed a change as part of #545. thanks Dan Peterson
use a set union to register new instances. thanks Dylan Egan
return only the instance IDs on describe. Use only available availability zones. :v:. thanks Dylan Egan
attribute aliases for CanonicalHostedZoneName(ID). :v:. thanks Dylan Egan
eventually consistent, like me getting a haircut. :v:. thanks Dylan Egan
[aws|emr]
mark tests pending when mocked. thanks geemus
[aws|iam]
slight cleanup and test with a certificate chain. :cake:. thanks Dylan Egan
[aws|mock]
Dig into mock data instead of instantiating new service objects. thanks Dan Peterson
[aws|storage]
ensure path isn't empty when specifying endpoint. thanks geemus
[brightbox]
Fixed incorrect call to reset_ftp_password. thanks Paul Thornthwaite
[brightbox|compute]
format fixes for tests. thanks geemus
[core]
treat boolean values as a boolean. thanks Peter Meier
fix attribute squashing with : in key. thanks Peter Meier
all services should recognize :connection_options. thanks geemus
separate loggers for deprecations/warnings. thanks geemus
avoid duplicates in Fog.providers. thanks geemus
more useful structure for Fog.providers. thanks geemus
add newlines to logger messages. thanks geemus
update stats raketask to point to org. thanks geemus
toss out nil-value keys when checking required credentials. thanks geemus
[dns]
Made model tests use uniq domain names. thanks Brian Hartsock
[dnsmadeeasy|dns]
Fix Fog::DNS::DNSMadeEasy::Record#save to handle updating a record correctly. thanks Peter Weldon
[docs]
update links to point to http://github.com/fog/fog. thanks geemus
[dynect|dns]
Automatically poll jobs if we get them. Closes #575. thanks Dan Peterson
[misc]
Change response parameter. thanks Alan Ivey
Missing HEAD method. thanks Andrew Newman
Missing HEAD method. thanks Andrew Newman
Putting version back. thanks Andrew Newman
Reformatting and making consistent with other classes. thanks Andrew Newman
Missed renam to head_namespace. thanks Andrew Newman
Reverting version and date in gemspec. thanks Andrew Newman
Formatting. thanks Andrew Newman
Removed puts of element name. thanks Arvid Andersson
Changes to allow EMR control through fog. thanks Bob Briski
Added EMR functions for AWS. thanks Bob Briski
Adding tests. thanks Bob Briski
merge EMR changes with upstream repo. thanks Bob Briski
(#10055) Search vmFolder inventory vs children. thanks Carl Caum
Adding a path attribute to the vm_mob_ref hash. thanks Carl Caum
Cleanup Attributes#merge_attributes. thanks Hemant Kumar
Update S3 doc example to show current API. thanks Jason Roelofs
Restructure main website's navigation. thanks Jason Roelofs
Add CloudFormation UpdateStack call. thanks Jason Roelofs
Minor whitespace change. thanks Jens Braeuer
Trailing whitespace cleanup. thanks Jens Braeuer
Whitespace cleanup. thanks Jens Braeuer
Fix merge error. thanks Jens Braeuer
Removed statement about @geemus being only member of collaborators list since it's not true anymore. thanks John Wang
Fixes Fog::AWS::Storage#put_(bucket|object)_acl. thanks Jonas Pfenniger
Randomize bucket names in tests. thanks Jonas Pfenniger
Fix AWS S3 bucket and object tests. thanks Jonas Pfenniger
(#10570) Use nil in-place of missing attributes. thanks Kelsey Hightower
(#10570) Update `Fog::Compute::Vsphere` tests. thanks Kelsey Hightower
We use 'Key' for all S3 objects now. thanks Kevin Menard
Implemented mocks for Zerigo. thanks Kevin Menard
Updated docs to use newer arg, rather than the old deprecated one. thanks Kevin Menard
Added the ability to search Zerigo records for a particular zone. thanks Kevin Menard
Return the only element of the array, not the array itself. thanks Kevin Menard
Fixed an issue whereby saving an existing record in Zerigo would nil out its value. thanks Kevin Menard
added DeleteAlarms, DescribeAlarms and PutMetricAlarms. thanks Michael Zeng
re-adding files. thanks Michael Zeng
adding describe_alarm_history. thanks Michael Zeng
adding diable/enable alarm actions. thanks Michael Zeng
added DescribeAlarmHistory request and parser. thanks Michael Zeng
fixing describe_alarms and describe_alarms_for_metric requests. thanks Michael Zeng
cleaned up requesters and parsers. thanks Michael Zeng
added SetAlarmState. thanks Michael Zeng
included more response elements, request parameters should now be complete. Included model and collection classes. thanks Michael Zeng
bug fixes. thanks Michael Zeng
fixed models and added tests. thanks Michael Zeng
no need to add rake dep. thanks Michael Zeng
revert gempspec date change. thanks Michael Zeng
reverting cloud_watch.rb. thanks Michael Zeng
reverting cloud_watch.rb. thanks Michael Zeng
reverting cloud_watch.rb. thanks Michael Zeng
reverting cloud_watch.rb. thanks Michael Zeng
reverting cloud_watch.rb. thanks Michael Zeng
added newline to the end of file. thanks Michael Zeng
removed all tabs. thanks Michael Zeng
added alarm_data_tests. thanks Michael Zeng
spacing change. thanks Michael Zeng
AWS#hash_to_acl - add support for EmailAddress and URI grantee types. thanks Nathan Sutton
Test and improve Fog::Storage::AWS.hash_to_acl. thanks Nathan Sutton
Adding a method to unmock Fog. Addresses issue #594. thanks Nathan Sutton
Adding documentation for Fog.unmock! and Fog::Mock.reset. thanks Nathan Sutton
added linode ssh support. thanks Nicholas Ricketts
added linode ssh support with proper public ip address. thanks Nicholas Ricketts
cleaned up code to use att_XX methods. thanks Nicholas Ricketts
clean up public_ip_address code for linode. thanks Nicholas Ricketts
Seems like rackspace might have changed this. thanks Nik Wakelin
Sends power parameter in GoGrid's grid_server_power request. thanks Pablo Baños López
Slicehost uses record-type and zone-id for their API, which messes with Fog internals, so changing these to record_type and zone_id in the parser. thanks Patrick McKenzie
Did this do anything?. thanks Patrick McKenzie
Revert "Slicehost uses record-type and zone-id for their API, which messes with Fog internals, so changing these to record_type and zone_id in the parser.". thanks Patrick McKenzie
Not having the best of days with git. Revert the reversion of the commit that I really do want to make. thanks Patrick McKenzie
Slicehost uses record-type and zone-id for their API, which messes with Fog internals, so changing these to record_type and zone_id in the parser. thanks Patrick McKenzie
Do not touch .gitignore. thanks Patrick McKenzie
Fixing Slicehost DNS so that a) tests pass b) token names map to what Fog expects -- record_type not record-type, value not data, etc c) creation of new DNS records possible. thanks Patrick McKenzie
1) Fix so that getting a single record actually works. 2) zone.records currently returns all records in account, not just records for that zone. Add failing test (temporarily, assumes test account has existing zones for this to actually fail) + fix. 3) Add in data alias for record.value, just in case someone needs it, as Slicehost calls this data. thanks Patrick McKenzie
Allow updates of DNS records. Updates on zones not supported yet. thanks Patrick McKenzie
Fixing parsing of zone.records.get(id) so that it parses a single record properly rather than attempting to parse a list of records improperly. Fixing tests to match this (expected) behavior rather than work-around the broken way. thanks Patrick McKenzie
Getting it so zone.records works as expected (loads all records, for that zone only). thanks Patrick McKenzie
simplification. thanks Peter Meier
Optimize vSphere convert_vm_mob_ref_to_attr_hash. thanks Rich Lane
Compact the way options are mapped to request. thanks Todd Willey
Allow setting userdata as plain ascii or b64. thanks Todd Willey
bump excon dep. thanks geemus
[rackspace][dns] fixes for job request format. thanks geemus
bump net-ssh dependency. thanks geemus
tshirt offer should be implicit, rather than explicit. thanks geemus
add region option to aws sns service recognizes method. thanks lostboy
add capabilities support to cloudformation createstack request. thanks lostboy
[ninefold|storage]
omit signature in stringtosign. thanks geemus
check objectid for existence. thanks geemus
allow overwriting files for consistency. thanks geemus
[rackspace|dns]
Fixed request tests that need unique domain name. thanks Brian Hartsock
Adapted to changes in callback mechanism. thanks Brian Hartsock
[rackspace|load_balancers]
made lb endpoint configurable. thanks Brian Hartsock
[release]
omit Patrick Debois from future MVP status. thanks geemus
[vsphere|compute]
test fixes. thanks geemus
1.0.0 09/29/2011 a81be08ef2473af91f16f4926e5b3dfa962a34ae
=========================================================
Stats! { 'collaborators' => 16, 'downloads' => 245745, 'forks' => 260, 'open_issues' => 13, 'watchers' => 1521 }
MVP! Patrick Debois
[Libvirt]
if transport is empty, ssh can't be enabled. thanks Patrick Debois
Enable to pass an libvirt_ip_command for looking up the mac -> ip_address . Using eval to allow for passing of mac address in ip_command. thanks Patrick Debois
corrected typo for appending string output to IO.popen. thanks Patrick Debois
initialize the ip_address as an empty string. thanks Patrick Debois
more specific error if the ip_command results in string that has no ip-address format. thanks Patrick Debois
Remove the newlines after running the local ip_command. thanks Patrick Debois
rename xml_desc to xml as an attribute and hide all non_dynamic attributes from fog console. thanks Patrick Debois
added blocked state and corrected crashed to shutoff state. thanks Patrick Debois
renamed 'raw' connection to raw in the Fog Connection. thanks Patrick Debois
[Libvirt|Compute]
renamed all disk_ params for server creation to volume_ to make it consistent with the object type volume. thanks Patrick Debois
[aws]
remove base64 require (duplicates require in fog/core). thanks geemus
[aws/sqs]
Adding SQS mocking support. thanks Istvan Hoka
[aws|acs]
Create ACS security_group model and collection. thanks Aaron Suggs
Improve security group tests. thanks Aaron Suggs
Adds ACS#delete_cache_security_group. thanks Benton Roberts
Added security group methods. thanks Benton Roberts
Update CacheSecurityGroup API to public beta 2011-07-15. thanks Benton Roberts
[aws|cloudwatch]
Fix whitespace. thanks Jens Braeuer
[aws|compute]
add snapshot method to volume model. thanks Andrei Serdeliuc
Correct path. thanks Dylan Egan
raise an ArgumentError if image_id is nil, otherwise an ugly InternalError is returned from AWS. thanks Dylan Egan
wait for ready before testing tags. thanks geemus
fixes for mocks tests. thanks geemus
fix formatting for mock security groups. thanks geemus
[aws|dns]
fix parser path. thanks geemus
[aws|elasticache]
refactor acs->elasticache. thanks Benton Roberts
refactor for whitespace / readability. thanks Benton Roberts
fix typo in Elasticache Security Group tests. thanks Benton Roberts