forked from ManageIQ/fog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
7594 lines (6651 loc) · 409 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.19.0 12/19/2013 15180fd7c0993f7fe6cfdc861a4db7ada14825ad
==========================================================
Stats! { 'collaborators' => 53, 'downloads' => 3970307, 'forks' => 1015, 'open_issues' => 149, 'watchers' => 2831 }
MVP! Mike Pountney
[AWS]
add modify_vpc_attribute. thanks Eric Stonfer
add modify_vpc_attribute. thanks Eric Stonfer
[AWS|Autoscaling]
Fix option name in documentation. thanks Frederick Cheung
[AWS|RDS]
Support for creating and removing subnet groups. thanks Akshay Joshi
[AWS|Storage]
fixed signed urls when using session tokens. thanks Frederick Cheung
[Brightbox]
Fix test issue with reusing servers. thanks Paul Thornthwaite
Add new SSL cert metadata attributes. thanks Paul Thornthwaite
Remove commented resource from schema. thanks Paul Thornthwaite
Fix typo in yard tag. thanks Paul Thornthwaite
Clean up Cloud IP mapping code. thanks Paul Thornthwaite
Code style clean up. thanks Paul Thornthwaite
[OS|Volume]
Add listing/showing volume types. thanks Grzesiek Kolodziejczyk
[aws]
Implement missing mocks for Route 53. thanks Carlos Sanchez
style fix for address model. thanks Eric Stonfer
narrow scope of unf warning. thanks geemus
[aws:storage]
path_style option availability. thanks David Illsley
[aws|cloudwatch]
remove :host key from request. thanks Brian D. Burns
[aws|dns]
Don't set mock changes to INSYNC immediately, only after some timeout. thanks Carlos Sanchez
[aws|elb]
support for cross zone load balancing. thanks Frederick Cheung
[aws|rds]
Implement `ready?` for subnet group. thanks Akshay Joshi
Support Iops parameter. thanks Eric Hankins
[aws|sqs]
remove host/port from request. thanks geemus
[aws|storage]
warn/load unf as needed. thanks geemus
[bluebox]
remove :host from excon request. thanks Sam Cooper
[core]
use Excon :persistent option. thanks Brian D. Burns
[digitalocean]
Add support for private networking. thanks Trae Robrock
[dnsimple]
remove host from request. thanks Jose Luis Salas
[general]
Allow default wait_for interval to be overiden globally. thanks radekg
Merge Forg.interval and Fog.timeout into a single file. thanks radekg
[google]
natIP is set to true when it must be an ip. thanks Carlos Sanchez
Add support for instance tags. thanks Carlos Sanchez
Add support for instance tags. thanks Carlos Sanchez
Raise Fog::Errors::NotFound on 404. thanks Carlos Sanchez
Implement disk mocks and enable tests. thanks Carlos Sanchez
Alias flavor_id and machine_type for consistency with other providers. thanks Carlos Sanchez
Instances are created without description, and disk size is ignored. thanks Carlos Sanchez
Implement operation model. thanks Carlos Sanchez
[hp]
Add documentation and examples for the provider for HP Cloud Services. thanks Rupak Ganguly
Fix links in some documentation pages. thanks Rupak Ganguly
Fix a few more documentation page links. thanks Rupak Ganguly
Fix connection section for newer services. thanks Rupak Ganguly
[misc]
Get VcloudDirector working again in fog interactive. Fixes #2373. thanks Adam Heinz
Use OpenSSL::Digest instead of deprecated OpenSSL::Digest::Digest. thanks Akira Matsuda
Add new AWS EC2 flavors to the compute model. thanks Alfred Moreno
Add exponential backoff to backoff_if_unfound. thanks Andrew Leonard
add in 'AssociatePublicIpAddress' to launch configuration creation. thanks Andrew Stangl
merge upstream changes and resolve merge conflict. thanks Andrew Stangl
add in 'AssociatePublicIpAddress' to launch configuration creation. thanks Andrew Stangl
remove duplicate code introduced during rebase. thanks Andrew Stangl
tidy up and remove whitespace. thanks Andrew Stangl
use original error message if none given. thanks Brian D. Burns
use Fog::JSON. thanks Brian D. Burns
Add ready? method to aws VPC and Subnet models. thanks Brian Nelson
Add pending -> available transitions for AWS VPC and Subnets. thanks Brian Nelson
all? not working in JRuby 1.7.5+. Configure Travis. thanks Carlos Sanchez
Disable specific tests that don't pass on jruby 1.7.5+. thanks Carlos Sanchez
Disable coveralls on travis with jruby. thanks Carlos Sanchez
Ensure vpc created in a test doesn't affect another. thanks Carlos Sanchez
Allows custom username for aws spot instances. thanks Casey Abernathy
Added content_encoding attribute to Rackspace storage. thanks Cezar Sa Espinola
Remove :host key in RDS request method to eliminate excon warning. thanks David Faber
Remove stray private key. thanks Dominic Cleal
Update excon dependency to version ~>0.30.0. thanks Erik Michaels-Ober
Fix typo in documentation. thanks Erik Michaels-Ober
ecloud api version bump. thanks Eugene Howe
Lock user by default. thanks Evan Light
Updated docs to reflect RackConnect compatibility. thanks Evan Light
Typo. thanks Evan Light
service attribute conflicts with the service defined in the parent. thanks Evan Petrie
details sometimes fails with a not-found. thanks Evan Petrie
Add index for describe_images parameters that use them. thanks James Bence
Make changes to a copy of the options parameter. thanks Joe Yates
Give 'versionId' value the expected structure. thanks Joe Yates
Add IAMInstanceProfile support to launch configs. thanks Jon Topper
Improve support for VPC Security Groups in RDS. thanks Jon Topper
Add IAMInstanceProfile support to launch configs. thanks Jon Topper
Improve support for VPC Security Groups in RDS. thanks Jon Topper
Remove duplication. thanks Jon Topper
Update S3 ACL whitelist. thanks Keith Barrette
Revert "[rackspace] wrapping test blocks around test helpers to prevent unexpected shindo exceptions". thanks Kyle Rames
merging in changes. thanks Kyle Rames
Added syntax highlighting for ruby code fragments. thanks Mark IJbema
Add request to set VM annotations in vSphere. thanks Martin Matuska
Add the uncommitted property to the vsphere datastore object. thanks Martin Matuska
changed shutdown to reboot in reboot server method. thanks Matheus Mina
changed __consoles to consoles and renamed consoles method to get_consoles. thanks Matheus Mina
fixed tests. thanks Matheus Mina
fixed consoles to use :aliases. thanks Matheus Mina
fixed AWS::Glacier::Vault.delete_notification_configuration so that it passes the ID to the underlying core request. thanks Matt Pokress
Allow custom Mock.not_implemented message. thanks Mike Pountney
Allow custom Mock.not_implemented message. thanks Mike Pountney
ignore .ruby-version. thanks Mike Pountney
vApp rename via put_vapp_name_and_description. thanks Mike Pountney
use std options={} format for optional parameters. thanks Mike Pountney
Find all and by-name Mock for Query API orgVdcNetwork. thanks Mike Pountney
improve network mock test data, to include vdc & IsShared. thanks Mike Pountney
fix tests for running against live environment. thanks Mike Pountney
make Mock vcloud_director_host an FQDN. thanks Mike Pountney
rename Mock vcloud_director_host to pass URI.parse. thanks Mike Pountney
Add delete_network request. thanks Mike Pountney
add Mock for post_create_network, use this to create/delete network in tests. thanks Mike Pountney
Modified AWS S3 mock, so that it errors when creating an existing bucket. thanks Nassos Antoniou
return NS and SOA records as per https://github.com/fog/fog/issues/2419 - this allows us to work with NS subdelegations, as well as the NS and SOA records while the type can't be changed, the values and TTLs can be. thanks Nathan Sullivan
Added parameter to force request timeout on xen. thanks Paulo Henrique Lopes Ribeiro
Adding more XenServer models. thanks Paulo Henrique Lopes Ribeiro
Forget to reference models on main class. thanks Paulo Henrique Lopes Ribeiro
adding spot price to launch configurations. thanks Rodrigo Estebanez
Sometimes :Environments is not a key. thanks Sarah Vessels
Fog::Storage::Local#directories#all: Don't break when :local_root folder is missing. thanks Sjoerd Andringa
Also call #load in case of missing local root folder. thanks Sjoerd Andringa
using new way of task mocking for edgegateway tests. thanks Sneha Somwanshi
updated documentation for put_vm. thanks Sneha Somwanshi
openstack modifications. thanks Thom Mahoney & Eugene Howe
openstack modifications. thanks Thom Mahoney & Eugene Howe
Need to list block in the argument list to access the variable. thanks Trae Robrock
Update describe_addresses.rb. thanks Virender Khatri
Update address.rb. thanks Virender Khatri
add gittip shield. thanks geemus
fix for broken AWS records tests. thanks geemus
expanding/rewriting the getting-help/involved section of README. thanks geemus
fix spacing for getting help section of README. thanks geemus
streamline openstack security groups tests. thanks geemus
move license to LICENSE.md. thanks geemus
add CONTRIBUTING.md. thanks geemus
just refer to contrib/license in readme to DRY. thanks geemus
Create parser for AWS assign private ip addresses. thanks joe
Assign private ip parser. thanks joe
add assign private ip request path. thanks joe
fix typo and add mock. thanks joe
Update error message on tests. thanks joe
private ip tests. thanks joe
pass options as a hash add support for multiple ips. thanks joe
update tests to reflect argument hash. thanks joe
remove debugging. thanks joe
fix variable name typo. thanks joe
remove unneeded test and destroy objects. thanks joe
[openstack|compute]
Basic examples for Compute. thanks Daniel Lobato
[openstack|storage]
adding missing request methods to Storage service. thanks Kyle Rames
updating request to use the proper file structure. thanks Kyle Rames
[rackspace]
updating compute and storage to pull service net urls from service catalog. thanks Kyle Rames
wrapping test blocks around test helpers to prevent unexpected shindo exceptions. thanks Kyle Rames
updating test helper to log errors and not throw exceptions to prevent shindo from halting if an error occurs. thanks Kyle Rames
fixing more live tests. thanks Kyle Rames
fixing broken tests caused by bad helper. thanks Kyle Rames
apply documentation edits. thanks Kyle Rames
apply documentation edits. thanks Kyle Rames
[rackspace|compute]
compute_v2 should require fog/rackspace. thanks Brian D. Burns
[rackspace|identity]
re-implementing service catalog in hopes of providing a faster more flexible solution. thanks Kyle Rames
updated service catalog support service net. thanks Kyle Rames
updated service catalog to return global endpoint if specified region endpoint does not exist. thanks Kyle Rames
tweaking service catalog to support ruby 1.8.7. thanks Kyle Rames
[rackspace|queues]
adding examples create queue, delete queue, and post message. thanks Kyle Rames
adding id alias for identity; fixed bug in message#identity that returned the id along with the claim_id query string; removed redundant code. thanks Kyle Rames
adding more examples. thanks Kyle Rames
fixing examples. thanks Kyle Rames
adding request YARD docs. thanks Kyle Rames
adding YARD docs. thanks Kyle Rames
adding the queues getting started guide. thanks Kyle Rames
updating set_messages= to populate the claim_id attribute on messages in order for destroy to work properly. thanks Kyle Rames
adding the queues getting started guide. thanks Kyle Rames
[vSphere]
Implementation of feature to specify scsi_controller type at create type and also support the attribute scsi_controller to return the right class. thanks Marc Grimme
[vcloud_director]
fix models vms_test so is pending on empty environment. thanks Dan Abel
tests become pending not failing on absense of testable resources. thanks Dan Abel
post_create_org_vdc_network. thanks Mike Pountney
fix to input format for post_create_org_vdc_network. thanks Mike Pountney
fix query test to handle delete_network. thanks Mike Pountney
Fix medias#create - issue #2440. thanks Nick Osborn
s/@end_point/end_point/. thanks Nick Osborn
update name, description and storage_profile for vm. thanks Sneha Somwanshi
ensure that MetadataEntry is a list. thanks Sneha Somwanshi
Show guest customization "admin password auto". thanks Stefano Tortarolo
Handle Guest admin password. thanks Stefano Tortarolo
allow nullable for gateway in network tests. thanks geemus
[vclouddirector]
Shore up tests re EdgeGateway. thanks Mike Pountney
correct put_vapp_name_and_description documentation. thanks Mike Pountney
[vsphere|compute]
restore default guest_id so setting it is optional. thanks Dominic Cleal
Force shutdown a server if VMware Tools is installed, but isn't running. thanks Kevin Menard
Pass server shutdown options through to the stop operation so the caller can force shutdown if desired. thanks Kevin Menard
get_vm_interface returns a hash, not an object that responds to :key. thanks Kevin Menard
Renamed 'vm' to 'server' to be more in line with other fog providers. thanks Kevin Menard
Backed out the changed to use a hash and fixed the conversion to an Interface class. thanks Kevin Menard
Implemented idiomatic interface destruction. thanks Kevin Menard
Default to a VirtualE1000 NIC if not configured. thanks Kevin Menard
Implemented idiomatic interface creation. thanks Kevin Menard
interfaces#get now properly initializes the Interface object. thanks Kevin Menard
Deprecated the old interface creation and destruction methods now that the idiomatic ones exist. thanks Kevin Menard
[xenserver]
Updated models to have all attributes from version 6.2.0. thanks Paulo Henrique Lopes Ribeiro
Adding more XenServer Models. thanks Paulo Henrique Lopes Ribeiro
1.18.0 10/31/2013 5442bc7e893eb73dae8bb5ee8ef0845c78c43627
==========================================================
Stats! { 'collaborators' => 53, 'downloads' => 3557402, 'forks' => 967, 'open_issues' => 171, 'watchers' => 2767 }
MVP! Mike Hagedorn
[aws|compute]
mock instance tenancy on servers. thanks Eugene Howe
Fixed a typo. thanks Kevin Menard
[aws|data_pipeline]
don't pass host to request. thanks Matt Gillooly
[ecloud|compute]
Replace /cloudapi/ecloud with a configurable path. thanks Todd Willey
[hp]
Add a simple http instrumentor. thanks Rupak Ganguly
Fix a small issue with the simple instrumentor. Remove igonore_aweful_caching from compute provider. thanks Rupak Ganguly
Another fix to the simple instrumentor. thanks Rupak Ganguly
Bump version and update changelog. thanks Rupak Ganguly
Add a simple http instrumentor. thanks Rupak Ganguly
Fix a small issue with the simple instrumentor. Remove igonore_aweful_caching from compute provider. thanks Rupak Ganguly
Another fix to the simple instrumentor. thanks Rupak Ganguly
Bump version and update changelog. thanks Rupak Ganguly
[hp|block_storage_v2]
Add a new Block Storage V2 provider for next gen block storage services. thanks Rupak Ganguly
Add request methods for volumes, along with tests. thanks Rupak Ganguly
Add the compute_v2 instance helper method. thanks Rupak Ganguly
Add volume model, fix some mocks, and add volume tests. thanks Rupak Ganguly
Add request methods for snapshots, along with tests. thanks Rupak Ganguly
Add snapshot model along with tests. thanks Rupak Ganguly
Add request methods for volume backups, along with tests. thanks Rupak Ganguly
Fix status for request methods. thanks Rupak Ganguly
Add details to the volumes and snapshots collection. Add new helper methods for corresponding statuses. Add collection tests for volumes and snapshots. thanks Rupak Ganguly
Add volume backups model, along with tests. thanks Rupak Ganguly
Add a new Block Storage V2 provider for next gen block storage services. thanks Rupak Ganguly
Add request methods for volumes, along with tests. thanks Rupak Ganguly
Add the compute_v2 instance helper method. thanks Rupak Ganguly
Add volume model, fix some mocks, and add volume tests. thanks Rupak Ganguly
Add request methods for snapshots, along with tests. thanks Rupak Ganguly
Add snapshot model along with tests. thanks Rupak Ganguly
Add request methods for volume backups, along with tests. thanks Rupak Ganguly
Fix status for request methods. thanks Rupak Ganguly
Add details to the volumes and snapshots collection. Add new helper methods for corresponding statuses. Add collection tests for volumes and snapshots. thanks Rupak Ganguly
Add volume backups model, along with tests. thanks Rupak Ganguly
[hp|compute]
Add vnc console feature into request layer and server model. thanks Rupak Ganguly
Fix deprecation messaging. thanks Rupak Ganguly
Add vnc console feature into request layer and server model. thanks Rupak Ganguly
Fix deprecation messaging. thanks Rupak Ganguly
[hp|compute_v2]
Add new HP Compute V2 provider. Add request methods for servers. thanks Rupak Ganguly
Remove aweful caching from query. thanks Rupak Ganguly
Add filter options to query for servers. thanks Rupak Ganguly
Update attributes, mocks and inline help. thanks Rupak Ganguly
Add capability to pass networks while creating a server. thanks Rupak Ganguly
Add tests for request methods for server. thanks Rupak Ganguly
Add the request methods for reboot, rebuild and create_image for servers. thanks Rupak Ganguly
Add request methods for flavors, along with tests. thanks Rupak Ganguly
Add request methods for images, along with tests. thanks Rupak Ganguly
Add request methods for keypairs, along with tests. thanks Rupak Ganguly
Add metadata request methods for servers and images, along with tests. thanks Rupak Ganguly
Add request methods for console, along with tests. thanks Rupak Ganguly
Add request methods for floating ip addresses, along with tests. thanks Rupak Ganguly
Add request methods for server addresses, along with tests. thanks Rupak Ganguly
Add models for servers, images and metadata. thanks Rupak Ganguly
Add tests for servers, images and metadata. thanks Rupak Ganguly
Add models for flavors and key pairs, along with tests. thanks Rupak Ganguly
Add address model along with tests. thanks Rupak Ganguly
Fix some tests. thanks Rupak Ganguly
Fix mocks for server addresses. Fix create_server and server model to accept networks and availability zones params. thanks Rupak Ganguly
Add request methods and models for availability zones, along with tests. thanks Rupak Ganguly
Add request methods for volume attachments for server, along with tests. thanks Rupak Ganguly
Add volume attachment methods to the server model. thanks Rupak Ganguly
Add update_name for server model. thanks Rupak Ganguly
Update server model with flavor and image methods. Also, update the create_image method to return image model. Update tests as well. thanks Rupak Ganguly
Update rebuild method of the server model. thanks Rupak Ganguly
Refactor server model to add volume attachments. thanks Rupak Ganguly
Add method to retrieve windows instance password after it is created. Also, add tests for persistent server. thanks Rupak Ganguly
Fix network_name for 1.8.7 compatibility. thanks Rupak Ganguly
Add request method for limits. thanks Rupak Ganguly
Add request and server model methods to add security groups to server after creation, along with tests. thanks Rupak Ganguly
Fix a minor bug. thanks Rupak Ganguly
Add new HP Compute V2 provider. Add request methods for servers. thanks Rupak Ganguly
Remove aweful caching from query. thanks Rupak Ganguly
Add filter options to query for servers. thanks Rupak Ganguly
Update attributes, mocks and inline help. thanks Rupak Ganguly
Add capability to pass networks while creating a server. thanks Rupak Ganguly
Add tests for request methods for server. thanks Rupak Ganguly
Add the request methods for reboot, rebuild and create_image for servers. thanks Rupak Ganguly
Add request methods for flavors, along with tests. thanks Rupak Ganguly
Add request methods for images, along with tests. thanks Rupak Ganguly
Add request methods for keypairs, along with tests. thanks Rupak Ganguly
Add metadata request methods for servers and images, along with tests. thanks Rupak Ganguly
Add request methods for console, along with tests. thanks Rupak Ganguly
Add request methods for floating ip addresses, along with tests. thanks Rupak Ganguly
Add request methods for server addresses, along with tests. thanks Rupak Ganguly
Add models for servers, images and metadata. thanks Rupak Ganguly
Add tests for servers, images and metadata. thanks Rupak Ganguly
Add models for flavors and key pairs, along with tests. thanks Rupak Ganguly
Add address model along with tests. thanks Rupak Ganguly
Fix some tests. thanks Rupak Ganguly
Fix mocks for server addresses. Fix create_server and server model to accept networks and availability zones params. thanks Rupak Ganguly
Add request methods and models for availability zones, along with tests. thanks Rupak Ganguly
Add request methods for volume attachments for server, along with tests. thanks Rupak Ganguly
Add volume attachment methods to the server model. thanks Rupak Ganguly
Add update_name for server model. thanks Rupak Ganguly
Update server model with flavor and image methods. Also, update the create_image method to return image model. Update tests as well. thanks Rupak Ganguly
Update rebuild method of the server model. thanks Rupak Ganguly
Refactor server model to add volume attachments. thanks Rupak Ganguly
Add method to retrieve windows instance password after it is created. Also, add tests for persistent server. thanks Rupak Ganguly
Fix network_name for 1.8.7 compatibility. thanks Rupak Ganguly
Add request method for limits. thanks Rupak Ganguly
Add request and server model methods to add security groups to server after creation, along with tests. thanks Rupak Ganguly
Fix a minor bug. thanks Rupak Ganguly
[hp|dns]
Add the HP DNS provider along with the tests. thanks Rupak Ganguly
Add DNS model tests and updated models and mocks. thanks Rupak Ganguly
Fix update_record issue and fix tests. thanks Rupak Ganguly
Add the HP DNS provider along with the tests. thanks Rupak Ganguly
Add DNS model tests and updated models and mocks. thanks Rupak Ganguly
Fix update_record issue and fix tests. thanks Rupak Ganguly
[hp|dns,lb]
Add DNS and LB provider registration. thanks Rupak Ganguly
Add DNS and LB provider registration. thanks Rupak Ganguly
[hp|lb]
Add request layer for methods for load balancer along with tests. thanks Rupak Ganguly
Add HP provider models for Load Balancer along with tests. thanks Rupak Ganguly
Add request layer for methods for load balancer along with tests. thanks Rupak Ganguly
Add HP provider models for Load Balancer along with tests. thanks Rupak Ganguly
[hp|network]
Add the HP Network (Quantum) provider. thanks Rupak Ganguly
Add request method for list_networks. thanks Rupak Ganguly
Add request method for get_network. thanks Rupak Ganguly
Add request method for create_network. thanks Rupak Ganguly
Add request method for delete_network. thanks Rupak Ganguly
Add request method for update_network. thanks Rupak Ganguly
Add bin support for network provider. thanks Rupak Ganguly
Add tests for request methods for network provider. thanks Rupak Ganguly
Add request methods for subnets. thanks Rupak Ganguly
Add tests for request methods of subnets. thanks Rupak Ganguly
Add request methods for ports and tests to go along. thanks Rupak Ganguly
Update create_port to add security groups. thanks Rupak Ganguly
Minor edits. thanks Rupak Ganguly
Add the request methods for floating ips, along with the tests. thanks Rupak Ganguly
Minor chnages to inline docs and mocks. thanks Rupak Ganguly
Add the request methods for routers. thanks Rupak Ganguly
Fix the mocks for remove router logic. thanks Rupak Ganguly
Add tests for routers. thanks Rupak Ganguly
Add a mock external network. Fix some mocks and tests. thanks Rupak Ganguly
Add models for network, along with tests. thanks Rupak Ganguly
Minor changes to network model. thanks Rupak Ganguly
Add models for subnets, along with tests. thanks Rupak Ganguly
Add models for ports, along with tests. thanks Rupak Ganguly
Add models for floating ips, along with tests. thanks Rupak Ganguly
Add models for routers, along with tests. thanks Rupak Ganguly
Add router interface methods and tests to router models. thanks Rupak Ganguly
Fix minor bug. thanks Rupak Ganguly
Add request methods for networking security groups. thanks Rupak Ganguly
Add tests for request methods for networking security groups. thanks Rupak Ganguly
Add request methods for networking security group rules, along with tests. thanks Rupak Ganguly
Add models for security groups, along with tests. thanks Rupak Ganguly
Add security group rules model, along with tests. thanks Rupak Ganguly
Add a ready? method to the network model. thanks Rupak Ganguly
Add the request methods for floating ips, along with the tests. thanks Rupak Ganguly
Minor chnages to inline docs and mocks. thanks Rupak Ganguly
Add the request methods for routers. thanks Rupak Ganguly
Update network provider to cache credentials. thanks Rupak Ganguly
Add ready? method for port and router model. thanks Rupak Ganguly
Add a extra check for responses that return not JSON data. thanks Rupak Ganguly
Add the HP Network (Quantum) provider. thanks Rupak Ganguly
Add request method for list_networks. thanks Rupak Ganguly
Add request method for get_network. thanks Rupak Ganguly
Add request method for create_network. thanks Rupak Ganguly
Add request method for delete_network. thanks Rupak Ganguly
Add request method for update_network. thanks Rupak Ganguly
Add bin support for network provider. thanks Rupak Ganguly
Add tests for request methods for network provider. thanks Rupak Ganguly
Add request methods for subnets. thanks Rupak Ganguly
Add tests for request methods of subnets. thanks Rupak Ganguly
Add request methods for ports and tests to go along. thanks Rupak Ganguly
Update create_port to add security groups. thanks Rupak Ganguly
Minor edits. thanks Rupak Ganguly
Add the request methods for floating ips, along with the tests. thanks Rupak Ganguly
Minor chnages to inline docs and mocks. thanks Rupak Ganguly
Add the request methods for routers. thanks Rupak Ganguly
Fix the mocks for remove router logic. thanks Rupak Ganguly
Add tests for routers. thanks Rupak Ganguly
Add a mock external network. Fix some mocks and tests. thanks Rupak Ganguly
Add models for network, along with tests. thanks Rupak Ganguly
Minor changes to network model. thanks Rupak Ganguly
Add models for subnets, along with tests. thanks Rupak Ganguly
Add models for ports, along with tests. thanks Rupak Ganguly
Add models for floating ips, along with tests. thanks Rupak Ganguly
Add models for routers, along with tests. thanks Rupak Ganguly
Add router interface methods and tests to router models. thanks Rupak Ganguly
Fix minor bug. thanks Rupak Ganguly
Add request methods for networking security groups. thanks Rupak Ganguly
Add tests for request methods for networking security groups. thanks Rupak Ganguly
Add request methods for networking security group rules, along with tests. thanks Rupak Ganguly
Add models for security groups, along with tests. thanks Rupak Ganguly
Add security group rules model, along with tests. thanks Rupak Ganguly
Add a ready? method to the network model. thanks Rupak Ganguly
Add the request methods for floating ips, along with the tests. thanks Rupak Ganguly
Minor chnages to inline docs and mocks. thanks Rupak Ganguly
Add the request methods for routers. thanks Rupak Ganguly
Update network provider to cache credentials. thanks Rupak Ganguly
Add ready? method for port and router model. thanks Rupak Ganguly
Add a extra check for responses that return not JSON data. thanks Rupak Ganguly
[hp|storage]
Minor fixes to post_container and post_object methods and tests. thanks Rupak Ganguly
Add attributes to directory model and update collection to save these for the static web. thanks Rupak Ganguly
Add a metadata implementation for object storage directory. thanks Rupak Ganguly
Minor fixes to directory metadata and along with tests for metadata. thanks Rupak Ganguly
Minor fixes to post_container and post_object methods and tests. thanks Rupak Ganguly
Add attributes to directory model and update collection to save these for the static web. thanks Rupak Ganguly
Add a metadata implementation for object storage directory. thanks Rupak Ganguly
Minor fixes to directory metadata and along with tests for metadata. thanks Rupak Ganguly
[misc]
Fix parser typo that caused failure in #describe_internet_gateways when the gateway had tags. thanks David Faber
Add support to #create_tags mock for internet gateways. thanks David Faber
Fix initialization of instances array in AWS autoscaling group. thanks David Faber
Fix initialization of instances array in AWS autoscaling group. thanks David Faber
Remove override of instances instance-setting in autoscale groups. thanks Jose Diaz-Gonzalez
rake mock[<provider>] and live[<provider] tasks. thanks Max Lincoln
fix usage for mock. thanks Max Lincoln
added dns files. thanks Mike Hagedorn
added dns stuff. thanks Mike Hagedorn
added to bin for provider. thanks Mike Hagedorn
added lb to bin. thanks Mike Hagedorn
cleaned up dns stuff. thanks Mike Hagedorn
beginnings for LB adapter. thanks Mike Hagedorn
more requests... thanks Mike Hagedorn
versioning logic. thanks Mike Hagedorn
create lb node request logic. thanks Mike Hagedorn
clean up copy and paste error. thanks Mike Hagedorn
took dns refs out of lbaas branch. thanks Mike Hagedorn
model tweaks. thanks Mike Hagedorn
fixed request registration. thanks Mike Hagedorn
file rename. thanks Mike Hagedorn
added list tests. thanks Mike Hagedorn
added limits unit test. thanks Mike Hagedorn
get load balancer tests. thanks Mike Hagedorn
more node tests. thanks Mike Hagedorn
delete node/lb tests. thanks Mike Hagedorn
added dns files. thanks Mike Hagedorn
added dns stuff. thanks Mike Hagedorn
added to bin for provider. thanks Mike Hagedorn
added lb to bin. thanks Mike Hagedorn
cleaned up dns stuff. thanks Mike Hagedorn
beginnings for LB adapter. thanks Mike Hagedorn
more requests... thanks Mike Hagedorn
versioning logic. thanks Mike Hagedorn
create lb node request logic. thanks Mike Hagedorn
clean up copy and paste error. thanks Mike Hagedorn
took dns refs out of lbaas branch. thanks Mike Hagedorn
model tweaks. thanks Mike Hagedorn
fixed request registration. thanks Mike Hagedorn
file rename. thanks Mike Hagedorn
added list tests. thanks Mike Hagedorn
added limits unit test. thanks Mike Hagedorn
get load balancer tests. thanks Mike Hagedorn
more node tests. thanks Mike Hagedorn
delete node/lb tests. thanks Mike Hagedorn
make Disks model zone agnostic. thanks Nat Welch
small typo. thanks Nat Welch
expand variable names. thanks Nat Welch
added tests for monigtoring zones. thanks Paul Vudmaska
add pending if mocking to tests. thanks Paul Vudmaska
using Fog.mocking rather than mocking?. thanks Paul Vudmaska
Update changelog and bump version. thanks Rupak Ganguly
Fix minor thing. thanks Rupak Ganguly
Fix minor things in console request methods. thanks Rupak Ganguly
Minor fix to failing test. thanks Rupak Ganguly
Minor inline doc updates. thanks Rupak Ganguly
Minor fix to desc. of tests. thanks Rupak Ganguly
Minor fix to inline help. thanks Rupak Ganguly
Remove the metadata attribute, and let it be lazy loaded as needed per image object. thanks Rupak Ganguly
Add a capability to filter collections based on aliased or original attributes. Also, add capability to specify :details => true to fetch details, non-details call being the default. thanks Rupak Ganguly
Remove the metadata attribute, and let it be lazy loaded as needed per server object. thanks Rupak Ganguly
Add subnets collection to the network model. thanks Rupak Ganguly
Add a helper method for network_names. Also, update network_name methdo to set itself to the first network with a public ip address by default. thanks Rupak Ganguly
Bump version and update changelog. thanks Rupak Ganguly
Minor fix to mocks. thanks Rupak Ganguly
Fix small typo. thanks Rupak Ganguly
[hp|compute_v2]Minor fixes to mocks. thanks Rupak Ganguly
Add a body for the request portion for the instrumentor. thanks Rupak Ganguly
Remove HP version info from user-agent. thanks Rupak Ganguly
Update newer providers to expose hp_service_type as was done in #2177. thanks Rupak Ganguly
Remove some files that were added during merge. thanks Rupak Ganguly
Update changelog and bump version. thanks Rupak Ganguly
Fix minor thing. thanks Rupak Ganguly
Fix minor things in console request methods. thanks Rupak Ganguly
Minor fix to failing test. thanks Rupak Ganguly
Minor inline doc updates. thanks Rupak Ganguly
Minor fix to desc. of tests. thanks Rupak Ganguly
Minor fix to inline help. thanks Rupak Ganguly
Remove the metadata attribute, and let it be lazy loaded as needed per image object. thanks Rupak Ganguly
Add a capability to filter collections based on aliased or original attributes. Also, add capability to specify :details => true to fetch details, non-details call being the default. thanks Rupak Ganguly
Remove the metadata attribute, and let it be lazy loaded as needed per server object. thanks Rupak Ganguly
Add subnets collection to the network model. thanks Rupak Ganguly
Add a helper method for network_names. Also, update network_name methdo to set itself to the first network with a public ip address by default. thanks Rupak Ganguly
Bump version and update changelog. thanks Rupak Ganguly
Minor fix to mocks. thanks Rupak Ganguly
Fix small typo. thanks Rupak Ganguly
[hp|compute_v2]Minor fixes to mocks. thanks Rupak Ganguly
Add a body for the request portion for the instrumentor. thanks Rupak Ganguly
Remove HP version info from user-agent. thanks Rupak Ganguly
Update newer providers to expose hp_service_type as was done in #2177. thanks Rupak Ganguly
Remove some files that were added during merge. thanks Rupak Ganguly
Remove tests temporarily. thanks Rupak Ganguly
Fix tests temporarily for 1.8.7. thanks Rupak Ganguly
fixing firewall config to follow api documentation. thanks Sneha Somwanshi
Added missing health check uri and pool description. thanks Sneha Somwanshi
Should define the username only if empty. thanks Sylvain Kalache
Update lib/fog/hp.rb. thanks Terry Howe
Update lib/fog/hp/models/compute_v2/server.rb. thanks Terry Howe
Update lib/fog/hp/models/compute_v2/server.rb. thanks Terry Howe
fix error in volumes. thanks Terry Howe
Update create_record.rb. thanks Terry Howe
Update version.rb. thanks Terry Howe
Update versions.rb. thanks Terry Howe
make HP a bit more like openstack generic. thanks Terry Howe
changes to make old ips work better and activate network for HP. thanks Terry Howe
excon update fix. thanks Terry Howe
Update lib/fog/hp.rb. thanks Terry Howe
Update lib/fog/hp/models/compute_v2/server.rb. thanks Terry Howe
Update lib/fog/hp/models/compute_v2/server.rb. thanks Terry Howe
fix error in volumes. thanks Terry Howe
Update create_record.rb. thanks Terry Howe
Update version.rb. thanks Terry Howe
Update versions.rb. thanks Terry Howe
make HP a bit more like openstack generic. thanks Terry Howe
changes to make old ips work better and activate network for HP. thanks Terry Howe
excon update fix. thanks Terry Howe
When not mocked, test against LiveSpec api endpoint. thanks Todd Willey
Map a single-value hash to arrays when needed. thanks Todd Willey
Specify tests to come from Living Spec. thanks Todd Willey
add Chris Roberts to MVP list. thanks geemus
bump excon dependency. thanks geemus
syntax fix. thanks geemus
dxsdk-27 authentication caching. thanks howete
dxsdk-27 add the test back in. thanks howete
dxsdk-27 modification as pre rupak. thanks howete
dxsdk-27 make generic credentials. thanks howete
dxsdk-27 make generic credentials. thanks howete
dxsdk-321 add credentials for convenience methods. thanks howete
add a post object request for after and at deletes. thanks howete
correcting mock. thanks howete
dxsdk-335 add tests and a post_container request. thanks howete
monkey patch start. thanks howete
add service catalog call. thanks howete
merge. thanks howete
update LBaaS to what works with the current version in pro. thanks howete
make the updates for version and virtual ip. thanks howete
dxcli-847 fixes for 1.8.7 ruby. thanks howete
dxcli-847 add mikes tests back in. thanks howete
dxcli-863 versions error from fog call. thanks howete
dxsdk-27 authentication caching. thanks howete
dxsdk-27 add the test back in. thanks howete
dxsdk-27 modification as pre rupak. thanks howete
dxsdk-27 make generic credentials. thanks howete
dxsdk-27 make generic credentials. thanks howete
dxsdk-321 add credentials for convenience methods. thanks howete
add a post object request for after and at deletes. thanks howete
correcting mock. thanks howete
dxsdk-335 add tests and a post_container request. thanks howete
monkey patch start. thanks howete
add service catalog call. thanks howete
merge. thanks howete
update LBaaS to what works with the current version in pro. thanks howete
make the updates for version and virtual ip. thanks howete
dxcli-847 fixes for 1.8.7 ruby. thanks howete
dxcli-847 add mikes tests back in. thanks howete
dxcli-863 versions error from fog call. thanks howete
[rackspace]
fixing broken tests. thanks Kyle Rames
[rackspace|monitoring]
updating BadRequest exceptions to include validation errors. thanks Kyle Rames
[rackspace|storage]
implement get_http_url and get_https_url. See issue #2103 for more information. thanks Kyle Rames
set tests to pending if mocking. thanks Kyle Rames
[vcloud_director]
fix or skip tests that fail in real environment. thanks Dan Abel
test should fail fast, and use a clearly test id and description. thanks Dan Abel
Ensure task :Owner is always present. thanks Nick Osborn
[vsphere|compute]
Added the ability to create and destroy new volumes. thanks Kevin Menard
Be more intelligent about auto-picking a unit number for a volume. thanks Kevin Menard
Refresh the local volume attributes upon successful save and accurately report save failures. thanks Kevin Menard
1.17.0 10/29/2013 9f0627eec16e636bfe86895bbd36f89d7a017737
==========================================================
Stats! { 'collaborators' => 53, 'downloads' => 3531286, 'forks' => 964, 'open_issues' => 177, 'watchers' => 2765 }
MVP! Chris Roberts
[Brightbox]
Add SSL settings to load balancer. thanks Paul Thornthwaite
[aws|iam]
Don't pass :host to Excon request. thanks Robert Bousquet
[aws|storage]
ensure connection uses correct scheme, host and port. thanks Brian D. Burns
remove unused :path option. thanks Brian D. Burns
[core]
log warning for unrecognized arguments. thanks Brian D. Burns
identify origin of log messages. thanks Brian D. Burns
Make `ruby-libvirt` dependency optional. thanks Paul Thornthwaite
[google|compute]
examples tweaks. thanks Nat Welch
Fix externalIP setup. thanks Nat Welch
[google|storage]
ensure connection uses correct URI. thanks Brian D. Burns
[jruby]
Ignore failures until fully supported. thanks Paul Thornthwaite
[linode|compute]
Avoid passing host to request. thanks Fletcher Nichol
[linode|dns]
avoid passing host to request. thanks geemus
[misc]
Create a Snapshot based on a Disk. thanks Akshay Moghe
Add s3 bucket tagging support. thanks Chris Roberts
Add mocks in for bucket tagging and include in bucket tests. thanks Chris Roberts
Store tag information in mock and check for set tags in `put_bucket_tagging`. thanks Chris Roberts
Namespace tagging and move tagging tests prior to bucket deletion. thanks Chris Roberts
Return `body` out of test so we have proper value to match against expected `returns`. thanks Chris Roberts
Move mock storage initialization and remove storage checks. thanks Chris Roberts
AWS IAM userless key management. thanks Jacob Burkhart & Shai Rosenfeld
Removed errant :host argument. thanks Jon Topper
aws/compute: Hotfix, wrong Name argument for copy_image. thanks Jonas Pfenniger
Added testing in JRuby for Travis. thanks Kevin Menard
Don't load a couple MRI-only development dependencies on JRuby. thanks Kevin Menard
Temporary hack around #2279 to get fog loading on JRuby. thanks Kevin Menard
Added logging message for JRuby users to know they're at a disadvantage. thanks Kevin Menard
Scope the Unicode module so NameErrors make more sense. thanks Kevin Menard
Handle another case of the 'unicode' gem breaking things on JRuby. thanks Kevin Menard
Added a JRuby workaround in a test that's failing due to a JRuby bug. thanks Kevin Menard
Bound the 'myns' XML namespace to keep Nokogiri on JRuby happy. thanks Kevin Menard
Replaced the 'unicode' gem with 'unf' so it'll work with JRuby. thanks Kevin Menard
Made the 'unf' dependency optional. thanks Kevin Menard
Added a development dependency on 'unf' so the AWS escaping tests will pass. thanks Kevin Menard
Don't ignore JRuby failures in Travis any longer, since all known ones have been addressed. thanks Kevin Menard
Semantic Versioning (and Pessimistic Versioning Constraint) notice. thanks Max Lincoln
Update GCE to v1beta16. thanks Nat Welch
@icco can't spell. thanks Nat Welch
Fix bug in list images example. thanks Nat Welch
typo. thanks Nat Welch
Forgot to update Google Readme. thanks Nat Welch
allow custom hp_service_type. thanks Omar Reiss
applied hp_service_type fix on all services. thanks Omar Reiss
add v1 auth fix #2248. thanks Peter Bonnell
Add EnableLogging field to FirewallService XML. thanks Philip Potter
ensuring that edgegateway list elements are list. thanks Sneha Somwanshi
corrected name of edgegateway generator. thanks Sneha Somwanshi
tests for configure edge gateways. thanks Sneha Somwanshi
added comment on test. thanks Sneha Somwanshi
Add a reload() method to the vSphere service. thanks Timur Alperovich
Assign service to clone_result before new instance of vm. thanks Xavier Fontrodona
add end date for aws instance reservations. thanks aabes
- update compute api version to 2013/10/01 - add 'end' to described_reserved_instance. thanks aabes
fix mock for purchase ri. thanks aabes
Update create_server.rb. thanks avic85
Removed host params for excon connections. thanks ccloes
Invalid Excon request keys: :host, :port. thanks wenlock
[rackspace]
setting rackspace_region to nil in default tests to override any settings loaded via Fog.credentials. thanks Kyle Rames
[rackspace|block_storage]
fixing merge issue. thanks Kyle Rames
[vSphere]
Implemented feature to specify a socket cpu layout as specified in vmware API. If not used numCoresPerSocket is left out and default VMware behaviour is used. [vSphere] also fixed bug in vm_reconfig_memory: wrong memory value passed to reconfig_hardware (memory in bytes instead of memory in MB). thanks Marc Grimme
[vcloud_director]
improoved tests for #ensure_list!. thanks Dan Abel
fixes so that non configured gateway are supported. thanks Dan Abel
Change input options structure. thanks Nick Osborn
strftime not iso8601 for ruby 1.8.7. thanks Nick Osborn
Mocking for tasks. thanks Nick Osborn
strftime not iso8601 for ruby 1.8.7. thanks Nick Osborn
Consistent usage of ensure_list! in get_disk. thanks Nick Osborn
Fix ruby 1.9-isms in media_tests. thanks Nick Osborn
[vsphere|compute]
Small code cleanup. thanks Kevin Menard
cleanup merge conflicts with clone method. thanks Mick Pollard
1.16.0 10/16/2013 13a86cd41e8ea10022fb822cb0b4340cbf2c023d
==========================================================
Stats! { 'collaborators' => 53, 'downloads' => 3423389, 'forks' => 951, 'open_issues' => 178, 'watchers' => 2751 }
MVP! Rodrigo Estebanez
[#2112]
Allows non VCR HTTP connections. thanks Paul Thornthwaite
[AWS|SQS]
Fix iam credentials not being refreshed. thanks Frederick Cheung
[Brightbox]
Servers can now have their groups updated. thanks Hemant Kumar
Switches to new format helper. thanks Paul Thornthwaite
Expands on some tests. thanks Paul Thornthwaite
Adds missing images attributes. thanks Paul Thornthwaite
Breaks schemas from test helper. thanks Paul Thornthwaite
[Rackspace|Load Balancers]
Added get_stats and mock for create_load_balancer. thanks Michael Jackson
[aws|autoscaling]
don't pass host to request. thanks geemus
[aws|compute]
remove :host from request parameters. thanks Brian D. Burns
[aws|sdb]
don't pass host to request. thanks geemus
[aws|storage]
mark post_object_restore test pending unless mocking. thanks Brian D. Burns
[cloudsigma|compute]
add firewall policies. thanks fred-secludit
[core]
removing uuidtools dependency; added Fog::UUID class. thanks Kyle Rames
updated UUID to use it's own UUID implementation if one was not available from the ruby lib. thanks Kyle Rames
[google]
Create zone and zones models. thanks Carlos Sanchez
Zone is a required parameter of machine_types request. thanks Carlos Sanchez
Add mock data. thanks Carlos Sanchez
[google|compute]
Set default zone to be one not in maintence. thanks Nat Welch
Update bootstrap image to debian-7-wheezy-v20130816. thanks Nat Welch
Fix metadata bug. thanks Nat Welch
Make sure we always set disk image size. thanks Nat Welch
[misc]
Local storage's File quacks like other Directories. thanks Andy Lindeman
Fixes SignatureDoesNotMatch error. thanks Bradley Schaefer
Adding example to bootstrap server with custom ssh_key. thanks Brendan Fosberry
require mime/types in Fog::Storage. thanks Brian D. Burns
Add fog Elasticache security group mocking. thanks Brian Nelson
Fix Fog::AWS::Elasticache::Mock#authorize_cache_security_group_ingress. thanks Brian Nelson
Fix for Mock AWS::Elasticache::SecurityGroup deletion. thanks Brian Nelson
Fixes for comments on pull request. thanks Brian Nelson
More fixes to AWS::Elasticache mocking. thanks Brian Nelson
Another fix from @jbence comments to simplify Excon response in authorize_cache_security_group_ingress. thanks Brian Nelson
Attempt to fix parameter group assignment when creating AWS::Elasticache clusters. thanks Brian Nelson
Only HTTPStatusError has request and response. thanks Carlos Sanchez
support retrieving edge gateway status. thanks Dan Abel
ensuring tests are good for empty orgs and are skipped when mocking. thanks Dan Abel
Mocks for get_edge_gateways & get edge gateway. thanks Dan Abel
Corrected edge_gateway schema and removed bad test. thanks Dan Abel
vcloud_director - improving edge gateway tests. thanks Dan Abel
Minor whitespace cleanups. thanks Dan Prince
All OpenStack heat requests must contain User/Key. thanks Dan Prince
Jsonify all OS orchestration requests. thanks Dan Prince
Fix orchestration request status codes. thanks Dan Prince
OpenStack orchestration update_stack fixes. thanks Dan Prince
Use ruby-style attribute setters in AutoScaling::Group initializer. thanks David Faber
Use old hash syntax to support older ruby versions. thanks David Faber
Fix for https urls in atmos. thanks David Prater
Fog::Storage::OpenStack::Real#put_object: Don't use data when block is provided. thanks Dmitry Gutov
Fog::Storage::OpenStack::Real#put_object: Document the block parameter Fog::Storage::Rackspace::Real#put_object: Same. thanks Dmitry Gutov
Initial support for redshift, with describe_cluster requests and corresponding parsers. thanks Efe Yardimci
Adding the remaining describe requests. thanks Efe Yardimci
Support for create requests, along with parsers. thanks Efe Yardimci
Modify and Delete requests added. thanks Efe Yardimci
adding redshift to service list. thanks Efe Yardimci
Starting adding tests, some cleanup. thanks Efe Yardimci
refactoring common parser code. cluster requests tests. thanks Efe Yardimci
refactored duplicate parser code, added more request tests, converted all parser responses to be key,value pairs. thanks Efe Yardimci
marked mocking tests pending. thanks Efe Yardimci
Fix incorrect boolean expression; should have been string comparison. thanks Efe Yardimci
typo fix. thanks Efe Yardimci
openstack | add min_count, max_count, return_reservation_id. thanks Eric Stonfer
Update excon dependency to version ~>0.26.0. thanks Erik Michaels-Ober
Update vcr dependency to version ~>2.6. thanks Erik Michaels-Ober
Update webmock dependency to version ~>1.14. thanks Erik Michaels-Ober
Update excon dependency to version ~>0.27.0. thanks Erik Michaels-Ober
ec2 - added support for associating public ip with vpc instance on launch. thanks Gabriel Rosendorf
removed duplicate NetworkInterface.n.AssociatePublicIpAddress option. thanks Gabriel Rosendorf
cleaned up logic for multiple security groups for vpc instances with manually specified network interfaces. thanks Gabriel Rosendorf
added instance request and server model tests for associate_public_ip. thanks Gabriel Rosendorf
vpc associate_public_ip test. thanks Gabriel Rosendorf
Add alias for openstack availablilty zone server attribute. thanks Greg Blomquist
Adds backwards compatibility comment. thanks Hendrik Volkmer
Adding a few more ensure blocks for resource deletion. thanks Jamie H
Modifying array for 1.8.7 Gemfile to pass. thanks Jamie H
Removing trailing slashes from method calls for 1.8.7. thanks Jamie H
Fixing minor issues with doc annotations, removing unused file, adding Shindo tests. thanks Jamie H
Adding the red herrings. thanks Jamie H
Adding notifications for Rackspace Monitoring. thanks Jim Salinas
support for aws compute route tables. TODO: add mocks. thanks Jon Palmer
fixed route table parser. actually response data now. thanks Jon Palmer
added association_id to address model. thanks Jon Palmer
Quick doc update with some available EBS properties. thanks Jon-Erik Schneiderhan
Implement group_policy mocks and unit tests. thanks Jose Luis Salas
IAM::get_group_policy returns PolicyDocument Hash. thanks Jose Luis Salas
added put_record for dynect. thanks Josh Blancett
added shindo config for dynect put_record. thanks Josh Blancett
fixed typo. thanks Josh Blancett
added put_record to requests in dynect class. thanks Josh Blancett
added support for both update and replace for dynect put_record request. thanks Josh Blancett
fixed doc info. thanks Josh Blancett
fixed data formatting for testing dynect put_record. thanks Josh Blancett
refactors get_object_https_url request, adds temp_signed_url method to file class. thanks Julian Weber
adapts aws method signatures for temp url generation. thanks Julian Weber
refactors create_temp_url method to use the options hash for schemes instead of a parameter. thanks Julian Weber
adds object tests for get_http_url, get_https_url. thanks Julian Weber
Hp provider: ensures that hp_auth_version is loaded as symbol. thanks Julian Weber
changes sym conversion as discussed with rupakg. thanks Julian Weber
implements the get_http_url, get_https_url and url functions according to the openstack and aws providers. thanks Julian Weber
refactor: duplicate parsing of the storage_uri, file#url uses service.create_temp_url to be able to pass options now. thanks Julian Weber
adds :os_account_meta_temp_url_key to test mock helper. thanks Julian Weber
corrects object_tests, also working in mock mode now. thanks Julian Weber
Don’t escape '/' characters in keys. thanks Keith Duncan
Add support for canonicalising AWS keys. thanks Keith Duncan
Fix the Unicode strings for Ruby 1.8.7. thanks Keith Duncan
Pack takes Unicode characters, not UTF-8 encodings. thanks Keith Duncan
Added correct description comment to describe_route_tables, disassociate_route_table, delete_route, delete_route_table, create_route, and route_table(s) model. thanks Kyla Kolb
Created more tests for create_route and cleaned up code. thanks Kyla Kolb
Allowed vpc to be pending when in mock mode, fixed Boolean value for disassociate route table, excluded less specific cidr block for mock mode. thanks Kyla Kolb
removing unnecessary :hosts parameters from dynect and openstack requests. thanks Kyle Rames
Revert "[rackspace] updated shindo helper to add :rackspace_queues_client_id to credentials if it does not already exist. Hopefully this will make it easier to run Rackspace tests". thanks Kyle Rames
added uuidtools gem to dependencies. thanks Kyle Rames
support "name" on cloudstack deploy. thanks Mark Phillips
AWS Data Pipeline delete endpoint does not return a JSON body string. thanks Matt Gillooly
add support for AWS Data Pipeline's GetPipelineDefinition endpoint. thanks Matt Gillooly
add support for AWS Data Pipeline's QueryObjects endpoint. thanks Matt Gillooly
add support for AWS Data Pipeline's DescribeObjects endpoint. thanks Matt Gillooly
Add support for multiple sshkeys and downed zones. thanks Nat Welch
Added Coveralls.io coverage badge to README.md. thanks Nick Merwin
Revert "[vcloud_director] More mocking.". thanks Nick Osborn
Remove webmock. thanks Nick Osborn
Fix mocking for create server request. thanks Reinaldo Junior
added in mock for create_route_table. thanks Robert Clark
Added mocks for create_route_table and updated description comment. thanks Robert Clark
Added subnetId to describe_route_tables parser. thanks Robert Clark
Change routeTableSet to routeTable for createRouteTable, since it only returns one on creation, yet our mocks were not showing that same functionality. thanks Robert Clark
Updated description and added mock for associateRouteTable. thanks Robert Clark
Corrected description for createRoute to be more accurate. thanks Robert Clark
Setup VPC mocks to create a default route table. thanks Robert Clark
Added describe_route_tables mock. thanks Robert Clark
Removed state from route_table model because route_tables don't seem to have a state, routes do. Also fixes create_route_tables mock. thanks Robert Clark
Added network_interface_id and did a cleanup of create route. thanks Robert Clark
Fixed bug in parser where object memory reference was not being cleared. thanks Robert Clark
Updated routeSet to include all possible parameters, as some were being ignored by the parser. thanks Robert Clark
Added mock for create_route. thanks Robert Clark
Typo in default route. thanks Robert Clark
Do not wrap default route in item. thanks Robert Clark
Updated association to always contain optional fields. thanks Robert Clark
Added delete_route mock. thanks Robert Clark
Updated associate_route_table mock to return the correct association id and with additional fields that were previously missing. thanks Robert Clark
Added mock for disassociate_route_table. thanks Robert Clark
Added delete_route_table mock. thanks Robert Clark
Fixed error happening when the route_table was nil. thanks Robert Clark
Added spots to ignore for mocks in tests. thanks Robert Clark
Updated create route to make additional checks so it passed our tests. thanks Robert Clark
Cleaned up unnecessary parsers. thanks Robert Clark
Authentication + get_organizations working, need to be cleaned up. thanks Rodrigo Estebanez
get_organization implemented. thanks Rodrigo Estebanez
refactor get_organizations, not overriding the path, require parses in the request class. thanks Rodrigo Estebanez
get_catalog implemented. thanks Rodrigo Estebanez
get_catalog_item implemented. thanks Rodrigo Estebanez
get_vapp_template implemented. thanks Rodrigo Estebanez
clean-up. thanks Rodrigo Estebanez
get_vdc implemented. thanks Rodrigo Estebanez
fix defaults. thanks Rodrigo Estebanez
get_network implemented. thanks Rodrigo Estebanez
end_point helpers. thanks Rodrigo Estebanez
default_network_name. thanks Rodrigo Estebanez
clean-up. thanks Rodrigo Estebanez
implemented: default_organization_body, default_vdc_body, default_catalog_id, get_network_name_by_network_id. thanks Rodrigo Estebanez
instantiate_vapp_template before even test it. thanks Rodrigo Estebanez
get_app first implementation, parser isn't working properly. thanks Rodrigo Estebanez
parse description and links, remove non existing attar property. thanks Rodrigo Estebanez
Fix parser, adding links, and IsPublish attrs. thanks Rodrigo Estebanez
Fix get_network parser: adding IpRanges, Dns1, Dns2, DnsSuffix, RetainNetInfoAcrossDeployments, IsInherited Implement String#to_bool. thanks Rodrigo Estebanez
clean-up mdsol domain. thanks Rodrigo Estebanez
GetOrganization sample comment. thanks Rodrigo Estebanez
using template_id instead of catalog_item_id. populate_uris and validate_uris implemented. thanks Rodrigo Estebanez
get_vapp_template parser. thanks Rodrigo Estebanez
parsed body as comment. thanks Rodrigo Estebanez
parsed body as comment. thanks Rodrigo Estebanez
parsed body as comment. thanks Rodrigo Estebanez
make clouding a fog service. thanks Rodrigo Estebanez
organization model working. thanks Rodrigo Estebanez
catalog and catalogs model. thanks Rodrigo Estebanez
catalog_items model. thanks Rodrigo Estebanez
vdc model implemented. thanks Rodrigo Estebanez
miscelanea. thanks Rodrigo Estebanez
adapting catalog to the new parser. thanks Rodrigo Estebanez
adapting organization to the new parser. thanks Rodrigo Estebanez
adapting catalog_item to the new parser. thanks Rodrigo Estebanez
adapting vdc to the new parser. thanks Rodrigo Estebanez
using new parser. thanks Rodrigo Estebanez
removing all parsers. thanks Rodrigo Estebanez
many changes... thanks Rodrigo Estebanez
remove parsers. clear debugging output. thanks Rodrigo Estebanez
vms and vm_customizations. thanks Rodrigo Estebanez
network request, parser and model implemented. thanks Rodrigo Estebanez
set_cpu implemented. thanks Rodrigo Estebanez
set memory and vm.reload. thanks Rodrigo Estebanez
modifying disk working. thanks Rodrigo Estebanez