-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
1914 lines (1599 loc) · 89.6 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.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
rename test file for shindo. thanks Benton Roberts
create and describe cache clusters. thanks Benton Roberts
delete cache clusters. thanks Benton Roberts
add Cache Cluster model and collection. thanks Benton Roberts
Fix bug in AWS::Elasticache::Cluster.get. thanks Benton Roberts
randomize cache cluster IDs in testing. thanks Benton Roberts
return nil on CacheClusterNotFound. thanks Benton Roberts
use Formatador for testing output. thanks Benton Roberts
move ClusterNotFound rescue code into Elasticache service definition. thanks Benton Roberts
change method profile for create_cache_cluster, delete_cache_cluster, and describe_cache_clusters. thanks Benton Roberts
change parameters for describe_cache_security_groups to ruby-friendly values. thanks Benton Roberts
remove port attribute from cluster model. thanks Benton Roberts
fix Elasticahce::Cluster.security_groups attribute. thanks Benton Roberts
implement modify_cache_cluster request. thanks Benton Roberts
cluster port number cannot be modified. thanks Benton Roberts
add cache node info to describe_cache_clusters. thanks Benton Roberts
add InvalidInstace error class. thanks Benton Roberts
remove optional parameters from Elasticache::Cluster. thanks Benton Roberts
show cluster node details by default in model. thanks Benton Roberts
add test for removing a cache node. thanks Benton Roberts
add pending_values to modified nodes. thanks Benton Roberts
implement RebootCacheCluster. thanks Benton Roberts
implement DescribeEvents. thanks Benton Roberts
implement basic parameter group requests. thanks Benton Roberts
implement describe_engine_default_parameters request. thanks Benton Roberts
implement Elasticache::ParameterGroup model and collection. thanks Benton Roberts
implement modify_cache_parameter_group request. thanks Benton Roberts
implement reset_cache_parameter_group request. thanks Benton Roberts
implement describe_cache_groups request. thanks Benton Roberts
test fix: change DESCRIBE_SECURITY_GROUPS helper format. thanks Benton Roberts
delete outdated test file. thanks Benton Roberts
[aws|elb]
Raise a custom exception for Throttling. thanks Dylan Egan
wait_for server to be ready? before register. thanks geemus
[aws|iam]
implement correct path behaviour in mocking. thanks Dylan Egan
[aws|simpledb]
fix tests to use proper accessor. thanks geemus
[aws|storage]
fix acl mocking. thanks geemus
[bluebox|compute]
Fixed instance state. thanks Lee Huffman
Create and destroy images. thanks Lee Huffman
Fix for setting hostname on server save. thanks Lee Huffman
Expect correct status code for template create. thanks Lee Huffman
[cdn|aws]
move aws cdn to its own shared area (namespacing should probably be corrected). thanks geemus
[cdn|rackspace]
move rackspace cdn to its own shared area (namespacing should probably be corrected). thanks geemus
[compute]
fix service calls I missed in recent rearrange. thanks geemus
[compute|aws]
- Change modify_instance_attribute name to match EC2 API method, and actually make it do something. thanks Caleb Tennis
Include ids of things we're modifying in requests. thanks Dan Peterson
Fix create_volume mock when creating from a snapshot. thanks Dan Peterson
Make get_bucket_location mock return LocationConstraint as API doc describes. thanks Dan Peterson
Fix associate_address mock to detach/revert previous addresses properly. thanks Dan Peterson
Don't warn in mock describe_snapshots if RestorableBy is 'self'. thanks Dan Peterson
When mocking, instances don't show up right away. thanks Dan Peterson
Suffix with _tests.rb. thanks Dylan Egan
IpPermissionsEgress is returned from AWS. thanks Dylan Egan
Simple test to verify revoke_group_and_owner behaviour. thanks Dylan Egan
Apparently passing a nil value works against live AWS. Only use SourceSecurityGroupOwnerId in mocks if supplied. thanks Dylan Egan
Since this is really proving the use of nil, let's just not pretend there's a value for owner_id. thanks Dylan Egan
sometimes the platform string is returned. thanks Dylan Egan
enable tests for mocked tags. thanks Dylan Egan
Fix NameError. thanks Jens Braeuer
Fix bug in tag mocking preventing servers from being updated with new tags. thanks Matt Griffin
Add mocking for describe_tags. thanks Matt Griffin
move aws compute to its own shared area (namespacing should probably be corrected). thanks geemus
[compute|bluebox]
move bluebox compute to its own shared area (namespacing should probably be corrected). thanks geemus
[compute|brightbox]
Allow persistent option to be passed to Brightbox::Compute. thanks Caius Durling
Updated test for new behaviour. thanks Paul Thornthwaite
Picking up more attributes from Account. thanks Paul Thornthwaite
No need to hardcode a server type. thanks Paul Thornthwaite
Updated and reordered model attributes. thanks Paul Thornthwaite
Updates to tests. thanks Paul Thornthwaite
Added resave warning to a few Brightbox models. thanks Paul Thornthwaite
Requests for server group management. thanks Paul Thornthwaite
Merge in test updates and server groups. thanks Paul Thornthwaite
Corrected require missed in update. thanks Paul Thornthwaite
Reset times to the correct type so not string attributes. thanks Paul Thornthwaite
Updated Format test to remove gone fields. thanks Paul Thornthwaite
Fixed typo in connection options. thanks Paul Thornthwaite
Added missing requests. thanks Paul Thornthwaite
Added requests for firewall management. thanks Paul Thornthwaite
Added ServerGroup model and collections. thanks Paul Thornthwaite
Passing options to server group update. thanks Paul Thornthwaite
Fixed server_groups.get. thanks Paul Thornthwaite
move brightbox compute to its own shared area (namespacing should probably be corrected). thanks geemus
[compute|ecloud]
move ecloud compute to its own shared area (namespacing should probably be corrected). thanks geemus
[compute|glesys]
added glesys as provider. thanks Anton Lindstrom
added tests. thanks Anton Lindström
fixed logical error for default values. thanks Anton Lindström
fixed an invalid character. thanks Anton Lindström
consistency/cleanup. thanks geemus
fix format for start vs stop. thanks geemus
rearrange to match current naming conventions. thanks geemus
[compute|go_grid]
move go_grid compute to its own shared area (namespacing should probably be corrected). thanks geemus
[compute|libvirt]
merge jedi4ever/libvirt. thanks geemus
move libvirt compute to its own shared area (namespacing should probably be corrected). thanks geemus
[compute|linode]
move linode compute to its own shared area (namespacing should probably be corrected). thanks geemus
[compute|bare_metal_cloud]
move bare_metal_cloud compute to its own shared area (namespacing should probably be corrected). thanks geemus
[compute|ninefold]
move ninefold compute to its own shared area (namespacing should probably be corrected). thanks geemus
[compute|rackspace]
move rackspace compute to its own shared area (namespacing should probably be corrected). thanks geemus
[compute|slicehost]
move slicehost compute to its own shared area (namespacing should probably be corrected). thanks geemus
[compute|storm_on_demand]
move storm_on_demand compute to its own shared area (namespacing should probably be corrected). thanks geemus
[compute|vcloud]
move vcloud compute to its own shared area (namespacing should probably be corrected). thanks geemus
[compute|virtual_box]
move virtual_box compute to its own shared area (namespacing should probably be corrected). thanks geemus
[compute|voxel]
move voxel compute to its own shared area (namespacing should probably be corrected). thanks geemus
[core]
Allow FOG_CREDENTIAL env variable for config. thanks Aaron Suggs
add collection#destroy(identity). thanks geemus
move openssl to more central location. thanks geemus
first steps toward seperately requirable bits. thanks geemus
move providers to lib/fog/. thanks geemus
work toward separate requires. thanks geemus
prototype logger. thanks geemus
add get/set methods for logger channels. thanks geemus
use logger throughout for warnings. thanks geemus
coerce service credentials. thanks geemus
delete nil valued keys from config. thanks geemus
pass connection_options through service init. thanks geemus
don't rely on bin stuff for service init in tests. thanks geemus
dedup services listings. thanks geemus
more convenient accessors. thanks geemus
fixing more paths after rearrange. thanks geemus
add credentials setter. thanks geemus
make sure credentials tests properly reset after completion. thanks geemus
bump excon dep. thanks geemus
properly fix credentials tests. thanks geemus
skip vmfusion in rake nuke. thanks geemus
bump excon. thanks geemus
kill dns stuff in nuke as well. thanks geemus
[dns]
update dns constructor to match recent file moves. thanks geemus
[dns|aws]
move aws dns to its own shared area (namespacing should probably be corrected). thanks geemus
[dns|bluebox]
move bluebox dns to its own shared area (namespacing should probably be corrected). thanks geemus
[dns|dnsimple]
move dnsimple dns to its own shared area (namespacing should probably be corrected). thanks geemus
[dns|dnsmadeeasy]
move dnsmadeeasy dns to its own shared area (namespacing should probably be corrected). thanks geemus
[dns|dynect]
move dynect dns to its own shared area (namespacing should probably be corrected). thanks geemus
[dns|linode]
move linode dns to its own shared area (namespacing should probably be corrected). thanks geemus
[dns|rackspace]
initial commit. thanks Brian Hartsock
list_domains request. thanks Brian Hartsock
added attributes to list_domains; refactored rackspace errors to be shared with load balancers. thanks Brian Hartsock
move rackspace dns to its own shared area (namespacing should probably be corrected). thanks geemus
[dns|slicehost]
move slicehost dns to its own shared area (namespacing should probably be corrected). thanks geemus
[dns|zerigo]
move zerigo dns to its own shared area (namespacing should probably be corrected). thanks geemus
[doc]
Added blogpost about libvirt into fog to the press page. thanks Patrick Debois
corrected the link to the actual blogpost instead of the github markdown page :). thanks Patrick Debois
[docs]
add note about ec2 default username. thanks geemus
[dynect|dns]
use a string for now. #362 is open for accepting symbols in mocks. thanks Dylan Egan
return the zone name. thanks Dylan Egan
accidentally hardcoded the record type in the mocked data. thanks Dylan Egan
support ANY record results. thanks Dylan Egan
Don't use address as different records have different arguments, just send rdata. Remove value. Add CNAME test. thanks Dylan Egan
find, not first. thanks Dylan Egan
always ensure it's an integer. thanks Dylan Egan
retry if auth_token was previously set and error message includes possible login expiration. thanks Dylan Egan
support reauth for inactivity logout too. thanks Dylan Egan
[glesys|compute]
fixes to play nice with mock tests. thanks geemus
skip flavor tests. thanks geemus
[gleysys]
fixes for mocked test setup. thanks geemus
[libvirt]
Added option libvirt_ip_command to the credentials error page. thanks Patrick Debois
Corrected template variable from interface_nat_network to network_nat_network. thanks Patrick Debois
[linode|compute]
update format for plans. thanks geemus
[load balancer|rackspace]
fixed some minor bugs i noticed in the tests. thanks Brian Hartsock
[misc]
Fixed a couple of errors in the examples. thanks Bobby Wilson
Implement fog support for the Openstack Compute API v1.1. Includes support for legacy v1.0 style auth and v2.0 keystone auth. thanks Dan Prince
Add create_image to server model. thanks Dan Prince
Add support for non-strict validations, and nullable arrays/hashes. thanks Dan Prince
Additions and updates to the OpenStack API tests. thanks Dan Prince
Beginning of Dynect::DNS mocking support. thanks Dylan Egan
get_record, single. thanks Dylan Egan
Tidy up a bit. thanks Dylan Egan
Support freeze and thaw. thanks Dylan Egan
sleep for 3 seconds when running against Dynect because otherwise there is an operation still in progress. thanks Dylan Egan
raise a NotFound if not found. thanks Dylan Egan
Fog::DNS::Dynect, not Fog::Dynect::DNS. thanks Dylan Egan
InstanceId should have index according to AWS Docs. thanks E.J. Finneran
fix indenting to get markdown to recognise the code block properly. thanks Glenn Tweedie
Better URL escaping for Rackspace Cloud Files. thanks H. Wade Minter
Tweak to escape the Cloud Files filename before passing to public_url. thanks H. Wade Minter
Put escaping logic into the collection get_url call. thanks H. Wade Minter
(#9241) Add skeleton VMware vSphere platform support. thanks Jeff McCune
(#9241) Add SSL verification. thanks Jeff McCune
(#9241) Add current_time request. thanks Jeff McCune
(#9241) Add model for Fog::Compute[:vsphere].servers. thanks Jeff McCune
(#9241) Add test skeleton framework. thanks Jeff McCune
(#9241) Add ability to find VMs by UUID. thanks Jeff McCune
(#9421) Add start, stop, reboot server model methods. thanks Jeff McCune
(#9241) Add destroy API request and model action. thanks Jeff McCune
(#9241) Add find_template_by_instance_uuid request. thanks Jeff McCune
(#9241) Add vm_clone API request. thanks Jeff McCune
(#9241) Don't fail when trying to model a cloning VM. thanks Jeff McCune
(#9241) Make the reload action of the server models work. thanks Jeff McCune
(#9124) Add ability to reload the model of a cloning VM. thanks Jeff McCune
Refactor requests to return simple hashes and add unit tests. thanks Jeff McCune
Add vsphere_server connection attribute. thanks Jeff McCune
Fix vm clone problem when a Guid instance is passed as the instance_uuid. thanks Jeff McCune
Fix documentation. The resulting hash has no entry "PutScalingPolicyResponse", but a "...Result". thanks Jens Braeuer
Pass hostname to create_block request if provided. thanks Lee Huffman
Added Fog::CurrentMachine#ip_address. thanks Pan Thomakos
First cut at libvirt integration. Lots of features missing, but it proves the point. thanks Patrick Debois
- Added URI helper to parse libvirt URL's - exposed Libvirt original connection in Compute object - exposed URI in Compute object - added libvirt-ruby gem to the developer Gemspec. thanks Patrick Debois
- Get all pools now by name or by uuid - Create pool by providing xml - Destroy pool. thanks Patrick Debois
Added ability to create/destroy volumes You can search for volumes by path,key,name And list all volumes from a pool. thanks Patrick Debois
Allow creation of persistent or non persistent volumes. thanks Patrick Debois
Again major breakthrough. thanks Patrick Debois
Coming along nicely. thanks Patrick Debois
- ERB has a problem with a variable called type, it expands it on ruby 1.8 to .class - If the key or the volume is not found, maybe because the pool has not yet been started, the volumes should return nil. thanks Patrick Debois
Changed the monitoring command for IP addresses arpwatch.dat is not the correct place, it should be via syslog, or seperate file. thanks Patrick Debois
fixing whitespace. thanks Patrick Debois
removed trailing spaces. thanks Patrick Debois
indenting the files. thanks Patrick Debois
check ip-address that returned from the search in the logfile. thanks Patrick Debois
Added a way to locally retrieve the ipaddress through the ip_command More checks on correctness of ipaddress And checks on ssh failures. thanks Patrick Debois
renamed ipaddress to ip_address made the .id available and an alias to uuid for server. thanks Patrick Debois
Added description on the libvirt environment can be initialized and the requirements for ssh and ipaddress to work. thanks Patrick Debois
Added a global libvirt provider option ip_command to specify the ip_command Also more robust handling of connection error when the libvirt connection fails. thanks Patrick Debois
Remove the idea of template_options, now you specify the param directly in the create command. Unit and Size are now calculated. thanks Patrick Debois
Removed the template_options param. thanks Patrick Debois
Fixed disk_format_type vs disk_type_format difference and changed disk_format_type in the template as well. thanks Patrick Debois
added openauth support thanks to @rubiojr. thanks Patrick Debois
changed return code of state to string instead of symbols to be consistent with aws provider. thanks Patrick Debois
- Added concept of nodes (host of domains = node) - Renamed the shuttingdown to shutting-down mode - fixed the Gem warning on using Gem.find_by_name instead of Gem::Specification. thanks Patrick Debois
Added a way to filter the active and the defined servers(domains) using - servers.all(:active => false, :defined=> true). thanks Patrick Debois
Fixed empty filter issue, nil filter. thanks Patrick Debois
* Fixed an error with memory_size 256 that should be 256*1024 as the default is K nor M * Changed the ip_command to check the ipaddress to include changes not * only new IPaddresses. thanks Patrick Debois
Added libvirt options to credentials error. thanks Patrick Debois
Made libvirt username param consistent with other providers libvirt_user -> libvirt_username. thanks Patrick Debois
[Libvirt] Provided better solution for ip_command : use shell variable instead of ruby string for mac-address. thanks Patrick Debois
vmfusion provider , requires the fission gem (pull request pending). thanks Patrick Debois
fixed missing disk-> volume conversion. thanks Patrick Debois
another log entry style resused old ethernet. thanks Patrick Debois
Fix warning about whitespace before parentheses in dns.rb. thanks Rick Bradley
Added support fo canned ACLs in put_object_acl. thanks dblock
Updated put_bucket_acl to support canned ACLs. thanks dblock
Marking as pending. thanks dblock
Refactored specs, mocks, etc. thanks dblock
Revert "[core] make sure credentials tests properly reset after completion". thanks geemus
Update gemspec description to mention popular services that are supported. thanks watsonian
[ninefold|compute]
fixes for list formats. thanks geemus
fix for network formats. thanks geemus
add default (ubuntu) image for servers. thanks geemus
[rackspace|dns]
all important domains requests. thanks Brian Hartsock
zone models. thanks Brian Hartsock
records requests. thanks Brian Hartsock
record models. thanks Brian Hartsock
minor docs update. thanks Brian Hartsock
add mock initializer. thanks geemus
consistency fixes and tests and mark pending in mocked. thanks geemus
fix mock init to play nice with tests. thanks geemus
fixes for updates to beta. thanks geemus
[rackspace|load_balancers]
fix path for tests. thanks geemus
fixes for tests. thanks geemus
[rackspace|storage]
fix broken model paths. thanks geemus
[release]
update MVP skip list. thanks geemus
add collaborator count to changelog stats. thanks geemus
[storage]
Fixed what appeared to be broken test (I only verified with Rackspace provider). thanks Brian Hartsock
[storage|aws]
Add options to File#copy method. thanks Aaron Suggs
move aws storage back with other aws stuff (namespacing should probably be recorrected as well). thanks geemus
[storage|google]
move google storage to shared google stuff (namespacing should probably be corrected). thanks geemus
[storage|local]
move local storage to its own shared area (namespacing should probably be corrected). thanks geemus
[storage|ninefold]
move ninefold storage to its own shared area (namespacing should probably be corrected). thanks geemus
use Fog::HMAC. thanks geemus
[storage|rackspace]
Fixed NotFound namespace. thanks Grégory Karékinian
move rackspace storage to its own shared area (namespacing should probably be corrected). thanks geemus
[tests]
rearrange to match new lib structure. thanks geemus
mark not implemented mocks as pending. thanks geemus
more helpful formats helper errors. thanks geemus
[vmfusion|compute]
fixed destroy function. thanks Patrick Debois
reworked structure as will be released in 0.4.0a. thanks Patrick Debois
[vsphere|compute]
mark test requiring guid pending, as require can not be found. thanks geemus
remove unnecessary mocha require. thanks geemus
0.11.0 08/18/2011 73bcee507a4732e071c58d85793b7f307eb377dc
==========================================================
Stats! { 'downloads' => 202791, 'forks' => 237, 'open_issues' => 20, 'watchers' => 1427 }
MVP! Brian Hartsock
[aws|cdn]
Added commands for streaming distribution lists. thanks Christopher Oliver
[aws|compute]
describe security groups parser was not taking into account ipPermissionsEgress and therefore returning unexpected results when the account had VPC groups. thanks Christopher Oliver
Added missing 'platform' attribute to server model and describe instances request. thanks Christopher Oliver
[aws|iam]
fix 'Path' handling for get_group response. thanks Nick Osborn
add missing update_server_certificate request. thanks Nick Osborn
[aws|rds]
Allow string or symbol hash keys. thanks Aaron Suggs
[aws|s3]
Added basic tests for get_bucket, fixed a bug in get_bucket with delimiter option, tests succeed for both mocked and real situation. thanks Erik Terpstra
policy should be base64 encoded and not contain new lines. thanks Fujimura Daisuke
Require 'multi_json' was lucked. thanks Fujimura Daisuke
[compute]
add server base class to contain shared stuff (scp/ssh). thanks geemus
[compute|aws]
Whitespace removal. thanks Dylan Egan
Allow image mocks to support state (except failed). thanks Dylan Egan
fix pluralization of modify_image_attribute. thanks geemus
update modify image/snapshot attribute to match latest API. thanks geemus
add modify_image_attribute. thanks geemus
add support for saving assigned tags at server creation time. thanks geemus
add docs for new options on run_instances. thanks geemus
guard tag creation against empty tag set. thanks geemus
fixes for bootstrap and placing attributes json. thanks geemus
identity not needed for setup. thanks geemus
fix for running nice with mocked test run. thanks geemus
[compute|brightbox]
Updated test for new expected response from server. thanks Paul Thornthwaite
Updated Account format test to allow valid_credit_card flag. thanks Paul Thornthwaite
Added IPv6 address to format now it is exposed to API. thanks Paul Thornthwaite
DRY up request method. thanks Paul Thornthwaite
Corrected attribute name. thanks Paul Thornthwaite
[compute|voxel]
position in format is string, not integer. thanks geemus
[dns]
dry generate_unique_domain to tests helper. thanks geemus
[dns|dynect]
cleanup of initial implementation. thanks geemus
fixes to play nice with mocked test runs. thanks geemus
[dns|zerigo]
add host/port/scheme to recognizes. thanks geemus
[docs]
add task to build/publish supported services matrix. thanks geemus
alphasort doc tasks. thanks geemus
[misc]
if creating an s3 directory (bucket), one needs to pass in :location as well as have the aws connection set to the correct region... thanks Adam Greene
- Write files as binary (otherwise UTF8 - ASCII errors can occur) - Check if File exists before trying to delete it (paperclip sometimes deletes files twice) - Check if Directory exists before trying to "cd" into it. thanks Andre Meij
Fix issue 464, add howto for European Rackspace cloud. thanks Andre Meij
Initial support for adding/deleting a load balancer (requests only). thanks Brian Hartsock
Complete lifecycle for a load balancer. thanks Brian Hartsock
Improved error handling. thanks Brian Hartsock
Model and collection for load balancers. thanks Brian Hartsock
Fixed issues with loading all LB params. thanks Brian Hartsock
Requests for nodes. thanks Brian Hartsock
Rackspace Load Balancers: model classes for nodes. thanks Brian Hartsock
Rackspace Load Balancers: requests for virtual ips. thanks Brian Hartsock
Added virtual IP models. thanks Brian Hartsock
Rackspace LB: Made some updates from the pull request. thanks Brian Hartsock
Rackspace LB: protocols, algorithms, and connection logging. thanks Brian Hartsock
Added access list requests. thanks Brian Hartsock
Rackspace LB: Added session persistence requests. thanks Brian Hartsock
Rackspace LB: Connection throttling requests. thanks Brian Hartsock
Rackspace LB: Fixed issues with connection logging model. thanks Brian Hartsock
Rackspace LB: Health Monitor requests. thanks Brian Hartsock
Rackspace LB: account usage request. thanks Brian Hartsock
Rackspace LB: Load Balancer Usage requests. thanks Brian Hartsock
Rackspace LB: Added model capabilities for a lot of additional actions. thanks Brian Hartsock
Rackspace LB: models for access lists. thanks Brian Hartsock
Rackspace LB: account usage call. thanks Brian Hartsock
Rackspace LB: Refactoring and cleanup. thanks Brian Hartsock
register_image mocking support. thanks Dylan Egan
Remove GENTOO_AMI. thanks Dylan Egan
Store it under the ID, not the name. thanks Dylan Egan
Allow tag filtering for images. thanks Dylan Egan
Set imageOwnerAlias to self. Not 100% on this, but it will allow you to search for images with 'owner-alias' => 'self'. thanks Dylan Egan
Back to using Owner. A couple of tests for it too. thanks Dylan Egan
Added support for delimiter option in Fog::Storage::AWS::Mock object. thanks Erik Terpstra
Link to EBS snapshots blog post. thanks Gavin Sandie
Add force stop functionality to AWS Instance. thanks John Ferlito
* Changed LoadError to Fog::Error::LoadError when missing configuration * When running from command line, rescue the exception, and print the help message. thanks Mark A. Miller
* Fix VirtualBox in compute case statement. thanks Mark A. Miller
Update to the latest VirtualBox gem while we're at it for good measure. thanks Mark A. Miller
add dynect DNS provider with session request implemented. thanks Michael Hale
add dynect provider and cleanup extra requires. thanks Michael Hale
enable mocking for dynect. thanks Michael Hale
parse session request and fix mock for tests. thanks Michael Hale
whoops forgot to add these files. thanks Michael Hale
temporary rake task for convenient testing. thanks Michael Hale
include /REST in all requests. thanks Michael Hale
change API-Token to Auth-Token. thanks Michael Hale
add zone request. thanks Michael Hale
fix API-Token in mock session request. thanks Michael Hale
always run both mock and non-mock tests. thanks Michael Hale
parse the list of zones returned. thanks Michael Hale
require builder in dynect. thanks Michael Hale
WIP: add stub model classes. thanks Michael Hale
tests passing. thanks Michael Hale
rename zone request to zones. thanks Michael Hale
add zone request to show information for a single zone. thanks Michael Hale
hook up zones model. thanks Michael Hale
hook up zones.get. thanks Michael Hale
dynect: add a bunch of stuff: node_list, list_any_records, handle 307 job redirect,. thanks Michael Hale
dynect: nicer filter api for records. thanks Michael Hale
Escape source object name when copying. thanks Pratik Naik
provide #providers for shared services. thanks geemus
[rackspace|load balancers]
fixed broken tests. thanks Brian Hartsock
[rackspace|load_balancers]
fixes to play nice with mock test runs. thanks geemus
fix typo in tests. thanks geemus
[rackspace|loadbalancers]
cleanup. thanks geemus
[release]
add newest MVP to changelog task MVP omit list. thanks geemus