-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
3389 lines (2896 loc) · 171 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.6.0 09/15/2012 4bd909557fd595a656ebd86a3d7c5849bd923fe1
=========================================================
Stats! { 'collaborators' => 40, 'downloads' => 1015900, 'forks' => 539, 'open_issues' => 55, 'watchers' => 2119 }
[AWS]
Implement signature v4. thanks Frederick Cheung
Create the time directly in tests, avoids using a method not present in 1.8.7. thanks Frederick Cheung
avoid spurious test failure when tag test returns before images test. thanks Frederick Cheung
Adding missing :glacier case for AWS.collections. thanks Frederick Cheung
[AWS|AutoScaling]
Typo in delete_autoscaling_group mock: Autoscaling->AutoScaling. thanks Frederick Cheung
fix group#instances. thanks Frederick Cheung
Fix describe_auto_scaling_groups parser added spurious nil groups. thanks Frederick Cheung
Fix delete_auto_scaling_group.rb mock not raising the same error as real code. thanks Frederick Cheung
[AWS|Compute]
Add the ablity to pass :version and use newer AWS API. thanks Zuhaib M Siddique
[AWS|Glacier]
Bare glacier service. thanks Frederick Cheung
single part uploads. thanks Frederick Cheung
multipart uploads. thanks Frederick Cheung
Jobs requests. thanks Frederick Cheung
vaults model. thanks Frederick Cheung
Use bytesize rather than length. thanks Frederick Cheung
models for archives. thanks Frederick Cheung
jobs model. thanks Frederick Cheung
Add notification configuration to model. thanks Frederick Cheung
mark tests as pending. thanks Frederick Cheung
byteslice is only available in 1.9.3 - add fallback for 1.9.2. thanks Frederick Cheung
fix 1.9.2 fallback. thanks Frederick Cheung
make 1.8.7 friendly. thanks Frederick Cheung
Fix job type constant. thanks Frederick Cheung
fix setting description on multipart upload. thanks Frederick Cheung
fix name of header used for description. thanks Frederick Cheung
Allow filtering of jobs collection. thanks Frederick Cheung
Don't try to deserialize json when body is empty. thanks Frederick Cheung
[AWS|RDS]
expose the SnapshotType attribute & allow filtering by it. thanks Frederick Cheung
[AWS|Signaturev4]
allow symbols to be used as header/query keys. thanks Frederick Cheung
[AWS|Storage]
mark upload_part as idempotent so it will be retried automatically. thanks Frederick Cheung
[Brightbox]
Fix output format for brightbox cloud ip. thanks Hemant Kumar
[Brightbox|CloudIp]
Remove duplicate constant definition for port translators. thanks Hemant Kumar
[Cloudstack]
1.8.7 compat: on 1.8.7 '123'[0] returns the byte value of '0' and not '1'. thanks Frederick Cheung
[Core]
fix format_helper assuming p returns nil. thanks Frederick Cheung
[HP]
delete_if returns the array, not what was deleted. thanks Frederick Cheung
[OpenStack]
fixes wrong method name. thanks Ohad Levy
[Openstack]
Fix mock returning a hash instead of an array. thanks Frederick Cheung
[Openstack|Compute]
Security Groups are not assigned correctly to servers. thanks Ohad Levy
[aws|auto_scaling]
Add instrumentation support. thanks Michael Hale
[aws|compute]
fix typo in deprecation warning. thanks Aaron Suggs
Nicer interface for security group authorizations. thanks Aaron Suggs
Add instrumentation support. thanks Dan Peterson
Support creating and describing volumes with provisioned IOPS. thanks Dan Peterson
Get instance requests tests working. thanks Dan Peterson
Support for EBS-optimized instances. thanks Dan Peterson
Pass empty groupIds when mocking. thanks Dan Peterson
DescribeInstanceStatus code within eventsSet goes on the item. thanks Dan Peterson
fixes for spot request waiting see also #841. thanks geemus
remove brittle instance tests which rely on tests running fast p.s. these fail on travis-ci. thanks geemus
fix mock filters for internet gateways/subnets/vpcs. thanks geemus
[aws|elb]
Add instrumentation support. thanks Dan Peterson
fixes for mock tests. thanks geemus
[aws|iam]
Add instrumentation support. thanks Dan Peterson
[aws|rds]
Correct server#read_replica_identifiers when mocking. thanks Aaron Suggs
Mocking better supports reboot state. thanks Aaron Suggs
Mocking better supports modifying state. thanks Aaron Suggs
Fix server tests. thanks Aaron Suggs
Mocking support for read replicas. thanks Aaron Suggs
Mock support for setting AZ and MultiAZ. thanks Aaron Suggs
[brightbox]
Use first available image for server tests. thanks Steve Smith
[brightbox|ServerGroup]
ServerGroups can have a nil name. thanks Steve Smith
[brightbox|compute]
Merged outstanding work from Brightbox's fork. thanks Paul Thornthwaite
Implemented reboot using available API commands. thanks Paul Thornthwaite
Updates to Test helper for select image. thanks Paul Thornthwaite
Helper to get default image from API. thanks Paul Thornthwaite
[cloudstack|compute]
remove erroneous comma in merge command. thanks geemus
[compute|Ecloud]
Ecloud should not show up as a valid provider when not providing credentials. thanks Eugene Howe
[dynect|dns]
Only JSON decode when Content-Type says so. Fixes job handling. thanks Dan Peterson
Job polling should use original expected statuses. thanks Dan Peterson
[google/storage]
Fix docs for new GCS urls. thanks Nat Welch
[google|storage]
update expected format to remove StorageClass. thanks geemus
also update mocks to omit storageclass. thanks geemus
[hp|storage]
Use response_block param, as excon has deprecated implicit blocks. thanks Ferran Rodenas
[misc]
When using mock mode, Range header is now not ignored in get_object(). thanks Ahmed Al Hafoudh
Documentation error for delete_object. thanks Alex Tambellini
Add barebones configuration for Travis CI. thanks Alexander Wenzowski
add Travis CI build status image. thanks Alexander Wenzowski
notify #ruby-fog on freenode instead of emailing. thanks Alexander Wenzowski
remove repository_url from notification template Interpolation of %{repository_url} is currently broken on Travis CI. thanks Alexander Wenzowski
CloudStack: added registerTemplate request. thanks Aliaksei Kliuchnikau
CloudStack: listTemplates, registerTemplate requests return hypervisor in the response. thanks Aliaksei Kliuchnikau
Enable AWS spot requests in a VPC by specifying subnet_id. thanks Ben Turley
Fix for RDS VPC subnet groups. thanks Ben Turley
parse ASCII code * in wildcard domain. Fixes #1093. thanks Blake Gentry
automatically figure out the elb hosted_zone_id if possible. thanks Blake Gentry
Add source for getting instance mac address. thanks Carl Caum
Only add VNC password and listen port if present. thanks Carl Caum
Revert 530122d. thanks Carl Caum
Abillity to List Images and List SSH Keys. thanks Chirag Jog
Add support to create, delete internet services. thanks Chirag Jog
Accept vCPUS and Memory as parameters while creating servers. thanks Chirag Jog
Minor Fixes: Remove unncessary prints. Use override_path instead of replace class variable path. thanks Chirag Jog
Fix support to add internet service to the existing Public Ip. thanks Chirag Jog
Support to configure vapp and add multiple internet services. thanks Chirag Jog
Remove uneccessary puts. thanks Chirag Jog
Add support to build/re-build/clobber gem/package/docs. thanks Chirag Jog
Fix minor issue. thanks Chirag Jog
Re-work based on Geemus's review. Manage InternetService and NodeService as separate entities Reload server status properly. thanks Chirag Jog
Revert Rakefile changes. thanks Chirag Jog
1.Ability to fetch/list Orgs, Vdcs, Vapps, Servers. 2.Support to customize CPUs and Password. thanks Chirag Jog
Add ability to configure a vApp with an Org-wide network and associated firewall, NAT rules(limited support). thanks Chirag Jog
1.Fix Catalog Listing for vCD 1.5 2.Construct Valid XML to memory configuration 3.Fix Undeploy vCD 1.5. thanks Chirag Jog
Added m1.medium instance type for AWS flavors. thanks Curtis Stewart
- Updated "@host" variable to "noc.newservers.com" which is the current host for API calls - Added two calls: add_server_by_configuration.rb and list_configurations.rb -- These calls should be used instead of add_server and list_plans, although we still support them. - General comments were updated. thanks Diego Desani
Add gsub to replace URL-encoded characters in the public_url method. thanks Eric Chernuka
fix reboot guest in vsphere to reboot rather than shutdown guest. thanks Eric Stonfer
added file upload and ip add capabilities. thanks Eugene Howe
added error handling for edge cases where there are no networks or ips. thanks Eugene Howe
[AWS|Glacier} basic vault operations. thanks Frederick Cheung
fix mock not returning the right data. thanks Frederick Cheung
set Content-MD5. thanks Frederick Cheung
Add fqdn to server attributes. thanks Hemant Kumar
Brightbox : Include licence_name in Image. thanks Hemant Kumar
Brightbox: Change licence_name type to Fog::Nullable::String. thanks Hemant Kumar
Add support for port translators. thanks Hemant Kumar
Rackspace Storage: new request, get_object_https_url. thanks James Healy
Rackspace Storage: new request, post_set_meta_temp_url_key. thanks James Healy
Rackspace Storage: a backslash shouldn't be escaped when signing URLS. thanks James Healy
add a basic spec for Rackspace::Storage#get_object_https_url. thanks James Healy
add basic spec for Rackspace::Storage##post_set_meta_temp_url_key. thanks James Healy
Rackspace Storage: fix expiring URLs that contain a hyphen. thanks James Healy
Add Serverlove directory. thanks James Rose
Basic Serverlove implementation. thanks James Rose
Wrong directory. thanks James Rose
Typo. thanks James Rose
Proper request arguments. thanks James Rose
Typo. thanks James Rose
Still wrong. thanks James Rose
Works. thanks James Rose
We want JSON. thanks James Rose
Typo. thanks James Rose
add high io flavor to aws flavors. thanks Josh Lane
Move Dynect endpoint from api2 to api-v4. thanks Marc Seeger
don't let the Paulistas be left out of the party. thanks Martin Englund
use 10.04 instead of 12.04. thanks Martin Englund
Google changed their URL scheme for Cloud Storage. thanks Nat Welch
Also change GCS url in dir and file models. thanks Nat Welch
Update lib/fog/hp/models/compute/image.rb. thanks Neill Turner
Update lib/fog/hp/models/compute/server.rb. thanks Neill Turner
Update lib/fog/aws/requests/compute/describe_instance_status.rb. thanks Oleg
Added new Server#fqdn attribute to test helper. thanks Paul Thornthwaite
Rewrite tests to use 1.8 compatible Hash syntax. thanks Paul Thornthwaite
Add missing providers to the all_providers list for testing. thanks Paul Thornthwaite
Use string not symbols for Storage tests to work with Shindo tagging. thanks Paul Thornthwaite
Retagged tests with strings to be skipped by Shindo. thanks Paul Thornthwaite
Tagged AWS URL test so correctly ignored by Shindo. thanks Paul Thornthwaite
Reduce maintenance of tests by using a dynamic list of providers. thanks Paul Thornthwaite
add support for multiple regions in Opentack. thanks Pedro Perez
Fixed the link to GitHub issues. thanks Postmodern
Change iprange --> ec2_secg in Mock. thanks Rob Lockstone
Added support for RDS VPC subnet groups. Bumped RDS API version to 2012-01-15. thanks Rusty Geldmacher
Added DBSubnetGroupName to test format for RDS instances. thanks Rusty Geldmacher
Adding server love disk model. thanks Sean Handley
Changed disk model based on responses from real API requests. thanks Sean Handley
Set up drive objects (not disks). thanks Sean Handley
If you use info, you get all the info. thanks Sean Handley
Alias the encryption cipher. thanks Sean Handley
Sometimes the response body is empty. thanks Sean Handley
Destroying drives is easy. thanks Sean Handley
Allowed setting of params as k/v pairs. thanks Sean Handley
Added create/update functionality. thanks Sean Handley
Made create/save conform to the Fog API. thanks Sean Handley
Returning self is totes better than bools. thanks Sean Handley
Fog calls drives "images", rename for consistency. thanks Sean Handley
Beginnings of shin do request tests. thanks Sean Handley
Need these to run the server love tests. thanks Sean Handley
Beginnings of tests for image operations. thanks Sean Handley
Adding mock for easier testing. thanks Sean Handley
Added get_image function. thanks Sean Handley
Added meaningful test for updating images. thanks Sean Handley
Typo!. thanks Sean Handley
Fix conflict. thanks Sean Handley
This shouldn't be here. thanks Sean Handley
Can't run shindo tests with old references. thanks Sean Handley
Added loading of standard image. thanks Sean Handley
Shindo tests pass. thanks Sean Handley
Test that we can view servers. thanks Sean Handley
Whitespace adjustments. thanks Sean Handley
CRUDs + tests for servers. thanks Sean Handley
Added server power cycle actions + basic tests. thanks Sean Handley
Add new request methods to server object. thanks Sean Handley
Use get_server, not get_image. thanks Sean Handley
Need a mock server id. thanks Sean Handley
This was plain wrong - works now!. thanks Sean Handley
Don't start servers by default. thanks Sean Handley
Contrary to the documentation, this actually returns a 200 status rather than a 204. thanks Sean Handley
Allow setting of memory and disk drives. thanks Sean Handley
Allow DHCP assignment by default. thanks Sean Handley
Key 'vnc:ip' was invalid. thanks Sean Handley
Update allowed attributes and defaults. thanks Sean Handley
Increase test drive size to accommodate a real image. thanks Sean Handley
Without setting SMP the web UI won't load :-/. thanks Sean Handley
Reduce from 80GB to 20GB - big enough, save space. thanks Sean Handley
Standard images need to be unzipped. thanks Sean Handley
Need to wait for imaging to complete. thanks Sean Handley
Add a pseudorandom password generator for VNC. thanks Sean Handley
Auto generate VNC password randomly. thanks Sean Handley
Used the amazon published endpoints for sqs as defined at http://docs.amazonwebservices.com/general/latest/gr/rande.html#sqs_region. thanks Stuart Eccles
Better mocks for invalid Provisioned IOPS values. thanks Thom Mahoney
Add generic support for EMC Atmos. thanks Timur Alperovich
Submit password/ssh_key/username through POST body. thanks Trevor Bramble
Update public_url to handle new header casings from Rackspace. thanks Zachary Danger Campbell
CloudStack: images.get always returns nil - fixed. thanks alex
add changelog for 1.5.0. thanks geemus
fixes for cloudstack mock tests see #1090. thanks geemus
fix mocked elb tests by including InstanceProtocol closes #1090. thanks geemus
expand travis config, build more rubies, use non-threaded runner. thanks geemus
just run mri for now on travis. thanks geemus
remove empty failure block from model_helper. thanks geemus
allow 1.8.7 to fail and not report for now (until I can work out why it fails when 1.9.x works. thanks geemus
return to expecting 1.8.7 to pass. thanks geemus
fix deprecated requires in Rakefile. thanks geemus
Made steps to get update/create working. Work in progress. thanks seanhandley
Update lib/fog/aws/models/compute/security_group.rb. thanks vkhatri
[rackspace|blockstorage]
Add volume tests. thanks Brad Gignac
Add volume type tests. thanks Brad Gignac
Add snapshot tests. thanks Brad Gignac
Add relationship between volumes and snapshots. thanks Brad Gignac
Add block storage provider. thanks Julio Feijo
Add volume types to block storage. thanks Julio Feijo
Add snapshots to block storage. thanks Julio Feijo
[rackspace|compute]
Add service for Cloud Servers v2.0. thanks Brad Gignac
Add flavors and images. thanks Brad Gignac
Add servers model and collection. thanks Brad Gignac
Set password attribute on V2 servers. thanks Brad Gignac
Don't intern nil strings. thanks Brad Gignac
Add method for listing attachments. thanks Brad Gignac
Add tests for volume attachments. thanks Brad Gignac
Improve attachment test reliability. thanks Brad Gignac
Add attachments model and collection. thanks Julio Feijo
[rackspace|storage]
Override path when generating sha1 to make tests past. thanks Brian Hartsock
[serverlove|compute]
fix serverlove tests for 1.8.7 compatibility. thanks Frederick Cheung
fix serverlove tests for 1.8.7 compatibility. thanks geemus
1.5.0 07/28/2012 2e57e2029abbb618411c20f8974e64d8d3fd31fe
=========================================================
Stats! { 'collaborators' => 36, 'downloads' => 870008, 'forks' => 500, 'open_issues' => 44, 'watchers' => 2074 }
[AWS|Autoscaling]
fix group#instances returning all autoscaled instances in the account. thanks Frederick Cheung
[Libvirt]
fixed incorrect mock method signature. thanks Ohad Levy
ensure Fog volumes do not raise on LVM based volumes. thanks Ohad Levy
[aws|compute]
Address#destroy handles VPC addresses, improve address allocate/release mocking for VPC. thanks Dan Peterson
[aws|elasticache]
Fix bug in cache cluster test. thanks Benton Roberts
Remove erroneous whitespace trimming. thanks Benton Roberts
Add Elasticache service-level mocking support. thanks Benton Roberts
Add mocking for cache cluster requests. thanks Benton Roberts
Change modify_cache_cluster test to work in mocking mode. thanks Benton Roberts
Enable mocking for elasticache cluster tests. thanks Benton Roberts
Mock raises NotFound Exception when AWS does. thanks Benton Roberts
[aws|storage]
Default to false for persistent connections. thanks Kenny Johnston
[cloudstack|security_group]
fix rule revoke mock. thanks Josh Lane
[cloudstack|security_groups]
add groups and rules. thanks Josh Lane & Jason Hansen
[cloudstack|server]
assign security group. thanks Josh Lane & Jason Hansen
[dynect|dns]
No more recursion when polling jobs. Raise an error if the body indicates failure. thanks Dan Peterson
[fix-ephemeral-naming]
Typo in ephemeral naming. thanks Josh Pasqualetto
[joyent|compute]
fix dataset format in tests. thanks geemus
[local|storage]
mark tests pending in mock mode. thanks geemus
[misc]
fix changelog task for github API v3. thanks Aaron Suggs
update changelog for release 1.4.0. thanks Aaron Suggs
changelog: backdate to release data. thanks Aaron Suggs
Local storage support for #public_url. thanks Adam Tanner
Bugfix in Fog::DNS::AWS::Records.all!. thanks Alexander Kolesen
Fix for stopping all the servers instead of just specified servers. thanks Avrohom Katz
private ip address should start with a 10. thanks Avrohom Katz
Use proper signature when testing with aws mock. thanks Bohuslav Kabrda
The user must be destroyed even in mock mode, otherwise completely unrelated tests fail (e.g. tests/aws/models/iam/users_tests.rb). thanks Bohuslav Kabrda
The condition here should be the same as for destroying, so that we test iff the instance gets destroyed. thanks Bohuslav Kabrda
The assignment correctly returns nil, just the test has to react to it. thanks Bohuslav Kabrda
The assignment correctly returns false, just the test has to react to it. thanks Bohuslav Kabrda
Include this to make refresh_credentials_if_expired method work properly with Mock. thanks Bohuslav Kabrda
Fix the number where credentials expire - if too high, other tests will fail. thanks Bohuslav Kabrda
Fix openstack tests. thanks Bohuslav Kabrda
Fix more openstack mock tests failures. thanks Bohuslav Kabrda
Add the mock urls to fix some more openstack tests. thanks Bohuslav Kabrda
Fix minor typos and incorrect types in openstack volume tests. thanks Bohuslav Kabrda
More typos in openstack server tests. thanks Bohuslav Kabrda
Rework the quota mock testing to work and be more comfortable. thanks Bohuslav Kabrda
Must use values, so that connection.list_roles gets corrent argument. thanks Bohuslav Kabrda
Deleting returns nothing, so do not expect role. thanks Bohuslav Kabrda
Properly check whether role is present. thanks Bohuslav Kabrda
Return the properly updated image. thanks Bohuslav Kabrda
Add the 'new_image' public images, so that find_by_id can find it. thanks Bohuslav Kabrda
The pending block fails the outer one => make sure we return proper result. thanks Bohuslav Kabrda
Use proper parameters when testing deploying cloudstact VMs. thanks Bohuslav Kabrda
This was implemented right previously, shouldn't have changed it. thanks Bohuslav Kabrda
Correct solution for subnet failing tests - use a collection in self.data. thanks Bohuslav Kabrda
Do the same thing for vpcs as previously done for subnets. thanks Bohuslav Kabrda
...and the same for dhcp_options. thanks Bohuslav Kabrda
And the same for internet gateways. thanks Bohuslav Kabrda
Fixes the failure for hp storage. thanks Bohuslav Kabrda
[rackspace|databases| Add service tests. thanks Brad Gignac
fix for RDS mocking to avoid state flipping between "modifying" and "available". thanks Brian Nelson
Fix typo listing datacenters. thanks Carlos Sanchez
Stop vSphere vms before destroying, or destroy will fail. thanks Carlos Sanchez
Add a failure for #1014. :v:. thanks Dylan Egan
Only dup @attributes if it's not nil. thanks Edward Muller
each based pagination for Fog::AWS::IAM#users. thanks Edward Muller
fixes elb test in mocking mode. thanks Eric Stonfer
fix running subnet tests in mocking mode. thanks Eric Stonfer
fix subnet tests in mocking mode. thanks Eric Stonfer
fog bombs out on ruby 1.8.x because it cannot find Mutex. thanks Eric Stonfer
fix not pulling InstanceProtocol from the xml. thanks Frederick Cheung
Add Sao Paulo server to Amazon RDS known regions. thanks Irio Irineu Musskopf Junior
Add Sao Paulo server to Amazon SQS known regions. thanks Irio Irineu Musskopf Junior
Fix bug in local storage #copy_object. thanks Jade Tucker
Add and get SSL certificates to Rackspace Soft LB. thanks Justin Barry
Default to being less pessimistic about excon. thanks Kevin Moore
Fix ssh key behavior when passing specified private keys to ssh/scp. thanks Marc Seeger
Should not modify passed in "params" variable since block might run several times due to authentication failure producing erroneous path. thanks Max Stepanov
As discussed in #991, this converts the readme from SimpleMarkup to Markdown. thanks Mike Fiedler
added PeopleAdmin to list of users. thanks Mike Manewitz
Fixing typo bug in rackspace load balancer set_ssl_termination request. thanks Paul
add us-east-1e to mock. thanks Shai Rosenfeld
Pass up all the options that have been assigned. thanks Trotter Cashion
Pass options on to AutoScalingGroup. thanks Trotter Cashion
Add better ScalingPolicy support. thanks Trotter Cashion
Add more AWS Alarm functionality. thanks Trotter Cashion
Add delete mocks. thanks Trotter Cashion
Properly array-ify keys for create_auto_scaling_group. thanks Trotter Cashion
Add tags to autoscaling groups. thanks Trotter Cashion
Enable tests when mocking. thanks Trotter Cashion
Recognize ninefold_api_url option for pre-production testing. thanks Warren Bain
remove specs (likely from a bad merge). thanks geemus
update tests/helper to have bare_metal_cloud instead of new_servers. thanks geemus
Mock for filter ec2 instances by group name. thanks phillc
[openstack]
Fix Authentication for OpenStack v1.1 Authentication. thanks Nelvin Driz
[openstack|compute]
Add filters to list servers details. thanks Ferran Rodenas
Added adminPass attribute in create_server. thanks Philip Mark M. Deazeta
fix method signature for mock list_servers_detail. thanks geemus
[openstack|image]
Stream OpenStack image. thanks Vadim Spivak
[rackspace|databases]
Add read-only support for Rackspace Cloud Databases. thanks Brad Gignac
Add write support for Rackspace Cloud Databases. thanks Brad Gignac
Register Rackspace Cloud Databases service with Fog. thanks Brad Gignac
Remove "list/details" API calls in favor of "list" calls. thanks Brad Gignac
Add model tests. thanks Brad Gignac
Finish request tests. thanks Brad Gignac
Remove old comments. thanks Brad Gignac
Handle breaking API changes. thanks Brad Gignac
Initial pass at request tests. thanks Brian Hartsock
[rackspace|identity]
Add Rackspace identity service. thanks Brad Gignac
Add requests and request tests. thanks Brad Gignac
Add user model and collection with tests. thanks Brad Gignac
Handle non-array responses from list calls. thanks Brad Gignac
Better checking around hash/array responses. thanks Brad Gignac
Handle NotAuthorized respones from the identity API in the user model. thanks Brian Hartsock
use a valid username in tests. thanks geemus
[rackspace|lb]
fixed broken tests because of API format changes. thanks Brian Hartsock
ssl termination fixes. thanks Brian Hartsock
moved to Fog::JSON.encode instead of MultiJson.encode. thanks Brian Hartsock
1.4.0 06/24/2012 24e0be755e251159f07d5d82beb1e8ef57c962d9
=========================================================
Stats! { 'collaborators' => 35, 'downloads' => 800348, 'forks' => 477, 'open_issues' => 43, 'watchers' => 2080 }
MVP! Nelvin Driz
[AWS]
make beanstalk, cdn, cloudformation, cloudwatch, elasticache, elb, storage, rds, ses, sns, route53 temporary credential friendly. thanks Frederick Cheung
[AWS|Auto Scale]
Add support for put_notification_configuration and change AWS API to use 01-01-2011 Spec. thanks Zuhaib M Siddique
[AWS|Autoscale]
Fixing Parameters notes for autoscale create launch configuration for InstanceMonitoring. Credit goes to boto, https://github.com/boto/boto/blob/develop/boto/ec2/autoscale/__init__.py , for having it correct. thanks Zuhaib M Siddique
Fixing Parameters notes for autoscale create launch configuration for InstanceMonitoring. Credit goes to boto, https://github.com/boto/boto/blob/develop/boto/ec2/autoscale/__init__.py , for having it correct. thanks Zuhaib M Siddique
[Openstack|Compute]
Usage Requests. thanks Hunter Nield
Migration and Console output. thanks Hunter Nield
server methods for console and migration. thanks Hunter Nield
Minor address cleanup. thanks Hunter Nield
[aws|address]
fixes release_address for VPC EIPs * amazon requires allocation_id only for vpc eips, and public_ip otherwise. thanks Albert Choi
[aws|beanstalk]
Added missing :beanstalk case. thanks George Scott
Added #load_balancer method. thanks George Scott
Serialize keys for SourceConfiguration. thanks George Scott
Added modify method for template. thanks George Scott
Support different AWS regions. thanks George Scott
Added swap_cnames method. thanks George Scott
[aws|compute]
add networkInterfaceSet context to EC2 instance parser. thanks Benton Roberts
[aws|dns]
Allow both Ruby and AWS style names for alias. thanks George Scott
Support for latency/weighted resource sets. thanks George Scott
Fixed #all iteration. thanks George Scott
Reimplemented #get. thanks George Scott
Added #all! method to Records. thanks George Scott
[aws|dynamodb]
correct batch_put_item to batch_write_item for consistency with API. thanks geemus
[aws|elb]
Failing test for load_balancers marker support. thanks Dan Peterson
Deprecate describe_load_balancers with just an array of names. thanks Dan Peterson
Marker support for describe_load_balancers. thanks Dan Peterson
Fix use of describe_load_balancers in tests. thanks Dan Peterson
load_balancers.get(nil) returns nil instead of the first of all load balancers. thanks Dan Peterson
[aws|iam]
Add test for AWS[:iam].get_user. thanks Benton Roberts
add test for AWS[:iam].get_user_policy. thanks Benton Roberts
FIX - make arguments AWS::IAM.get_user conform to expected standard for this module. thanks Benton Roberts
Fix Users model to comply with updated request parameter set. thanks Benton Roberts
mark role tests as pending in mock mode. thanks geemus
[aws|storage]
fix flipped logic on valid acl check closes #889. thanks geemus
fix method signature for setup_credentials. thanks geemus
[aws|storage|]
Make get_object_http_url use correct S3 host in returned URL. thanks Michiel Sikkes
Make get_object_http_url use correct S3 host in returned URL. thanks Michiel Sikkes
[brightbox|compute]
Updated image reference where unfortunately hardcoded. thanks Paul Thornthwaite
Remove resize request since not available. thanks Paul Thornthwaite
Update format tests for new attributes on Cloud IPs. thanks Paul Thornthwaite
Update format tests for "fqdn" attribute. thanks Paul Thornthwaite
Update format tests for updates to Image. thanks Paul Thornthwaite
[cloudstack]
prevent mock test failure when cloudstack credentials are not defined. thanks geemus
add to list of providers so it can be skipped when lacking credentials. thanks geemus
[cloudstack|compute]
zones,flavors,images,address. thanks Jason Hansen & Josh Lane
support async jobs. thanks Jason Hansen & Josh Lane
server abstraction and mocks. thanks Josh Lane & Jason Hansen
volumes support. thanks Josh Lane & Jason Hansen
[compute]
volume tests. thanks Josh Lane & Jason Hansen
[compute|aws]
Apply tags to volume at creation. thanks Dan Carley
Respect extra register_image options when mocking. thanks Dan Peterson
extend polling interval for spot_requests bootstrap. thanks geemus
cleanup internet_gateway mocks and remove debug output. thanks geemus
[compute|openstack]
update server attributes for shared compute tests. thanks geemus
cleanup for list security groups request/mock. thanks geemus
[docs]
fix link to EngineYard logo (broken in /storage, /compute, etc.). thanks Len
[ecloud|compute]
Adding multiple disks at once was not working properly. thanks Eugene Howe
fix optional params for validate_data closes #969. thanks geemus
[glesys|compute]
update server/status format to include cpu hash and warnings. thanks Anton Lindström
add reboot and compute test params. thanks Anton Lindström
[hp|compute]
fix tests to properly set default base image. thanks geemus
[ibm|compute]
Typo in parameter name, should be storageID. thanks Decklin Foster
[joyent|compute]
Fixes issue where params are not properly passed to #keys_create from #create_key. thanks Kevin Chan
Added #list_datacenters. thanks Kevin Chan
Support for DSA keys for auth. thanks Kevin Chan
[libVirt]
added tests. thanks Amos Benari
[libvirt]
refactored libvirt entire code. thanks Ohad Levy
expose node hostname. thanks Ohad Levy
added display attributes and allowed to change display of a running server. thanks Ohad Levy
volumes dev names must be uniq. thanks Ohad Levy
makes libvirt code more debian friendly. thanks Ohad Levy
- ensure no nil pools are returned. thanks Ohad Levy
Fix SSH keyfile being pulled from wrong param. thanks brookemckim
skip tests if ruby-libvirt is unavailable. thanks geemus
correct error message when skipping tests. thanks geemus
[misc]
Add support for internal ELBs in VPC. thanks Aaron Bell
cleaning up model. thanks Aaron Bell
fix parser to show scheme, add test for internal ELB creation. thanks Aaron Bell
fixing test. thanks Aaron Bell
add scheme to elb helper. thanks Aaron Bell
adds batch_put_item functionality to AWS dynamodb + test. thanks Alex Gaudio
Fixed non-persistent connections handling to AWS. thanks Alexander Kolesen
Fixed handling options[:persistent] in some cases. thanks Alexander Kolesen
added mock implementation. thanks Amos Benari
removed unneeded dependency,. thanks Amos Benari
new rbovirt version. thanks Amos Benari
use constant for GB. thanks Amos Benari
Adding network interface information and security group ids. thanks Artem Veremey
Adding network interface information and security group ids to the model. thanks Artem Veremey
Store the region for S3. thanks Ben Butler-Cole
add create_hosted_zone and get_hosted_zone request mocks. thanks Bulat Shakirzyanov
add list_hosted_zones request mock. thanks Bulat Shakirzyanov
add change_resource_record_set request mock. thanks Bulat Shakirzyanov
fix response codes and formatting. thanks Bulat Shakirzyanov
fix typos. thanks Bulat Shakirzyanov
fix identifiers. thanks Bulat Shakirzyanov
use hard-coded sample value to eliminate randomness. thanks Bulat Shakirzyanov
fix typos. thanks Bulat Shakirzyanov
fix zone id in create_hosted_zone response. thanks Bulat Shakirzyanov
fix attribute name. thanks Bulat Shakirzyanov
add authorize and revoke port range for security group. thanks Bulat Shakirzyanov
Fix typo. thanks Christopher Meiklejohn
Specify image_ref rather than trying to instantiate object. thanks Christopher Meiklejohn
Fog::Compute::AWS::Address#server -> assigned Server. thanks Dr Nic Williams
fix auto-discovery for HP Cloud by fog bin. thanks Dr Nic Williams
whitespace. :bomb: :v:. thanks Dylan Egan
Default to false for persistent connections. You can't pass in false. This now behaves like other connections in fog. :v:. thanks Dylan Egan
Idempotent Dynect calls. :v:. thanks Dylan Egan
Fix up describe_volume_status to work with THE ARRAYZ. :v:. thanks Dylan Egan
Fog::AWS.indexed_reuqest_param. thanks Edward Muller
include the nextToken in the body. thanks Edward Muller
complete Request param support. thanks Edward Muller
refactor to use Fog::AWS.indexed_request_param. thanks Edward Muller
the old parser was not working properly. thanks Edward Muller
All directories.create on us-east-1. thanks Edward Muller
us-west-2 default ami. thanks Edward Muller
some small fixups. thanks Edward Muller
make the aws region accessible. thanks Edward Muller
Fog::Compute::Server#private_key=. thanks Edward Muller
Fog::Compute::Server#sshable?. thanks Edward Muller
ssh/run optionally takes a block. thanks Edward Muller
Cleanup after talking to @dpiddy. thanks Edward Muller
return '' not nil. thanks Edward Muller
Revert "Add debug option to Fog::Compute::Server#ssh". thanks Edward Muller
Mock stop_instances. thanks Edward Muller
Mock aws compute start_instances. thanks Edward Muller
Don't duplicate effort. thanks Edward Muller
Add ssh_port to Fog::Compute::Server. thanks Edward Muller
Generalize NoLeak Inspector for Fog::Service. thanks Edward Muller
Don't leak HP cdn & storage. thanks Edward Muller
Make aws compute server retry SSH on EHOSTUNREACH. thanks Eric Boehs
Copied auth token reauthentication from rackspace|compute. thanks Eric Hankins
https://github.com/fog/fog/issues/810 - Add ENI support by maf23. thanks Eric Stonfer
minor fix to ENI tests. thanks Eric Stonfer
VPC ELBs, Tests, and the introduction of the InternetGateway object. thanks Eric Stonfer
clean up conflict. thanks Eric Stonfer
this adds the dhcp_options object and associated operations. thanks Eric Stonfer
merge upstream. thanks Eric Stonfer
forgot to commit dhcp_options tests. thanks Eric Stonfer
fix describe_volume_status parser. thanks Eric Stonfer
add some more explanation to the server creation process. thanks Eric Stonfer
testing. thanks Eugene Howe
added requests and models for compute_pools. thanks Eugene Howe
changed to urn:tmrk:eCloudExtensions-2.8. thanks Eugene Howe
require compute pool to be specified on vapp creation. thanks Eugene Howe
set default value for computePool on vapp creation. thanks Eugene Howe
Made computePool an optional parameter, specs now pass without issue. thanks Eugene Howe
Removed non-functioning Mock classes. thanks Eugene Howe
fixed method name. thanks Eugene Howe
start an instance with an IAM profile and access the credentials. thanks Frederick Cheung
add new iam requests to support iam roles. thanks Frederick Cheung
request tests for the new iam role requests. thanks Frederick Cheung
test credential fetching. thanks Frederick Cheung
use excon rather than net/http. thanks Frederick Cheung
remove stray multijson require. thanks Frederick Cheung
fix errant use of net/http. thanks Frederick Cheung
Add debug option to Fog::Compute::Server#ssh. thanks Gabriel Horner
Correct docs for change_resource_record_sets. thanks Gavin Sandie
add cc2.8xlarge AWS flavor. thanks Ian Downes
Fix user-data attribute name. thanks Igor Bolotin
Refactor AWS Directory. thanks James Herdman
Remove unused variable. thanks James Herdman
Fix indentation warning. thanks James Herdman
Remove unnecessary full path usage with require. thanks James Herdman
Remove unused variable. thanks James Herdman
Remove unused accessor. thanks James Herdman
Silence warning regarding splat operator. thanks James Herdman
Remove unused variable. thanks James Herdman
Remove unused variable. thanks James Herdman
Silence warnings about potentially private attribute. thanks James Herdman
Remove unused variable. thanks James Herdman
Silence warning about potentially private attribute. thanks James Herdman
Remove unused variable. thanks James Herdman
Remove unused variable. thanks James Herdman
Remove unused variable. thanks James Herdman
Remove unused variable. thanks James Herdman
Remove unused variable. thanks James Herdman
Remove unused variable. thanks James Herdman
Remove unused variable. thanks James Herdman
Remove unused variable. thanks James Herdman
Remove unused variable. thanks James Herdman
Remove unused variable. thanks James Herdman
Remove unused variable. thanks James Herdman
Remove unused variable. thanks James Herdman
Remove unused variable. thanks James Herdman
Remove duplicate require. thanks James Herdman
Remove unused variable. thanks James Herdman
Remove unused variable. thanks James Herdman
Remove unused variable. thanks James Herdman
Remove absolute path when requiring. thanks James Herdman
Remove unused variable. thanks James Herdman
Remove duplicate Mock class definition. thanks James Herdman
implement Fog::SSH::Mock#run. thanks Jason Hansen & Josh Lane
add a method to IPAddr instead of breaking a useful one. thanks Jesse Newland
Adjusts regex to fix issues with S3 paths that include periods. thanks John Feminella
fix response-cache-control type for AWS signed urls. thanks John Nishinaga
remove FOG_PROVIDER env override. thanks Josh Lane
more robust resource pool discovery. thanks Justin Clayton
Removed duplicate property :ips on server. thanks Kevin Chan
Fixes invalid call to #resize, should be #resize_machine. thanks Kevin Chan
Fixed #875: Loosen multi_json version. thanks Kevin Menard
Bad string replace. thanks Kevin Menard
Actually call the new MultiJSON 1.3.2 API methods. thanks Kevin Menard
Rename dd_belatedpng.js to dd_belatedpng.min.js. thanks Laurent Bigonville
Add non-minified javascript files used in docs/ (#939). thanks Laurent Bigonville
Catch Errno::ETIMEDOUT timeout error when connecting to a freshly created EC2 machine. thanks Marc Seeger
fix get, all, and all!. thanks Michael Keirnan
Make `.irbrc` service agnostic. thanks Nelvin Driz
Nested Credentials with Array gets flattened; restrict flatten to 1L. thanks Nelvin Driz
Allow for stringified options keys. thanks Nikita Pomyashchiy
add supports for defining/extracting libvit boot order. thanks Ohad Levy
libvirt volume sizes are in GB, ensuring both requests and setters are in GB. thanks Ohad Levy
adds deprecation on vnc_port. thanks Ohad Levy
monitoring-state is enabled or disabled, if enabled returns true. thanks Ozgur Akan
reserved instances hourly cost was returning empty. thanks Ozgur Akan
Modify url regexp to handle periods in bucket names. thanks Parker Selbert
Tag generated model tests with string not symbol. thanks Paul Thornthwaite
added missing server attributes for openstack compute model. thanks Pedro Perez
openstack: extended list_servers and list_server_detail to allow all_tenants param. thanks Pedro Perez
depend on excon >= 0.13.0. thanks Prashant Nadarajan
use pessimistic gem version constraint for excon (~>0.14.0). thanks Prashant Nadarajan
aim users model and nested model policy. thanks Rodrigo Estebanez
IAM access_key model implemented. thanks Rodrigo Estebanez
get_user Mock implemented. Basic shindo user_tests added. thanks Rodrigo Estebanez
Refactor aim modeling for nested models (policies and access keys). thanks Rodrigo Estebanez
shindo tests for IAM models: users, policies and access_keys. Mock implementation for get_user_policy. thanks Rodrigo Estebanez
@users -> @user. Clean up the @user after the policies and access_keys test. thanks Rodrigo Estebanez
Fix encoding issue: https://github.com/fog/fog/pull/189. thanks Rodrigo Estebanez
aim users model and nested model policy. thanks Rodrigo Estebanez
IAM access_key model implemented. thanks Rodrigo Estebanez
get_user Mock implemented. Basic shindo user_tests added. thanks Rodrigo Estebanez
Refactor aim modeling for nested models (policies and access keys). thanks Rodrigo Estebanez
shindo tests for IAM models: users, policies and access_keys. Mock implementation for get_user_policy. thanks Rodrigo Estebanez
@users -> @user. Clean up the @user after the policies and access_keys test. thanks Rodrigo Estebanez
Fix encoding issue: https://github.com/fog/fog/pull/189. thanks Rodrigo Estebanez
For some reason, there was a missing comma in the mock class. thanks Rodrigo Estebanez
Fix get_user_policy. The actual AWS data has to be in a ['Policy'] hash section. thanks Rodrigo Estebanez
add IAM mocking for get_group method. thanks Rodrigo Estebanez
add IAM mocking for get_group method. thanks Rodrigo Estebanez
Add new HP providers for Object Storage, Compute and CDN services. thanks Rupak Ganguly
Be sure to reload when checking for a started spot instance, also add private/public key options into spot_requests, then set those on the server when loaded. thanks Ryan Stout
Use spot request's public_key when setting up keypair. thanks Ryan Stout
ensure apiKey and command are included in parameter sorting. thanks Sean Caffery
* [xenserver|compute] initial release. thanks Sergio Rubio
* Added VIF model and collection tests * added network and server wrappers to VIF model. thanks Sergio Rubio
* Added VIF collection Shindo tests. thanks Sergio Rubio
* Added PIFs collection Shindo tests. thanks Sergio Rubio
* Added VBD Shindo tests * added server wrapper to VBD model. thanks Sergio Rubio
* Added Network collection Shindo tests * Fixed PBD and PIF tests descriptions. thanks Sergio Rubio
* Added Pool and StorageRepository models and collections Shindo tests * Added missing attributes to Pool and StorageRepository models. thanks Sergio Rubio
* Define missing InvalidLogin exception * Add login tests. thanks Sergio Rubio
* Added custom_templates and templates methods to Host model. thanks Sergio Rubio
* Added more tests and extended existing ones * Added missing exceptions NotFound and RequestFailed * connection.request now raises exception if request failed * refactored most get_* request into get_record and get_records * Compute.default_template more robust * Base parser now replaces OpaqueRef:NULL with nil * create_server request fixes. thanks Sergio Rubio
* Added some more tests * Lots of fixes and some refactoring. thanks Sergio Rubio
* Fix Servers.templates method. thanks Sergio Rubio
* Added clone_server request. thanks Sergio Rubio
* Added create_vif tests * Server.save now properly creates additional VIFs when required * Added create_vif_custome request to create VIFs with custom params. thanks Sergio Rubio
* Added Vif.destroy and destroy_vif request * add :auto_start parameter to Server.save. thanks Sergio Rubio
* Added create_vdi request * Added missing VDI methods and attributes. thanks Sergio Rubio
* Added missing VBD operations. thanks Sergio Rubio
* Added set_attribute request and tests * Added missing PV_bootloaer attribute to Server * Added Server.set_attribute method and tests. thanks Sergio Rubio
* Added create_vbd and provision_server requests * Do not provision server when :auto_start is false * Add Server.provisio method * Add VBD.save method. thanks Sergio Rubio
* renamed some tests * Added missing VDI attributes and methods * added create/destroy request tests * Added valid_ref? test helper * Fixes in get_record_tests. thanks Sergio Rubio
* Added missing attributes to Server model * Added create_server_raw request and tests * Added VIF.save action * more tests. thanks Sergio Rubio
* Fix: do not try to retrive guest_metrics when guest_metrics ref is nil * ruby 1.8.7 compatibility fixes * Sane defaults for create_server_raw request. thanks Sergio Rubio
* Added new scan_sr request * Added StorageRepository.scan method * set_attribute request is now generic and can be used by any model * Added VDI.set_attribute method. thanks Sergio Rubio
* [xenserver|compute] set_attribute request now accepts var args - added new tests. thanks Sergio Rubio
updating gitignore for eclipse settings. thanks Spencer Dillard
first pass at updates for VPC. thanks Spencer Dillard
updating for SSL ciphers and protocols. thanks Spencer Dillard
updating to master. thanks Spencer Dillard
regularize examples showing use of AWS access keys. thanks Stephen Bannasch
Use MultiJSON #dump and #load rather than #encode and #decode. thanks Steve Smith
Add support for ports in AWS storage URLs. thanks Tim Carey-Smith
Mock implementations for SCP upload and download. thanks Tom Mornini
add Linode Mock classes to request primitives. thanks Wes Morgan
make Mock#linode_disk_delete return the response object. thanks Wes Morgan
make Mock#linode_disk_list return the response object. thanks Wes Morgan
use kernel_id for mocked kernel, not stackscript_id. thanks Wes Morgan
Adds new method delete_notification_configuration which allows you notifications created by put_notification_configuration. thanks Zuhaib Siddique
Fix for stacks that have capabilities. Without this the parser misinterprets stacks with capabilities set. thanks atlantacs
volume(s) are not considered to be universally available. thanks geemus
catch passing an invalid openstack_tenant. thanks mattray
addresses['internet'] (like on TryStack.org) supported and public and private_ip_address now work. thanks mattray
don't assume 'internet' for addresses. thanks mattray
Added offering type for reserved instances response. thanks questionnet
[oVirt]
added volumes to server and template. thanks Amos Benari
added volume size in GB accessor. thanks Amos Benari
fixed create_vm and get_virtual_machine requests mock implementation. thanks Amos Benari
[openstack]
Fix create snapshot. thanks Ferran Rodenas
Match both OS API 1.1 and v2 since they are the same. thanks Josh Kearney
Update Reinitialization Process of Existing Auth Token. thanks Nelvin Driz
Add Export of Credentials. thanks Nelvin Driz
Wrong instance variables accessed for #credentials. thanks Nelvin Driz
Update Authentication through X-Auth-Token. thanks Nelvin Driz
Update mocks for login and identity request #get_user_by_id. thanks Nelvin Driz
Fix authentication without specifying tenant name. thanks Nelvin Driz
Make current_user and current_token accessible to services. thanks Nelvin Driz
Fix Authentication as well as Fog::JSON call bugs. thanks Nelvin Driz
Raise error when no tenant is found for the user logging in. thanks Nelvin Driz
Ensure password sent is of type string. thanks Nelvin Driz
Modify authentication process. thanks Philip Mark Deazeta
[openstack|compute]
Add requests and tests for security groups. thanks Alfonso Juan Dillera
Add requests, models and tests for keypairs. thanks Alfonso Juan Dillera
Add requests, models and tests for address management. thanks Alfonso Juan Dillera
Add requests, models and tests for address management. thanks Alfonso Juan Dillera
Add flavor CRUD. thanks Alfonso Juan Dillera
Add auth_token. thanks Alfonso Juan Dillera
Added request for boot_from_snapshot. thanks Alfonso Juan Dillera
Added id attribute to the keypair. thanks Alfonso Juan Dillera
Update fetching of addresses and added fetching for address pools. thanks Alvin Garcia
Fixed creating image of a server. thanks Alvin Garcia
Added requests for quota. thanks Alvin Garcia
Initial extension support for addresses. thanks Hunter Nield
Initial extension support for key pairs. thanks Hunter Nield
Initial extension support for security groups. thanks Hunter Nield
Added Address models. thanks Hunter Nield
Added key pair models. thanks Hunter Nield
added security group models. thanks Hunter Nield
Updates to server model. thanks Hunter Nield
Added list/get support for /os-hosts. thanks Hunter Nield
Add Tenants and Fix Authentication Implementation. thanks Nelvin Driz
Fix Requests on Compute. thanks Nelvin Driz
General Cleanup and Update. thanks Nelvin Driz
Fix Compute Identity Endpoint Credential Export. thanks Nelvin Driz
Add Identity Enpoint to Recognized Init Parameters. thanks Nelvin Driz
Update requests and response of server actions. thanks Nelvin Driz
Fix Bug on Key Pair Mock. thanks Nelvin Driz
Update Mocks for Volumes. thanks Nelvin Driz
Update Mocks for Security Groups and Volumes. thanks Nelvin Driz
Add Instance Name to Fog. thanks Nelvin Driz
Update Image Mocks. thanks Nelvin Driz
Update List Security Groups to list those assigned to a server. thanks Nelvin Driz
Assert Timezone to UTC and fix format for OS on `get_usage`. thanks Nelvin Driz
Added get_usage function, mocks, tests. thanks Philip Mark Deazeta
Added get server volumes request. thanks Philip Mark M. Deazeta
Added key_pair and security_groups options int create server requrest. thanks Philip Mark M. Deazeta
added key_name and security_groups in boot from snapshot request. thanks Philip Mark M. Deazeta
authenticate_v2 fixes. thanks Sergio Rubio
[openstack|identity]
Added current user id. thanks Alfonso Juan Dillera
Updated current user id for identity. thanks Alfonso Juan Dillera
Keystone Roles. thanks Alvin Garcia
Keystone Roles and Users. thanks Alvin Garcia
Update users collections and model. thanks Alvin Garcia
Update users model initialization and save. thanks Alvin Garcia
Fixed users fetching. thanks Alvin Garcia
Rough implementation of the Keystone API (untested). thanks Hunter Nield
Correction in Roles#all method. thanks Mark Maglana
Express the "add user role" intent more clearly. thanks Mark Maglana
Fix Authentication Implementation. thanks Nelvin Driz
Update Tenants. thanks Nelvin Driz
Update Tenants (Complete CRUD). thanks Nelvin Driz
Fix Identity Authentication Conditions on Endpoint Detection. thanks Nelvin Driz
Add User List and Delete User Mocks. thanks Nelvin Driz
Update Fog to Accomodate Tenant Deletion Workaround Workflow. thanks Nelvin Driz
Fix status code expectation. thanks Nelvin Driz
Added function to add user to a tenant. thanks Philip Mark Deazeta
Added function to add user to a tenant. thanks Philip Mark Deazeta
fixes for mocks. thanks geemus
[openstack|image]
Added set_tenant. thanks Alvin Garcia
Added copy_from attribute. thanks Alvin Garcia
Update Image Service Authentication Options. thanks Nelvin Driz
Added image service, model and request. thanks Philip Mark Deazeta
Added test for models and request. thanks Philip Mark Deazeta
Added image module, model and request. thanks Philip Mark Deazeta
Image Model Updates. thanks Philip Mark Deazeta
Refactor Dynamic Methods on Image Model. thanks Philip Mark Deazeta
[openstack|volume]
Volume Endpoints Support. thanks Marjun Pagalan
Volume Snapshot CRUD. thanks Marjun Pagalan
Volume attach/detach to Server. thanks Marjun Pagalan
Added volume service requests. thanks Philip Mark M. Deazeta
fix on module name. thanks Philip Mark M. Deazeta
Added volume model. thanks Philip Mark M. Deazeta
[ovirt]
fixed list storage domain test. thanks Amos Benari
[rackspace|compute]
fix rackspace server compare. thanks Josh Lane & Jason Hansen
default images. thanks Josh Lane & Jason Hansen
Images#all returns data. thanks Josh Lane & Jason Hansen
fixes for mock images. thanks geemus
[rackspace|lb]
added support for algorithm on create. thanks Brian Hartsock
fixed broken tests due to API contract changes. thanks Brian Hartsock
[rackspace|loadbalancers]
fixed broken tests. thanks Brian Hartsock
[rackspace|storage|file]
copy method now use the options hash and apply content type. thanks Matthias Gröbner
[rackspace|storage|files]
fix iteration. thanks Matthias Gröbner
[slicehost]
remove (now deprecated) slicehost support. thanks geemus
[storage|aws]
fix location stuff to allow creating new buckets properly. thanks geemus
[vcloud]
Remove some un-needed debug information. thanks Lincoln Stoll
[vpc-fixes]
AWS security group model + VPC. thanks Sean Porter
[vsphere]
force poweroff of instance of vmware tools are not installed. thanks Ohad Levy
adds memory and cpu server attributes. thanks Ohad Levy
adds support to get and set vnc console. thanks Ohad Levy
[xenserver]
Added missing Server.tags attribute. thanks Sergio Rubio
fix tags to skip tests without credentials. thanks geemus
1.3.1 03/27/2012 f0f692456956fe2e414ef8205d0268259901644a
=========================================================
Stats! { 'collaborators' => 32, 'downloads' => 527366, 'forks' => 392, 'open_issues' => 27, 'watchers' => 1901 }
MVP! George Scott
[aws|dns]
Preserves change_id. Support for checking sync status via reload. thanks George Scott
Changed #insync? to #ready?. thanks George Scott
[ibm]
avoid using constants (Rails loads files multiple times, issue #807). thanks Decklin Foster
Make usage of #state rather than #status consistent. thanks Decklin Foster
[ibm|compute]
Add clone/destroy methods and tests to Image. thanks Decklin Foster
Add request test for list_vlans and fix mock. thanks Decklin Foster
[ibm|storage]
Restore storage_area, platform_version, clone_status Volume attributes. thanks Decklin Foster
[misc]
Allow custom headers in Storage#put_object_url. thanks Jacob Mattingley
Use https_url instead of deprecated url for put_object_url. thanks Jacob Mattingley
Adding Vlan class to IBM SmartCloud. thanks Joe Kinsella
bump excon dep to get jruby openssl fixes. thanks geemus
[storage]
properly update content-type at save time for file models. thanks geemus
1.3.0 03/21/2012 f78afe98242a60ae4dbbfcd8c5ab67ba71c6d773
=========================================================
Stats! { 'collaborators' => 32, 'downloads' => 513974, 'forks' => 387, 'open_issues' => 24, 'watchers' => 1893 }
MVP! Decklin Foster
[aws|cloud_watch]
GitHub Edit! s/prodide/provide/ :v:. thanks Dylan Egan
[aws|simpledb]
fix region/host for us-east-1. thanks geemus
[ibm]
Added Mocking and Tests. thanks Carl Hicks