cifrado 0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (361) hide show
  1. data.tar.gz.sig +0 -0
  2. data/.gitignore +18 -0
  3. data/CHANGELOG.md +44 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +247 -0
  7. data/RELEASE.md +10 -0
  8. data/Rakefile +21 -0
  9. data/TODO.md +6 -0
  10. data/bin/cifrado +7 -0
  11. data/cifrado.gemspec +31 -0
  12. data/gem-public_cert.pem +20 -0
  13. data/lib/cifrado.rb +48 -0
  14. data/lib/cifrado/cli.rb +140 -0
  15. data/lib/cifrado/cli/cinema.rb +81 -0
  16. data/lib/cifrado/cli/delete.rb +36 -0
  17. data/lib/cifrado/cli/download.rb +54 -0
  18. data/lib/cifrado/cli/jukebox.rb +94 -0
  19. data/lib/cifrado/cli/list.rb +64 -0
  20. data/lib/cifrado/cli/post.rb +10 -0
  21. data/lib/cifrado/cli/progressbar.rb +86 -0
  22. data/lib/cifrado/cli/saio.rb +11 -0
  23. data/lib/cifrado/cli/saio/base.rb +20 -0
  24. data/lib/cifrado/cli/saio/bootstrap.rb +118 -0
  25. data/lib/cifrado/cli/saio/destroy.rb +16 -0
  26. data/lib/cifrado/cli/saio/scripts/saio.sh.erb +445 -0
  27. data/lib/cifrado/cli/set_acl.rb +10 -0
  28. data/lib/cifrado/cli/setup.rb +64 -0
  29. data/lib/cifrado/cli/stat.rb +41 -0
  30. data/lib/cifrado/cli/upload.rb +269 -0
  31. data/lib/cifrado/config.rb +18 -0
  32. data/lib/cifrado/core_ext/ruby18_base64.rb +15 -0
  33. data/lib/cifrado/crypto_services.rb +218 -0
  34. data/lib/cifrado/file_splitter.rb +67 -0
  35. data/lib/cifrado/rate_limit.rb +23 -0
  36. data/lib/cifrado/streaming_downloader.rb +49 -0
  37. data/lib/cifrado/streaming_uploader.rb +57 -0
  38. data/lib/cifrado/swift_client.rb +313 -0
  39. data/lib/cifrado/utils.rb +59 -0
  40. data/lib/cifrado/version.rb +3 -0
  41. data/tests/cli/list_tests.rb +28 -0
  42. data/tests/cli/upload_multi_tests.rb +94 -0
  43. data/tests/cli/upload_tests.rb +167 -0
  44. data/tests/cli_tests.rb +2 -0
  45. data/tests/crypto_services_tests.rb +145 -0
  46. data/tests/file_splitter_tests.rb +61 -0
  47. data/tests/helper.rb +117 -0
  48. data/tests/swift_client/create_directory.rb +14 -0
  49. data/tests/swift_client/download_tests.rb +208 -0
  50. data/tests/swift_client/file_available.rb +25 -0
  51. data/tests/swift_client/head_tests.rb +34 -0
  52. data/tests/swift_client/match_tests.rb +29 -0
  53. data/tests/swift_client/upload_tests.rb +70 -0
  54. data/tests/swift_client_tests.rb +29 -0
  55. data/tests/utils_tests.rb +33 -0
  56. data/vendor/fog/.document +3 -0
  57. data/vendor/fog/.gitignore +23 -0
  58. data/vendor/fog/.irbrc +82 -0
  59. data/vendor/fog/.travis.yml +21 -0
  60. data/vendor/fog/README.cifrado +3 -0
  61. data/vendor/fog/README.md +156 -0
  62. data/vendor/fog/RELEASE.md +39 -0
  63. data/vendor/fog/changelog.txt +4156 -0
  64. data/vendor/fog/fog.gemspec +70 -0
  65. data/vendor/fog/lib/fog.rb +17 -0
  66. data/vendor/fog/lib/fog/cdn.rb +30 -0
  67. data/vendor/fog/lib/fog/compute.rb +127 -0
  68. data/vendor/fog/lib/fog/compute/models/server.rb +73 -0
  69. data/vendor/fog/lib/fog/core.rb +38 -0
  70. data/vendor/fog/lib/fog/core/attributes.rb +221 -0
  71. data/vendor/fog/lib/fog/core/collection.rb +145 -0
  72. data/vendor/fog/lib/fog/core/connection.rb +36 -0
  73. data/vendor/fog/lib/fog/core/credentials.rb +65 -0
  74. data/vendor/fog/lib/fog/core/current_machine.rb +34 -0
  75. data/vendor/fog/lib/fog/core/deprecated_connection_accessors.rb +41 -0
  76. data/vendor/fog/lib/fog/core/deprecation.rb +23 -0
  77. data/vendor/fog/lib/fog/core/errors.rb +108 -0
  78. data/vendor/fog/lib/fog/core/hmac.rb +48 -0
  79. data/vendor/fog/lib/fog/core/json.rb +34 -0
  80. data/vendor/fog/lib/fog/core/logger.rb +45 -0
  81. data/vendor/fog/lib/fog/core/mock.rb +92 -0
  82. data/vendor/fog/lib/fog/core/model.rb +79 -0
  83. data/vendor/fog/lib/fog/core/parser.rb +116 -0
  84. data/vendor/fog/lib/fog/core/provider.rb +35 -0
  85. data/vendor/fog/lib/fog/core/scp.rb +96 -0
  86. data/vendor/fog/lib/fog/core/service.rb +223 -0
  87. data/vendor/fog/lib/fog/core/ssh.rb +137 -0
  88. data/vendor/fog/lib/fog/core/time.rb +32 -0
  89. data/vendor/fog/lib/fog/core/timeout.rb +11 -0
  90. data/vendor/fog/lib/fog/core/wait_for.rb +15 -0
  91. data/vendor/fog/lib/fog/digitalocean.rb +9 -0
  92. data/vendor/fog/lib/fog/digitalocean/compute.rb +100 -0
  93. data/vendor/fog/lib/fog/digitalocean/examples/getting_started.md +106 -0
  94. data/vendor/fog/lib/fog/digitalocean/models/compute/flavor.rb +14 -0
  95. data/vendor/fog/lib/fog/digitalocean/models/compute/flavors.rb +25 -0
  96. data/vendor/fog/lib/fog/digitalocean/models/compute/image.rb +15 -0
  97. data/vendor/fog/lib/fog/digitalocean/models/compute/images.rb +25 -0
  98. data/vendor/fog/lib/fog/digitalocean/models/compute/region.rb +14 -0
  99. data/vendor/fog/lib/fog/digitalocean/models/compute/regions.rb +25 -0
  100. data/vendor/fog/lib/fog/digitalocean/models/compute/server.rb +150 -0
  101. data/vendor/fog/lib/fog/digitalocean/models/compute/servers.rb +27 -0
  102. data/vendor/fog/lib/fog/digitalocean/requests/compute/create_server.rb +49 -0
  103. data/vendor/fog/lib/fog/digitalocean/requests/compute/create_ssh_key.rb +26 -0
  104. data/vendor/fog/lib/fog/digitalocean/requests/compute/destroy_server.rb +28 -0
  105. data/vendor/fog/lib/fog/digitalocean/requests/compute/get_server_details.rb +25 -0
  106. data/vendor/fog/lib/fog/digitalocean/requests/compute/list_flavors.rb +25 -0
  107. data/vendor/fog/lib/fog/digitalocean/requests/compute/list_images.rb +25 -0
  108. data/vendor/fog/lib/fog/digitalocean/requests/compute/list_regions.rb +25 -0
  109. data/vendor/fog/lib/fog/digitalocean/requests/compute/list_servers.rb +25 -0
  110. data/vendor/fog/lib/fog/digitalocean/requests/compute/list_ssh_keys.rb +25 -0
  111. data/vendor/fog/lib/fog/digitalocean/requests/compute/power_cycle_server.rb +25 -0
  112. data/vendor/fog/lib/fog/digitalocean/requests/compute/power_off_server.rb +25 -0
  113. data/vendor/fog/lib/fog/digitalocean/requests/compute/power_on_server.rb +25 -0
  114. data/vendor/fog/lib/fog/digitalocean/requests/compute/reboot_server.rb +25 -0
  115. data/vendor/fog/lib/fog/digitalocean/requests/compute/shutdown_server.rb +25 -0
  116. data/vendor/fog/lib/fog/dns.rb +59 -0
  117. data/vendor/fog/lib/fog/identity.rb +27 -0
  118. data/vendor/fog/lib/fog/image.rb +24 -0
  119. data/vendor/fog/lib/fog/local.rb +11 -0
  120. data/vendor/fog/lib/fog/local/models/storage/directories.rb +33 -0
  121. data/vendor/fog/lib/fog/local/models/storage/directory.rb +57 -0
  122. data/vendor/fog/lib/fog/local/models/storage/file.rb +131 -0
  123. data/vendor/fog/lib/fog/local/models/storage/files.rb +87 -0
  124. data/vendor/fog/lib/fog/local/storage.rb +103 -0
  125. data/vendor/fog/lib/fog/network.rb +26 -0
  126. data/vendor/fog/lib/fog/openstack.rb +214 -0
  127. data/vendor/fog/lib/fog/openstack/README.identity.md +69 -0
  128. data/vendor/fog/lib/fog/openstack/compute.rb +423 -0
  129. data/vendor/fog/lib/fog/openstack/identity.rb +299 -0
  130. data/vendor/fog/lib/fog/openstack/image.rb +217 -0
  131. data/vendor/fog/lib/fog/openstack/models/compute/address.rb +71 -0
  132. data/vendor/fog/lib/fog/openstack/models/compute/addresses.rb +33 -0
  133. data/vendor/fog/lib/fog/openstack/models/compute/flavor.rb +45 -0
  134. data/vendor/fog/lib/fog/openstack/models/compute/flavors.rb +28 -0
  135. data/vendor/fog/lib/fog/openstack/models/compute/host.rb +29 -0
  136. data/vendor/fog/lib/fog/openstack/models/compute/hosts.rb +32 -0
  137. data/vendor/fog/lib/fog/openstack/models/compute/image.rb +58 -0
  138. data/vendor/fog/lib/fog/openstack/models/compute/images.rb +33 -0
  139. data/vendor/fog/lib/fog/openstack/models/compute/key_pair.rb +60 -0
  140. data/vendor/fog/lib/fog/openstack/models/compute/key_pairs.rb +31 -0
  141. data/vendor/fog/lib/fog/openstack/models/compute/metadata.rb +68 -0
  142. data/vendor/fog/lib/fog/openstack/models/compute/metadatum.rb +29 -0
  143. data/vendor/fog/lib/fog/openstack/models/compute/network.rb +13 -0
  144. data/vendor/fog/lib/fog/openstack/models/compute/networks.rb +29 -0
  145. data/vendor/fog/lib/fog/openstack/models/compute/security_group.rb +44 -0
  146. data/vendor/fog/lib/fog/openstack/models/compute/security_groups.rb +27 -0
  147. data/vendor/fog/lib/fog/openstack/models/compute/server.rb +278 -0
  148. data/vendor/fog/lib/fog/openstack/models/compute/servers.rb +44 -0
  149. data/vendor/fog/lib/fog/openstack/models/compute/snapshot.rb +44 -0
  150. data/vendor/fog/lib/fog/openstack/models/compute/snapshots.rb +26 -0
  151. data/vendor/fog/lib/fog/openstack/models/compute/tenant.rb +24 -0
  152. data/vendor/fog/lib/fog/openstack/models/compute/tenants.rb +24 -0
  153. data/vendor/fog/lib/fog/openstack/models/compute/volume.rb +59 -0
  154. data/vendor/fog/lib/fog/openstack/models/compute/volumes.rb +26 -0
  155. data/vendor/fog/lib/fog/openstack/models/identity/ec2_credential.rb +44 -0
  156. data/vendor/fog/lib/fog/openstack/models/identity/ec2_credentials.rb +53 -0
  157. data/vendor/fog/lib/fog/openstack/models/identity/role.rb +50 -0
  158. data/vendor/fog/lib/fog/openstack/models/identity/roles.rb +21 -0
  159. data/vendor/fog/lib/fog/openstack/models/identity/tenant.rb +62 -0
  160. data/vendor/fog/lib/fog/openstack/models/identity/tenants.rb +29 -0
  161. data/vendor/fog/lib/fog/openstack/models/identity/user.rb +70 -0
  162. data/vendor/fog/lib/fog/openstack/models/identity/users.rb +32 -0
  163. data/vendor/fog/lib/fog/openstack/models/image/image.rb +91 -0
  164. data/vendor/fog/lib/fog/openstack/models/image/images.rb +60 -0
  165. data/vendor/fog/lib/fog/openstack/models/meta_parent.rb +33 -0
  166. data/vendor/fog/lib/fog/openstack/models/network/floating_ip.rb +52 -0
  167. data/vendor/fog/lib/fog/openstack/models/network/floating_ips.rb +34 -0
  168. data/vendor/fog/lib/fog/openstack/models/network/network.rb +47 -0
  169. data/vendor/fog/lib/fog/openstack/models/network/networks.rb +34 -0
  170. data/vendor/fog/lib/fog/openstack/models/network/port.rb +53 -0
  171. data/vendor/fog/lib/fog/openstack/models/network/ports.rb +34 -0
  172. data/vendor/fog/lib/fog/openstack/models/network/subnet.rb +56 -0
  173. data/vendor/fog/lib/fog/openstack/models/network/subnets.rb +34 -0
  174. data/vendor/fog/lib/fog/openstack/models/storage/directories.rb +39 -0
  175. data/vendor/fog/lib/fog/openstack/models/storage/directory.rb +50 -0
  176. data/vendor/fog/lib/fog/openstack/models/storage/file.rb +152 -0
  177. data/vendor/fog/lib/fog/openstack/models/storage/files.rb +94 -0
  178. data/vendor/fog/lib/fog/openstack/models/volume/volume.rb +47 -0
  179. data/vendor/fog/lib/fog/openstack/models/volume/volumes.rb +27 -0
  180. data/vendor/fog/lib/fog/openstack/network.rb +247 -0
  181. data/vendor/fog/lib/fog/openstack/requests/compute/add_fixed_ip.rb +29 -0
  182. data/vendor/fog/lib/fog/openstack/requests/compute/allocate_address.rb +42 -0
  183. data/vendor/fog/lib/fog/openstack/requests/compute/associate_address.rb +27 -0
  184. data/vendor/fog/lib/fog/openstack/requests/compute/attach_volume.rb +38 -0
  185. data/vendor/fog/lib/fog/openstack/requests/compute/boot_from_snapshot.rb +41 -0
  186. data/vendor/fog/lib/fog/openstack/requests/compute/change_server_password.rb +24 -0
  187. data/vendor/fog/lib/fog/openstack/requests/compute/confirm_resize_server.rb +24 -0
  188. data/vendor/fog/lib/fog/openstack/requests/compute/create_flavor.rb +85 -0
  189. data/vendor/fog/lib/fog/openstack/requests/compute/create_image.rb +49 -0
  190. data/vendor/fog/lib/fog/openstack/requests/compute/create_key_pair.rb +49 -0
  191. data/vendor/fog/lib/fog/openstack/requests/compute/create_security_group.rb +52 -0
  192. data/vendor/fog/lib/fog/openstack/requests/compute/create_security_group_rule.rb +59 -0
  193. data/vendor/fog/lib/fog/openstack/requests/compute/create_server.rb +131 -0
  194. data/vendor/fog/lib/fog/openstack/requests/compute/create_volume.rb +54 -0
  195. data/vendor/fog/lib/fog/openstack/requests/compute/create_volume_snapshot.rb +47 -0
  196. data/vendor/fog/lib/fog/openstack/requests/compute/delete_flavor.rb +28 -0
  197. data/vendor/fog/lib/fog/openstack/requests/compute/delete_image.rb +40 -0
  198. data/vendor/fog/lib/fog/openstack/requests/compute/delete_key_pair.rb +31 -0
  199. data/vendor/fog/lib/fog/openstack/requests/compute/delete_metadata.rb +28 -0
  200. data/vendor/fog/lib/fog/openstack/requests/compute/delete_security_group.rb +33 -0
  201. data/vendor/fog/lib/fog/openstack/requests/compute/delete_security_group_rule.rb +31 -0
  202. data/vendor/fog/lib/fog/openstack/requests/compute/delete_server.rb +38 -0
  203. data/vendor/fog/lib/fog/openstack/requests/compute/delete_snapshot.rb +26 -0
  204. data/vendor/fog/lib/fog/openstack/requests/compute/delete_volume.rb +26 -0
  205. data/vendor/fog/lib/fog/openstack/requests/compute/detach_volume.rb +26 -0
  206. data/vendor/fog/lib/fog/openstack/requests/compute/disassociate_address.rb +27 -0
  207. data/vendor/fog/lib/fog/openstack/requests/compute/get_address.rb +41 -0
  208. data/vendor/fog/lib/fog/openstack/requests/compute/get_console_output.rb +28 -0
  209. data/vendor/fog/lib/fog/openstack/requests/compute/get_flavor_details.rb +43 -0
  210. data/vendor/fog/lib/fog/openstack/requests/compute/get_host_details.rb +74 -0
  211. data/vendor/fog/lib/fog/openstack/requests/compute/get_image_details.rb +33 -0
  212. data/vendor/fog/lib/fog/openstack/requests/compute/get_limits.rb +93 -0
  213. data/vendor/fog/lib/fog/openstack/requests/compute/get_metadata.rb +29 -0
  214. data/vendor/fog/lib/fog/openstack/requests/compute/get_quota.rb +31 -0
  215. data/vendor/fog/lib/fog/openstack/requests/compute/get_quota_defaults.rb +31 -0
  216. data/vendor/fog/lib/fog/openstack/requests/compute/get_security_group.rb +49 -0
  217. data/vendor/fog/lib/fog/openstack/requests/compute/get_server_details.rb +32 -0
  218. data/vendor/fog/lib/fog/openstack/requests/compute/get_server_volumes.rb +23 -0
  219. data/vendor/fog/lib/fog/openstack/requests/compute/get_snapshot_details.rb +39 -0
  220. data/vendor/fog/lib/fog/openstack/requests/compute/get_usage.rb +53 -0
  221. data/vendor/fog/lib/fog/openstack/requests/compute/get_vnc_console.rb +40 -0
  222. data/vendor/fog/lib/fog/openstack/requests/compute/get_volume_details.rb +42 -0
  223. data/vendor/fog/lib/fog/openstack/requests/compute/list_address_pools.rb +23 -0
  224. data/vendor/fog/lib/fog/openstack/requests/compute/list_addresses.rb +32 -0
  225. data/vendor/fog/lib/fog/openstack/requests/compute/list_all_addresses.rb +64 -0
  226. data/vendor/fog/lib/fog/openstack/requests/compute/list_flavors.rb +38 -0
  227. data/vendor/fog/lib/fog/openstack/requests/compute/list_flavors_detail.rb +38 -0
  228. data/vendor/fog/lib/fog/openstack/requests/compute/list_hosts.rb +32 -0
  229. data/vendor/fog/lib/fog/openstack/requests/compute/list_images.rb +33 -0
  230. data/vendor/fog/lib/fog/openstack/requests/compute/list_images_detail.rb +39 -0
  231. data/vendor/fog/lib/fog/openstack/requests/compute/list_key_pairs.rb +39 -0
  232. data/vendor/fog/lib/fog/openstack/requests/compute/list_metadata.rb +28 -0
  233. data/vendor/fog/lib/fog/openstack/requests/compute/list_private_addresses.rb +32 -0
  234. data/vendor/fog/lib/fog/openstack/requests/compute/list_public_addresses.rb +32 -0
  235. data/vendor/fog/lib/fog/openstack/requests/compute/list_security_groups.rb +50 -0
  236. data/vendor/fog/lib/fog/openstack/requests/compute/list_servers.rb +37 -0
  237. data/vendor/fog/lib/fog/openstack/requests/compute/list_servers_detail.rb +44 -0
  238. data/vendor/fog/lib/fog/openstack/requests/compute/list_snapshots.rb +32 -0
  239. data/vendor/fog/lib/fog/openstack/requests/compute/list_tenants.rb +45 -0
  240. data/vendor/fog/lib/fog/openstack/requests/compute/list_usages.rb +43 -0
  241. data/vendor/fog/lib/fog/openstack/requests/compute/list_volumes.rb +51 -0
  242. data/vendor/fog/lib/fog/openstack/requests/compute/live_migrate_server.rb +31 -0
  243. data/vendor/fog/lib/fog/openstack/requests/compute/migrate_server.rb +24 -0
  244. data/vendor/fog/lib/fog/openstack/requests/compute/pause_server.rb +24 -0
  245. data/vendor/fog/lib/fog/openstack/requests/compute/reboot_server.rb +24 -0
  246. data/vendor/fog/lib/fog/openstack/requests/compute/rebuild_server.rb +31 -0
  247. data/vendor/fog/lib/fog/openstack/requests/compute/release_address.rb +34 -0
  248. data/vendor/fog/lib/fog/openstack/requests/compute/remove_fixed_ip.rb +29 -0
  249. data/vendor/fog/lib/fog/openstack/requests/compute/rescue_server.rb +24 -0
  250. data/vendor/fog/lib/fog/openstack/requests/compute/reset_server_state.rb +24 -0
  251. data/vendor/fog/lib/fog/openstack/requests/compute/resize_server.rb +24 -0
  252. data/vendor/fog/lib/fog/openstack/requests/compute/resume_server.rb +24 -0
  253. data/vendor/fog/lib/fog/openstack/requests/compute/revert_resize_server.rb +30 -0
  254. data/vendor/fog/lib/fog/openstack/requests/compute/server_action.rb +18 -0
  255. data/vendor/fog/lib/fog/openstack/requests/compute/server_actions.rb +27 -0
  256. data/vendor/fog/lib/fog/openstack/requests/compute/server_diagnostics.rb +25 -0
  257. data/vendor/fog/lib/fog/openstack/requests/compute/set_metadata.rb +45 -0
  258. data/vendor/fog/lib/fog/openstack/requests/compute/set_tenant.rb +21 -0
  259. data/vendor/fog/lib/fog/openstack/requests/compute/suspend_server.rb +24 -0
  260. data/vendor/fog/lib/fog/openstack/requests/compute/unpause_server.rb +24 -0
  261. data/vendor/fog/lib/fog/openstack/requests/compute/update_metadata.rb +46 -0
  262. data/vendor/fog/lib/fog/openstack/requests/compute/update_quota.rb +32 -0
  263. data/vendor/fog/lib/fog/openstack/requests/compute/update_server.rb +35 -0
  264. data/vendor/fog/lib/fog/openstack/requests/identity/add_user_to_tenant.rb +34 -0
  265. data/vendor/fog/lib/fog/openstack/requests/identity/check_token.rb +23 -0
  266. data/vendor/fog/lib/fog/openstack/requests/identity/create_ec2_credential.rb +58 -0
  267. data/vendor/fog/lib/fog/openstack/requests/identity/create_role.rb +37 -0
  268. data/vendor/fog/lib/fog/openstack/requests/identity/create_tenant.rb +32 -0
  269. data/vendor/fog/lib/fog/openstack/requests/identity/create_user.rb +47 -0
  270. data/vendor/fog/lib/fog/openstack/requests/identity/create_user_role.rb +26 -0
  271. data/vendor/fog/lib/fog/openstack/requests/identity/delete_ec2_credential.rb +44 -0
  272. data/vendor/fog/lib/fog/openstack/requests/identity/delete_role.rb +32 -0
  273. data/vendor/fog/lib/fog/openstack/requests/identity/delete_tenant.rb +31 -0
  274. data/vendor/fog/lib/fog/openstack/requests/identity/delete_user.rb +32 -0
  275. data/vendor/fog/lib/fog/openstack/requests/identity/delete_user_role.rb +26 -0
  276. data/vendor/fog/lib/fog/openstack/requests/identity/get_ec2_credential.rb +49 -0
  277. data/vendor/fog/lib/fog/openstack/requests/identity/get_role.rb +28 -0
  278. data/vendor/fog/lib/fog/openstack/requests/identity/get_tenant.rb +31 -0
  279. data/vendor/fog/lib/fog/openstack/requests/identity/get_tenants_by_id.rb +23 -0
  280. data/vendor/fog/lib/fog/openstack/requests/identity/get_tenants_by_name.rb +23 -0
  281. data/vendor/fog/lib/fog/openstack/requests/identity/get_user_by_id.rb +34 -0
  282. data/vendor/fog/lib/fog/openstack/requests/identity/get_user_by_name.rb +31 -0
  283. data/vendor/fog/lib/fog/openstack/requests/identity/list_ec2_credentials.rb +44 -0
  284. data/vendor/fog/lib/fog/openstack/requests/identity/list_endpoints_for_token.rb +23 -0
  285. data/vendor/fog/lib/fog/openstack/requests/identity/list_roles.rb +36 -0
  286. data/vendor/fog/lib/fog/openstack/requests/identity/list_roles_for_user_on_tenant.rb +30 -0
  287. data/vendor/fog/lib/fog/openstack/requests/identity/list_tenants.rb +45 -0
  288. data/vendor/fog/lib/fog/openstack/requests/identity/list_user_global_roles.rb +22 -0
  289. data/vendor/fog/lib/fog/openstack/requests/identity/list_users.rb +34 -0
  290. data/vendor/fog/lib/fog/openstack/requests/identity/remove_user_from_tenant.rb +20 -0
  291. data/vendor/fog/lib/fog/openstack/requests/identity/set_tenant.rb +21 -0
  292. data/vendor/fog/lib/fog/openstack/requests/identity/update_tenant.rb +28 -0
  293. data/vendor/fog/lib/fog/openstack/requests/identity/update_user.rb +36 -0
  294. data/vendor/fog/lib/fog/openstack/requests/identity/validate_token.rb +23 -0
  295. data/vendor/fog/lib/fog/openstack/requests/image/add_member_to_image.rb +23 -0
  296. data/vendor/fog/lib/fog/openstack/requests/image/create_image.rb +79 -0
  297. data/vendor/fog/lib/fog/openstack/requests/image/delete_image.rb +25 -0
  298. data/vendor/fog/lib/fog/openstack/requests/image/get_image.rb +45 -0
  299. data/vendor/fog/lib/fog/openstack/requests/image/get_image_by_id.rb +32 -0
  300. data/vendor/fog/lib/fog/openstack/requests/image/get_image_members.rb +29 -0
  301. data/vendor/fog/lib/fog/openstack/requests/image/get_shared_images.rb +29 -0
  302. data/vendor/fog/lib/fog/openstack/requests/image/list_public_images.rb +32 -0
  303. data/vendor/fog/lib/fog/openstack/requests/image/list_public_images_detailed.rb +31 -0
  304. data/vendor/fog/lib/fog/openstack/requests/image/remove_member_from_image.rb +23 -0
  305. data/vendor/fog/lib/fog/openstack/requests/image/set_tenant.rb +21 -0
  306. data/vendor/fog/lib/fog/openstack/requests/image/update_image.rb +70 -0
  307. data/vendor/fog/lib/fog/openstack/requests/image/update_image_members.rb +37 -0
  308. data/vendor/fog/lib/fog/openstack/requests/network/associate_floating_ip.rb +49 -0
  309. data/vendor/fog/lib/fog/openstack/requests/network/create_floating_ip.rb +50 -0
  310. data/vendor/fog/lib/fog/openstack/requests/network/create_network.rb +44 -0
  311. data/vendor/fog/lib/fog/openstack/requests/network/create_port.rb +52 -0
  312. data/vendor/fog/lib/fog/openstack/requests/network/create_subnet.rb +56 -0
  313. data/vendor/fog/lib/fog/openstack/requests/network/delete_floating_ip.rb +30 -0
  314. data/vendor/fog/lib/fog/openstack/requests/network/delete_network.rb +30 -0
  315. data/vendor/fog/lib/fog/openstack/requests/network/delete_port.rb +30 -0
  316. data/vendor/fog/lib/fog/openstack/requests/network/delete_subnet.rb +30 -0
  317. data/vendor/fog/lib/fog/openstack/requests/network/disassociate_floating_ip.rb +49 -0
  318. data/vendor/fog/lib/fog/openstack/requests/network/get_floating_ip.rb +42 -0
  319. data/vendor/fog/lib/fog/openstack/requests/network/get_network.rb +42 -0
  320. data/vendor/fog/lib/fog/openstack/requests/network/get_port.rb +48 -0
  321. data/vendor/fog/lib/fog/openstack/requests/network/get_subnet.rb +49 -0
  322. data/vendor/fog/lib/fog/openstack/requests/network/list_floating_ips.rb +27 -0
  323. data/vendor/fog/lib/fog/openstack/requests/network/list_networks.rb +27 -0
  324. data/vendor/fog/lib/fog/openstack/requests/network/list_ports.rb +27 -0
  325. data/vendor/fog/lib/fog/openstack/requests/network/list_subnets.rb +27 -0
  326. data/vendor/fog/lib/fog/openstack/requests/network/set_tenant.rb +21 -0
  327. data/vendor/fog/lib/fog/openstack/requests/network/update_network.rb +41 -0
  328. data/vendor/fog/lib/fog/openstack/requests/network/update_port.rb +44 -0
  329. data/vendor/fog/lib/fog/openstack/requests/network/update_subnet.rb +44 -0
  330. data/vendor/fog/lib/fog/openstack/requests/storage/copy_object.rb +27 -0
  331. data/vendor/fog/lib/fog/openstack/requests/storage/delete_container.rb +22 -0
  332. data/vendor/fog/lib/fog/openstack/requests/storage/delete_object.rb +23 -0
  333. data/vendor/fog/lib/fog/openstack/requests/storage/get_container.rb +44 -0
  334. data/vendor/fog/lib/fog/openstack/requests/storage/get_containers.rb +33 -0
  335. data/vendor/fog/lib/fog/openstack/requests/storage/get_object.rb +29 -0
  336. data/vendor/fog/lib/fog/openstack/requests/storage/get_object_https_url.rb +51 -0
  337. data/vendor/fog/lib/fog/openstack/requests/storage/head_container.rb +28 -0
  338. data/vendor/fog/lib/fog/openstack/requests/storage/head_containers.rb +25 -0
  339. data/vendor/fog/lib/fog/openstack/requests/storage/head_object.rb +23 -0
  340. data/vendor/fog/lib/fog/openstack/requests/storage/post_set_meta_temp_url_key.rb +37 -0
  341. data/vendor/fog/lib/fog/openstack/requests/storage/put_container.rb +22 -0
  342. data/vendor/fog/lib/fog/openstack/requests/storage/put_object.rb +30 -0
  343. data/vendor/fog/lib/fog/openstack/requests/storage/put_object_manifest.rb +25 -0
  344. data/vendor/fog/lib/fog/openstack/requests/volume/create_volume.rb +54 -0
  345. data/vendor/fog/lib/fog/openstack/requests/volume/create_volume_snapshot.rb +47 -0
  346. data/vendor/fog/lib/fog/openstack/requests/volume/delete_snapshot.rb +26 -0
  347. data/vendor/fog/lib/fog/openstack/requests/volume/delete_volume.rb +26 -0
  348. data/vendor/fog/lib/fog/openstack/requests/volume/get_snapshot_details.rb +39 -0
  349. data/vendor/fog/lib/fog/openstack/requests/volume/get_volume_details.rb +42 -0
  350. data/vendor/fog/lib/fog/openstack/requests/volume/list_snapshots.rb +32 -0
  351. data/vendor/fog/lib/fog/openstack/requests/volume/list_volumes.rb +55 -0
  352. data/vendor/fog/lib/fog/openstack/requests/volume/set_tenant.rb +21 -0
  353. data/vendor/fog/lib/fog/openstack/storage.rb +162 -0
  354. data/vendor/fog/lib/fog/openstack/volume.rb +219 -0
  355. data/vendor/fog/lib/fog/providers.rb +2 -0
  356. data/vendor/fog/lib/fog/schema/data_validator.rb +154 -0
  357. data/vendor/fog/lib/fog/storage.rb +97 -0
  358. data/vendor/fog/lib/fog/version.rb +3 -0
  359. data/vendor/fog/lib/fog/volume.rb +25 -0
  360. metadata +576 -0
  361. metadata.gz.sig +0 -0
@@ -0,0 +1,39 @@
1
+ # Release process
2
+
3
+ This is fog's current release process, documented so people know what is
4
+ currently done.
5
+
6
+ ## Versioning
7
+
8
+ fog uses semantic versioning (http://semver.org/)
9
+
10
+ ## When we release
11
+
12
+ Releases occur monthly and are manually handled by fog's Benevolent
13
+ Dictator Wes (@geemus).
14
+
15
+ To request a new release please raise an issue.
16
+
17
+ ## Prepare the release
18
+
19
+ * Ensure the code is passing on the CI server [![Build Status](https://secure.travis-ci.org/fog/fog.png?branch=master)](http://travis-ci.org/fog/fog)
20
+ * Ensure the code is passing for live tests (Requires Credentials for all
21
+ services)
22
+ * Ensure working on **master**
23
+ * Update the version number (`lib/fog/version.rb`)
24
+ * Run `rake changelog` to update `changelog.txt`
25
+ * Run `rake release` to prepare the release which does:
26
+ * Prepares the release (`rake release:prepare`)
27
+ * Builds the gem
28
+ * Tags the commit
29
+ * Creates commits for version
30
+ * Publishes the release (`rake release:publish`)
31
+ * Pushes commit and tag to Github (Requires Credentials)
32
+ * Pushes gem to Rubygems (Requires Credentials)
33
+
34
+ ## Announce the release
35
+
36
+ Once the release is prepared and uploaded it needs to be announced.
37
+
38
+ * Send an email to https://groups.google.com/forum/?fromgroups#!forum/ruby-fog
39
+ * Tweet as @fog on Twitter (Requires Credentials)
@@ -0,0 +1,4156 @@
1
+ 1.9.0 01/19/2013 0283cac581edc36fe58681c51d6fa2a5d2db3f41
2
+ =========================================================
3
+
4
+ Stats! { 'collaborators' => 41, 'downloads' => 1567112, 'forks' => 673, 'open_issues' => 99, 'watchers' => 2342 }
5
+
6
+ MVP! Paul Thornthwaite
7
+
8
+ [AWS]
9
+ CopySnapshot. supports cross-region snapshot copying. thanks Shai Rosenfeld & Jacob Burkhart
10
+
11
+ [AWS|DynamoDB]
12
+ Default to HTTPS. thanks Blake Gentry
13
+
14
+ [AWS|cloud_watch]
15
+ Add Metrics#each, which follows NextToken. thanks Michael Hale
16
+
17
+ [Brightbox]
18
+ Add ServerGroup attribute in CloudIP model. thanks Hemant Kumar
19
+ Guards against unimplemented mock. thanks Paul Thornthwaite
20
+ Adds firewall request tests. thanks Paul Thornthwaite
21
+ Deprecates incorrect form of #request. thanks Paul Thornthwaite
22
+ Replaces usage of deprecated #request. thanks Paul Thornthwaite
23
+ Adds #dns_name to server. thanks Paul Thornthwaite
24
+ Updates reference to service. thanks Paul Thornthwaite
25
+
26
+ [Rackspace]
27
+ updated to select London athorization endpoint if the London Region endpoint is selected. thanks Kyle Rames
28
+
29
+ [Rackspace|Compute]
30
+ updated create_image to return an image object instead of the object id. thanks Kyle Rames
31
+ updated ready method on Image to raise an exception if an error state occurs. This is similar to the behavior of Server. thanks Kyle Rames
32
+
33
+ [atmos]
34
+ Updates reference to service. thanks Paul Thornthwaite
35
+
36
+ [aws]
37
+ Replaces #new_record? with #persisted?. thanks Paul Thornthwaite
38
+
39
+ [aws|auto_scaling]
40
+ Implement resume_processes mock. thanks Michael Hale
41
+ Implement suspend_processes mock. thanks Michael Hale
42
+ remove pending if mocking? for model_tests. thanks Michael Hale
43
+ Updates reference to service. thanks Paul Thornthwaite
44
+
45
+ [aws|beanstalk]
46
+ Updates reference to service. thanks Paul Thornthwaite
47
+
48
+ [aws|cdn]
49
+ Updates reference to service. thanks Paul Thornthwaite
50
+
51
+ [aws|cloud_watch]
52
+ Updates reference to service. thanks Paul Thornthwaite
53
+
54
+ [aws|compute]
55
+ Updates 'connection' references. thanks Paul Thornthwaite
56
+ Updates reference to service. thanks Paul Thornthwaite
57
+
58
+ [aws|dns]
59
+ Updates reference to service. thanks Paul Thornthwaite
60
+
61
+ [aws|elasticache]
62
+ Updates reference to service. thanks Paul Thornthwaite
63
+
64
+ [aws|elb]
65
+ Updates reference to service. thanks Paul Thornthwaite
66
+
67
+ [aws|glacier]
68
+ Updates reference to service. thanks Paul Thornthwaite
69
+
70
+ [aws|iam]
71
+ Updates reference to service. thanks Paul Thornthwaite
72
+
73
+ [aws|rds]
74
+ Updates reference to service. thanks Paul Thornthwaite
75
+
76
+ [aws|storage]
77
+ Updates reference to service. thanks Paul Thornthwaite
78
+
79
+ [bluebox]
80
+ Updates reference to service. thanks Paul Thornthwaite
81
+
82
+ [clodo]
83
+ Updates reference to service. thanks Paul Thornthwaite
84
+
85
+ [cloudstack]
86
+ Updates reference to service. thanks Paul Thornthwaite
87
+
88
+ [core]
89
+ Adds #persisted? to Fog models. thanks Paul Thornthwaite
90
+ Breaks down rake tasks. thanks Paul Thornthwaite
91
+ Deprecates 'connection' accessor. thanks Paul Thornthwaite
92
+ Fix service instance variable being included when doing model.to_json. thanks Philip Mark M. Deazeta
93
+
94
+ [dns_made_easy|dns]
95
+ Updates reference to service. thanks Paul Thornthwaite
96
+
97
+ [dnsimple]
98
+ Updates reference to service. thanks Paul Thornthwaite
99
+
100
+ [doc]
101
+ converting old doc style to YARD doc style. thanks Weston Platter
102
+ is there a better way to format nested responses?. thanks Weston Platter
103
+
104
+ [docs]
105
+ changed rdoc formatting to yard. thanks Danny Garcia
106
+ Creates release policy document to discuss. thanks Paul Thornthwaite
107
+
108
+ [docs::aws::storage]
109
+ added [] to make it pretty. thanks Weston Platter
110
+ yard doc syntax fix. thanks Weston Platter
111
+ reformatted copy_object. thanks Weston Platter
112
+ reformatted delete requests. thanks Weston Platter
113
+ standardized return format for key with values, # @return variable [data_type]: for values, # * variable [data_type] - description of value. thanks Weston Platter
114
+ WIP on get requests. thanks Weston Platter
115
+ finished formatting get requests. thanks Weston Platter
116
+ requests convert Rdoc to YARD format. thanks Weston Platter
117
+ requests minor tweaks to keep docs all the same. thanks Weston Platter
118
+ requests changed Rdoc to YARD. thanks Weston Platter
119
+ requests finished changing RDoc to Yard. thanks Weston Platter
120
+ remove 1 space char for formatting. thanks Weston Platter
121
+
122
+ [docs::was::storage]
123
+ i was wrong. this is an int describing "number of seconds before expiration" to confirm, go to -- http://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectPUT.html search for -- expires. thanks Weston Platter
124
+ formatting. thanks Weston Platter
125
+ added more description. thanks Weston Platter
126
+ added docs for other public methods. thanks Weston Platter
127
+ added URL for list of S3 docs about Restful HTTP API. thanks Weston Platter
128
+ this consistently spaces all methods 2 lines from each other. thanks Weston Platter
129
+
130
+ [dynect|dns]
131
+ Updates reference to service. thanks Paul Thornthwaite
132
+
133
+ [ecloud]
134
+ improvements and some mocking. thanks Eugene Howe & Josh Lane
135
+ Replaces #new_record? with #persisted?. thanks Paul Thornthwaite
136
+ Fixes tests by duplicating test setup. thanks Paul Thornthwaite
137
+
138
+ [ecloud|compute]
139
+ Fixes missing value. thanks Paul Thornthwaite
140
+ Updates reference to service. thanks Paul Thornthwaite
141
+ Fixes tagging of some tests. thanks Paul Thornthwaite
142
+ Fixes ecloud server tests. thanks Paul Thornthwaite
143
+
144
+ [glesys|compute]
145
+ Updates reference to service. thanks Paul Thornthwaite
146
+
147
+ [go_grid|compute]
148
+ Updates reference to service. thanks Paul Thornthwaite
149
+
150
+ [google|storage]
151
+ Updates reference to service. thanks Paul Thornthwaite
152
+
153
+ [hp]
154
+ Replaces #new_record? with #persisted?. thanks Paul Thornthwaite
155
+ Updates reference to service. thanks Paul Thornthwaite
156
+
157
+ [ibm]
158
+ Updates reference to service. thanks Paul Thornthwaite
159
+
160
+ [joyent|compute]
161
+ Updates reference to service. thanks Paul Thornthwaite
162
+
163
+ [libvirt|compute]
164
+ Updates 'connection' references. thanks Paul Thornthwaite
165
+ Updates reference to service. thanks Paul Thornthwaite
166
+
167
+ [linode]
168
+ Updates reference to service. thanks Paul Thornthwaite
169
+
170
+ [local|storage]
171
+ Updates reference to service. thanks Paul Thornthwaite
172
+
173
+ [misc]
174
+ use old multijson methods. thanks Carl Allen
175
+ always use old encode/decode from multijson (it only has warnings in 1.3.0-1.3.2). thanks Carl Allen
176
+ Rackspace, openstack, hp API error messages are not set correctly in exceptions. thanks Carlos Sanchez
177
+ Add vsphere public_ip_address correctly. thanks Carlos Sanchez
178
+ add failing test and update Mock list_users to filter based on tenant_id. thanks Coby Randquist
179
+ update tenant.rb to pass the test, by passing correct parameter. thanks Coby Randquist
180
+ OpenStack server test updates for real mode. thanks Dan Prince
181
+ OpenStack: Drop unused server_format hash. thanks Dan Prince
182
+ OpenStack custom exception cleanup. thanks Dan Prince
183
+ OpenStack auth updates to select by service name. thanks Dan Prince
184
+ skype sucks. thanks Danny Garcia
185
+ change copy_object docs to YARD. thanks Danny Garcia
186
+ YARD docs for head_object.rb. thanks Danny Garcia
187
+ how do I updates my clone with updates from source?. thanks Danny Garcia
188
+ change docs on initiate_multipart_upload.rb. thanks Danny Garcia
189
+ change copy_object docs to YARD. thanks Danny Garcia
190
+ YARD docs for head_object.rb. thanks Danny Garcia
191
+ how do I updates my clone with updates from source?. thanks Danny Garcia
192
+ change docs on initiate_multipart_upload.rb. thanks Danny Garcia
193
+ resolve merge conflicts according to the code on fog master. thanks Danny Garcia
194
+ change doc on copy_object.rb. thanks Danny Garcia
195
+ change docs. thanks Danny Garcia
196
+ Add ability to specify Tags to AWS cfn-create-stack call. thanks David Chen
197
+ Remove tabs... thanks David Chen
198
+ Added test for Fog::Openstack::authenticate_v2. thanks Eric Hodel
199
+ Raise a NotFound exception for missing services. thanks Eric Hodel
200
+ Add OpenStack EC2 credentials requests. thanks Eric Hodel
201
+ Added OpenStack EC2 credential management models. thanks Eric Hodel
202
+ Added documentation for OS-EC2 requests. thanks Eric Hodel
203
+ Ruby 1.8.7 does not allow trailing commas in method arguments. thanks Eric Hodel
204
+ Ruby 1.8.7 does not allow trailing commas in method arguments (for remaining files). thanks Eric Hodel
205
+ OpenStack create_server mocks now match reality. thanks Eric Hodel
206
+ Added mock for Fog::Identity#get_user_by_name. thanks Eric Hodel
207
+ Removed extra whitespace from previous commit. thanks Eric Hodel
208
+ Store the user_id in the server mock data. thanks Eric Hodel
209
+ Added SIGINT handler to the fog console. thanks Eric Hodel
210
+ OpenStack servers can now retrieve security groups. thanks Eric Hodel
211
+ adds support for bucket transitioning/fixes bucket lifecycle management. thanks Eric Stonfer
212
+ fixed bug where Fog::Storage::Rackspace::File raised Fog::Storage::Rackspace::NotFound if file was created with passed etag attribute. Changed to check existence based on last_modified instead of etag. thanks Evan Smith
213
+ Added multi-region support for OpenStack Image service. thanks Joe Topjian
214
+ use CGI.escapeHTML instead of CGI.escape. thanks John Parker
215
+ Correct the Blue Box create_block method to check for ssh_public_key, not public_key. thanks Josh Kalderimis
216
+ Correct the docs for the ssh_public_key option. thanks Josh Kalderimis
217
+ added create_image and delete_image to Compute::RackspaceV2 Fixes #1351. thanks Kyle Rames
218
+ added a mock for Compute::RackspaceV2 delete_image; Compute::RackspaceV2 has not implemented mocking support however. thanks Kyle Rames
219
+ Updated Fog.wait_for to throw a timeout exception instead of returning false #1368. thanks Kyle Rames
220
+ updating wait_for timeout message per conversation with @geemus. thanks Kyle Rames
221
+ Modified Fog::Compute::RackspaceV2 destroy image test from test setup. thanks Kyle Rames
222
+ Updated Fog::Rackspace::Errors::Service error to include the HTTP response code to aid in debugging. thanks Kyle Rames
223
+ Fixing html escape typo in the Rackspace section of the Fog storage instructions. thanks Kyle Rames
224
+ added create_snapshot method to Fog::Rackspace::BlockStorage::Volume. thanks Kyle Rames
225
+ updated save method in Fog::Rackspace::BlockStorage::Volume and Fog::Rackspace::BlockStorage::Snapshot to skip creating cloud reources if identity was already set Fixes #1402. thanks Kyle Rames
226
+ Updated default Rackspace Compute provider to return a Fog::Compute::RackspaceV2 instance. In order to access legacy Cloud Servers, a :version => :v1 parameter will need be passed like so Fog::Compute.new({ :provider => 'Rackspace', :rackspace_username => USER, :rackspace_api_key => API_KEY, :version => :v1 }). thanks Kyle Rames
227
+ Updated the save method in Fog::Rackspace::BlockStorage::Volume and Fog::Rackspace::BlockStorage::Snapshot to throw an exception if the identity attribute is set per geemus; rebased code to latest master. thanks Kyle Rames
228
+ updating Compute[:rackspace] to use v1 provider. thanks Kyle Rames
229
+ Updated compute model tests to take a provider parameter; Updated tests to run tests for Rackspace Compute V1. I will add V2 when the mocks are complete. thanks Kyle Rames
230
+ reverted back to version 1 of the Rackspace compute interface along with a deprecation warning. thanks Kyle Rames
231
+ implemented list_addresses for Fog::Compute::RackspaceV2. thanks Kyle Rames
232
+ implemented list_addresses_by_network for Fog::Compute::RackspaceV2. thanks Kyle Rames
233
+ added server metadata operations for Fog::Compute::RackspaceV2. thanks Kyle Rames
234
+ refactored Fog::Compute::RackspaceV2 metadata to take collection as a parameter rather than using it as part of the method name. thanks Kyle Rames
235
+ fixing broken metadata tests. thanks Kyle Rames
236
+ changed metadata implementation for Fog::Compute::RackspaceV2::Server and Fog::Compute::RackspaceV2::Image. thanks Kyle Rames
237
+ changing variable names to make code clearer. thanks Kyle Rames
238
+ fixing broken tests. thanks Kyle Rames
239
+ added better acceptance criteria to server/image metadata tests; added metadata to ignored_attributes to address bug. thanks Kyle Rames
240
+ fixing merge issues with master. thanks Kyle Rames
241
+ fixing typo. thanks Kyle Rames
242
+ fixing broken tests. thanks Kyle Rames
243
+ tweaking tests and error handling. thanks Kyle Rames
244
+ merge in latest master. thanks Kyle Rames
245
+ Updated Fog::Logger to log to standard out if DEBUG=true is passed in through the environment. thanks Kyle Rames
246
+ Fixing merge conflicts. thanks Kyle Rames
247
+ fixing merge issues. thanks Kyle Rames
248
+ tweaking whitespace in order to get travis to rebuild. thanks Kyle Rames
249
+ tweaking whitespace one more time in order to get travis to rebuild. thanks Kyle Rames
250
+ initial revision of rackspace documentation. thanks Kyle Rames
251
+ Support AWS S3 cors configuration for buckets. thanks Lee Henson
252
+ adding support for rackspace loadbalancer content caching. thanks Luiz Ribeiro
253
+ Added request create_folder for vsphere compute. This will create a vm folder in vsphere. thanks Matthew Black
254
+ Expanded vm_clone to allow for setting up static ip for first nic. thanks Matthew Black
255
+ Add Gem Version badge. thanks Michael Rykov
256
+ Added new output to vm_clone.rb Fixed 'path' attribute on server model fixed server.clone function and added some documentation. thanks Nick Huanca
257
+ Fixed path for folder attribute model. thanks Nick Huanca
258
+ Added a new attribute to server model (relative_path) cleaned up clone function from server model Added better use of resource pool, dest_folder Added new datastore selection, simplified vm_clone.rb Added Customization specs for linux machines Added a new call from datacenters method to grab virtual_servers in datacenter. thanks Nick Huanca
259
+ fixed up issues with vm_clone looking for methods that didn't exist tested with wait => true, wait => false fails since it cannot load model while server is still being created. thanks Nick Huanca
260
+ added styling fix. thanks Nick Huanca
261
+ Fixed up tests. thanks Nick Huanca
262
+ fixed up some issues with the tests, needs more work and thought. thanks Nick Huanca
263
+ added a note about ugliness and needing more help with tests. thanks Nick Huanca
264
+ Adds badge for dependencies status. thanks Paul Thornthwaite
265
+ Make use of #persisted? method. thanks Paul Thornthwaite
266
+ Removes tags file from repo. thanks Paul Thornthwaite
267
+ Revert "add GitHub Flavored Markdown to README". thanks Paul Thornthwaite
268
+ add GitHub Flavored Markdown to README. thanks Phil Cohen
269
+ Fix typo and use #get_header to handle mixed-case header keys. thanks Rida Al Barazi
270
+ Adding describe_reserved_cache_nodes.rb ' '. thanks Sean Hart
271
+ Added Tests for Elasticache Reservations. thanks Sean Hart
272
+ Added missing HostMetrics model. thanks Sergio Rubio
273
+ Added some task descriptions so they show up with 'rake -T'. thanks Sergio Rubio
274
+ Alias 'rake build' task with 'rake gem'. thanks Sergio Rubio
275
+ Introduce AWS::COMPLIANT_BUCKET_NAMES constant. thanks Stephan Kaag
276
+ fix typo. thanks Steve Agalloco
277
+ list all VMs in nested folders. thanks Tejas Ravindra Mandke
278
+ search through all network adapters recursively to find one being searched for. thanks Tejas Ravindra Mandke
279
+ a few workarounds allowing aws plugin to work with Eucalyptus cloud. thanks Tomasz Bak
280
+ unit test for the XML namespace handling workaround. thanks Tomasz Bak
281
+ a workaround for lack of handling XML namespaces directly (required by Eucalyptus endpoint). thanks Tomasz Bak
282
+ add IamInstanceProfile abilitie. thanks Topper Bowers
283
+ fix existing spot specs. thanks Topper Bowers
284
+ support parsing the iamInstanceProfile. thanks Topper Bowers
285
+ Properly return all alarms. thanks Trotter Cashion
286
+ add aws page - wip #1350. thanks Weston Platter
287
+ work in progress #1350 - change tabs to spaces. thanks Weston Platter
288
+ complete #1350 add link to index page referencing storage/aws.hmtl. thanks Weston Platter
289
+ issue/1350 [doc] add options param. thanks Weston Platter
290
+ issue/1350 [doc] add key to options hash -- encryption. thanks Weston Platter
291
+ issue/1350 [doc] add other key to options hash. thanks Weston Platter
292
+ Added a cors (with bucket) item to the data has of the Storage AWS Mock class (upon creation of the hash). This is to prevent put_bucket_cors from failing during tests. thanks epdejager
293
+ Added a test for put_bucket_cors to make sure it runs in a test (mock) scenario. thanks epdejager
294
+ remove docs and related, they now live at fog/fog.github.com. thanks geemus
295
+ update copyright notice year. thanks geemus
296
+ rescue/retry when loading gems (possibly without rubygems) closes #901. thanks geemus
297
+ added floatingip. thanks kanetann
298
+ added associate_floatingip and disassosiate_floatingip mock test. thanks kanetann
299
+ update associate_floatingip for real. thanks kanetann
300
+ deleted update_floatingip and changed variable name from floating_network_id to floatingip_id. thanks kanetann
301
+ fixed disassociate_floatingip bug and update floatingip-* mock values. thanks kanetann
302
+ updated for ruby naming conventions. thanks kanetann
303
+ deleted old files eg. floatingip.rb. thanks kanetann
304
+ Bug fix: Ensure Fog::VERSION gets defined. thanks ronen barzel
305
+ remove const_defined? guard. thanks ronen barzel
306
+
307
+ [ninefold|compute]
308
+ Updates reference to service. thanks Paul Thornthwaite
309
+
310
+ [openstack]
311
+ Show an error message when there aren't any endpoints available for a region. thanks Ferran Rodenas
312
+ Show an error message when there aren't any endpoints available for a region. thanks Ferran Rodenas
313
+ Update Mocks and Cleanup Unused Code. thanks Nelvin Driz
314
+ Fix Test. thanks Nelvin Driz
315
+ Replaces #new_record? with #persisted?. thanks Paul Thornthwaite
316
+ Updates reference to service. thanks Paul Thornthwaite
317
+
318
+ [openstack|compute]
319
+ Update Quota Mocks based on Folsom Stable. thanks Nelvin Driz
320
+
321
+ [openstack|identity]
322
+ Update User Role Membership Mocks. thanks Nelvin Driz
323
+ Added sample code to README.identity.md. thanks Sergio Rubio
324
+ replace to_json with Fog::JSON.encode. thanks Sergio Rubio
325
+
326
+ [openstack|image]
327
+ Fixes #1383. thanks Sergio Rubio
328
+ Configurable :openstack_endpoint_type. thanks Sergio Rubio
329
+
330
+ [ovirt|compute]
331
+ Updates reference to service. thanks Paul Thornthwaite
332
+
333
+ [rackspace]
334
+ compute_v2 and blockstorage are mocked [ecloud] fixed a test and removed connection deprecation notices. thanks Eugene Howe
335
+ Moved methods to MockData module. thanks Eugene Howe
336
+ updated Rackspace to return a list of all services. thanks Kyle Rames
337
+ Updates reference to service. thanks Paul Thornthwaite
338
+ Fixes nesting of tests. thanks Paul Thornthwaite
339
+
340
+ [rackspace|compute]
341
+ updated rebuild to support passing additional options. thanks Kyle Rames
342
+ added attach_volume method to server; cleaned up attachment model. thanks Kyle Rames
343
+ server update method now updates accessIPv4, accessIPv6, as well as name; made server request tests more robust. thanks Kyle Rames
344
+ made device an optional parameter in attach_volume method and request; split volume_attach and attachments into two different tests. thanks Kyle Rames
345
+ tweaked server model tests; updated ready? method to support different ready states as well as checking for error states. thanks Kyle Rames
346
+
347
+ [rackspace|dns]
348
+ creating a record now uses specified ttl. thanks Andreas Gerauer
349
+
350
+ [rackspace|storage]
351
+ Updates 'connection' references. thanks Paul Thornthwaite
352
+
353
+ [serverlove|compute]
354
+ Updates reference to service. thanks Paul Thornthwaite
355
+
356
+ [storm_on_demand]
357
+ Updates reference to service. thanks Paul Thornthwaite
358
+
359
+ [terremark]
360
+ Updates reference to service. thanks Paul Thornthwaite
361
+
362
+ [vcloud]
363
+ Replaces #new_record? with #persisted?. thanks Paul Thornthwaite
364
+
365
+ [vcloud|compute]
366
+ Updates reference to service. thanks Paul Thornthwaite
367
+
368
+ [virtual_box|compute]
369
+ Updates reference to service. thanks Paul Thornthwaite
370
+
371
+ [vmfusion]
372
+ Updates reference to service. thanks Paul Thornthwaite
373
+
374
+ [voxel|compute]
375
+ Updates reference to service. thanks Paul Thornthwaite
376
+
377
+ [vsphere]
378
+ allow to create a vm with multiple disks. thanks Ohad Levy
379
+
380
+ [vsphere|compute]
381
+ Updates reference to service. thanks Paul Thornthwaite
382
+ Reverts change of connection. thanks Paul Thornthwaite
383
+
384
+ [xenserver]
385
+ Fix Fog::XenServer::Connection.authenticate. thanks Oguz Bilgic
386
+ Added HostMetrics tests. thanks Sergio Rubio
387
+ added create_sr request (create Storage Repository). thanks Sergio Rubio
388
+ added destroy_sr request (destroy Storage Repository). thanks Sergio Rubio
389
+ added unplug_pbd request. thanks Sergio Rubio
390
+ added new requests to compute service. thanks Sergio Rubio
391
+ added unplug method to PBD model. thanks Sergio Rubio
392
+ missing Pool model attribute, new methods. thanks Sergio Rubio
393
+ added new methods to StorageRepository model. thanks Sergio Rubio
394
+ updated create_sr request documentation, fixed default values. thanks Sergio Rubio
395
+ add missing PBD 'currently_attached' attribute. thanks Sergio Rubio
396
+ StorageRepository.save should use sane defaults. thanks Sergio Rubio
397
+ add missing host operations (enable/disable, reboot, shutdown). thanks Sergio Rubio
398
+ added missing HostCpu model. thanks Sergio Rubio
399
+ added missing host_cpus attribute to Host model. thanks Sergio Rubio
400
+ add missing Host attributes (edition, software_version). thanks Sergio Rubio
401
+ replace #connection with #service in models. thanks Sergio Rubio
402
+ Use Nokogiri instead of slow REXML for parsing. thanks deepj
403
+
404
+ [xenserver|compute]
405
+ Updates reference to service. thanks Paul Thornthwaite
406
+ added getting started examples. thanks Sergio Rubio
407
+
408
+ [xenserver|docs]
409
+ Added maintainer/attribution header to README.md. thanks Sergio Rubio
410
+ added creating_servers.md tutorial. thanks Sergio Rubio
411
+ added storage repositories examples. thanks Sergio Rubio
412
+ added some color!, minor format fixes. thanks Sergio Rubio
413
+ Added new example that covers a Citrix KB ctx116324 article. thanks Sergio Rubio
414
+ Added XenServer provider specific ChangeLog. thanks Sergio Rubio
415
+
416
+ [xenserver|tests]
417
+ Added create_sr request tests. thanks Sergio Rubio
418
+ Added destroy_sr request tests. thanks Sergio Rubio
419
+ add unplug_pbd request tests. thanks Sergio Rubio
420
+ tests PBDs plug/unplug operation. thanks Sergio Rubio
421
+ added more pool tests to cover the new functionality. thanks Sergio Rubio
422
+ added missing SotorageRepository tests. thanks Sergio Rubio
423
+ added HostCpu model tests. thanks Sergio Rubio
424
+ typo fix. thanks Sergio Rubio
425
+ test Host.host_cpus method. thanks Sergio Rubio
426
+
427
+ [zerigo|dns]
428
+ Updates reference to service. thanks Paul Thornthwaite
429
+
430
+
431
+ 1.8.0 12/01/2012 057c0c525a39e77cb2037c9fec3d851b209c151b
432
+ =========================================================
433
+
434
+ Stats! { 'collaborators' => 41, 'downloads' => 1334733, 'forks' => 630, 'open_issues' => 98, 'watchers' => 2258 }
435
+
436
+ [AWS]
437
+ Adds ModifyVolumeAttribute. thanks Eric Stonfer
438
+
439
+ [Brightbox]
440
+ Removes incorrect yard tag. thanks Paul Thornthwaite
441
+ Updates request docs to use Yard. thanks Paul Thornthwaite
442
+ Adds baseline documentation. thanks Paul Thornthwaite
443
+ Documents #request method. thanks Paul Thornthwaite
444
+ Comments out rogue text. thanks Paul Thornthwaite
445
+ Fixes generated files EOF with newlines. thanks Paul Thornthwaite
446
+ Adds Servers#bootstrap. thanks Paul Thornthwaite
447
+ Adds way to check auth method. thanks Paul Thornthwaite
448
+ Adds reset FTP for scoped accounts. thanks Paul Thornthwaite
449
+ Fixes Compute#account to pass service. thanks Paul Thornthwaite
450
+ Fixes Account#reset_ftp_password. thanks Paul Thornthwaite
451
+ Fixes test to run out of sequence. thanks Paul Thornthwaite
452
+ Expands documentation for Compute class. thanks Paul Thornthwaite
453
+ Tests recognised options. thanks Paul Thornthwaite
454
+ Refactors credential code in Compute. thanks Paul Thornthwaite
455
+ Extracts authentication connection. thanks Paul Thornthwaite
456
+ Refactors how tokens are requested. thanks Paul Thornthwaite
457
+ Moves tokens to CredentialSet. thanks Paul Thornthwaite
458
+ Extracts parts of request out of compute. thanks Paul Thornthwaite
459
+ Adds support for refresh tokens. thanks Paul Thornthwaite
460
+ Adds option to disable token management. thanks Paul Thornthwaite
461
+ Adds means to update scoped account. thanks Paul Thornthwaite
462
+ Moves more of public API into Shared. thanks Paul Thornthwaite
463
+ Guards unimplemented mock tests. thanks Paul Thornthwaite
464
+
465
+ [Docs]
466
+ Switches to using Yard for documentation. thanks Paul Thornthwaite
467
+
468
+ [aws]
469
+ fixed auto scaling model group 'destroy' method where it needs to use merge! instead of merge to set the opts local variable in place, otherwise the options passed to the method are droppedon the floor. thanks Jay Perry
470
+
471
+ [aws|compute]
472
+ add offeringType to output from describe_reserved_instances_offerings. thanks geemus
473
+ fix mocks/tests around describe_reserved_instances_offerings. thanks geemus
474
+ fix one more offeringType mock format test failure. thanks geemus
475
+
476
+ [aws|dynamodb]
477
+ port off of sts for credentials, now uses signature v4. thanks geemus
478
+
479
+ [aws|storage]
480
+ Add Fog::Storage::AWS#delete_multiple_objects. thanks Garret Alfert
481
+ Add mock for Fog::Storage::AWS#delete_multiple_objects. thanks Garret Alfert
482
+ Little improvements to delete_multiple_objects tests. thanks Garret Alfert
483
+ Add Fog::Storage::AWS#delete_multiple_objects. thanks Garret Alfert
484
+ Add mock for Fog::Storage::AWS#delete_multiple_objects. thanks Garret Alfert
485
+ Little improvements to delete_multiple_objects tests. thanks Garret Alfert
486
+
487
+ [core]
488
+ Adds fog User-Agent header. thanks Paul Thornthwaite
489
+ Splits Fog::VERSION into own file. thanks Paul Thornthwaite
490
+ Adds fog User-Agent header. thanks Paul Thornthwaite
491
+ Updates Rakefile to use Fog::VERSION. thanks Paul Thornthwaite
492
+
493
+ [dns]
494
+ Add more record tests. thanks Brian Hartsock
495
+
496
+ [docs]
497
+ Updates link on fog.io to point to doc. thanks Paul Thornthwaite
498
+ Updates contributing notes. thanks Paul Thornthwaite
499
+ Replaces link to API to `rubydoc.info`. thanks Paul Thornthwaite
500
+ Adds 1.8.7 note to fog.io collaborators guide. thanks Paul Thornthwaite
501
+
502
+ [misc]
503
+ Add support for AWS Australia (ap-southeast-2). thanks Amy Woodward
504
+ Add Hosted Zone ID for ap-southeast-2. thanks Amy Woodward
505
+ Do not add empty security group. thanks Dan Bode
506
+ Add attr group. thanks Dan Bode
507
+ Sync with latest OpenStack flavors extensions. thanks Dan Prince
508
+ OpenStack floating_ip (aka address) test fixes. thanks Dan Prince
509
+ OpenStack: Remove volumes from limits tests. thanks Dan Prince
510
+ OpenStack: updates to quota tests. thanks Dan Prince
511
+ OpenStack: security group test fixes. thanks Dan Prince
512
+ add support for Storage::Rackspace::File#access_control_allow_origin and #origin. thanks Dusty Jones
513
+ add support for Storage::Rackspace::File#access_control_allow_origin and #origin. thanks Dusty Jones
514
+ Save the file instance before testing for presence of attribute. thanks Dusty Jones
515
+ Fix describe_instances stateReason handling. thanks Edward Muller
516
+ added support for Storage::Rackspace::File#metadata. thanks Evan Smith
517
+ added support for Storage::Rackspace::File#metadata. thanks Evan Smith
518
+ merged with origin. thanks Evan Smith
519
+ Rackspace Cloud Files. can load metadata from existing file. can set metadata for new file. can unset metadata for existing file. thanks Evan Smith
520
+ merged with upstream master. thanks Evan Smith
521
+ Implemented bootstrap method for Rackspace Compute v2. Added ability to set "metadata" and "personality" fields when creating a server on Rackspace Compute v2. Improved response parsing when dealing with Rackspace DNS service. thanks Jesse Scott
522
+ Removed the commented out password setting line for Rackspace Compute v2 bootstrap method. thanks Jesse Scott
523
+ Clarified the logic for finding the newly created DNS record for Rackspace Cloud DNS. thanks Jesse Scott
524
+ fix warning message to follow correct bucket naming guidelines. thanks Michael Elfassy
525
+ Bucket names cannot begin with the "goog" prefix. Also change for DNS compliant subdomain. thanks Michael Elfassy
526
+ VMWare vsphere provider refactor. thanks Ohad Levy
527
+ do not force trailing / on path. thanks Ohad Levy
528
+ Removes dead link to DNS tests. thanks Paul Thornthwaite
529
+ Adds link to Code Climate metrics. thanks Paul Thornthwaite
530
+ Extracts Changelog Rake task to class. thanks Paul Thornthwaite
531
+ Moves fog.io generation a prerequsite. thanks Paul Thornthwaite
532
+ Extracts docs rake tasks to a class. thanks Paul Thornthwaite
533
+ Extracts testing Rake tasks to class. thanks Paul Thornthwaite
534
+ Moves new Task classes to better location. thanks Paul Thornthwaite
535
+ Revert "[core] Adds fog User-Agent header". thanks Paul Thornthwaite
536
+ Inconsistent usage of cpus / vpcus in libvirt / requests. Reported number of cpus was always 1 for libvirt domains. thanks Romain Vrignaud
537
+ use CGI.escape when encoding the POST body. thanks Sam Cooper
538
+ Added versioned delete_multiple_objects support. thanks Timur Alperovich
539
+ Add support for volume_pool_name. thanks Vincent Demeester
540
+ fixes issue#1313 ~ Creating user via `Aws.iam.users` ignores `:path`. thanks VirtualStaticVoid
541
+ revised create logic to default path to '/'. thanks VirtualStaticVoid
542
+ added test for create logic to default path to '/'. thanks VirtualStaticVoid
543
+ added support for mock. thanks VirtualStaticVoid
544
+ revised test order. thanks VirtualStaticVoid
545
+ README: s/'cloud computing'/'cloud services'. thanks Wesley Beary
546
+ Adding explicit support for metadata for Rackspace compute_v2. thanks heyryanw
547
+ removed Fog::AWS[:rds] this was creating issues with was security credentials. thanks mauro catenacci
548
+ Adding public_ip_address and private_ip_address to Fog::Compute::RackspaceV2::Server. thanks sashap
549
+ Adding bootstrap and setup for RackspaceV2 servers. thanks sashap
550
+
551
+ [openstack]
552
+ Add Accept header with application/json media type to requests. thanks Andrew Donald Kennedy
553
+ Refactor Openstack Authentication. thanks Nelvin Driz
554
+ Fix Typo in Merge of Authentication Refactoring. thanks Nelvin Driz
555
+ Make use of the unscoped token for reauthentication. thanks Philip Mark M. Deazeta
556
+
557
+ [openstack|compute]
558
+ Add "Reset Server State" request. thanks Nelvin Driz
559
+ Add `get_limits` request. thanks Nelvin Driz
560
+
561
+ [openstack|identity]
562
+ use tenant_id parameter in users model. thanks Philip Mark M. Deazeta
563
+ Add `attr_accessor :unscoped_token` to Mock. thanks Philip Mark M. Deazeta
564
+
565
+ [opnestack|identity]
566
+ Added set_tenant request for identity service. thanks Philip Mark M. Deazeta
567
+
568
+ [rackspace|computev2]
569
+ aded test for bootstrap. thanks Brian Hartsock
570
+
571
+ [rackspace|dns]
572
+ fixed tests, merged some formatting to reduce duplication. thanks Brian Hartsock
573
+
574
+ [rackspace|storage]
575
+ rackspace files tests should be pending in mocked mode. thanks geemus
576
+
577
+ [readme]
578
+ update outdated sponsorship section. thanks geemus
579
+
580
+ [vsphere]
581
+ ensure reload works correctly for server. thanks Ohad Levy
582
+
583
+
584
+ 1.7.0 11/04/2012 aa853488c9d84d849f52cf348787030fbb963163
585
+ =========================================================
586
+
587
+ Stats! { 'collaborators' => 41, 'downloads' => 1216554, 'forks' => 599, 'open_issues' => 80, 'watchers' => 2206 }
588
+
589
+ MVP! Nick Osborn
590
+
591
+ [AWS::Mock|create_image]
592
+ automatic registration of ebs image upon image_create. thanks Chielo Zimmerman
593
+
594
+ [AWS|Glacier]
595
+ Fix description header not being passed through Fog.escape. thanks Frederick Cheung
596
+
597
+ [Brightbox]
598
+ Change code to return Single user. thanks Hemant Kumar
599
+ Adds ApiClient Model. thanks Hemant Kumar
600
+ Add identifier to get_account method. thanks Hemant Kumar
601
+ Reuses connection for image selection. thanks Paul Thornthwaite
602
+ Fixes cloud IP options default. thanks Paul Thornthwaite
603
+ Deprecates overloaded requests. thanks Paul Thornthwaite
604
+ Standardises update_firewall_rule. thanks Paul Thornthwaite
605
+ Deprecates old account update request. thanks Paul Thornthwaite
606
+ Use correct request to update account. thanks Paul Thornthwaite
607
+ Brightbox tests should select the smallest official image. thanks Steve Smith
608
+ Allows authentication as user. thanks Steve Smith
609
+ Allow users to lists all accounts associated with the current credentials. thanks Steve Smith
610
+ add support for User Applications. thanks Steve Smith
611
+
612
+ [HP|Storage]
613
+ remove debug output. thanks geemus
614
+
615
+ [Ninefold|Storage]
616
+ Use Atmos in Ninefold storage. thanks Timur Alperovich
617
+
618
+ [aws|auto_scaling]
619
+ update display_*_types. thanks Nick Osborn
620
+ Fix documentation URL. thanks Nick Osborn
621
+ support termination policies. thanks Nick Osborn
622
+ correct DefaultCooldown in mocks. thanks Nick Osborn
623
+ documentation tinkering. thanks Nick Osborn
624
+ support ForceDelete for delete_auto_scaling_group. thanks Nick Osborn
625
+ better tag handling. thanks Nick Osborn
626
+ DRY out ARNs in mocks. thanks Nick Osborn
627
+ document Tags option to create_auto_scaling_group. thanks Nick Osborn
628
+ fix AutoScalingGroupName in mock. thanks Nick Osborn
629
+ expose delete_notification_configuration request. thanks Nick Osborn
630
+ improve describe_*_types test. thanks Nick Osborn
631
+ improve notification configurations. thanks Nick Osborn
632
+ s/data/self.data/ in mocks. thanks Nick Osborn
633
+ mark describe_*_types requests as idempotent. thanks Nick Osborn
634
+ tags support. thanks Nick Osborn
635
+ expose termination policies in group model. thanks Nick Osborn
636
+
637
+ [aws|autoscaling]
638
+ fix casting availability_zones to array in create_auto_scaling_group mock. thanks geemus
639
+ mark problematic auto_scaling mocked tests as pending see also #1183. thanks geemus
640
+
641
+ [aws|cdn]
642
+ cover AWS CDN with some non-exhaustive tests. thanks Brice Figureau
643
+ Implements AWS CDN get_invalidation request. thanks Brice Figureau
644
+ fix incorrect get_invalidation result. thanks Brice Figureau
645
+ add aws cdn tests for streaming distributions. thanks Brice Figureau
646
+ fix cdn documentation. thanks Brice Figureau
647
+ AWS CDN models. thanks Brice Figureau
648
+ add request mock support for AWS Cloudfront. thanks Brice Figureau
649
+ fix up failing mocked tests around invalidations. thanks geemus
650
+
651
+ [aws|cloud_watch]
652
+ Add instrumentation support. thanks Michael Hale
653
+
654
+ [aws|ec2]
655
+ describe_availability_zones parser handles nested <item> tags. thanks Aaron Suggs
656
+
657
+ [aws|rds]
658
+ add region and owner_id as RDS connection attributes. thanks Benton Roberts
659
+ add request definitions for RDS tagging and increment RDS API version. thanks Benton Roberts
660
+ add tests for RDS tagging requests. thanks Benton Roberts
661
+ add tagging methods to RDS server model. thanks Benton Roberts
662
+ add tagging tests for RDS server model. thanks Benton Roberts
663
+ store mocked RDS instance tags in connection object. thanks Benton Roberts
664
+ FIX non-1.8-compliant syntax bug. thanks Benton Roberts
665
+
666
+ [misc]
667
+ modified create function to include options. changed "diskConfig" to "OS-DCF:diskConfig" to allow disk configuration to be properly set. thanks Alex Dunn
668
+ Removed options attribute and used the already existing disk_config attribute instead. Passed in options hash to create_server method with disk_config attribute unless nil. thanks Alex Dunn
669
+ Replace nil return value with private IP, implementation as in public_ip_address method. thanks Andrew Taylor
670
+ Change the metadata method to support amazon tags such as x-amz-website-redirect-location. thanks Arthur Gunawan
671
+ Fix issue #1245 - mock register_image fails with block device mapping. thanks Brice Figureau
672
+ Added ninefold load balancers. thanks Carl Woodward
673
+ Added other commands for load balancers. thanks Carl Woodward
674
+ Fix create load balancer test. thanks Carl Woodward
675
+ Add assign list to load balancer rules and update load balancer rule for Ninefold. thanks Carl Woodward
676
+ Add remove from load balancer test. thanks Carl Woodward
677
+ Move ssh private_key, public_key, username to Server model to reduce duplication. thanks Carlos Sanchez
678
+ Joyent server creation should not wait for server to be ready. thanks Carlos Sanchez
679
+ Added ParameterValue to engine_defaults_parser. thanks Curtis Stewart
680
+ Added outputs 'Description' field to DescribeStacks parser. thanks Curtis Stewart
681
+ Make region available to mock. thanks Edward Muller
682
+ Added OpenStack::Server#created and #updated. thanks Eric Hodel
683
+ Use :default from tests/.fog for test credentials. thanks Eric Hodel
684
+ Only run mocked tests by default. thanks Eric Hodel
685
+ Tested handling of Openstack server created and updated times. thanks Eric Hodel
686
+ create image now supports block device mapping. thanks Eric Stonfer
687
+ create image extended to allow for EBS volume handling. thanks Eric Stonfer
688
+ fix indexed_param usage. thanks Eric Stonfer
689
+ forgot to commit some changes. thanks Eric Stonfer
690
+ when querying servers by icenter group, servers will return nil. fixed this. thanks Eugene Howe
691
+ fixed bad request names. thanks Eugene Howe
692
+ correct the options checking in BlueBox create_block. thanks Josh Kalderimis
693
+ changed list nova servers request to get details. thanks Julio Feijo
694
+ Correct the handling of the power_on option. thanks Karan Misra
695
+ Added support for scheduler_hints in OpenStack. thanks Mariusz Pietrzyk
696
+ add force option to auto scaling group destroy method. thanks Michael Hale
697
+ use hash args. thanks Michael Hale
698
+ [AWS|cloud_watch]: fix list_metrics NextMarker should be NextToken. thanks Michael Hale
699
+ Fix to resolve "objectid is required for this operation" error message when calling public_url. thanks Michael Harrison
700
+ Fix to resolve "objectid is required for this operation" error message when calling public_url. thanks Michael Harrison
701
+ Return nil on public_url if the file isn't present on the cloud storage. thanks Michael Harrison
702
+ Added file existence check before file deletion attempt. thanks Michael Harrison
703
+ Rolled back deletion guard as some may be using the exception raised in their code. thanks Michael Harrison
704
+ Changed Atmos::FIle.public_url so an exception is thrown if the file doesn't exist on the cloud storage. thanks Michael Harrison
705
+ Changed Atmos::FIle.public_url so returns nil if the file doesn't exist on the cloud storage. This brings the method in line with other storage implementations such as AWS and Rackspace. thanks Michael Harrison
706
+ Changed Atmos::FIle.public_url so checks for existence of the file on storage on every call to the method minimising the potential for a 404 error. thanks Michael Harrison
707
+ added documentation. thanks Nick Huanuca
708
+ ammend dest_folder disclaimer. thanks Nick Huanuca
709
+ fixed vm listing problem. thanks Ohad Levy
710
+ Allows tests to run against FOG_RC setting. thanks Paul Thornthwaite
711
+ Beginning implementation of RDS subnet groups. thanks Rusty Geldmacher
712
+ Changes RDS subnet attribute name from subnets to subnet_ids. thanks Rusty Geldmacher
713
+ allow port to be included in queue_url. thanks Sairam
714
+ Fixed typos in elasticache and rds describe_events. Added better documentation of describe_events. thanks Sean Hart
715
+ Added test for describe_events.rb. It is very simple, and I'm not familiar with Shindo, so may need some assistance expanding. thanks Sean Hart
716
+ Added parsing for Marker. AWS limits response to 100 lines and gives you a marker to get the next batch with. thanks Sean Hart
717
+ Added missing header. thanks Stephen von Takach
718
+ Bumped mocked maximum value for provisioned iops. thanks Thom Mahoney
719
+ Ignore existing directory when creating on local storage. thanks Thomas Wright
720
+ Add config instructions to README. thanks Thomas Wright
721
+ Fix reference to config file. thanks Thomas Wright
722
+ expect public_key option instead of ssh_key on block create. thanks Trevor Bramble
723
+ Added usagePrice the hourly cost for a reserved instance. thanks Ulf Mansson
724
+ Added RDS describe_events. thanks Your Name
725
+ Created describe events for RDS. thanks Your Name
726
+ Update lib/fog/vsphere/requests/compute/vm_clone.rb. thanks endzyme
727
+ Update lib/fog/vsphere/requests/compute/vm_clone.rb. thanks endzyme
728
+ Update lib/fog/vsphere/requests/compute/vm_clone.rb. thanks endzyme
729
+
730
+ [ninefold|compute]
731
+ update load balancer tests to pass hash parameters for backwards compatability. thanks geemus
732
+ mark before/after blocks as pending in mocked mode also. thanks geemus
733
+
734
+ [openstack]
735
+ Authentication Mocks. thanks Nelvin Driz
736
+ Fix Failing Shindo Tests. thanks Nelvin Driz
737
+ Ensure String Username for Authentication. thanks Nelvin Driz
738
+ Changed volumes attributes of mocks from camelcase to snakecase. thanks Philip Mark M. Deazeta
739
+ Updated mocks for quota, image, tenant and volumes. thanks Philip Mark M. Deazeta
740
+ Fixed mocks for failing shindo tests. thanks Philip Mark M. Deazeta
741
+ Updated 'image update' mocks. thanks Philip Mark M. Deazeta
742
+
743
+ [openstack|compute]
744
+ Added auth_token_expiration. thanks Alfonso Juan Dillera
745
+ Fixed security groups typos. thanks Alfonso Juan Dillera
746
+ Fix Server Mocks and `find_by_id` method. thanks Nelvin Driz
747
+
748
+ [openstack|identity]
749
+ Update for failing mock test. thanks Alvin Garcia
750
+ Update Identity Mocking Process. thanks Nelvin Driz
751
+ Update Fog Mocks on Authentication, User and Roles. thanks Nelvin Driz
752
+
753
+ [openstack|image]
754
+ Added update_members function. thanks Alvin Garcia
755
+ Added updateable attributes. thanks Alvin Garcia
756
+ Added optional attributes to set on create image. thanks Alvin Garcia
757
+ Fixed update image and list public images mocks. thanks Alvin Garcia
758
+ Fix Hash Access on Mock of Create Image. thanks Nelvin Driz
759
+
760
+ [openstack|network]
761
+ Add support for OpenStack Quantum. thanks Ferran Rodenas
762
+ Add filters to networks, ports and subnets. thanks Ferran Rodenas
763
+
764
+ [rackspace|identity]
765
+ user should be alphanumeric. thanks geemus
766
+
767
+
768
+ 1.6.0 09/15/2012 4bd909557fd595a656ebd86a3d7c5849bd923fe1
769
+ =========================================================
770
+
771
+ Stats! { 'collaborators' => 40, 'downloads' => 1015900, 'forks' => 539, 'open_issues' => 55, 'watchers' => 2119 }
772
+
773
+ [AWS]
774
+ Implement signature v4. thanks Frederick Cheung
775
+ Create the time directly in tests, avoids using a method not present in 1.8.7. thanks Frederick Cheung
776
+ avoid spurious test failure when tag test returns before images test. thanks Frederick Cheung
777
+ Adding missing :glacier case for AWS.collections. thanks Frederick Cheung
778
+
779
+ [AWS|AutoScaling]
780
+ Typo in delete_autoscaling_group mock: Autoscaling->AutoScaling. thanks Frederick Cheung
781
+ fix group#instances. thanks Frederick Cheung
782
+ Fix describe_auto_scaling_groups parser added spurious nil groups. thanks Frederick Cheung
783
+ Fix delete_auto_scaling_group.rb mock not raising the same error as real code. thanks Frederick Cheung
784
+
785
+ [AWS|Compute]
786
+ Add the ablity to pass :version and use newer AWS API. thanks Zuhaib M Siddique
787
+
788
+ [AWS|Glacier]
789
+ Bare glacier service. thanks Frederick Cheung
790
+ single part uploads. thanks Frederick Cheung
791
+ multipart uploads. thanks Frederick Cheung
792
+ Jobs requests. thanks Frederick Cheung
793
+ vaults model. thanks Frederick Cheung
794
+ Use bytesize rather than length. thanks Frederick Cheung
795
+ models for archives. thanks Frederick Cheung
796
+ jobs model. thanks Frederick Cheung
797
+ Add notification configuration to model. thanks Frederick Cheung
798
+ mark tests as pending. thanks Frederick Cheung
799
+ byteslice is only available in 1.9.3 - add fallback for 1.9.2. thanks Frederick Cheung
800
+ fix 1.9.2 fallback. thanks Frederick Cheung
801
+ make 1.8.7 friendly. thanks Frederick Cheung
802
+ Fix job type constant. thanks Frederick Cheung
803
+ fix setting description on multipart upload. thanks Frederick Cheung
804
+ fix name of header used for description. thanks Frederick Cheung
805
+ Allow filtering of jobs collection. thanks Frederick Cheung
806
+ Don't try to deserialize json when body is empty. thanks Frederick Cheung
807
+
808
+ [AWS|RDS]
809
+ expose the SnapshotType attribute & allow filtering by it. thanks Frederick Cheung
810
+
811
+ [AWS|Signaturev4]
812
+ allow symbols to be used as header/query keys. thanks Frederick Cheung
813
+
814
+ [AWS|Storage]
815
+ mark upload_part as idempotent so it will be retried automatically. thanks Frederick Cheung
816
+
817
+ [Brightbox]
818
+ Fix output format for brightbox cloud ip. thanks Hemant Kumar
819
+
820
+ [Brightbox|CloudIp]
821
+ Remove duplicate constant definition for port translators. thanks Hemant Kumar
822
+
823
+ [Cloudstack]
824
+ 1.8.7 compat: on 1.8.7 '123'[0] returns the byte value of '0' and not '1'. thanks Frederick Cheung
825
+
826
+ [Core]
827
+ fix format_helper assuming p returns nil. thanks Frederick Cheung
828
+
829
+ [HP]
830
+ delete_if returns the array, not what was deleted. thanks Frederick Cheung
831
+
832
+ [OpenStack]
833
+ fixes wrong method name. thanks Ohad Levy
834
+
835
+ [Openstack]
836
+ Fix mock returning a hash instead of an array. thanks Frederick Cheung
837
+
838
+ [Openstack|Compute]
839
+ Security Groups are not assigned correctly to servers. thanks Ohad Levy
840
+
841
+ [aws|auto_scaling]
842
+ Add instrumentation support. thanks Michael Hale
843
+
844
+ [aws|compute]
845
+ fix typo in deprecation warning. thanks Aaron Suggs
846
+ Nicer interface for security group authorizations. thanks Aaron Suggs
847
+ Add instrumentation support. thanks Dan Peterson
848
+ Support creating and describing volumes with provisioned IOPS. thanks Dan Peterson
849
+ Get instance requests tests working. thanks Dan Peterson
850
+ Support for EBS-optimized instances. thanks Dan Peterson
851
+ Pass empty groupIds when mocking. thanks Dan Peterson
852
+ DescribeInstanceStatus code within eventsSet goes on the item. thanks Dan Peterson
853
+ fixes for spot request waiting see also #841. thanks geemus
854
+ remove brittle instance tests which rely on tests running fast p.s. these fail on travis-ci. thanks geemus
855
+ fix mock filters for internet gateways/subnets/vpcs. thanks geemus
856
+
857
+ [aws|elb]
858
+ Add instrumentation support. thanks Dan Peterson
859
+ fixes for mock tests. thanks geemus
860
+
861
+ [aws|iam]
862
+ Add instrumentation support. thanks Dan Peterson
863
+
864
+ [aws|rds]
865
+ Correct server#read_replica_identifiers when mocking. thanks Aaron Suggs
866
+ Mocking better supports reboot state. thanks Aaron Suggs
867
+ Mocking better supports modifying state. thanks Aaron Suggs
868
+ Fix server tests. thanks Aaron Suggs
869
+ Mocking support for read replicas. thanks Aaron Suggs
870
+ Mock support for setting AZ and MultiAZ. thanks Aaron Suggs
871
+
872
+ [brightbox]
873
+ Use first available image for server tests. thanks Steve Smith
874
+
875
+ [brightbox|ServerGroup]
876
+ ServerGroups can have a nil name. thanks Steve Smith
877
+
878
+ [brightbox|compute]
879
+ Merged outstanding work from Brightbox's fork. thanks Paul Thornthwaite
880
+ Implemented reboot using available API commands. thanks Paul Thornthwaite
881
+ Updates to Test helper for select image. thanks Paul Thornthwaite
882
+ Helper to get default image from API. thanks Paul Thornthwaite
883
+
884
+ [cloudstack|compute]
885
+ remove erroneous comma in merge command. thanks geemus
886
+
887
+ [compute|Ecloud]
888
+ Ecloud should not show up as a valid provider when not providing credentials. thanks Eugene Howe
889
+
890
+ [dynect|dns]
891
+ Only JSON decode when Content-Type says so. Fixes job handling. thanks Dan Peterson
892
+ Job polling should use original expected statuses. thanks Dan Peterson
893
+
894
+ [google/storage]
895
+ Fix docs for new GCS urls. thanks Nat Welch
896
+
897
+ [google|storage]
898
+ update expected format to remove StorageClass. thanks geemus
899
+ also update mocks to omit storageclass. thanks geemus
900
+
901
+ [hp|storage]
902
+ Use response_block param, as excon has deprecated implicit blocks. thanks Ferran Rodenas
903
+
904
+ [misc]
905
+ When using mock mode, Range header is now not ignored in get_object(). thanks Ahmed Al Hafoudh
906
+ Documentation error for delete_object. thanks Alex Tambellini
907
+ Add barebones configuration for Travis CI. thanks Alexander Wenzowski
908
+ add Travis CI build status image. thanks Alexander Wenzowski
909
+ notify #ruby-fog on freenode instead of emailing. thanks Alexander Wenzowski
910
+ remove repository_url from notification template Interpolation of %{repository_url} is currently broken on Travis CI. thanks Alexander Wenzowski
911
+ CloudStack: added registerTemplate request. thanks Aliaksei Kliuchnikau
912
+ CloudStack: listTemplates, registerTemplate requests return hypervisor in the response. thanks Aliaksei Kliuchnikau
913
+ Enable AWS spot requests in a VPC by specifying subnet_id. thanks Ben Turley
914
+ Fix for RDS VPC subnet groups. thanks Ben Turley
915
+ parse ASCII code * in wildcard domain. Fixes #1093. thanks Blake Gentry
916
+ automatically figure out the elb hosted_zone_id if possible. thanks Blake Gentry
917
+ Add source for getting instance mac address. thanks Carl Caum
918
+ Only add VNC password and listen port if present. thanks Carl Caum
919
+ Revert 530122d. thanks Carl Caum
920
+ Abillity to List Images and List SSH Keys. thanks Chirag Jog
921
+ Add support to create, delete internet services. thanks Chirag Jog
922
+ Accept vCPUS and Memory as parameters while creating servers. thanks Chirag Jog
923
+ Minor Fixes: Remove unncessary prints. Use override_path instead of replace class variable path. thanks Chirag Jog
924
+ Fix support to add internet service to the existing Public Ip. thanks Chirag Jog
925
+ Support to configure vapp and add multiple internet services. thanks Chirag Jog
926
+ Remove uneccessary puts. thanks Chirag Jog
927
+ Add support to build/re-build/clobber gem/package/docs. thanks Chirag Jog
928
+ Fix minor issue. thanks Chirag Jog
929
+ Re-work based on Geemus's review. Manage InternetService and NodeService as separate entities Reload server status properly. thanks Chirag Jog
930
+ Revert Rakefile changes. thanks Chirag Jog
931
+ 1.Ability to fetch/list Orgs, Vdcs, Vapps, Servers. 2.Support to customize CPUs and Password. thanks Chirag Jog
932
+ Add ability to configure a vApp with an Org-wide network and associated firewall, NAT rules(limited support). thanks Chirag Jog
933
+ 1.Fix Catalog Listing for vCD 1.5 2.Construct Valid XML to memory configuration 3.Fix Undeploy vCD 1.5. thanks Chirag Jog
934
+ Added m1.medium instance type for AWS flavors. thanks Curtis Stewart
935
+ - 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
936
+ Add gsub to replace URL-encoded characters in the public_url method. thanks Eric Chernuka
937
+ fix reboot guest in vsphere to reboot rather than shutdown guest. thanks Eric Stonfer
938
+ added file upload and ip add capabilities. thanks Eugene Howe
939
+ added error handling for edge cases where there are no networks or ips. thanks Eugene Howe
940
+ [AWS|Glacier} basic vault operations. thanks Frederick Cheung
941
+ fix mock not returning the right data. thanks Frederick Cheung
942
+ set Content-MD5. thanks Frederick Cheung
943
+ Add fqdn to server attributes. thanks Hemant Kumar
944
+ Brightbox : Include licence_name in Image. thanks Hemant Kumar
945
+ Brightbox: Change licence_name type to Fog::Nullable::String. thanks Hemant Kumar
946
+ Add support for port translators. thanks Hemant Kumar
947
+ Rackspace Storage: new request, get_object_https_url. thanks James Healy
948
+ Rackspace Storage: new request, post_set_meta_temp_url_key. thanks James Healy
949
+ Rackspace Storage: a backslash shouldn't be escaped when signing URLS. thanks James Healy
950
+ add a basic spec for Rackspace::Storage#get_object_https_url. thanks James Healy
951
+ add basic spec for Rackspace::Storage##post_set_meta_temp_url_key. thanks James Healy
952
+ Rackspace Storage: fix expiring URLs that contain a hyphen. thanks James Healy
953
+ Add Serverlove directory. thanks James Rose
954
+ Basic Serverlove implementation. thanks James Rose
955
+ Wrong directory. thanks James Rose
956
+ Typo. thanks James Rose
957
+ Proper request arguments. thanks James Rose
958
+ Typo. thanks James Rose
959
+ Still wrong. thanks James Rose
960
+ Works. thanks James Rose
961
+ We want JSON. thanks James Rose
962
+ Typo. thanks James Rose
963
+ add high io flavor to aws flavors. thanks Josh Lane
964
+ Move Dynect endpoint from api2 to api-v4. thanks Marc Seeger
965
+ don't let the Paulistas be left out of the party. thanks Martin Englund
966
+ use 10.04 instead of 12.04. thanks Martin Englund
967
+ Google changed their URL scheme for Cloud Storage. thanks Nat Welch
968
+ Also change GCS url in dir and file models. thanks Nat Welch
969
+ Update lib/fog/hp/models/compute/image.rb. thanks Neill Turner
970
+ Update lib/fog/hp/models/compute/server.rb. thanks Neill Turner
971
+ Update lib/fog/aws/requests/compute/describe_instance_status.rb. thanks Oleg
972
+ Added new Server#fqdn attribute to test helper. thanks Paul Thornthwaite
973
+ Rewrite tests to use 1.8 compatible Hash syntax. thanks Paul Thornthwaite
974
+ Add missing providers to the all_providers list for testing. thanks Paul Thornthwaite
975
+ Use string not symbols for Storage tests to work with Shindo tagging. thanks Paul Thornthwaite
976
+ Retagged tests with strings to be skipped by Shindo. thanks Paul Thornthwaite
977
+ Tagged AWS URL test so correctly ignored by Shindo. thanks Paul Thornthwaite
978
+ Reduce maintenance of tests by using a dynamic list of providers. thanks Paul Thornthwaite
979
+ add support for multiple regions in Opentack. thanks Pedro Perez
980
+ Fixed the link to GitHub issues. thanks Postmodern
981
+ Change iprange --> ec2_secg in Mock. thanks Rob Lockstone
982
+ Added support for RDS VPC subnet groups. Bumped RDS API version to 2012-01-15. thanks Rusty Geldmacher
983
+ Added DBSubnetGroupName to test format for RDS instances. thanks Rusty Geldmacher
984
+ Adding server love disk model. thanks Sean Handley
985
+ Changed disk model based on responses from real API requests. thanks Sean Handley
986
+ Set up drive objects (not disks). thanks Sean Handley
987
+ If you use info, you get all the info. thanks Sean Handley
988
+ Alias the encryption cipher. thanks Sean Handley
989
+ Sometimes the response body is empty. thanks Sean Handley
990
+ Destroying drives is easy. thanks Sean Handley
991
+ Allowed setting of params as k/v pairs. thanks Sean Handley
992
+ Added create/update functionality. thanks Sean Handley
993
+ Made create/save conform to the Fog API. thanks Sean Handley
994
+ Returning self is totes better than bools. thanks Sean Handley
995
+ Fog calls drives "images", rename for consistency. thanks Sean Handley
996
+ Beginnings of shin do request tests. thanks Sean Handley
997
+ Need these to run the server love tests. thanks Sean Handley
998
+ Beginnings of tests for image operations. thanks Sean Handley
999
+ Adding mock for easier testing. thanks Sean Handley
1000
+ Added get_image function. thanks Sean Handley
1001
+ Added meaningful test for updating images. thanks Sean Handley
1002
+ Typo!. thanks Sean Handley
1003
+ Fix conflict. thanks Sean Handley
1004
+ This shouldn't be here. thanks Sean Handley
1005
+ Can't run shindo tests with old references. thanks Sean Handley
1006
+ Added loading of standard image. thanks Sean Handley
1007
+ Shindo tests pass. thanks Sean Handley
1008
+ Test that we can view servers. thanks Sean Handley
1009
+ Whitespace adjustments. thanks Sean Handley
1010
+ CRUDs + tests for servers. thanks Sean Handley
1011
+ Added server power cycle actions + basic tests. thanks Sean Handley
1012
+ Add new request methods to server object. thanks Sean Handley
1013
+ Use get_server, not get_image. thanks Sean Handley
1014
+ Need a mock server id. thanks Sean Handley
1015
+ This was plain wrong - works now!. thanks Sean Handley
1016
+ Don't start servers by default. thanks Sean Handley
1017
+ Contrary to the documentation, this actually returns a 200 status rather than a 204. thanks Sean Handley
1018
+ Allow setting of memory and disk drives. thanks Sean Handley
1019
+ Allow DHCP assignment by default. thanks Sean Handley
1020
+ Key 'vnc:ip' was invalid. thanks Sean Handley
1021
+ Update allowed attributes and defaults. thanks Sean Handley
1022
+ Increase test drive size to accommodate a real image. thanks Sean Handley
1023
+ Without setting SMP the web UI won't load :-/. thanks Sean Handley
1024
+ Reduce from 80GB to 20GB - big enough, save space. thanks Sean Handley
1025
+ Standard images need to be unzipped. thanks Sean Handley
1026
+ Need to wait for imaging to complete. thanks Sean Handley
1027
+ Add a pseudorandom password generator for VNC. thanks Sean Handley
1028
+ Auto generate VNC password randomly. thanks Sean Handley
1029
+ Used the amazon published endpoints for sqs as defined at http://docs.amazonwebservices.com/general/latest/gr/rande.html#sqs_region. thanks Stuart Eccles
1030
+ Better mocks for invalid Provisioned IOPS values. thanks Thom Mahoney
1031
+ Add generic support for EMC Atmos. thanks Timur Alperovich
1032
+ Submit password/ssh_key/username through POST body. thanks Trevor Bramble
1033
+ Update public_url to handle new header casings from Rackspace. thanks Zachary Danger Campbell
1034
+ CloudStack: images.get always returns nil - fixed. thanks alex
1035
+ add changelog for 1.5.0. thanks geemus
1036
+ fixes for cloudstack mock tests see #1090. thanks geemus
1037
+ fix mocked elb tests by including InstanceProtocol closes #1090. thanks geemus
1038
+ expand travis config, build more rubies, use non-threaded runner. thanks geemus
1039
+ just run mri for now on travis. thanks geemus
1040
+ remove empty failure block from model_helper. thanks geemus
1041
+ 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
1042
+ return to expecting 1.8.7 to pass. thanks geemus
1043
+ fix deprecated requires in Rakefile. thanks geemus
1044
+ Made steps to get update/create working. Work in progress. thanks seanhandley
1045
+ Update lib/fog/aws/models/compute/security_group.rb. thanks vkhatri
1046
+
1047
+ [rackspace|blockstorage]
1048
+ Add volume tests. thanks Brad Gignac
1049
+ Add volume type tests. thanks Brad Gignac
1050
+ Add snapshot tests. thanks Brad Gignac
1051
+ Add relationship between volumes and snapshots. thanks Brad Gignac
1052
+ Add block storage provider. thanks Julio Feijo
1053
+ Add volume types to block storage. thanks Julio Feijo
1054
+ Add snapshots to block storage. thanks Julio Feijo
1055
+
1056
+ [rackspace|compute]
1057
+ Add service for Cloud Servers v2.0. thanks Brad Gignac
1058
+ Add flavors and images. thanks Brad Gignac
1059
+ Add servers model and collection. thanks Brad Gignac
1060
+ Set password attribute on V2 servers. thanks Brad Gignac
1061
+ Don't intern nil strings. thanks Brad Gignac
1062
+ Add method for listing attachments. thanks Brad Gignac
1063
+ Add tests for volume attachments. thanks Brad Gignac
1064
+ Improve attachment test reliability. thanks Brad Gignac
1065
+ Add attachments model and collection. thanks Julio Feijo
1066
+
1067
+ [rackspace|storage]
1068
+ Override path when generating sha1 to make tests past. thanks Brian Hartsock
1069
+
1070
+ [serverlove|compute]
1071
+ fix serverlove tests for 1.8.7 compatibility. thanks Frederick Cheung
1072
+ fix serverlove tests for 1.8.7 compatibility. thanks geemus
1073
+
1074
+
1075
+ 1.5.0 07/28/2012 2e57e2029abbb618411c20f8974e64d8d3fd31fe
1076
+ =========================================================
1077
+
1078
+ Stats! { 'collaborators' => 36, 'downloads' => 870008, 'forks' => 500, 'open_issues' => 44, 'watchers' => 2074 }
1079
+
1080
+ [AWS|Autoscaling]
1081
+ fix group#instances returning all autoscaled instances in the account. thanks Frederick Cheung
1082
+
1083
+ [Libvirt]
1084
+ fixed incorrect mock method signature. thanks Ohad Levy
1085
+ ensure Fog volumes do not raise on LVM based volumes. thanks Ohad Levy
1086
+
1087
+ [aws|compute]
1088
+ Address#destroy handles VPC addresses, improve address allocate/release mocking for VPC. thanks Dan Peterson
1089
+
1090
+ [aws|elasticache]
1091
+ Fix bug in cache cluster test. thanks Benton Roberts
1092
+ Remove erroneous whitespace trimming. thanks Benton Roberts
1093
+ Add Elasticache service-level mocking support. thanks Benton Roberts
1094
+ Add mocking for cache cluster requests. thanks Benton Roberts
1095
+ Change modify_cache_cluster test to work in mocking mode. thanks Benton Roberts
1096
+ Enable mocking for elasticache cluster tests. thanks Benton Roberts
1097
+ Mock raises NotFound Exception when AWS does. thanks Benton Roberts
1098
+
1099
+ [aws|storage]
1100
+ Default to false for persistent connections. thanks Kenny Johnston
1101
+
1102
+ [cloudstack|security_group]
1103
+ fix rule revoke mock. thanks Josh Lane
1104
+
1105
+ [cloudstack|security_groups]
1106
+ add groups and rules. thanks Josh Lane & Jason Hansen
1107
+
1108
+ [cloudstack|server]
1109
+ assign security group. thanks Josh Lane & Jason Hansen
1110
+
1111
+ [dynect|dns]
1112
+ No more recursion when polling jobs. Raise an error if the body indicates failure. thanks Dan Peterson
1113
+
1114
+ [fix-ephemeral-naming]
1115
+ Typo in ephemeral naming. thanks Josh Pasqualetto
1116
+
1117
+ [joyent|compute]
1118
+ fix dataset format in tests. thanks geemus
1119
+
1120
+ [local|storage]
1121
+ mark tests pending in mock mode. thanks geemus
1122
+
1123
+ [misc]
1124
+ fix changelog task for github API v3. thanks Aaron Suggs
1125
+ update changelog for release 1.4.0. thanks Aaron Suggs
1126
+ changelog: backdate to release data. thanks Aaron Suggs
1127
+ Local storage support for #public_url. thanks Adam Tanner
1128
+ Bugfix in Fog::DNS::AWS::Records.all!. thanks Alexander Kolesen
1129
+ Fix for stopping all the servers instead of just specified servers. thanks Avrohom Katz
1130
+ private ip address should start with a 10. thanks Avrohom Katz
1131
+ Use proper signature when testing with aws mock. thanks Bohuslav Kabrda
1132
+ 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
1133
+ The condition here should be the same as for destroying, so that we test iff the instance gets destroyed. thanks Bohuslav Kabrda
1134
+ The assignment correctly returns nil, just the test has to react to it. thanks Bohuslav Kabrda
1135
+ The assignment correctly returns false, just the test has to react to it. thanks Bohuslav Kabrda
1136
+ Include this to make refresh_credentials_if_expired method work properly with Mock. thanks Bohuslav Kabrda
1137
+ Fix the number where credentials expire - if too high, other tests will fail. thanks Bohuslav Kabrda
1138
+ Fix openstack tests. thanks Bohuslav Kabrda
1139
+ Fix more openstack mock tests failures. thanks Bohuslav Kabrda
1140
+ Add the mock urls to fix some more openstack tests. thanks Bohuslav Kabrda
1141
+ Fix minor typos and incorrect types in openstack volume tests. thanks Bohuslav Kabrda
1142
+ More typos in openstack server tests. thanks Bohuslav Kabrda
1143
+ Rework the quota mock testing to work and be more comfortable. thanks Bohuslav Kabrda
1144
+ Must use values, so that connection.list_roles gets corrent argument. thanks Bohuslav Kabrda
1145
+ Deleting returns nothing, so do not expect role. thanks Bohuslav Kabrda
1146
+ Properly check whether role is present. thanks Bohuslav Kabrda
1147
+ Return the properly updated image. thanks Bohuslav Kabrda
1148
+ Add the 'new_image' public images, so that find_by_id can find it. thanks Bohuslav Kabrda
1149
+ The pending block fails the outer one => make sure we return proper result. thanks Bohuslav Kabrda
1150
+ Use proper parameters when testing deploying cloudstact VMs. thanks Bohuslav Kabrda
1151
+ This was implemented right previously, shouldn't have changed it. thanks Bohuslav Kabrda
1152
+ Correct solution for subnet failing tests - use a collection in self.data. thanks Bohuslav Kabrda
1153
+ Do the same thing for vpcs as previously done for subnets. thanks Bohuslav Kabrda
1154
+ ...and the same for dhcp_options. thanks Bohuslav Kabrda
1155
+ And the same for internet gateways. thanks Bohuslav Kabrda
1156
+ Fixes the failure for hp storage. thanks Bohuslav Kabrda
1157
+ [rackspace|databases| Add service tests. thanks Brad Gignac
1158
+ fix for RDS mocking to avoid state flipping between "modifying" and "available". thanks Brian Nelson
1159
+ Fix typo listing datacenters. thanks Carlos Sanchez
1160
+ Stop vSphere vms before destroying, or destroy will fail. thanks Carlos Sanchez
1161
+ Add a failure for #1014. :v:. thanks Dylan Egan
1162
+ Only dup @attributes if it's not nil. thanks Edward Muller
1163
+ each based pagination for Fog::AWS::IAM#users. thanks Edward Muller
1164
+ fixes elb test in mocking mode. thanks Eric Stonfer
1165
+ fix running subnet tests in mocking mode. thanks Eric Stonfer
1166
+ fix subnet tests in mocking mode. thanks Eric Stonfer
1167
+ fog bombs out on ruby 1.8.x because it cannot find Mutex. thanks Eric Stonfer
1168
+ fix not pulling InstanceProtocol from the xml. thanks Frederick Cheung
1169
+ Add Sao Paulo server to Amazon RDS known regions. thanks Irio Irineu Musskopf Junior
1170
+ Add Sao Paulo server to Amazon SQS known regions. thanks Irio Irineu Musskopf Junior
1171
+ Fix bug in local storage #copy_object. thanks Jade Tucker
1172
+ Add and get SSL certificates to Rackspace Soft LB. thanks Justin Barry
1173
+ Default to being less pessimistic about excon. thanks Kevin Moore
1174
+ Fix ssh key behavior when passing specified private keys to ssh/scp. thanks Marc Seeger
1175
+ Should not modify passed in "params" variable since block might run several times due to authentication failure producing erroneous path. thanks Max Stepanov
1176
+ As discussed in #991, this converts the readme from SimpleMarkup to Markdown. thanks Mike Fiedler
1177
+ added PeopleAdmin to list of users. thanks Mike Manewitz
1178
+ Fixing typo bug in rackspace load balancer set_ssl_termination request. thanks Paul
1179
+ add us-east-1e to mock. thanks Shai Rosenfeld
1180
+ Pass up all the options that have been assigned. thanks Trotter Cashion
1181
+ Pass options on to AutoScalingGroup. thanks Trotter Cashion
1182
+ Add better ScalingPolicy support. thanks Trotter Cashion
1183
+ Add more AWS Alarm functionality. thanks Trotter Cashion
1184
+ Add delete mocks. thanks Trotter Cashion
1185
+ Properly array-ify keys for create_auto_scaling_group. thanks Trotter Cashion
1186
+ Add tags to autoscaling groups. thanks Trotter Cashion
1187
+ Enable tests when mocking. thanks Trotter Cashion
1188
+ Recognize ninefold_api_url option for pre-production testing. thanks Warren Bain
1189
+ remove specs (likely from a bad merge). thanks geemus
1190
+ update tests/helper to have bare_metal_cloud instead of new_servers. thanks geemus
1191
+ Mock for filter ec2 instances by group name. thanks phillc
1192
+
1193
+ [openstack]
1194
+ Fix Authentication for OpenStack v1.1 Authentication. thanks Nelvin Driz
1195
+
1196
+ [openstack|compute]
1197
+ Add filters to list servers details. thanks Ferran Rodenas
1198
+ Added adminPass attribute in create_server. thanks Philip Mark M. Deazeta
1199
+ fix method signature for mock list_servers_detail. thanks geemus
1200
+
1201
+ [openstack|image]
1202
+ Stream OpenStack image. thanks Vadim Spivak
1203
+
1204
+ [rackspace|databases]
1205
+ Add read-only support for Rackspace Cloud Databases. thanks Brad Gignac
1206
+ Add write support for Rackspace Cloud Databases. thanks Brad Gignac
1207
+ Register Rackspace Cloud Databases service with Fog. thanks Brad Gignac
1208
+ Remove "list/details" API calls in favor of "list" calls. thanks Brad Gignac
1209
+ Add model tests. thanks Brad Gignac
1210
+ Finish request tests. thanks Brad Gignac
1211
+ Remove old comments. thanks Brad Gignac
1212
+ Handle breaking API changes. thanks Brad Gignac
1213
+ Initial pass at request tests. thanks Brian Hartsock
1214
+
1215
+ [rackspace|identity]
1216
+ Add Rackspace identity service. thanks Brad Gignac
1217
+ Add requests and request tests. thanks Brad Gignac
1218
+ Add user model and collection with tests. thanks Brad Gignac
1219
+ Handle non-array responses from list calls. thanks Brad Gignac
1220
+ Better checking around hash/array responses. thanks Brad Gignac
1221
+ Handle NotAuthorized respones from the identity API in the user model. thanks Brian Hartsock
1222
+ use a valid username in tests. thanks geemus
1223
+
1224
+ [rackspace|lb]
1225
+ fixed broken tests because of API format changes. thanks Brian Hartsock
1226
+ ssl termination fixes. thanks Brian Hartsock
1227
+ moved to Fog::JSON.encode instead of MultiJson.encode. thanks Brian Hartsock
1228
+
1229
+
1230
+ 1.4.0 06/24/2012 24e0be755e251159f07d5d82beb1e8ef57c962d9
1231
+ =========================================================
1232
+
1233
+ Stats! { 'collaborators' => 35, 'downloads' => 800348, 'forks' => 477, 'open_issues' => 43, 'watchers' => 2080 }
1234
+
1235
+ MVP! Nelvin Driz
1236
+
1237
+ [AWS]
1238
+ make beanstalk, cdn, cloudformation, cloudwatch, elasticache, elb, storage, rds, ses, sns, route53 temporary credential friendly. thanks Frederick Cheung
1239
+
1240
+ [AWS|Auto Scale]
1241
+ Add support for put_notification_configuration and change AWS API to use 01-01-2011 Spec. thanks Zuhaib M Siddique
1242
+
1243
+ [AWS|Autoscale]
1244
+ 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
1245
+ 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
1246
+
1247
+ [Openstack|Compute]
1248
+ Usage Requests. thanks Hunter Nield
1249
+ Migration and Console output. thanks Hunter Nield
1250
+ server methods for console and migration. thanks Hunter Nield
1251
+ Minor address cleanup. thanks Hunter Nield
1252
+
1253
+ [aws|address]
1254
+ fixes release_address for VPC EIPs * amazon requires allocation_id only for vpc eips, and public_ip otherwise. thanks Albert Choi
1255
+
1256
+ [aws|beanstalk]
1257
+ Added missing :beanstalk case. thanks George Scott
1258
+ Added #load_balancer method. thanks George Scott
1259
+ Serialize keys for SourceConfiguration. thanks George Scott
1260
+ Added modify method for template. thanks George Scott
1261
+ Support different AWS regions. thanks George Scott
1262
+ Added swap_cnames method. thanks George Scott
1263
+
1264
+ [aws|compute]
1265
+ add networkInterfaceSet context to EC2 instance parser. thanks Benton Roberts
1266
+
1267
+ [aws|dns]
1268
+ Allow both Ruby and AWS style names for alias. thanks George Scott
1269
+ Support for latency/weighted resource sets. thanks George Scott
1270
+ Fixed #all iteration. thanks George Scott
1271
+ Reimplemented #get. thanks George Scott
1272
+ Added #all! method to Records. thanks George Scott
1273
+
1274
+ [aws|dynamodb]
1275
+ correct batch_put_item to batch_write_item for consistency with API. thanks geemus
1276
+
1277
+ [aws|elb]
1278
+ Failing test for load_balancers marker support. thanks Dan Peterson
1279
+ Deprecate describe_load_balancers with just an array of names. thanks Dan Peterson
1280
+ Marker support for describe_load_balancers. thanks Dan Peterson
1281
+ Fix use of describe_load_balancers in tests. thanks Dan Peterson
1282
+ load_balancers.get(nil) returns nil instead of the first of all load balancers. thanks Dan Peterson
1283
+
1284
+ [aws|iam]
1285
+ Add test for AWS[:iam].get_user. thanks Benton Roberts
1286
+ add test for AWS[:iam].get_user_policy. thanks Benton Roberts
1287
+ FIX - make arguments AWS::IAM.get_user conform to expected standard for this module. thanks Benton Roberts
1288
+ Fix Users model to comply with updated request parameter set. thanks Benton Roberts
1289
+ mark role tests as pending in mock mode. thanks geemus
1290
+
1291
+ [aws|storage]
1292
+ fix flipped logic on valid acl check closes #889. thanks geemus
1293
+ fix method signature for setup_credentials. thanks geemus
1294
+
1295
+ [aws|storage|]
1296
+ Make get_object_http_url use correct S3 host in returned URL. thanks Michiel Sikkes
1297
+ Make get_object_http_url use correct S3 host in returned URL. thanks Michiel Sikkes
1298
+
1299
+ [brightbox|compute]
1300
+ Updated image reference where unfortunately hardcoded. thanks Paul Thornthwaite
1301
+ Remove resize request since not available. thanks Paul Thornthwaite
1302
+ Update format tests for new attributes on Cloud IPs. thanks Paul Thornthwaite
1303
+ Update format tests for "fqdn" attribute. thanks Paul Thornthwaite
1304
+ Update format tests for updates to Image. thanks Paul Thornthwaite
1305
+
1306
+ [cloudstack]
1307
+ prevent mock test failure when cloudstack credentials are not defined. thanks geemus
1308
+ add to list of providers so it can be skipped when lacking credentials. thanks geemus
1309
+
1310
+ [cloudstack|compute]
1311
+ zones,flavors,images,address. thanks Jason Hansen & Josh Lane
1312
+ support async jobs. thanks Jason Hansen & Josh Lane
1313
+ server abstraction and mocks. thanks Josh Lane & Jason Hansen
1314
+ volumes support. thanks Josh Lane & Jason Hansen
1315
+
1316
+ [compute]
1317
+ volume tests. thanks Josh Lane & Jason Hansen
1318
+
1319
+ [compute|aws]
1320
+ Apply tags to volume at creation. thanks Dan Carley
1321
+ Respect extra register_image options when mocking. thanks Dan Peterson
1322
+ extend polling interval for spot_requests bootstrap. thanks geemus
1323
+ cleanup internet_gateway mocks and remove debug output. thanks geemus
1324
+
1325
+ [compute|openstack]
1326
+ update server attributes for shared compute tests. thanks geemus
1327
+ cleanup for list security groups request/mock. thanks geemus
1328
+
1329
+ [docs]
1330
+ fix link to EngineYard logo (broken in /storage, /compute, etc.). thanks Len
1331
+
1332
+ [ecloud|compute]
1333
+ Adding multiple disks at once was not working properly. thanks Eugene Howe
1334
+ fix optional params for validate_data closes #969. thanks geemus
1335
+
1336
+ [glesys|compute]
1337
+ update server/status format to include cpu hash and warnings. thanks Anton Lindström
1338
+ add reboot and compute test params. thanks Anton Lindström
1339
+
1340
+ [hp|compute]
1341
+ fix tests to properly set default base image. thanks geemus
1342
+
1343
+ [ibm|compute]
1344
+ Typo in parameter name, should be storageID. thanks Decklin Foster
1345
+
1346
+ [joyent|compute]
1347
+ Fixes issue where params are not properly passed to #keys_create from #create_key. thanks Kevin Chan
1348
+ Added #list_datacenters. thanks Kevin Chan
1349
+ Support for DSA keys for auth. thanks Kevin Chan
1350
+
1351
+ [libVirt]
1352
+ added tests. thanks Amos Benari
1353
+
1354
+ [libvirt]
1355
+ refactored libvirt entire code. thanks Ohad Levy
1356
+ expose node hostname. thanks Ohad Levy
1357
+ added display attributes and allowed to change display of a running server. thanks Ohad Levy
1358
+ volumes dev names must be uniq. thanks Ohad Levy
1359
+ makes libvirt code more debian friendly. thanks Ohad Levy
1360
+ - ensure no nil pools are returned. thanks Ohad Levy
1361
+ Fix SSH keyfile being pulled from wrong param. thanks brookemckim
1362
+ skip tests if ruby-libvirt is unavailable. thanks geemus
1363
+ correct error message when skipping tests. thanks geemus
1364
+
1365
+ [misc]
1366
+ Add support for internal ELBs in VPC. thanks Aaron Bell
1367
+ cleaning up model. thanks Aaron Bell
1368
+ fix parser to show scheme, add test for internal ELB creation. thanks Aaron Bell
1369
+ fixing test. thanks Aaron Bell
1370
+ add scheme to elb helper. thanks Aaron Bell
1371
+ adds batch_put_item functionality to AWS dynamodb + test. thanks Alex Gaudio
1372
+ Fixed non-persistent connections handling to AWS. thanks Alexander Kolesen
1373
+ Fixed handling options[:persistent] in some cases. thanks Alexander Kolesen
1374
+ added mock implementation. thanks Amos Benari
1375
+ removed unneeded dependency,. thanks Amos Benari
1376
+ new rbovirt version. thanks Amos Benari
1377
+ use constant for GB. thanks Amos Benari
1378
+ Adding network interface information and security group ids. thanks Artem Veremey
1379
+ Adding network interface information and security group ids to the model. thanks Artem Veremey
1380
+ Store the region for S3. thanks Ben Butler-Cole
1381
+ add create_hosted_zone and get_hosted_zone request mocks. thanks Bulat Shakirzyanov
1382
+ add list_hosted_zones request mock. thanks Bulat Shakirzyanov
1383
+ add change_resource_record_set request mock. thanks Bulat Shakirzyanov
1384
+ fix response codes and formatting. thanks Bulat Shakirzyanov
1385
+ fix typos. thanks Bulat Shakirzyanov
1386
+ fix identifiers. thanks Bulat Shakirzyanov
1387
+ use hard-coded sample value to eliminate randomness. thanks Bulat Shakirzyanov
1388
+ fix typos. thanks Bulat Shakirzyanov
1389
+ fix zone id in create_hosted_zone response. thanks Bulat Shakirzyanov
1390
+ fix attribute name. thanks Bulat Shakirzyanov
1391
+ add authorize and revoke port range for security group. thanks Bulat Shakirzyanov
1392
+ Fix typo. thanks Christopher Meiklejohn
1393
+ Specify image_ref rather than trying to instantiate object. thanks Christopher Meiklejohn
1394
+ Fog::Compute::AWS::Address#server -> assigned Server. thanks Dr Nic Williams
1395
+ fix auto-discovery for HP Cloud by fog bin. thanks Dr Nic Williams
1396
+ whitespace. :bomb: :v:. thanks Dylan Egan
1397
+ Default to false for persistent connections. You can't pass in false. This now behaves like other connections in fog. :v:. thanks Dylan Egan
1398
+ Idempotent Dynect calls. :v:. thanks Dylan Egan
1399
+ Fix up describe_volume_status to work with THE ARRAYZ. :v:. thanks Dylan Egan
1400
+ Fog::AWS.indexed_reuqest_param. thanks Edward Muller
1401
+ include the nextToken in the body. thanks Edward Muller
1402
+ complete Request param support. thanks Edward Muller
1403
+ refactor to use Fog::AWS.indexed_request_param. thanks Edward Muller
1404
+ the old parser was not working properly. thanks Edward Muller
1405
+ All directories.create on us-east-1. thanks Edward Muller
1406
+ us-west-2 default ami. thanks Edward Muller
1407
+ some small fixups. thanks Edward Muller
1408
+ make the aws region accessible. thanks Edward Muller
1409
+ Fog::Compute::Server#private_key=. thanks Edward Muller
1410
+ Fog::Compute::Server#sshable?. thanks Edward Muller
1411
+ ssh/run optionally takes a block. thanks Edward Muller
1412
+ Cleanup after talking to @dpiddy. thanks Edward Muller
1413
+ return '' not nil. thanks Edward Muller
1414
+ Revert "Add debug option to Fog::Compute::Server#ssh". thanks Edward Muller
1415
+ Mock stop_instances. thanks Edward Muller
1416
+ Mock aws compute start_instances. thanks Edward Muller
1417
+ Don't duplicate effort. thanks Edward Muller
1418
+ Add ssh_port to Fog::Compute::Server. thanks Edward Muller
1419
+ Generalize NoLeak Inspector for Fog::Service. thanks Edward Muller
1420
+ Don't leak HP cdn & storage. thanks Edward Muller
1421
+ Make aws compute server retry SSH on EHOSTUNREACH. thanks Eric Boehs
1422
+ Copied auth token reauthentication from rackspace|compute. thanks Eric Hankins
1423
+ https://github.com/fog/fog/issues/810 - Add ENI support by maf23. thanks Eric Stonfer
1424
+ minor fix to ENI tests. thanks Eric Stonfer
1425
+ VPC ELBs, Tests, and the introduction of the InternetGateway object. thanks Eric Stonfer
1426
+ clean up conflict. thanks Eric Stonfer
1427
+ this adds the dhcp_options object and associated operations. thanks Eric Stonfer
1428
+ merge upstream. thanks Eric Stonfer
1429
+ forgot to commit dhcp_options tests. thanks Eric Stonfer
1430
+ fix describe_volume_status parser. thanks Eric Stonfer
1431
+ add some more explanation to the server creation process. thanks Eric Stonfer
1432
+ testing. thanks Eugene Howe
1433
+ added requests and models for compute_pools. thanks Eugene Howe
1434
+ changed to urn:tmrk:eCloudExtensions-2.8. thanks Eugene Howe
1435
+ require compute pool to be specified on vapp creation. thanks Eugene Howe
1436
+ set default value for computePool on vapp creation. thanks Eugene Howe
1437
+ Made computePool an optional parameter, specs now pass without issue. thanks Eugene Howe
1438
+ Removed non-functioning Mock classes. thanks Eugene Howe
1439
+ fixed method name. thanks Eugene Howe
1440
+ start an instance with an IAM profile and access the credentials. thanks Frederick Cheung
1441
+ add new iam requests to support iam roles. thanks Frederick Cheung
1442
+ request tests for the new iam role requests. thanks Frederick Cheung
1443
+ test credential fetching. thanks Frederick Cheung
1444
+ use excon rather than net/http. thanks Frederick Cheung
1445
+ remove stray multijson require. thanks Frederick Cheung
1446
+ fix errant use of net/http. thanks Frederick Cheung
1447
+ Add debug option to Fog::Compute::Server#ssh. thanks Gabriel Horner
1448
+ Correct docs for change_resource_record_sets. thanks Gavin Sandie
1449
+ add cc2.8xlarge AWS flavor. thanks Ian Downes
1450
+ Fix user-data attribute name. thanks Igor Bolotin
1451
+ Refactor AWS Directory. thanks James Herdman
1452
+ Remove unused variable. thanks James Herdman
1453
+ Fix indentation warning. thanks James Herdman
1454
+ Remove unnecessary full path usage with require. thanks James Herdman
1455
+ Remove unused variable. thanks James Herdman
1456
+ Remove unused accessor. thanks James Herdman
1457
+ Silence warning regarding splat operator. thanks James Herdman
1458
+ Remove unused variable. thanks James Herdman
1459
+ Remove unused variable. thanks James Herdman
1460
+ Silence warnings about potentially private attribute. thanks James Herdman
1461
+ Remove unused variable. thanks James Herdman
1462
+ Silence warning about potentially private attribute. thanks James Herdman
1463
+ Remove unused variable. thanks James Herdman
1464
+ Remove unused variable. thanks James Herdman
1465
+ Remove unused variable. thanks James Herdman
1466
+ Remove unused variable. thanks James Herdman
1467
+ Remove unused variable. thanks James Herdman
1468
+ Remove unused variable. thanks James Herdman
1469
+ Remove unused variable. thanks James Herdman
1470
+ Remove unused variable. thanks James Herdman
1471
+ Remove unused variable. thanks James Herdman
1472
+ Remove unused variable. thanks James Herdman
1473
+ Remove unused variable. thanks James Herdman
1474
+ Remove unused variable. thanks James Herdman
1475
+ Remove unused variable. thanks James Herdman
1476
+ Remove duplicate require. thanks James Herdman
1477
+ Remove unused variable. thanks James Herdman
1478
+ Remove unused variable. thanks James Herdman
1479
+ Remove unused variable. thanks James Herdman
1480
+ Remove absolute path when requiring. thanks James Herdman
1481
+ Remove unused variable. thanks James Herdman
1482
+ Remove duplicate Mock class definition. thanks James Herdman
1483
+ implement Fog::SSH::Mock#run. thanks Jason Hansen & Josh Lane
1484
+ add a method to IPAddr instead of breaking a useful one. thanks Jesse Newland
1485
+ Adjusts regex to fix issues with S3 paths that include periods. thanks John Feminella
1486
+ fix response-cache-control type for AWS signed urls. thanks John Nishinaga
1487
+ remove FOG_PROVIDER env override. thanks Josh Lane
1488
+ more robust resource pool discovery. thanks Justin Clayton
1489
+ Removed duplicate property :ips on server. thanks Kevin Chan
1490
+ Fixes invalid call to #resize, should be #resize_machine. thanks Kevin Chan
1491
+ Fixed #875: Loosen multi_json version. thanks Kevin Menard
1492
+ Bad string replace. thanks Kevin Menard
1493
+ Actually call the new MultiJSON 1.3.2 API methods. thanks Kevin Menard
1494
+ Rename dd_belatedpng.js to dd_belatedpng.min.js. thanks Laurent Bigonville
1495
+ Add non-minified javascript files used in docs/ (#939). thanks Laurent Bigonville
1496
+ Catch Errno::ETIMEDOUT timeout error when connecting to a freshly created EC2 machine. thanks Marc Seeger
1497
+ fix get, all, and all!. thanks Michael Keirnan
1498
+ Make `.irbrc` service agnostic. thanks Nelvin Driz
1499
+ Nested Credentials with Array gets flattened; restrict flatten to 1L. thanks Nelvin Driz
1500
+ Allow for stringified options keys. thanks Nikita Pomyashchiy
1501
+ add supports for defining/extracting libvit boot order. thanks Ohad Levy
1502
+ libvirt volume sizes are in GB, ensuring both requests and setters are in GB. thanks Ohad Levy
1503
+ adds deprecation on vnc_port. thanks Ohad Levy
1504
+ monitoring-state is enabled or disabled, if enabled returns true. thanks Ozgur Akan
1505
+ reserved instances hourly cost was returning empty. thanks Ozgur Akan
1506
+ Modify url regexp to handle periods in bucket names. thanks Parker Selbert
1507
+ Tag generated model tests with string not symbol. thanks Paul Thornthwaite
1508
+ added missing server attributes for openstack compute model. thanks Pedro Perez
1509
+ openstack: extended list_servers and list_server_detail to allow all_tenants param. thanks Pedro Perez
1510
+ depend on excon >= 0.13.0. thanks Prashant Nadarajan
1511
+ use pessimistic gem version constraint for excon (~>0.14.0). thanks Prashant Nadarajan
1512
+ aim users model and nested model policy. thanks Rodrigo Estebanez
1513
+ IAM access_key model implemented. thanks Rodrigo Estebanez
1514
+ get_user Mock implemented. Basic shindo user_tests added. thanks Rodrigo Estebanez
1515
+ Refactor aim modeling for nested models (policies and access keys). thanks Rodrigo Estebanez
1516
+ shindo tests for IAM models: users, policies and access_keys. Mock implementation for get_user_policy. thanks Rodrigo Estebanez
1517
+ @users -> @user. Clean up the @user after the policies and access_keys test. thanks Rodrigo Estebanez
1518
+ Fix encoding issue: https://github.com/fog/fog/pull/189. thanks Rodrigo Estebanez
1519
+ aim users model and nested model policy. thanks Rodrigo Estebanez
1520
+ IAM access_key model implemented. thanks Rodrigo Estebanez
1521
+ get_user Mock implemented. Basic shindo user_tests added. thanks Rodrigo Estebanez
1522
+ Refactor aim modeling for nested models (policies and access keys). thanks Rodrigo Estebanez
1523
+ shindo tests for IAM models: users, policies and access_keys. Mock implementation for get_user_policy. thanks Rodrigo Estebanez
1524
+ @users -> @user. Clean up the @user after the policies and access_keys test. thanks Rodrigo Estebanez
1525
+ Fix encoding issue: https://github.com/fog/fog/pull/189. thanks Rodrigo Estebanez
1526
+ For some reason, there was a missing comma in the mock class. thanks Rodrigo Estebanez
1527
+ Fix get_user_policy. The actual AWS data has to be in a ['Policy'] hash section. thanks Rodrigo Estebanez
1528
+ add IAM mocking for get_group method. thanks Rodrigo Estebanez
1529
+ add IAM mocking for get_group method. thanks Rodrigo Estebanez
1530
+ Add new HP providers for Object Storage, Compute and CDN services. thanks Rupak Ganguly
1531
+ 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
1532
+ Use spot request's public_key when setting up keypair. thanks Ryan Stout
1533
+ ensure apiKey and command are included in parameter sorting. thanks Sean Caffery
1534
+ * [xenserver|compute] initial release. thanks Sergio Rubio
1535
+ * Added VIF model and collection tests * added network and server wrappers to VIF model. thanks Sergio Rubio
1536
+ * Added VIF collection Shindo tests. thanks Sergio Rubio
1537
+ * Added PIFs collection Shindo tests. thanks Sergio Rubio
1538
+ * Added VBD Shindo tests * added server wrapper to VBD model. thanks Sergio Rubio
1539
+ * Added Network collection Shindo tests * Fixed PBD and PIF tests descriptions. thanks Sergio Rubio
1540
+ * Added Pool and StorageRepository models and collections Shindo tests * Added missing attributes to Pool and StorageRepository models. thanks Sergio Rubio
1541
+ * Define missing InvalidLogin exception * Add login tests. thanks Sergio Rubio
1542
+ * Added custom_templates and templates methods to Host model. thanks Sergio Rubio
1543
+ * 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
1544
+ * Added some more tests * Lots of fixes and some refactoring. thanks Sergio Rubio
1545
+ * Fix Servers.templates method. thanks Sergio Rubio
1546
+ * Added clone_server request. thanks Sergio Rubio
1547
+ * 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
1548
+ * Added Vif.destroy and destroy_vif request * add :auto_start parameter to Server.save. thanks Sergio Rubio
1549
+ * Added create_vdi request * Added missing VDI methods and attributes. thanks Sergio Rubio
1550
+ * Added missing VBD operations. thanks Sergio Rubio
1551
+ * Added set_attribute request and tests * Added missing PV_bootloaer attribute to Server * Added Server.set_attribute method and tests. thanks Sergio Rubio
1552
+ * 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
1553
+ * 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
1554
+ * Added missing attributes to Server model * Added create_server_raw request and tests * Added VIF.save action * more tests. thanks Sergio Rubio
1555
+ * 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
1556
+ * 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
1557
+ * [xenserver|compute] set_attribute request now accepts var args - added new tests. thanks Sergio Rubio
1558
+ updating gitignore for eclipse settings. thanks Spencer Dillard
1559
+ first pass at updates for VPC. thanks Spencer Dillard
1560
+ updating for SSL ciphers and protocols. thanks Spencer Dillard
1561
+ updating to master. thanks Spencer Dillard
1562
+ regularize examples showing use of AWS access keys. thanks Stephen Bannasch
1563
+ Use MultiJSON #dump and #load rather than #encode and #decode. thanks Steve Smith
1564
+ Add support for ports in AWS storage URLs. thanks Tim Carey-Smith
1565
+ Mock implementations for SCP upload and download. thanks Tom Mornini
1566
+ add Linode Mock classes to request primitives. thanks Wes Morgan
1567
+ make Mock#linode_disk_delete return the response object. thanks Wes Morgan
1568
+ make Mock#linode_disk_list return the response object. thanks Wes Morgan
1569
+ use kernel_id for mocked kernel, not stackscript_id. thanks Wes Morgan
1570
+ Adds new method delete_notification_configuration which allows you notifications created by put_notification_configuration. thanks Zuhaib Siddique
1571
+ Fix for stacks that have capabilities. Without this the parser misinterprets stacks with capabilities set. thanks atlantacs
1572
+ volume(s) are not considered to be universally available. thanks geemus
1573
+ catch passing an invalid openstack_tenant. thanks mattray
1574
+ addresses['internet'] (like on TryStack.org) supported and public and private_ip_address now work. thanks mattray
1575
+ don't assume 'internet' for addresses. thanks mattray
1576
+ Added offering type for reserved instances response. thanks questionnet
1577
+
1578
+ [oVirt]
1579
+ added volumes to server and template. thanks Amos Benari
1580
+ added volume size in GB accessor. thanks Amos Benari
1581
+ fixed create_vm and get_virtual_machine requests mock implementation. thanks Amos Benari
1582
+
1583
+ [openstack]
1584
+ Fix create snapshot. thanks Ferran Rodenas
1585
+ Match both OS API 1.1 and v2 since they are the same. thanks Josh Kearney
1586
+ Update Reinitialization Process of Existing Auth Token. thanks Nelvin Driz
1587
+ Add Export of Credentials. thanks Nelvin Driz
1588
+ Wrong instance variables accessed for #credentials. thanks Nelvin Driz
1589
+ Update Authentication through X-Auth-Token. thanks Nelvin Driz
1590
+ Update mocks for login and identity request #get_user_by_id. thanks Nelvin Driz
1591
+ Fix authentication without specifying tenant name. thanks Nelvin Driz
1592
+ Make current_user and current_token accessible to services. thanks Nelvin Driz
1593
+ Fix Authentication as well as Fog::JSON call bugs. thanks Nelvin Driz
1594
+ Raise error when no tenant is found for the user logging in. thanks Nelvin Driz
1595
+ Ensure password sent is of type string. thanks Nelvin Driz
1596
+ Modify authentication process. thanks Philip Mark Deazeta
1597
+
1598
+ [openstack|compute]
1599
+ Add requests and tests for security groups. thanks Alfonso Juan Dillera
1600
+ Add requests, models and tests for keypairs. thanks Alfonso Juan Dillera
1601
+ Add requests, models and tests for address management. thanks Alfonso Juan Dillera
1602
+ Add requests, models and tests for address management. thanks Alfonso Juan Dillera
1603
+ Add flavor CRUD. thanks Alfonso Juan Dillera
1604
+ Add auth_token. thanks Alfonso Juan Dillera
1605
+ Added request for boot_from_snapshot. thanks Alfonso Juan Dillera
1606
+ Added id attribute to the keypair. thanks Alfonso Juan Dillera
1607
+ Update fetching of addresses and added fetching for address pools. thanks Alvin Garcia
1608
+ Fixed creating image of a server. thanks Alvin Garcia
1609
+ Added requests for quota. thanks Alvin Garcia
1610
+ Initial extension support for addresses. thanks Hunter Nield
1611
+ Initial extension support for key pairs. thanks Hunter Nield
1612
+ Initial extension support for security groups. thanks Hunter Nield
1613
+ Added Address models. thanks Hunter Nield
1614
+ Added key pair models. thanks Hunter Nield
1615
+ added security group models. thanks Hunter Nield
1616
+ Updates to server model. thanks Hunter Nield
1617
+ Added list/get support for /os-hosts. thanks Hunter Nield
1618
+ Add Tenants and Fix Authentication Implementation. thanks Nelvin Driz
1619
+ Fix Requests on Compute. thanks Nelvin Driz
1620
+ General Cleanup and Update. thanks Nelvin Driz
1621
+ Fix Compute Identity Endpoint Credential Export. thanks Nelvin Driz
1622
+ Add Identity Enpoint to Recognized Init Parameters. thanks Nelvin Driz
1623
+ Update requests and response of server actions. thanks Nelvin Driz
1624
+ Fix Bug on Key Pair Mock. thanks Nelvin Driz
1625
+ Update Mocks for Volumes. thanks Nelvin Driz
1626
+ Update Mocks for Security Groups and Volumes. thanks Nelvin Driz
1627
+ Add Instance Name to Fog. thanks Nelvin Driz
1628
+ Update Image Mocks. thanks Nelvin Driz
1629
+ Update List Security Groups to list those assigned to a server. thanks Nelvin Driz
1630
+ Assert Timezone to UTC and fix format for OS on `get_usage`. thanks Nelvin Driz
1631
+ Added get_usage function, mocks, tests. thanks Philip Mark Deazeta
1632
+ Added get server volumes request. thanks Philip Mark M. Deazeta
1633
+ Added key_pair and security_groups options int create server requrest. thanks Philip Mark M. Deazeta
1634
+ added key_name and security_groups in boot from snapshot request. thanks Philip Mark M. Deazeta
1635
+ authenticate_v2 fixes. thanks Sergio Rubio
1636
+
1637
+ [openstack|identity]
1638
+ Added current user id. thanks Alfonso Juan Dillera
1639
+ Updated current user id for identity. thanks Alfonso Juan Dillera
1640
+ Keystone Roles. thanks Alvin Garcia
1641
+ Keystone Roles and Users. thanks Alvin Garcia
1642
+ Update users collections and model. thanks Alvin Garcia
1643
+ Update users model initialization and save. thanks Alvin Garcia
1644
+ Fixed users fetching. thanks Alvin Garcia
1645
+ Rough implementation of the Keystone API (untested). thanks Hunter Nield
1646
+ Correction in Roles#all method. thanks Mark Maglana
1647
+ Express the "add user role" intent more clearly. thanks Mark Maglana
1648
+ Fix Authentication Implementation. thanks Nelvin Driz
1649
+ Update Tenants. thanks Nelvin Driz
1650
+ Update Tenants (Complete CRUD). thanks Nelvin Driz
1651
+ Fix Identity Authentication Conditions on Endpoint Detection. thanks Nelvin Driz
1652
+ Add User List and Delete User Mocks. thanks Nelvin Driz
1653
+ Update Fog to Accomodate Tenant Deletion Workaround Workflow. thanks Nelvin Driz
1654
+ Fix status code expectation. thanks Nelvin Driz
1655
+ Added function to add user to a tenant. thanks Philip Mark Deazeta
1656
+ Added function to add user to a tenant. thanks Philip Mark Deazeta
1657
+ fixes for mocks. thanks geemus
1658
+
1659
+ [openstack|image]
1660
+ Added set_tenant. thanks Alvin Garcia
1661
+ Added copy_from attribute. thanks Alvin Garcia
1662
+ Update Image Service Authentication Options. thanks Nelvin Driz
1663
+ Added image service, model and request. thanks Philip Mark Deazeta
1664
+ Added test for models and request. thanks Philip Mark Deazeta
1665
+ Added image module, model and request. thanks Philip Mark Deazeta
1666
+ Image Model Updates. thanks Philip Mark Deazeta
1667
+ Refactor Dynamic Methods on Image Model. thanks Philip Mark Deazeta
1668
+
1669
+ [openstack|volume]
1670
+ Volume Endpoints Support. thanks Marjun Pagalan
1671
+ Volume Snapshot CRUD. thanks Marjun Pagalan
1672
+ Volume attach/detach to Server. thanks Marjun Pagalan
1673
+ Added volume service requests. thanks Philip Mark M. Deazeta
1674
+ fix on module name. thanks Philip Mark M. Deazeta
1675
+ Added volume model. thanks Philip Mark M. Deazeta
1676
+
1677
+ [ovirt]
1678
+ fixed list storage domain test. thanks Amos Benari
1679
+
1680
+ [rackspace|compute]
1681
+ fix rackspace server compare. thanks Josh Lane & Jason Hansen
1682
+ default images. thanks Josh Lane & Jason Hansen
1683
+ Images#all returns data. thanks Josh Lane & Jason Hansen
1684
+ fixes for mock images. thanks geemus
1685
+
1686
+ [rackspace|lb]
1687
+ added support for algorithm on create. thanks Brian Hartsock
1688
+ fixed broken tests due to API contract changes. thanks Brian Hartsock
1689
+
1690
+ [rackspace|loadbalancers]
1691
+ fixed broken tests. thanks Brian Hartsock
1692
+
1693
+ [rackspace|storage|file]
1694
+ copy method now use the options hash and apply content type. thanks Matthias Gröbner
1695
+
1696
+ [rackspace|storage|files]
1697
+ fix iteration. thanks Matthias Gröbner
1698
+
1699
+ [slicehost]
1700
+ remove (now deprecated) slicehost support. thanks geemus
1701
+
1702
+ [storage|aws]
1703
+ fix location stuff to allow creating new buckets properly. thanks geemus
1704
+
1705
+ [vcloud]
1706
+ Remove some un-needed debug information. thanks Lincoln Stoll
1707
+
1708
+ [vpc-fixes]
1709
+ AWS security group model + VPC. thanks Sean Porter
1710
+
1711
+ [vsphere]
1712
+ force poweroff of instance of vmware tools are not installed. thanks Ohad Levy
1713
+ adds memory and cpu server attributes. thanks Ohad Levy
1714
+ adds support to get and set vnc console. thanks Ohad Levy
1715
+
1716
+ [xenserver]
1717
+ Added missing Server.tags attribute. thanks Sergio Rubio
1718
+ fix tags to skip tests without credentials. thanks geemus
1719
+
1720
+
1721
+ 1.3.1 03/27/2012 f0f692456956fe2e414ef8205d0268259901644a
1722
+ =========================================================
1723
+
1724
+ Stats! { 'collaborators' => 32, 'downloads' => 527366, 'forks' => 392, 'open_issues' => 27, 'watchers' => 1901 }
1725
+
1726
+ MVP! George Scott
1727
+
1728
+ [aws|dns]
1729
+ Preserves change_id. Support for checking sync status via reload. thanks George Scott
1730
+ Changed #insync? to #ready?. thanks George Scott
1731
+
1732
+ [ibm]
1733
+ avoid using constants (Rails loads files multiple times, issue #807). thanks Decklin Foster
1734
+ Make usage of #state rather than #status consistent. thanks Decklin Foster
1735
+
1736
+ [ibm|compute]
1737
+ Add clone/destroy methods and tests to Image. thanks Decklin Foster
1738
+ Add request test for list_vlans and fix mock. thanks Decklin Foster
1739
+
1740
+ [ibm|storage]
1741
+ Restore storage_area, platform_version, clone_status Volume attributes. thanks Decklin Foster
1742
+
1743
+ [misc]
1744
+ Allow custom headers in Storage#put_object_url. thanks Jacob Mattingley
1745
+ Use https_url instead of deprecated url for put_object_url. thanks Jacob Mattingley
1746
+ Adding Vlan class to IBM SmartCloud. thanks Joe Kinsella
1747
+ bump excon dep to get jruby openssl fixes. thanks geemus
1748
+
1749
+ [storage]
1750
+ properly update content-type at save time for file models. thanks geemus
1751
+
1752
+
1753
+ 1.3.0 03/21/2012 f78afe98242a60ae4dbbfcd8c5ab67ba71c6d773
1754
+ =========================================================
1755
+
1756
+ Stats! { 'collaborators' => 32, 'downloads' => 513974, 'forks' => 387, 'open_issues' => 24, 'watchers' => 1893 }
1757
+
1758
+ MVP! Decklin Foster
1759
+
1760
+ [aws|cloud_watch]
1761
+ GitHub Edit! s/prodide/provide/ :v:. thanks Dylan Egan
1762
+
1763
+ [aws|simpledb]
1764
+ fix region/host for us-east-1. thanks geemus
1765
+
1766
+ [ibm]
1767
+ Added Mocking and Tests. thanks Carl Hicks
1768
+ Moar convenience methods for servers. thanks Carl Hicks
1769
+ Update model for Volume. thanks Carl Hicks
1770
+ Added request tests for addresses. thanks Carl Hicks
1771
+ Initial IBM SmartCloud support. thanks Decklin Foster
1772
+ Add Location model and requests. thanks Decklin Foster
1773
+ Rename collection requests get->list so we have get_foo and list_foos. thanks Decklin Foster
1774
+ Don't need json_body, so we can simplify requests; remove unused params. thanks Decklin Foster
1775
+ Pass optional params to requests with hashes. thanks Decklin Foster
1776
+ Add a InstanceType model, returned as part of Images. thanks Decklin Foster
1777
+ Rename model test files into compute, storage dirs. thanks Decklin Foster
1778
+ Remove trailing whitespace. thanks Decklin Foster
1779
+ Update tests to match model arguments (attribs hash) and lower-level request methods. thanks Decklin Foster
1780
+ Update mocks to reflect moving volume models from from compute to storage. thanks Decklin Foster
1781
+ Add some missing mocks, fix list_instances. thanks Decklin Foster
1782
+ Raise NotFound in mock instead of returning a 404. thanks Decklin Foster
1783
+ Fix form_encode to stringify args (e.g. booleans) to URI.escape. thanks Decklin Foster
1784
+ Typos in state names and status vs. state. thanks Decklin Foster
1785
+ Fix key model for passing public_key, add setting/testing whether key is default. thanks Decklin Foster
1786
+ Setting default key returns success, not key name. thanks Decklin Foster
1787
+ Typo, assignment instead of equality, made some tests incorrectly pass. thanks Decklin Foster
1788
+ Flesh out modify_instance and modify_key for different modes. thanks Decklin Foster
1789
+ Restarting should return success, changing expiration should only return time. thanks Decklin Foster
1790
+ Delete instance mock should return success. thanks Decklin Foster
1791
+ Remove IBM from flavors tests. thanks Decklin Foster
1792
+ Make names used in tests unique using current time. thanks Decklin Foster
1793
+ Add vlan_id attrib so that it can be used in creating an instance. thanks Decklin Foster
1794
+ Return nil for public_hostname if primary_ip unset (e.g. state is Failed). thanks Decklin Foster
1795
+ Change default location and image ID. thanks Decklin Foster
1796
+ Rename ibm_user_id -> ibm_username. thanks Decklin Foster
1797
+ Create temporary keys in tests that need to create instances. thanks Decklin Foster
1798
+ servers are not sorted, don't assume we can just take the last. thanks Decklin Foster
1799
+ create_image should do a PUT, not a POST, and needs 'state' param. thanks Decklin Foster
1800
+ Correct spelling of test volume format ('RAW') and fix parameter typo. thanks Decklin Foster
1801
+ Rename data -> body. thanks Decklin Foster
1802
+ Don't reboot or immediately expire, interferes with other tests. thanks Decklin Foster
1803
+ Use Raleigh location for tests. thanks Decklin Foster
1804
+ Nullable formats for attributes that may not be returned. thanks Decklin Foster
1805
+ Set expire a few seconds in the future since it takes a while to process. thanks Decklin Foster
1806
+ Return nil if instance_id is nil. thanks Decklin Foster
1807
+ Can't access Fog::Compute::IBM::Location class from here, just check if ID returned. thanks Decklin Foster
1808
+ servers.length will include already existing servers. thanks Decklin Foster
1809
+ Add state and ready? method to Image. thanks Decklin Foster
1810
+ Change public key format. thanks Decklin Foster
1811
+ vlan is part of primaryIP. thanks Decklin Foster
1812
+ Rename root_only -> is_mini_ephemeral. thanks Decklin Foster
1813
+ Description is mandatory. thanks Decklin Foster
1814
+ Wait for instance to be ready before deleting it or creating image. thanks Decklin Foster
1815
+ Add state/ready? methods for Address. thanks Decklin Foster
1816
+ Expiration time should be epoch in ms. thanks Decklin Foster
1817
+ launched_at convenience method. thanks Decklin Foster
1818
+ Don't set server to nil. thanks Decklin Foster
1819
+ Set a longer timeout on all wait_for calls. thanks Decklin Foster
1820
+ Generated key needs different name, supplied key only returns success. thanks Decklin Foster
1821
+ Invalid instance creation will return a 412 and thus raise PreconditionFailed. thanks Decklin Foster
1822
+ Don't calculate expiration time until ready to make the request. thanks Decklin Foster
1823
+ Fix volume formats and mocks. thanks Decklin Foster
1824
+ Wait for volume to be ready before deleting. thanks Decklin Foster
1825
+ Mark volume attach/detach pending, won't create instance. thanks Decklin Foster
1826
+ Return pending if provisioning times out in the real tests. thanks Decklin Foster
1827
+ adding documentation. thanks Wyatt Walter
1828
+ add bin helpers for storage. thanks geemus
1829
+
1830
+ [misc]
1831
+ ovirt added support for 'set vm ticket'. This api call is needed for openning a console to the server. thanks Amos Benari
1832
+ wrangled security tests into working. thanks Eric Stonfer
1833
+ Changes to the security group handling: * CreateSecurityGroup now includes the group id in the reply, this patch makes the code store this * The patch also changes the delete call to use the group id if present (since you must use the id when deleting VPC groups). thanks MaF
1834
+ Changes to the security group handling: * CreateSecurityGroup now includes the group id in the reply, this patch makes the code store this * The patch also changes the delete call to use the group id if present (since you must use the id when deleting VPC groups) * Fix teh security group mock and test code to handle this new behavior. thanks MaF
1835
+ Removed merge commit. thanks MaF
1836
+
1837
+ [release]
1838
+ add Kevin Menard to future MVP exclusion list. thanks geemus
1839
+
1840
+ [storage|aws]
1841
+ fix hardcoded host in get_object_http(s)_url methods. thanks geemus
1842
+
1843
+
1844
+ 1.2.0 03/19/2012 70e0f48fa446dbf233ae31c4f055eb26ea2dadd1
1845
+ =========================================================
1846
+
1847
+ Stats! { 'collaborators' => 30, 'downloads' => 508132, 'forks' => 384, 'open_issues' => 23, 'watchers' => 1874 }
1848
+
1849
+ MVP! Kevin Menard
1850
+
1851
+ [AWS]
1852
+ Compute: The security group parser was not parsing groupid properly. thanks Christopher Oliver
1853
+
1854
+ [AWS|DynamoDB]
1855
+ table requests. thanks geemus
1856
+ cleanup/fixes for tables. thanks geemus
1857
+ item requests. thanks geemus
1858
+ update item should not be idempotent when an action is specified. thanks geemus
1859
+ fix for UpdateItem idempotency. thanks geemus
1860
+ first pass at query/scan requests. thanks geemus
1861
+ ConsumedCapacityUnits should be a Float. thanks geemus
1862
+ add missing pending for mocked tests. thanks geemus
1863
+
1864
+ [AWS|ELB]
1865
+ Added support for InstanceProtocol to listeners. thanks James Stremick
1866
+ Updating listener and LB tests to include InstancePort checks. thanks James Stremick
1867
+
1868
+ [AWS|Storage]
1869
+ versioning related fixes copy_object mocks. thanks geemus
1870
+ fix for put_bucket_website mock. thanks geemus
1871
+ remove redundant mock setup in tests #731. thanks geemus
1872
+
1873
+ [AWS|storage]
1874
+ fix for versioned copy_object. thanks geemus
1875
+
1876
+ [Brightbox]
1877
+ Updates to format tests. thanks Paul Thornthwaite
1878
+ Updated Server output format. thanks Paul Thornthwaite
1879
+ Updated format test to use correct link name. thanks Paul Thornthwaite
1880
+ Updated Image format for min_ram attribute. thanks Paul Thornthwaite
1881
+ Updated LoadBalancer format to include listeners in listing. thanks Paul Thornthwaite
1882
+ Updated format for nested firewall policies. thanks Paul Thornthwaite
1883
+ Merge in various spec corrections. thanks Paul Thornthwaite
1884
+ Update format test to not fail on new attributes in JSON. thanks Paul Thornthwaite
1885
+ Load balancer listener timeouts are now reported. thanks Paul Thornthwaite
1886
+ Correct server snapshot test. thanks Paul Thornthwaite
1887
+
1888
+ [Compute|OpenStack]
1889
+ match auth response to stable/diablo branch of keystone. thanks Todd Willey
1890
+
1891
+ [Rackspace|Storage]
1892
+ set put_object to idempotent. thanks geemus
1893
+
1894
+ [aws]
1895
+ add sts helper. thanks geemus
1896
+
1897
+ [aws|compute]
1898
+ Fixed failing instance tests. thanks Christopher Oliver
1899
+ Update API version and support new DescribeInstanceStatus format. thanks Dan Peterson
1900
+ Fix allocate_address mocking. thanks Dan Peterson
1901
+ Mock detach_volume should raise proper error if volume is not attached. thanks Dan Peterson
1902
+ added group id to security group parser and model. thanks bdorry
1903
+ added security group get by id method. thanks bdorry
1904
+
1905
+ [aws|dns]
1906
+ Record identity is 'Name'. thanks Aaron Suggs
1907
+ Add Record#modify method. thanks Aaron Suggs
1908
+ Add model tests. thanks Aaron Suggs
1909
+ add test for Record#modify. thanks Aaron Suggs
1910
+ Parse IsTruncated as boolean in list_resource_record_set. thanks Aaron Suggs
1911
+ Add support for aliasing records to Elastic Load Balancers (API 2011-05-05). thanks James Miller
1912
+
1913
+ [aws|elb]
1914
+ start working on policies. :v:. thanks Dylan Egan
1915
+ create policies, describe policies, fix old mocking and yup. :v:. thanks Dylan Egan
1916
+ PolicyNotFound. :v:. thanks Dylan Egan
1917
+ remove test debugging. :v:. thanks Dylan Egan
1918
+ actually raise a PolicyNotFound. :v:. thanks Dylan Egan
1919
+ InstanceProtocol support. :v:. thanks Dylan Egan
1920
+
1921
+ [aws|fog]
1922
+ crapiness and hacks. :v:. thanks Dylan Egan
1923
+
1924
+ [aws|iam]
1925
+ Mock upload_server_certificate errors if private key is not RSA. thanks Dan Peterson
1926
+ P. :v:. thanks Dylan Egan
1927
+
1928
+ [aws|rds]
1929
+ Mock DB snapshot requests. thanks Aaron Suggs
1930
+ Enabled model tests that pass when mocking. thanks Aaron Suggs
1931
+
1932
+ [aws|storage]
1933
+ Simple multipart uploads; supports files > 5GB. thanks Aaron Suggs
1934
+ Automatically abort multipart uploads on exceptions. thanks Aaron Suggs
1935
+ Add mock for Fog::Storage::AWS#put_bucket_website. thanks Garret Alfert
1936
+ Handle S3 object deletions in the face of versioning. thanks Kevin Menard
1937
+ Return the object version in the request header and set an attribute value in the model. thanks Kevin Menard
1938
+ Allow options to be passed to the destroy method, facilitating passing of versionId. thanks Kevin Menard
1939
+ Added ability to control bucket versioning from Directory model. thanks Kevin Menard
1940
+ Added the ability to fetch a list of versions from a file. thanks Kevin Menard
1941
+ Allow passing of options to fetching versions. thanks Kevin Menard
1942
+ Added the pagination offset params to the get_object_bucket_versions parser. thanks Kevin Menard
1943
+ Added the MfaDelete value to the get_bucket_versioning parser. thanks Kevin Menard
1944
+ Fix put bucket website test, request returns not found when the bucket does not exist. thanks Peter Weldon
1945
+ Add bucket lifecycle / object expiration requests. thanks Peter Weldon
1946
+ make head_object idempotent. thanks geemus
1947
+ direct https urls to subdomains even with dots this may result in ssl warnings, but that seems better than the alternative (redirects) see #611. thanks geemus
1948
+
1949
+ [aws|storage|test]
1950
+ use a random directory key; prevent collision. thanks Aaron Suggs
1951
+ Mark multipart upload test as pending. thanks Aaron Suggs
1952
+ Added mock support for setting and retrieving versioning on a bucket. thanks Kevin Menard
1953
+ Added in versioning support for S3 objects, sans deletion markers. thanks Kevin Menard
1954
+ Track if the version is the latest or not. thanks Kevin Menard
1955
+ Basic handling of version-id-marker. thanks Kevin Menard
1956
+ Added the ability to get_object by versionId. thanks Kevin Menard
1957
+ Added S3 versioning support for delete_object. thanks Kevin Menard
1958
+ Deal with suspended buckets properly. thanks Kevin Menard
1959
+ Added request tests for put_bucket_versioning and get_bucket_versioning. thanks Kevin Menard
1960
+ Added tests for get_bucket_object_versions. thanks Kevin Menard
1961
+ Added request test for get_object with versioning. thanks Kevin Menard
1962
+ Added request tests for delete_object with versioning. thanks Kevin Menard
1963
+ Added failing request test for delete_object with versioning. thanks Kevin Menard
1964
+ Added in some file and directory model tests. thanks Kevin Menard
1965
+ Added model tests for versioning Directory and File models. thanks Kevin Menard
1966
+ Added tests for the Version model. thanks Kevin Menard
1967
+ Added versioning test for Files collection. thanks Kevin Menard
1968
+ Added versioning tests for Versions collection. thanks Kevin Menard
1969
+ Added versioning test for Files#head. thanks Kevin Menard
1970
+ Removed a commented-out test. thanks Kevin Menard
1971
+ Make sure tests pass with both mocking enabled and disabled. thanks Kevin Menard
1972
+ Fixed a regression with mocked get_bucket requests, due to a change in the mock data ordering. thanks Kevin Menard
1973
+ Fixed handling of options in mocked get_bucket_object_versions. thanks Kevin Menard
1974
+ Replaced random ETag implementation with MD5, per S3 docs. thanks Kevin Menard
1975
+
1976
+ [aws|sts]
1977
+ make get_*_token requests idempotent. thanks geemus
1978
+
1979
+ [beanstalk]
1980
+ avoid one remaining error with mocked tests. thanks geemus
1981
+
1982
+ [cloudstack]
1983
+ Fix warning in ruby 1.8.7. thanks Aaron Suggs
1984
+ added additional networking support and volume management commands. thanks Brian Dorry
1985
+ added unit tests. thanks Brian Dorry
1986
+ skip ssl verification. thanks geemus
1987
+
1988
+ [cloudstack|compute]
1989
+ merged in upstream. thanks bdorry
1990
+ added ssh key support, snapshot policy support. thanks bdorry
1991
+ added update resource count action. thanks bdorry
1992
+
1993
+ [compute|aws]
1994
+ fix for describe_images parser that accidently split records. thanks geemus
1995
+ fix error in describe_security_groups parser closes #678. thanks geemus
1996
+
1997
+ [compute|cloudstack]
1998
+ added basic cloudstack list support. thanks bdorry
1999
+ added user management support. thanks bdorry
2000
+ added domain management support. thanks bdorry
2001
+ added domain management support, added documentation links to existing cloudstack requests. thanks bdorry
2002
+
2003
+ [core]
2004
+ no need to expand the already exanded __LIB_DIR__. thanks geemus
2005
+ update connection to use new excon response_block format. thanks geemus
2006
+
2007
+ [docs]
2008
+ Update GitHub repository references from geemus/fog to fog/fog. thanks Benjamin Manns
2009
+
2010
+ [dynect|dns]
2011
+ Pass zone.records.all options through to get_node_list. thanks Dan Peterson
2012
+
2013
+ [glesys|compute]
2014
+ fix for changes in api. thanks Anton Lindström
2015
+
2016
+ [joyent|compute]
2017
+ rename _test files to _tests for shindo. thanks geemus
2018
+ make password required. thanks geemus
2019
+ fix format of joyent to match real output and remove mock-only test. thanks geemus
2020
+
2021
+ [local|storage]
2022
+ Fix Local::File deletion for Ruby 1.8. thanks Benjamin Manns
2023
+ Add copy_object method to Local::Storage. thanks Benjamin Manns
2024
+ Add copy method to Local::File. thanks Benjamin Manns
2025
+
2026
+ [misc]
2027
+ whitespace. thanks Aaron Suggs
2028
+ fix typo in comment. thanks Aaron Suggs
2029
+ whitespace cleanup. thanks Aaron Suggs
2030
+ Refactor to support ruby 1.8.7. thanks Aaron Suggs
2031
+ Whoops, don't need to require digest/md5. thanks Aaron Suggs
2032
+ whitespace. thanks Aaron Suggs
2033
+ Adds Supprt for oVirt (http://ovirt.org). thanks Amos Benari
2034
+ oVirt: Added tests to work on both real and mock. thanks Amos Benari
2035
+ Removing duplicates from reservation's groupSet. thanks Artem
2036
+ Remove coverage Rake task. thanks Benjamin Manns
2037
+ Remove a step that referenced a private config file. thanks Bob Briski
2038
+ updated cloudstack tests for user level permissions, added ssh key, disk offering, service offering, os type, security group tests. thanks Brian Dorry
2039
+ Adding update_firewall_rule request. thanks Caius Durling
2040
+ Correct an error with long keys where Base64.encode64 would add "\n" at 60 chars. thanks Chris Hasenpflug
2041
+ Use gsub for Ruby 1.8.7 compatibility. thanks Chris Hasenpflug
2042
+ Correct copy & paste error. thanks Chris Hasenpflug
2043
+ implement #scp_download method to allow downloads in addition to uploads via scp. alias #scp method as #scp_upload. thanks Christoph Schiessl
2044
+ tests for scp_download. thanks Christoph Schiessl
2045
+ Removed various 'puts' statements... thanks Christopher Oliver
2046
+ fix for free choice of region. thanks Daniel Schweighoefer
2047
+ save the region in a instance variable. thanks Daniel Schweighoefer
2048
+ rounding out API coverage in 'Virtual Machine section. thanks David Nalley
2049
+ mock #create_user and #create_access_keys". thanks Edward Muller
2050
+ fix typo. thanks Edward Muller
2051
+ Enable Shindo tests for the mocked methods. thanks Edward Muller
2052
+ Refactor mock data structure. thanks Edward Muller
2053
+ mock #put_user_policy. thanks Edward Muller
2054
+ Mock out #list_users. thanks Edward Muller
2055
+ Mock #delete_user_policy. thanks Edward Muller
2056
+ Move this is Mock.key_id and don't default the path. thanks Edward Muller
2057
+ Add group mock data. thanks Edward Muller
2058
+ Use #has_key? instead of #keys.include?. thanks Edward Muller
2059
+ rework these to use #tap instead. Cleaner IMNSHO. thanks Edward Muller
2060
+ Additional mocks. thanks Edward Muller
2061
+ missing raise. thanks Edward Muller
2062
+ DescribeVolumeStatus. thanks Edward Muller
2063
+ Add code to support the creation and modification of security groups existing in a VPC. thanks Eric Stonfer
2064
+ modified security group tests to accomodate the new security group data model. Also allowed permissions to be nil in the security tests for groups with no ACLs. thanks Eric Stonfer
2065
+ Change default for vpc_id from '' to nil. thanks Eric Stonfer
2066
+ fixed a conditional that was assigining = rather than evaluating == in vsphere clone routine. This resulted in cloning from folders always failing. thanks Eric Stonfer
2067
+ Add the ability to create linked clones in vsphere. thanks Eric Stonfer
2068
+ whitespace fix. thanks Eric Stonfer
2069
+ whitespace fix. thanks Eric Stonfer
2070
+ add a linked clone test scenario, set the vm_clone test to wait, and clean up old servers after the VM clone test. thanks Eric Stonfer
2071
+ linked clone tests. thanks Eric Stonfer
2072
+ This patch allows the ability to create 'blank' vms in vsphere. thanks Eric Stonfer
2073
+ fix list_virtual_machines when using :folder. thanks Eric Stonfer
2074
+ add vm reconfiguration functions for memory cpu / generic spec. thanks Eric Stonfer
2075
+ add subnet and vpc info to instance gets. thanks Eric Stonfer
2076
+ fixed a typo in vm_power_on_tests.rb. thanks Eric Stonfer
2077
+ make eips useable in a VPC. thanks Eric Stonfer
2078
+ associate EIPs in a vpc. thanks Eric Stonfer
2079
+ update autoscaling groups to allow the use of recurrence, start and end times. thanks Eric Stonfer
2080
+ realized that @activity was actually not used. thanks Eric Stonfer
2081
+ fixed some whitespace issues in auto_scaling tests. Fixed auto_scaling tests formats. thanks Eric Stonfer
2082
+ add host based vmotion. thanks Eric Stonfer
2083
+ basic VPC creation. thanks Eric Stonfer
2084
+ [aws]Add in subnets. thanks Eric Stonfer
2085
+ enable_metrics_collection requires a granularity argument (1Minute is the only legal value). thanks Frederick Cheung
2086
+ New file additions for AWS Elastic Beanstalk support. thanks George Scott
2087
+ Added beanstalk service to AWS Provider. thanks George Scott
2088
+ Unit tests for beanstalk. thanks George Scott
2089
+ Now sets pending when mocking for all beanstalk model tests. thanks George Scott
2090
+ environment now uses name as identity. thanks George Scott
2091
+ Added additional convenience methods to application. thanks George Scott
2092
+ remove rubygems require from core.rb. thanks Hemant Kumar
2093
+ Reset the alias_target hash for good measure. thanks James Miller
2094
+ Add a test for ALIAS records. thanks James Miller
2095
+ Cleanups and crazy long sleep to ensure ALIAS zone is found. thanks James Miller
2096
+ Fix linked clone mocked test unhandled exception. thanks Jeff McCune
2097
+ (maint) Whitespace and format only clean up. thanks Jeff McCune
2098
+ added support for server-side encryption on s3. thanks John Parker
2099
+ Switch from NewServers to BareMetalCloud for #773. thanks John Wang
2100
+ Add deprecation warning. thanks John Wang
2101
+ Fixed bug in SQS :receive_message mock. thanks Joshua Krall
2102
+ Fixed a typo in the warning. thanks Kashif Rasul
2103
+ One more typo fix. thanks Kashif Rasul
2104
+ GH-690 Joyent Cloud Provider. thanks Kevin Chan
2105
+ Credentials: cloudapi_* -> joyent_* for consistency. thanks Kevin Chan
2106
+ Revert "[joyent|compute] make password required" This reverts commit 6e93321e29e69cc863aa9d78cdcf1c83203a2fa7. thanks Kevin Chan
2107
+ Fixes dataset tests. thanks Kevin Chan
2108
+ - Fixes tests to run in both mock and non-mock mode - Clean ups and fixes. thanks Kevin Chan
2109
+ Cleanups + Fixes #get_machine test breaking when there are no machines. thanks Kevin Chan
2110
+ cleanups + refactorings + better error reporting per joyent cloudapi spec. thanks Kevin Chan
2111
+ Fixed #673: Zerigo DNS - update_host fails with some options. thanks Kevin Menard
2112
+ Fixed a filename. thanks Kevin Menard
2113
+ implement respond_to? corresponding to method_missing for VirtualBox and libvirt. thanks Konstantin Haase
2114
+ Swap aws_access_key_id and aws_secret_access_key positions in hash to match typical usage convention. thanks Kyle Drake
2115
+ When Exists boolean is not specified, this request is not idempotent. thanks Lance Carlson
2116
+ Scan sort of acts like a GET request, which are idempotent. thanks Lance Carlson
2117
+ Only do a 'head' on the file that we've copied - no need to go download it now, that would defeat the purpose. thanks Lars Pind
2118
+ Improved support for SecurityGroup IDs. thanks MaF
2119
+ We must create the VPC before we can create a security group in it. thanks MaF
2120
+ Changed verify_permission_options in mocked version of authorize_security_group_ingress to accept any ipProtocol for vpc groups. Also changed the security group test to use protocol 42 when testing vpc security_groups. thanks MaF
2121
+ Check if exception has a #response method before calling it, otherwise call #message. thanks Manuel Meurer
2122
+ Fix sync_clock method, only rescue Excon::Errors::HTTPStatusError that are known to have a #response method, let all other exceptions bubble up. thanks Manuel Meurer
2123
+ Updated excon to version ~>0.10.0. Closes #781. thanks Marc Seeger
2124
+ include fission gem. thanks Michael Brodhead & Shai Rosenfeld
2125
+ Move fission from reg dependency to dev dependency per comments on pull request #736. thanks Michael Brodhead & Shai Rosenfeld
2126
+ adding required gem to run the tests. thanks Ohad Levy
2127
+ first cut of cleaning up libvirt server class. thanks Ohad Levy
2128
+ minor cleanups. thanks Ohad Levy
2129
+ fixes libvirt wrong state check. thanks Ohad Levy
2130
+ libvirt - avoids exception if a uuid is not found. thanks Ohad Levy
2131
+ libvirt: servers return nil, not an empty array... thanks Ohad Levy
2132
+ Added basic tests to Ovirt compute provider. thanks Ohad Levy
2133
+ Added check if Fog.mock! should be used in AWS tests. thanks Paul Thornthwaite
2134
+ Nix hardcoded regions: DynamoDB. thanks Pavel Repin
2135
+ Nix hardcoded regions: Autoscaling. thanks Pavel Repin
2136
+ Nix hardcoded regions: CloudFormation. thanks Pavel Repin
2137
+ Nix hardcoded regions: CloudWatch. thanks Pavel Repin
2138
+ Nix hardcoded regions: EC2. thanks Pavel Repin
2139
+ Nix hardcoded regions: ElastiCache. thanks Pavel Repin
2140
+ Nix hardcoded regions: ELB. thanks Pavel Repin
2141
+ Nix hardcoded regions: EMR. thanks Pavel Repin
2142
+ Nix hardcoded regions: RDS. thanks Pavel Repin
2143
+ Nix hardcoded regions: SES. thanks Pavel Repin
2144
+ Nix hardcoded regions: SimpleDB. thanks Pavel Repin
2145
+ Nix hardcoded regions: SNS. thanks Pavel Repin
2146
+ Nix hardcoded regions: SQS (us-east-1 is special). thanks Pavel Repin
2147
+ Nix hardcoded regions: S3 (us-east-1 is special). thanks Pavel Repin
2148
+ Fixing typo "retreive" -> "retrieve". thanks Pedro Nascimento
2149
+ Add the ":idempotent => true" property to create_tags to fix an issue when launching many instance from cluster_chef. thanks Peter C. Norton
2150
+ Ran M-x align-regexp on the hashrockets. thanks Peter C. Norton
2151
+ Passing half of rds/instance_tests.rb shindo tests. thanks Rodrigo Estebanez
2152
+ making shindo tests for security groups in rds. thanks Rodrigo Estebanez
2153
+ Better rds/security_group_test. Mocking rds security_groups. thanks Rodrigo Estebanez
2154
+ Support for rds parameter groups mocking. thanks Rodrigo Estebanez
2155
+ [aws][auto_scaling] Bug fixed: configurations.get(launch-configuration) always shows the first element. thanks Rodrigo Estebanez
2156
+ it doesn't throw an error when the launch configuration doesnt exist. thanks Rodrigo Estebanez
2157
+ [aws][auto_scaling]. Support delete_launch_configuration mocking. thanks Rodrigo Estebanez
2158
+ Added PrivateIpAddress to the list of valid parameters for instance creation. thanks Rusty Geldmacher
2159
+ Add Ecloud version 2.8 as supported. thanks Shai Rosenfeld
2160
+ support alias records in the route53 models. thanks Thom May
2161
+ Remove unused comment / commented code. thanks Todd Willey
2162
+ Fix intial public_url when saving using rackspace_cdn_ssl = true. thanks Zachary Danger Campbell
2163
+ added virtual machine support and security group support. thanks bdorry
2164
+ merged in 0.11.0 release. thanks bdorry
2165
+ merged 1.0.0. thanks bdorry
2166
+ remove latest MVP from future possibilities. thanks geemus
2167
+ examples should use providers.values. thanks geemus
2168
+ fix Fog::Nullable::Boolean to include true/false. thanks geemus
2169
+ update fog.io copyright year. thanks geemus
2170
+ use path style access for https public_urls that include . to avoid certificate issues closes #743. thanks geemus
2171
+ fix AWS get_object_http(s)_url methods to properly use subdomain vs path urls as appropriate closes #611. thanks geemus
2172
+ loosen multi-json dependency closes #757. thanks geemus
2173
+ remove examples as they are not that helpful or well supported. thanks geemus
2174
+ bump excon dep closes #799. thanks geemus
2175
+ bump excon dep. thanks geemus
2176
+ strip ARNs - AWS is sensitive to leading and trailing whitespace/cr/lf. thanks hedgehog
2177
+ allow for bundler+rbenv best practice. thanks hedgehog
2178
+ Rackspace create_image request - pass all options. thanks kbockmanrs
2179
+ Add Blue Box location support. thanks leehuffman
2180
+ Update location UUID. thanks leehuffman
2181
+ Add passing tests. thanks leehuffman
2182
+ Fix location_id typo. thanks leehuffman
2183
+ Add Blue Box location support. thanks leehuffman
2184
+ Update location UUID. thanks leehuffman
2185
+ Add passing tests. thanks leehuffman
2186
+ Fix location_id typo. thanks leehuffman
2187
+
2188
+ [ninefold|storage]
2189
+ Add copy method to Ninefold::File. thanks Benjamin Manns
2190
+
2191
+ [oVirt]
2192
+ Fixed syntax error in ovirt parser. thanks Amos Benari
2193
+ added option to block on start. Start action will block instead of fail. It can be useful in case of start after stop or create. thanks Amos Benari
2194
+ added support for update vm on ovirt. thanks Amos Benari
2195
+ Added VM and Template network-interfaces crud. thanks Amos Benari
2196
+
2197
+ [ovirt|compute]
2198
+ #instance_variables returns Symbols in 1.9.2+. thanks Dan Peterson
2199
+
2200
+ [rackspace/compute]
2201
+ Add 30GB (30720) compute size. thanks Phil Kates
2202
+
2203
+ [rackspace|storage]
2204
+ Add copy_object request. thanks Benjamin Manns
2205
+ Add copy method to Rackspace::File. thanks Benjamin Manns
2206
+
2207
+ [slicehost]
2208
+ add deprecation warnings. thanks geemus
2209
+
2210
+ [storage]
2211
+ fixes for deprecated implicit block usage to excon requests. thanks geemus
2212
+ update get_object requests to use excon response_blocks. thanks geemus
2213
+
2214
+ [storage|test]
2215
+ Run storage tests on a file in a subdirectory. thanks Benjamin Manns
2216
+
2217
+ [storage|tests]
2218
+ Add copy method to storage tests. thanks Benjamin Manns
2219
+ Check that the copied file body matches the original file. thanks Benjamin Manns
2220
+
2221
+ [vcloud]
2222
+ mark mock tests pending. thanks geemus
2223
+
2224
+ [vcloud|compute]
2225
+ rather mock Fog::Vcloud::Connection as this is the right place to mock things. thanks Peter Meier
2226
+ improve models + additional tests. thanks Peter Meier
2227
+ add API version 1.5 compability. thanks Peter Meier
2228
+
2229
+ [vmfusion|compute]
2230
+ Sync fission v0.4.0 plus more. thanks Cody Herriges
2231
+
2232
+ [voxel]
2233
+ update ssl_verify_peer = false setting. thanks geemus
2234
+
2235
+ [vsphere]
2236
+ add to test skip list when lacking credentials. thanks geemus
2237
+
2238
+ [zerigo|dns]
2239
+ Fixed an issue with updating a record since the response body is an empty string, not nil. thanks Kevin Menard
2240
+ Fixed the parser. TTL and priority values can be nil and should not be coerced into integers in that case. thanks Kevin Menard
2241
+
2242
+
2243
+ 1.1.2 12/18/2011 c1873e37e76af83e9de3f3308f3baa0664dd8dc2
2244
+ =========================================================
2245
+
2246
+ Stats! { 'collaborators' => 20, 'downloads' => 351821, 'forks' => 332, 'open_issues' => 21, 'watchers' => 1731 }
2247
+
2248
+ MVP! Stepan G. Fedorov
2249
+
2250
+ [Brightbox]
2251
+ Fix zone_id/flavour_id getter/setter for Server. thanks Hemant Kumar
2252
+ Add zone/server_type attribute for Server. thanks Hemant Kumar
2253
+ Add username to Image. thanks Hemant Kumar
2254
+ Add request for remove_firewall_policy. thanks Hemant Kumar
2255
+ Add model method for remove. thanks Hemant Kumar
2256
+ Change logic of fetching zone and flavour_id. thanks Hemant Kumar
2257
+ Remove name as mandatory parameter for creating server group. thanks Hemant Kumar
2258
+ Add created_at attribute for server_group,policy and firewall rule. thanks Hemant Kumar
2259
+ Updated Image format tests for username. thanks Paul Thornthwaite
2260
+ Updated ServerGroup format for created_at time. thanks Paul Thornthwaite
2261
+
2262
+ [aws|autoscaling]
2263
+ allow sa-east-1 region in mocks. thanks Nick Osborn
2264
+
2265
+ [aws|compute]
2266
+ fix security_group format for mock tests. thanks geemus
2267
+
2268
+ [aws|dns]
2269
+ fix capitilization for records#all options. thanks geemus
2270
+
2271
+ [aws|elb]
2272
+ update SSL certificates on listeners. :christmas_tree:. thanks Dylan Egan
2273
+
2274
+ [aws|storage]
2275
+ Support ACL on copy_object. :v:. thanks Dylan Egan
2276
+
2277
+ [brightbox]
2278
+ Adding *_server actions to ServerGroup model. thanks Caius Durling
2279
+ Pass along server_groups when creating a server. thanks Caius Durling
2280
+ Make update_cloud_ip request work. thanks Caius Durling
2281
+ Firewall models. thanks Paul Thornthwaite
2282
+ Added missing requirement and request arg. thanks Paul Thornthwaite
2283
+ Corrected deprecated argument. thanks Paul Thornthwaite
2284
+ Dynamically select testing image. thanks Paul Thornthwaite
2285
+ Helper to get a test server ready. thanks Paul Thornthwaite
2286
+ Revised tests structure. thanks Paul Thornthwaite
2287
+ Test and fix for API client secret reset. thanks Paul Thornthwaite
2288
+ Test update of reverse DNS for CIP. thanks Paul Thornthwaite
2289
+ Updated default Ubuntu image. thanks Paul Thornthwaite
2290
+ Make Cloud IP model's map nicer to use. thanks Paul Thornthwaite
2291
+ Correctly get Server's IP addresses as strings. thanks Paul Thornthwaite
2292
+ ServerGroup association to Servers. thanks Paul Thornthwaite
2293
+ Replace duplicate remove with move test. thanks Paul Thornthwaite
2294
+ Load balancer request tests expanded. thanks Paul Thornthwaite
2295
+ Request test for snapshotting a server. thanks Paul Thornthwaite
2296
+ fix mock tests. thanks geemus
2297
+
2298
+ [clodo]
2299
+ : Added missing field. thanks NomadRain
2300
+ Some cleanup before pool request. thanks NomadRain
2301
+ add fake credentials for mock tests. thanks geemus
2302
+
2303
+ [clodo|compute]
2304
+ Bug fixes. thanks NomadRain
2305
+ I don't know what is ignore_awful_caching, so i removed it. thanks Stepan G Fedorov
2306
+ server.ssh with password. Not only with key. thanks Stepan G Fedorov
2307
+ Fix Mocks. thanks Stepan G Fedorov
2308
+ Enable get_image_details. thanks Stepan G Fedorov
2309
+ Actualize Mocks. thanks Stepan G. Fedorov
2310
+ Enable :get_image_details. thanks Stepan G. Fedorov
2311
+ Add tests. thanks Stepan G. Fedorov
2312
+ Remove ddosprotect field from Mock. thanks Stepan G. Fedorov
2313
+ Add ip-address management. thanks Stepan G. Fedorov
2314
+ Rename moveip to move_ip_address. thanks Stepan G. Fedorov
2315
+ Enable ip-management. thanks Stepan G. Fedorov
2316
+ Fix delete_server mock. thanks Stepan G. Fedorov
2317
+ Fix move_ip_address behaviour. thanks Stepan G. Fedorov
2318
+ Add ip-address management. thanks Stepan G. Fedorov
2319
+ Rename moveip to move_ip_address. thanks Stepan G. Fedorov
2320
+ Enable ip-management. thanks Stepan G. Fedorov
2321
+ Fix delete_server mock. thanks Stepan G. Fedorov
2322
+ Fix move_ip_address behaviour. thanks Stepan G. Fedorov
2323
+ Added missing field (server.type). thanks Обоев Рулон ибн Хаттаб
2324
+
2325
+ [core]
2326
+ Cast Fog.wait_for interval to float. thanks Aaron Suggs
2327
+ fix exceptions from nil credential value. thanks Blake Gentry
2328
+ `@credential` should always be a symbol. thanks Hunter Haugen
2329
+
2330
+ [docs]
2331
+ note in title that multiple keys is an EC2 thing. thanks geemus
2332
+
2333
+ [glesys|compute]
2334
+ fixed tests due to changes in the api. thanks Anton Lindström
2335
+ fix test formats and whitespaces. thanks Anton Lindström
2336
+
2337
+ [misc]
2338
+ parse SQS timestamps as milliseconds. thanks Andrew Bruce
2339
+ Allow use of sa-east-1 in the ec2 mock as well. thanks Andy Delcambre
2340
+ Enabled tests for setting S3 ACL by id and uri on buckets and objects when mocking. thanks Arvid Andersson
2341
+ Added acl_to_hash helper method to Fog::Storage::AWS. thanks Arvid Andersson
2342
+ Ensuring that get_object_acl and get_bucket_acl mock methods returns a hash representation of the ACL. thanks Arvid Andersson
2343
+ Created Rackspace LB models folder. thanks Brian Hartsock
2344
+ This patch adds the ability to specify security groups by security group id, rather than group name. This is a required feature to use security groups within a VPC. thanks Eric Stonfer
2345
+ indentation change. thanks Eric Stonfer
2346
+ Add the ability to return the security group ID when requesting a SecurityGroupData object. thanks Eric Stonfer
2347
+ fix tests to accomodate the new SecurityGroupId. thanks Eric Stonfer
2348
+ Revert "fix tests to accomodate the new SecurityGroupId". thanks Eric Stonfer
2349
+ fix tests to accomodate the addition of security_group_id. thanks Eric Stonfer
2350
+ indentation fix. thanks Eric Stonfer
2351
+ indentation fix. thanks Eric Stonfer
2352
+ [Brightbox]Add remove_firewall_policy to computer.rb. thanks Hemant Kumar
2353
+ [Brightbox]Protocol is no longer required parameter for firewall. thanks Hemant Kumar
2354
+ Add implementation of DescribeInstanceStatus. thanks JD Huntington & Jason Hansen
2355
+ fixed type-o in rdoc on Fog::DNS:DNSMadeEasy. thanks John Dyer
2356
+ add query options to Fog::Storage::AWS#get_object_https_url. thanks Mateusz Juraszek
2357
+ add options hash to Fog::Storage::AWS::File#url and Fog::Storage::AWS::Files#get_https_url which use get_object_https_url method. thanks Mateusz Juraszek
2358
+ add query param to get_object_http_url for consistency. thanks Mateusz Juraszek
2359
+ Fix regression in Rakefile introduced in 70e7ea13. thanks Michael Brodhead
2360
+ add são paulo/brasil region. thanks Raphael Costa
2361
+ mock create_db_instance. thanks Rodrigo Estebanez
2362
+ mocking describe_db_instance. Fix hash structure in create_db_instance. thanks Rodrigo Estebanez
2363
+ mocking delete_db_instance. thanks Rodrigo Estebanez
2364
+ mocking wait_for through describe_db_instances. thanks Rodrigo Estebanez
2365
+ mocking modify_db_instance and reboot_db_instance. thanks Rodrigo Estebanez
2366
+ raise exception instead of excon response. thanks Rodrigo Estebanez
2367
+ Fixing bug: It always showed the first instance when using get. thanks Rodrigo Estebanez
2368
+ Fixes for issues 616 and 617. thanks Sergio Rubio
2369
+ * remove unnecessary debugging. thanks Sergio Rubio
2370
+ * Add missing recognized :libvirt_ip_command. thanks Sergio Rubio
2371
+ * Add server_name environment variable to ip_command. thanks Sergio Rubio
2372
+ * implement :destroy_volumes in Server.destroy (libvirt provider). thanks Sergio Rubio
2373
+ Add documentation for using multiple ssh keys on AWS. thanks Sven Pfleiderer
2374
+ Update bootstrap description. thanks Sven Pfleiderer
2375
+ Escape underscore charakters. thanks Sven Pfleiderer
2376
+ implement STS support. thanks Thom May
2377
+ Allow use of session tokens in AWS Compute. thanks Thom May
2378
+ handle session tokens for SQS and SimpleDB. thanks Thom May
2379
+ Split [AWS|STS] tests into separate files per #609. thanks Thom May
2380
+ Bug fix, metric_statistic#save would always fail. thanks bmiller
2381
+ bump excon dep. thanks geemus
2382
+ bump excon dep. thanks geemus
2383
+ Fixing Rackspace's lack of integer-as-string support as per https://github.com/fog/fog/pull/657#issuecomment-3145337. thanks jimworm
2384
+ add current set of elasticache endpoints. thanks lostboy
2385
+ added sa-east-1 region. thanks thattommyhall
2386
+ Add clodo support. thanks Обоев Рулон ибн Хаттаб
2387
+ Enable clodo support. thanks Обоев Рулон ибн Хаттаб
2388
+
2389
+ [rackspace|dns]
2390
+ error state callbacks now return an error. thanks Brian Hartsock
2391
+ fixed broken test. thanks Brian Hartsock
2392
+ should recognize rackspace_dns_endpoint argument. thanks geemus
2393
+ record should pass priority. thanks geemus
2394
+ mark tests for models pending in mocked mode. thanks geemus
2395
+
2396
+ [rackspace|lb]
2397
+ Fixed bug #644 with HTTP health monitors. thanks Brian Hartsock
2398
+ fix for #650 - Connection logging now loads appropriately. thanks Brian Hartsock
2399
+ added error page requests. thanks Brian Hartsock
2400
+ Added error pages to the model. thanks Brian Hartsock
2401
+ Added list parameter for nodeddress. thanks Brian Hartsock
2402
+ fixed broken test; cleaned up some tests. thanks Brian Hartsock
2403
+
2404
+ [rackspace|load balancers]
2405
+ fixed broken tests. thanks Brian Hartsock
2406
+
2407
+ [rackspace|loadbalancers]
2408
+ Fixed bug in deleting multiple nodes. thanks Brian Hartsock
2409
+
2410
+ [slicehost|compute]
2411
+ update image id in tests. thanks geemus
2412
+
2413
+ [storm_on_demand]
2414
+ fixes for formats in tests. thanks geemus
2415
+
2416
+ [tests | clodo]
2417
+ Added ip-management tests. thanks Stepan G. Fedorov
2418
+ Added ip-management tests. thanks Stepan G. Fedorov
2419
+
2420
+ [tests | clodo ]
2421
+ ddosprotect field must not exist. thanks Stepan G. Fedorov
2422
+
2423
+ [tests | clodo | compute]
2424
+ Add most tests. thanks Stepan G Fedorov
2425
+ Add image tests. thanks Stepan G Fedorov
2426
+
2427
+ [tests | clodo | compute ]
2428
+ create_server - First try. thanks Stepan G Fedorov
2429
+
2430
+ [vcloud]
2431
+ mark tests pending in mocked mode. thanks geemus
2432
+
2433
+ [vcloud|compute]
2434
+ introduce organizations. thanks Peter Meier
2435
+ make networks working also in organizations. thanks Peter Meier
2436
+ remove server from organizations as they are within vApps of vDC. thanks Peter Meier
2437
+ add catalogs to an organization. thanks Peter Meier
2438
+ a vdc does not have a tasklist. thanks Peter Meier
2439
+ introduce vapps. thanks Peter Meier
2440
+ More work on getting server in a useable shape. thanks Peter Meier
2441
+ fix network to the minimum. thanks Peter Meier
2442
+ a vapp might not have any childrens attached. thanks Peter Meier
2443
+ improve models add tests. thanks Peter Meier
2444
+ improve disk info access. thanks Peter Meier
2445
+ improve network. thanks Peter Meier
2446
+ introduce link on a network to parent network. thanks Peter Meier
2447
+ fix an issue if this is not parsed as an array. thanks Peter Meier
2448
+ stopgap fix for test data files. thanks geemus
2449
+ properly namespace vcloud test to prevent breaking others. thanks geemus
2450
+
2451
+ [vsphere]
2452
+ (#10644) Add servers filter to improve clone performance. thanks Jeff McCune
2453
+ fix whitespace issue in yaml for mocks. thanks geemus
2454
+
2455
+
2456
+ 1.1.1 11/11/2011 a468aa9a3445aae4f496b1a51e26572b8379c3da
2457
+ =========================================================
2458
+
2459
+ Stats! { 'collaborators' => 19, 'downloads' => 300403, 'forks' => 300, 'open_issues' => 14, 'watchers' => 1667 }
2460
+
2461
+ [core]
2462
+ loosen net-ssh dependency to avoid chef conflict. thanks geemus
2463
+
2464
+ [misc]
2465
+ 1.1.0 changelog. thanks geemus
2466
+
2467
+
2468
+ 1.1.0 11/11/2011 b706c7ed66c2e760fdd6222e38c68768575483b2
2469
+ =========================================================
2470
+
2471
+ Stats! { 'collaborators' => 19, 'downloads' => 300383, 'forks' => 300, 'open_issues' => 16, 'watchers' => 1667 }
2472
+
2473
+ MVP! Michael Zeng
2474
+
2475
+ [Compute|Libvirt]
2476
+ Take into account a query string can be empty, different on some rubies it gives nil, on some empty string. thanks Patrick Debois
2477
+
2478
+ [OpenStack|compute]
2479
+ fix v2.0 auth endpoints. thanks Todd Willey
2480
+ default metadata to empy hash. thanks Todd Willey
2481
+ add zone awareness. thanks Todd Willey
2482
+
2483
+ [aws]
2484
+ add us-west-2 region. thanks geemus
2485
+
2486
+ [aws|cloud_watch]
2487
+ mark tests pending when mocked. thanks geemus
2488
+
2489
+ [aws|cloudwatch]
2490
+ Add support for put-metric-alarm call. thanks Jens Braeuer
2491
+ Remove duplicate RequestId from response. thanks Jens Braeuer
2492
+ Add mocked implementation of put_metric_alarm. thanks Jens Braeuer
2493
+ Fix whitespace. thanks Jens Braeuer
2494
+ Fix merge error. thanks Jens Braeuer
2495
+ Add mocked version of put_metric_alarm. thanks Jens Braeuer
2496
+
2497
+ [aws|compute]
2498
+ Mock modify_image_attribute add/remove users. thanks Dan Peterson
2499
+ Allow mock tagging to work across accounts. thanks Dan Peterson
2500
+ Fix new instance eventual consistency for the non-filtered case. thanks Dan Peterson
2501
+ Update security group operations. thanks Dan Peterson
2502
+ Test for more invalid security group request input when mocking. thanks Dan Peterson
2503
+ Fix a bug in delete_tags, but come up against a bug in AWS where tags aren't deleted if the resource still exists. thanks Dylan Egan
2504
+ tags are reset when reloading. #570. thanks Dylan Egan
2505
+ fixed sopt_instance_request reply parsing when the original request contained a device mapping. thanks MaF
2506
+ wait_for reload then add server tags. thanks geemus
2507
+ spot request fixes. thanks geemus
2508
+ tweaks for spot request bootstrap. thanks geemus
2509
+ save tags for spot_requests#bootstrap. thanks geemus
2510
+ update ami for windows. thanks geemus
2511
+
2512
+ [aws|elb]
2513
+ Missed a change as part of #545. thanks Dan Peterson
2514
+ use a set union to register new instances. thanks Dylan Egan
2515
+ return only the instance IDs on describe. Use only available availability zones. :v:. thanks Dylan Egan
2516
+ attribute aliases for CanonicalHostedZoneName(ID). :v:. thanks Dylan Egan
2517
+ eventually consistent, like me getting a haircut. :v:. thanks Dylan Egan
2518
+
2519
+ [aws|emr]
2520
+ mark tests pending when mocked. thanks geemus
2521
+
2522
+ [aws|iam]
2523
+ slight cleanup and test with a certificate chain. :cake:. thanks Dylan Egan
2524
+
2525
+ [aws|mock]
2526
+ Dig into mock data instead of instantiating new service objects. thanks Dan Peterson
2527
+
2528
+ [aws|storage]
2529
+ ensure path isn't empty when specifying endpoint. thanks geemus
2530
+
2531
+ [brightbox]
2532
+ Fixed incorrect call to reset_ftp_password. thanks Paul Thornthwaite
2533
+
2534
+ [brightbox|compute]
2535
+ format fixes for tests. thanks geemus
2536
+
2537
+ [core]
2538
+ treat boolean values as a boolean. thanks Peter Meier
2539
+ fix attribute squashing with : in key. thanks Peter Meier
2540
+ all services should recognize :connection_options. thanks geemus
2541
+ separate loggers for deprecations/warnings. thanks geemus
2542
+ avoid duplicates in Fog.providers. thanks geemus
2543
+ more useful structure for Fog.providers. thanks geemus
2544
+ add newlines to logger messages. thanks geemus
2545
+ update stats raketask to point to org. thanks geemus
2546
+ toss out nil-value keys when checking required credentials. thanks geemus
2547
+
2548
+ [dns]
2549
+ Made model tests use uniq domain names. thanks Brian Hartsock
2550
+
2551
+ [dnsmadeeasy|dns]
2552
+ Fix Fog::DNS::DNSMadeEasy::Record#save to handle updating a record correctly. thanks Peter Weldon
2553
+
2554
+ [docs]
2555
+ update links to point to http://github.com/fog/fog. thanks geemus
2556
+
2557
+ [dynect|dns]
2558
+ Automatically poll jobs if we get them. Closes #575. thanks Dan Peterson
2559
+
2560
+ [misc]
2561
+ Change response parameter. thanks Alan Ivey
2562
+ Missing HEAD method. thanks Andrew Newman
2563
+ Missing HEAD method. thanks Andrew Newman
2564
+ Putting version back. thanks Andrew Newman
2565
+ Reformatting and making consistent with other classes. thanks Andrew Newman
2566
+ Missed renam to head_namespace. thanks Andrew Newman
2567
+ Reverting version and date in gemspec. thanks Andrew Newman
2568
+ Formatting. thanks Andrew Newman
2569
+ Removed puts of element name. thanks Arvid Andersson
2570
+ Changes to allow EMR control through fog. thanks Bob Briski
2571
+ Added EMR functions for AWS. thanks Bob Briski
2572
+ Adding tests. thanks Bob Briski
2573
+ merge EMR changes with upstream repo. thanks Bob Briski
2574
+ (#10055) Search vmFolder inventory vs children. thanks Carl Caum
2575
+ Adding a path attribute to the vm_mob_ref hash. thanks Carl Caum
2576
+ Cleanup Attributes#merge_attributes. thanks Hemant Kumar
2577
+ Update S3 doc example to show current API. thanks Jason Roelofs
2578
+ Restructure main website's navigation. thanks Jason Roelofs
2579
+ Add CloudFormation UpdateStack call. thanks Jason Roelofs
2580
+ Minor whitespace change. thanks Jens Braeuer
2581
+ Trailing whitespace cleanup. thanks Jens Braeuer
2582
+ Whitespace cleanup. thanks Jens Braeuer
2583
+ Fix merge error. thanks Jens Braeuer
2584
+ Removed statement about @geemus being only member of collaborators list since it's not true anymore. thanks John Wang
2585
+ Fixes Fog::AWS::Storage#put_(bucket|object)_acl. thanks Jonas Pfenniger
2586
+ Randomize bucket names in tests. thanks Jonas Pfenniger
2587
+ Fix AWS S3 bucket and object tests. thanks Jonas Pfenniger
2588
+ (#10570) Use nil in-place of missing attributes. thanks Kelsey Hightower
2589
+ (#10570) Update `Fog::Compute::Vsphere` tests. thanks Kelsey Hightower
2590
+ We use 'Key' for all S3 objects now. thanks Kevin Menard
2591
+ Implemented mocks for Zerigo. thanks Kevin Menard
2592
+ Updated docs to use newer arg, rather than the old deprecated one. thanks Kevin Menard
2593
+ Added the ability to search Zerigo records for a particular zone. thanks Kevin Menard
2594
+ Return the only element of the array, not the array itself. thanks Kevin Menard
2595
+ Fixed an issue whereby saving an existing record in Zerigo would nil out its value. thanks Kevin Menard
2596
+ added DeleteAlarms, DescribeAlarms and PutMetricAlarms. thanks Michael Zeng
2597
+ re-adding files. thanks Michael Zeng
2598
+ adding describe_alarm_history. thanks Michael Zeng
2599
+ adding diable/enable alarm actions. thanks Michael Zeng
2600
+ added DescribeAlarmHistory request and parser. thanks Michael Zeng
2601
+ fixing describe_alarms and describe_alarms_for_metric requests. thanks Michael Zeng
2602
+ cleaned up requesters and parsers. thanks Michael Zeng
2603
+ added SetAlarmState. thanks Michael Zeng
2604
+ included more response elements, request parameters should now be complete. Included model and collection classes. thanks Michael Zeng
2605
+ bug fixes. thanks Michael Zeng
2606
+ fixed models and added tests. thanks Michael Zeng
2607
+ no need to add rake dep. thanks Michael Zeng
2608
+ revert gempspec date change. thanks Michael Zeng
2609
+ reverting cloud_watch.rb. thanks Michael Zeng
2610
+ reverting cloud_watch.rb. thanks Michael Zeng
2611
+ reverting cloud_watch.rb. thanks Michael Zeng
2612
+ reverting cloud_watch.rb. thanks Michael Zeng
2613
+ reverting cloud_watch.rb. thanks Michael Zeng
2614
+ added newline to the end of file. thanks Michael Zeng
2615
+ removed all tabs. thanks Michael Zeng
2616
+ added alarm_data_tests. thanks Michael Zeng
2617
+ spacing change. thanks Michael Zeng
2618
+ AWS#hash_to_acl - add support for EmailAddress and URI grantee types. thanks Nathan Sutton
2619
+ Test and improve Fog::Storage::AWS.hash_to_acl. thanks Nathan Sutton
2620
+ Adding a method to unmock Fog. Addresses issue #594. thanks Nathan Sutton
2621
+ Adding documentation for Fog.unmock! and Fog::Mock.reset. thanks Nathan Sutton
2622
+ added linode ssh support. thanks Nicholas Ricketts
2623
+ added linode ssh support with proper public ip address. thanks Nicholas Ricketts
2624
+ cleaned up code to use att_XX methods. thanks Nicholas Ricketts
2625
+ clean up public_ip_address code for linode. thanks Nicholas Ricketts
2626
+ Seems like rackspace might have changed this. thanks Nik Wakelin
2627
+ Sends power parameter in GoGrid's grid_server_power request. thanks Pablo Baños López
2628
+ Slicehost uses record-type and zone-id for their API, which messes with Fog internals, so changing these to record_type and zone_id in the parser. thanks Patrick McKenzie
2629
+ Did this do anything?. thanks Patrick McKenzie
2630
+ Revert "Slicehost uses record-type and zone-id for their API, which messes with Fog internals, so changing these to record_type and zone_id in the parser.". thanks Patrick McKenzie
2631
+ Not having the best of days with git. Revert the reversion of the commit that I really do want to make. thanks Patrick McKenzie
2632
+ Slicehost uses record-type and zone-id for their API, which messes with Fog internals, so changing these to record_type and zone_id in the parser. thanks Patrick McKenzie
2633
+ Do not touch .gitignore. thanks Patrick McKenzie
2634
+ Fixing Slicehost DNS so that a) tests pass b) token names map to what Fog expects -- record_type not record-type, value not data, etc c) creation of new DNS records possible. thanks Patrick McKenzie
2635
+ 1) Fix so that getting a single record actually works. 2) zone.records currently returns all records in account, not just records for that zone. Add failing test (temporarily, assumes test account has existing zones for this to actually fail) + fix. 3) Add in data alias for record.value, just in case someone needs it, as Slicehost calls this data. thanks Patrick McKenzie
2636
+ Allow updates of DNS records. Updates on zones not supported yet. thanks Patrick McKenzie
2637
+ Fixing parsing of zone.records.get(id) so that it parses a single record properly rather than attempting to parse a list of records improperly. Fixing tests to match this (expected) behavior rather than work-around the broken way. thanks Patrick McKenzie
2638
+ Getting it so zone.records works as expected (loads all records, for that zone only). thanks Patrick McKenzie
2639
+ simplification. thanks Peter Meier
2640
+ Optimize vSphere convert_vm_mob_ref_to_attr_hash. thanks Rich Lane
2641
+ Compact the way options are mapped to request. thanks Todd Willey
2642
+ Allow setting userdata as plain ascii or b64. thanks Todd Willey
2643
+ bump excon dep. thanks geemus
2644
+ [rackspace][dns] fixes for job request format. thanks geemus
2645
+ bump net-ssh dependency. thanks geemus
2646
+ tshirt offer should be implicit, rather than explicit. thanks geemus
2647
+ add region option to aws sns service recognizes method. thanks lostboy
2648
+ add capabilities support to cloudformation createstack request. thanks lostboy
2649
+
2650
+ [ninefold|storage]
2651
+ omit signature in stringtosign. thanks geemus
2652
+ check objectid for existence. thanks geemus
2653
+ allow overwriting files for consistency. thanks geemus
2654
+
2655
+ [rackspace|dns]
2656
+ Fixed request tests that need unique domain name. thanks Brian Hartsock
2657
+ Adapted to changes in callback mechanism. thanks Brian Hartsock
2658
+
2659
+ [rackspace|load_balancers]
2660
+ made lb endpoint configurable. thanks Brian Hartsock
2661
+
2662
+ [release]
2663
+ omit Patrick Debois from future MVP status. thanks geemus
2664
+
2665
+ [vsphere|compute]
2666
+ test fixes. thanks geemus
2667
+
2668
+
2669
+ 1.0.0 09/29/2011 a81be08ef2473af91f16f4926e5b3dfa962a34ae
2670
+ =========================================================
2671
+
2672
+ Stats! { 'collaborators' => 16, 'downloads' => 245745, 'forks' => 260, 'open_issues' => 13, 'watchers' => 1521 }
2673
+
2674
+ MVP! Patrick Debois
2675
+
2676
+ [Libvirt]
2677
+ if transport is empty, ssh can't be enabled. thanks Patrick Debois
2678
+ Enable to pass an libvirt_ip_command for looking up the mac -> ip_address . Using eval to allow for passing of mac address in ip_command. thanks Patrick Debois
2679
+ corrected typo for appending string output to IO.popen. thanks Patrick Debois
2680
+ initialize the ip_address as an empty string. thanks Patrick Debois
2681
+ more specific error if the ip_command results in string that has no ip-address format. thanks Patrick Debois
2682
+ Remove the newlines after running the local ip_command. thanks Patrick Debois
2683
+ rename xml_desc to xml as an attribute and hide all non_dynamic attributes from fog console. thanks Patrick Debois
2684
+ added blocked state and corrected crashed to shutoff state. thanks Patrick Debois
2685
+ renamed 'raw' connection to raw in the Fog Connection. thanks Patrick Debois
2686
+
2687
+ [Libvirt|Compute]
2688
+ renamed all disk_ params for server creation to volume_ to make it consistent with the object type volume. thanks Patrick Debois
2689
+
2690
+ [aws]
2691
+ remove base64 require (duplicates require in fog/core). thanks geemus
2692
+
2693
+ [aws/sqs]
2694
+ Adding SQS mocking support. thanks Istvan Hoka
2695
+
2696
+ [aws|acs]
2697
+ Create ACS security_group model and collection. thanks Aaron Suggs
2698
+ Improve security group tests. thanks Aaron Suggs
2699
+ Adds ACS#delete_cache_security_group. thanks Benton Roberts
2700
+ Added security group methods. thanks Benton Roberts
2701
+ Update CacheSecurityGroup API to public beta 2011-07-15. thanks Benton Roberts
2702
+
2703
+ [aws|cloudwatch]
2704
+ Fix whitespace. thanks Jens Braeuer
2705
+
2706
+ [aws|compute]
2707
+ add snapshot method to volume model. thanks Andrei Serdeliuc
2708
+ Correct path. thanks Dylan Egan
2709
+ raise an ArgumentError if image_id is nil, otherwise an ugly InternalError is returned from AWS. thanks Dylan Egan
2710
+ wait for ready before testing tags. thanks geemus
2711
+ fixes for mocks tests. thanks geemus
2712
+ fix formatting for mock security groups. thanks geemus
2713
+
2714
+ [aws|dns]
2715
+ fix parser path. thanks geemus
2716
+
2717
+ [aws|elasticache]
2718
+ refactor acs->elasticache. thanks Benton Roberts
2719
+ refactor for whitespace / readability. thanks Benton Roberts
2720
+ fix typo in Elasticache Security Group tests. thanks Benton Roberts
2721
+ rename test file for shindo. thanks Benton Roberts
2722
+ create and describe cache clusters. thanks Benton Roberts
2723
+ delete cache clusters. thanks Benton Roberts
2724
+ add Cache Cluster model and collection. thanks Benton Roberts
2725
+ Fix bug in AWS::Elasticache::Cluster.get. thanks Benton Roberts
2726
+ randomize cache cluster IDs in testing. thanks Benton Roberts
2727
+ return nil on CacheClusterNotFound. thanks Benton Roberts
2728
+ use Formatador for testing output. thanks Benton Roberts
2729
+ move ClusterNotFound rescue code into Elasticache service definition. thanks Benton Roberts
2730
+ change method profile for create_cache_cluster, delete_cache_cluster, and describe_cache_clusters. thanks Benton Roberts
2731
+ change parameters for describe_cache_security_groups to ruby-friendly values. thanks Benton Roberts
2732
+ remove port attribute from cluster model. thanks Benton Roberts
2733
+ fix Elasticahce::Cluster.security_groups attribute. thanks Benton Roberts
2734
+ implement modify_cache_cluster request. thanks Benton Roberts
2735
+ cluster port number cannot be modified. thanks Benton Roberts
2736
+ add cache node info to describe_cache_clusters. thanks Benton Roberts
2737
+ add InvalidInstace error class. thanks Benton Roberts
2738
+ remove optional parameters from Elasticache::Cluster. thanks Benton Roberts
2739
+ show cluster node details by default in model. thanks Benton Roberts
2740
+ add test for removing a cache node. thanks Benton Roberts
2741
+ add pending_values to modified nodes. thanks Benton Roberts
2742
+ implement RebootCacheCluster. thanks Benton Roberts
2743
+ implement DescribeEvents. thanks Benton Roberts
2744
+ implement basic parameter group requests. thanks Benton Roberts
2745
+ implement describe_engine_default_parameters request. thanks Benton Roberts
2746
+ implement Elasticache::ParameterGroup model and collection. thanks Benton Roberts
2747
+ implement modify_cache_parameter_group request. thanks Benton Roberts
2748
+ implement reset_cache_parameter_group request. thanks Benton Roberts
2749
+ implement describe_cache_groups request. thanks Benton Roberts
2750
+ test fix: change DESCRIBE_SECURITY_GROUPS helper format. thanks Benton Roberts
2751
+ delete outdated test file. thanks Benton Roberts
2752
+
2753
+ [aws|elb]
2754
+ Raise a custom exception for Throttling. thanks Dylan Egan
2755
+ wait_for server to be ready? before register. thanks geemus
2756
+
2757
+ [aws|iam]
2758
+ implement correct path behaviour in mocking. thanks Dylan Egan
2759
+
2760
+ [aws|simpledb]
2761
+ fix tests to use proper accessor. thanks geemus
2762
+
2763
+ [aws|storage]
2764
+ fix acl mocking. thanks geemus
2765
+
2766
+ [bluebox|compute]
2767
+ Fixed instance state. thanks Lee Huffman
2768
+ Create and destroy images. thanks Lee Huffman
2769
+ Fix for setting hostname on server save. thanks Lee Huffman
2770
+ Expect correct status code for template create. thanks Lee Huffman
2771
+
2772
+ [cdn|aws]
2773
+ move aws cdn to its own shared area (namespacing should probably be corrected). thanks geemus
2774
+
2775
+ [cdn|rackspace]
2776
+ move rackspace cdn to its own shared area (namespacing should probably be corrected). thanks geemus
2777
+
2778
+ [compute]
2779
+ fix service calls I missed in recent rearrange. thanks geemus
2780
+
2781
+ [compute|aws]
2782
+ - Change modify_instance_attribute name to match EC2 API method, and actually make it do something. thanks Caleb Tennis
2783
+ Include ids of things we're modifying in requests. thanks Dan Peterson
2784
+ Fix create_volume mock when creating from a snapshot. thanks Dan Peterson
2785
+ Make get_bucket_location mock return LocationConstraint as API doc describes. thanks Dan Peterson
2786
+ Fix associate_address mock to detach/revert previous addresses properly. thanks Dan Peterson
2787
+ Don't warn in mock describe_snapshots if RestorableBy is 'self'. thanks Dan Peterson
2788
+ When mocking, instances don't show up right away. thanks Dan Peterson
2789
+ Suffix with _tests.rb. thanks Dylan Egan
2790
+ IpPermissionsEgress is returned from AWS. thanks Dylan Egan
2791
+ Simple test to verify revoke_group_and_owner behaviour. thanks Dylan Egan
2792
+ Apparently passing a nil value works against live AWS. Only use SourceSecurityGroupOwnerId in mocks if supplied. thanks Dylan Egan
2793
+ Since this is really proving the use of nil, let's just not pretend there's a value for owner_id. thanks Dylan Egan
2794
+ sometimes the platform string is returned. thanks Dylan Egan
2795
+ enable tests for mocked tags. thanks Dylan Egan
2796
+ Fix NameError. thanks Jens Braeuer
2797
+ Fix bug in tag mocking preventing servers from being updated with new tags. thanks Matt Griffin
2798
+ Add mocking for describe_tags. thanks Matt Griffin
2799
+ move aws compute to its own shared area (namespacing should probably be corrected). thanks geemus
2800
+
2801
+ [compute|bluebox]
2802
+ move bluebox compute to its own shared area (namespacing should probably be corrected). thanks geemus
2803
+
2804
+ [compute|brightbox]
2805
+ Allow persistent option to be passed to Brightbox::Compute. thanks Caius Durling
2806
+ Updated test for new behaviour. thanks Paul Thornthwaite
2807
+ Picking up more attributes from Account. thanks Paul Thornthwaite
2808
+ No need to hardcode a server type. thanks Paul Thornthwaite
2809
+ Updated and reordered model attributes. thanks Paul Thornthwaite
2810
+ Updates to tests. thanks Paul Thornthwaite
2811
+ Added resave warning to a few Brightbox models. thanks Paul Thornthwaite
2812
+ Requests for server group management. thanks Paul Thornthwaite
2813
+ Merge in test updates and server groups. thanks Paul Thornthwaite
2814
+ Corrected require missed in update. thanks Paul Thornthwaite
2815
+ Reset times to the correct type so not string attributes. thanks Paul Thornthwaite
2816
+ Updated Format test to remove gone fields. thanks Paul Thornthwaite
2817
+ Fixed typo in connection options. thanks Paul Thornthwaite
2818
+ Added missing requests. thanks Paul Thornthwaite
2819
+ Added requests for firewall management. thanks Paul Thornthwaite
2820
+ Added ServerGroup model and collections. thanks Paul Thornthwaite
2821
+ Passing options to server group update. thanks Paul Thornthwaite
2822
+ Fixed server_groups.get. thanks Paul Thornthwaite
2823
+ move brightbox compute to its own shared area (namespacing should probably be corrected). thanks geemus
2824
+
2825
+ [compute|ecloud]
2826
+ move ecloud compute to its own shared area (namespacing should probably be corrected). thanks geemus
2827
+
2828
+ [compute|glesys]
2829
+ added glesys as provider. thanks Anton Lindstrom
2830
+ added tests. thanks Anton Lindström
2831
+ fixed logical error for default values. thanks Anton Lindström
2832
+ fixed an invalid character. thanks Anton Lindström
2833
+ consistency/cleanup. thanks geemus
2834
+ fix format for start vs stop. thanks geemus
2835
+ rearrange to match current naming conventions. thanks geemus
2836
+
2837
+ [compute|go_grid]
2838
+ move go_grid compute to its own shared area (namespacing should probably be corrected). thanks geemus
2839
+
2840
+ [compute|libvirt]
2841
+ merge jedi4ever/libvirt. thanks geemus
2842
+ move libvirt compute to its own shared area (namespacing should probably be corrected). thanks geemus
2843
+
2844
+ [compute|linode]
2845
+ move linode compute to its own shared area (namespacing should probably be corrected). thanks geemus
2846
+
2847
+ [compute|bare_metal_cloud]
2848
+ move bare_metal_cloud compute to its own shared area (namespacing should probably be corrected). thanks geemus
2849
+
2850
+ [compute|ninefold]
2851
+ move ninefold compute to its own shared area (namespacing should probably be corrected). thanks geemus
2852
+
2853
+ [compute|rackspace]
2854
+ move rackspace compute to its own shared area (namespacing should probably be corrected). thanks geemus
2855
+
2856
+ [compute|slicehost]
2857
+ move slicehost compute to its own shared area (namespacing should probably be corrected). thanks geemus
2858
+
2859
+ [compute|storm_on_demand]
2860
+ move storm_on_demand compute to its own shared area (namespacing should probably be corrected). thanks geemus
2861
+
2862
+ [compute|vcloud]
2863
+ move vcloud compute to its own shared area (namespacing should probably be corrected). thanks geemus
2864
+
2865
+ [compute|virtual_box]
2866
+ move virtual_box compute to its own shared area (namespacing should probably be corrected). thanks geemus
2867
+
2868
+ [compute|voxel]
2869
+ move voxel compute to its own shared area (namespacing should probably be corrected). thanks geemus
2870
+
2871
+ [core]
2872
+ Allow FOG_CREDENTIAL env variable for config. thanks Aaron Suggs
2873
+ add collection#destroy(identity). thanks geemus
2874
+ move openssl to more central location. thanks geemus
2875
+ first steps toward seperately requirable bits. thanks geemus
2876
+ move providers to lib/fog/. thanks geemus
2877
+ work toward separate requires. thanks geemus
2878
+ prototype logger. thanks geemus
2879
+ add get/set methods for logger channels. thanks geemus
2880
+ use logger throughout for warnings. thanks geemus
2881
+ coerce service credentials. thanks geemus
2882
+ delete nil valued keys from config. thanks geemus
2883
+ pass connection_options through service init. thanks geemus
2884
+ don't rely on bin stuff for service init in tests. thanks geemus
2885
+ dedup services listings. thanks geemus
2886
+ more convenient accessors. thanks geemus
2887
+ fixing more paths after rearrange. thanks geemus
2888
+ add credentials setter. thanks geemus
2889
+ make sure credentials tests properly reset after completion. thanks geemus
2890
+ bump excon dep. thanks geemus
2891
+ properly fix credentials tests. thanks geemus
2892
+ skip vmfusion in rake nuke. thanks geemus
2893
+ bump excon. thanks geemus
2894
+ kill dns stuff in nuke as well. thanks geemus
2895
+
2896
+ [dns]
2897
+ update dns constructor to match recent file moves. thanks geemus
2898
+
2899
+ [dns|aws]
2900
+ move aws dns to its own shared area (namespacing should probably be corrected). thanks geemus
2901
+
2902
+ [dns|bluebox]
2903
+ move bluebox dns to its own shared area (namespacing should probably be corrected). thanks geemus
2904
+
2905
+ [dns|dnsimple]
2906
+ move dnsimple dns to its own shared area (namespacing should probably be corrected). thanks geemus
2907
+
2908
+ [dns|dnsmadeeasy]
2909
+ move dnsmadeeasy dns to its own shared area (namespacing should probably be corrected). thanks geemus
2910
+
2911
+ [dns|dynect]
2912
+ move dynect dns to its own shared area (namespacing should probably be corrected). thanks geemus
2913
+
2914
+ [dns|linode]
2915
+ move linode dns to its own shared area (namespacing should probably be corrected). thanks geemus
2916
+
2917
+ [dns|rackspace]
2918
+ initial commit. thanks Brian Hartsock
2919
+ list_domains request. thanks Brian Hartsock
2920
+ added attributes to list_domains; refactored rackspace errors to be shared with load balancers. thanks Brian Hartsock
2921
+ move rackspace dns to its own shared area (namespacing should probably be corrected). thanks geemus
2922
+
2923
+ [dns|slicehost]
2924
+ move slicehost dns to its own shared area (namespacing should probably be corrected). thanks geemus
2925
+
2926
+ [dns|zerigo]
2927
+ move zerigo dns to its own shared area (namespacing should probably be corrected). thanks geemus
2928
+
2929
+ [doc]
2930
+ Added blogpost about libvirt into fog to the press page. thanks Patrick Debois
2931
+ corrected the link to the actual blogpost instead of the github markdown page :). thanks Patrick Debois
2932
+
2933
+ [docs]
2934
+ add note about ec2 default username. thanks geemus
2935
+
2936
+ [dynect|dns]
2937
+ use a string for now. #362 is open for accepting symbols in mocks. thanks Dylan Egan
2938
+ return the zone name. thanks Dylan Egan
2939
+ accidentally hardcoded the record type in the mocked data. thanks Dylan Egan
2940
+ support ANY record results. thanks Dylan Egan
2941
+ Don't use address as different records have different arguments, just send rdata. Remove value. Add CNAME test. thanks Dylan Egan
2942
+ find, not first. thanks Dylan Egan
2943
+ always ensure it's an integer. thanks Dylan Egan
2944
+ retry if auth_token was previously set and error message includes possible login expiration. thanks Dylan Egan
2945
+ support reauth for inactivity logout too. thanks Dylan Egan
2946
+
2947
+ [glesys|compute]
2948
+ fixes to play nice with mock tests. thanks geemus
2949
+ skip flavor tests. thanks geemus
2950
+
2951
+ [gleysys]
2952
+ fixes for mocked test setup. thanks geemus
2953
+
2954
+ [libvirt]
2955
+ Added option libvirt_ip_command to the credentials error page. thanks Patrick Debois
2956
+ Corrected template variable from interface_nat_network to network_nat_network. thanks Patrick Debois
2957
+
2958
+ [linode|compute]
2959
+ update format for plans. thanks geemus
2960
+
2961
+ [load balancer|rackspace]
2962
+ fixed some minor bugs i noticed in the tests. thanks Brian Hartsock
2963
+
2964
+ [misc]
2965
+ Fixed a couple of errors in the examples. thanks Bobby Wilson
2966
+ Implement fog support for the Openstack Compute API v1.1. Includes support for legacy v1.0 style auth and v2.0 keystone auth. thanks Dan Prince
2967
+ Add create_image to server model. thanks Dan Prince
2968
+ Add support for non-strict validations, and nullable arrays/hashes. thanks Dan Prince
2969
+ Additions and updates to the OpenStack API tests. thanks Dan Prince
2970
+ Beginning of Dynect::DNS mocking support. thanks Dylan Egan
2971
+ get_record, single. thanks Dylan Egan
2972
+ Tidy up a bit. thanks Dylan Egan
2973
+ Support freeze and thaw. thanks Dylan Egan
2974
+ sleep for 3 seconds when running against Dynect because otherwise there is an operation still in progress. thanks Dylan Egan
2975
+ raise a NotFound if not found. thanks Dylan Egan
2976
+ Fog::DNS::Dynect, not Fog::Dynect::DNS. thanks Dylan Egan
2977
+ InstanceId should have index according to AWS Docs. thanks E.J. Finneran
2978
+ fix indenting to get markdown to recognise the code block properly. thanks Glenn Tweedie
2979
+ Better URL escaping for Rackspace Cloud Files. thanks H. Wade Minter
2980
+ Tweak to escape the Cloud Files filename before passing to public_url. thanks H. Wade Minter
2981
+ Put escaping logic into the collection get_url call. thanks H. Wade Minter
2982
+ (#9241) Add skeleton VMware vSphere platform support. thanks Jeff McCune
2983
+ (#9241) Add SSL verification. thanks Jeff McCune
2984
+ (#9241) Add current_time request. thanks Jeff McCune
2985
+ (#9241) Add model for Fog::Compute[:vsphere].servers. thanks Jeff McCune
2986
+ (#9241) Add test skeleton framework. thanks Jeff McCune
2987
+ (#9241) Add ability to find VMs by UUID. thanks Jeff McCune
2988
+ (#9421) Add start, stop, reboot server model methods. thanks Jeff McCune
2989
+ (#9241) Add destroy API request and model action. thanks Jeff McCune
2990
+ (#9241) Add find_template_by_instance_uuid request. thanks Jeff McCune
2991
+ (#9241) Add vm_clone API request. thanks Jeff McCune
2992
+ (#9241) Don't fail when trying to model a cloning VM. thanks Jeff McCune
2993
+ (#9241) Make the reload action of the server models work. thanks Jeff McCune
2994
+ (#9124) Add ability to reload the model of a cloning VM. thanks Jeff McCune
2995
+ Refactor requests to return simple hashes and add unit tests. thanks Jeff McCune
2996
+ Add vsphere_server connection attribute. thanks Jeff McCune
2997
+ Fix vm clone problem when a Guid instance is passed as the instance_uuid. thanks Jeff McCune
2998
+ Fix documentation. The resulting hash has no entry "PutScalingPolicyResponse", but a "...Result". thanks Jens Braeuer
2999
+ Pass hostname to create_block request if provided. thanks Lee Huffman
3000
+ Added Fog::CurrentMachine#ip_address. thanks Pan Thomakos
3001
+ First cut at libvirt integration. Lots of features missing, but it proves the point. thanks Patrick Debois
3002
+ - Added URI helper to parse libvirt URL's - exposed Libvirt original connection in Compute object - exposed URI in Compute object - added libvirt-ruby gem to the developer Gemspec. thanks Patrick Debois
3003
+ - Get all pools now by name or by uuid - Create pool by providing xml - Destroy pool. thanks Patrick Debois
3004
+ Added ability to create/destroy volumes You can search for volumes by path,key,name And list all volumes from a pool. thanks Patrick Debois
3005
+ Allow creation of persistent or non persistent volumes. thanks Patrick Debois
3006
+ Again major breakthrough. thanks Patrick Debois
3007
+ Coming along nicely. thanks Patrick Debois
3008
+ - ERB has a problem with a variable called type, it expands it on ruby 1.8 to .class - If the key or the volume is not found, maybe because the pool has not yet been started, the volumes should return nil. thanks Patrick Debois
3009
+ Changed the monitoring command for IP addresses arpwatch.dat is not the correct place, it should be via syslog, or seperate file. thanks Patrick Debois
3010
+ fixing whitespace. thanks Patrick Debois
3011
+ removed trailing spaces. thanks Patrick Debois
3012
+ indenting the files. thanks Patrick Debois
3013
+ check ip-address that returned from the search in the logfile. thanks Patrick Debois
3014
+ Added a way to locally retrieve the ipaddress through the ip_command More checks on correctness of ipaddress And checks on ssh failures. thanks Patrick Debois
3015
+ renamed ipaddress to ip_address made the .id available and an alias to uuid for server. thanks Patrick Debois
3016
+ Added description on the libvirt environment can be initialized and the requirements for ssh and ipaddress to work. thanks Patrick Debois
3017
+ Added a global libvirt provider option ip_command to specify the ip_command Also more robust handling of connection error when the libvirt connection fails. thanks Patrick Debois
3018
+ Remove the idea of template_options, now you specify the param directly in the create command. Unit and Size are now calculated. thanks Patrick Debois
3019
+ Removed the template_options param. thanks Patrick Debois
3020
+ Fixed disk_format_type vs disk_type_format difference and changed disk_format_type in the template as well. thanks Patrick Debois
3021
+ added openauth support thanks to @rubiojr. thanks Patrick Debois
3022
+ changed return code of state to string instead of symbols to be consistent with aws provider. thanks Patrick Debois
3023
+ - Added concept of nodes (host of domains = node) - Renamed the shuttingdown to shutting-down mode - fixed the Gem warning on using Gem.find_by_name instead of Gem::Specification. thanks Patrick Debois
3024
+ Added a way to filter the active and the defined servers(domains) using - servers.all(:active => false, :defined=> true). thanks Patrick Debois
3025
+ Fixed empty filter issue, nil filter. thanks Patrick Debois
3026
+ * Fixed an error with memory_size 256 that should be 256*1024 as the default is K nor M * Changed the ip_command to check the ipaddress to include changes not * only new IPaddresses. thanks Patrick Debois
3027
+ Added libvirt options to credentials error. thanks Patrick Debois
3028
+ Made libvirt username param consistent with other providers libvirt_user -> libvirt_username. thanks Patrick Debois
3029
+ [Libvirt] Provided better solution for ip_command : use shell variable instead of ruby string for mac-address. thanks Patrick Debois
3030
+ vmfusion provider , requires the fission gem (pull request pending). thanks Patrick Debois
3031
+ fixed missing disk-> volume conversion. thanks Patrick Debois
3032
+ another log entry style resused old ethernet. thanks Patrick Debois
3033
+ Fix warning about whitespace before parentheses in dns.rb. thanks Rick Bradley
3034
+ Added support fo canned ACLs in put_object_acl. thanks dblock
3035
+ Updated put_bucket_acl to support canned ACLs. thanks dblock
3036
+ Marking as pending. thanks dblock
3037
+ Refactored specs, mocks, etc. thanks dblock
3038
+ Revert "[core] make sure credentials tests properly reset after completion". thanks geemus
3039
+ Update gemspec description to mention popular services that are supported. thanks watsonian
3040
+
3041
+ [ninefold|compute]
3042
+ fixes for list formats. thanks geemus
3043
+ fix for network formats. thanks geemus
3044
+ add default (ubuntu) image for servers. thanks geemus
3045
+
3046
+ [rackspace|dns]
3047
+ all important domains requests. thanks Brian Hartsock
3048
+ zone models. thanks Brian Hartsock
3049
+ records requests. thanks Brian Hartsock
3050
+ record models. thanks Brian Hartsock
3051
+ minor docs update. thanks Brian Hartsock
3052
+ add mock initializer. thanks geemus
3053
+ consistency fixes and tests and mark pending in mocked. thanks geemus
3054
+ fix mock init to play nice with tests. thanks geemus
3055
+ fixes for updates to beta. thanks geemus
3056
+
3057
+ [rackspace|load_balancers]
3058
+ fix path for tests. thanks geemus
3059
+ fixes for tests. thanks geemus
3060
+
3061
+ [rackspace|storage]
3062
+ fix broken model paths. thanks geemus
3063
+
3064
+ [release]
3065
+ update MVP skip list. thanks geemus
3066
+ add collaborator count to changelog stats. thanks geemus
3067
+
3068
+ [storage]
3069
+ Fixed what appeared to be broken test (I only verified with Rackspace provider). thanks Brian Hartsock
3070
+
3071
+ [storage|aws]
3072
+ Add options to File#copy method. thanks Aaron Suggs
3073
+ move aws storage back with other aws stuff (namespacing should probably be recorrected as well). thanks geemus
3074
+
3075
+ [storage|google]
3076
+ move google storage to shared google stuff (namespacing should probably be corrected). thanks geemus
3077
+
3078
+ [storage|local]
3079
+ move local storage to its own shared area (namespacing should probably be corrected). thanks geemus
3080
+
3081
+ [storage|ninefold]
3082
+ move ninefold storage to its own shared area (namespacing should probably be corrected). thanks geemus
3083
+ use Fog::HMAC. thanks geemus
3084
+
3085
+ [storage|rackspace]
3086
+ Fixed NotFound namespace. thanks Grégory Karékinian
3087
+ move rackspace storage to its own shared area (namespacing should probably be corrected). thanks geemus
3088
+
3089
+ [tests]
3090
+ rearrange to match new lib structure. thanks geemus
3091
+ mark not implemented mocks as pending. thanks geemus
3092
+ more helpful formats helper errors. thanks geemus
3093
+
3094
+ [vmfusion|compute]
3095
+ fixed destroy function. thanks Patrick Debois
3096
+ reworked structure as will be released in 0.4.0a. thanks Patrick Debois
3097
+
3098
+ [vsphere|compute]
3099
+ mark test requiring guid pending, as require can not be found. thanks geemus
3100
+ remove unnecessary mocha require. thanks geemus
3101
+
3102
+
3103
+ 0.11.0 08/18/2011 73bcee507a4732e071c58d85793b7f307eb377dc
3104
+ ==========================================================
3105
+
3106
+ Stats! { 'downloads' => 202791, 'forks' => 237, 'open_issues' => 20, 'watchers' => 1427 }
3107
+
3108
+ MVP! Brian Hartsock
3109
+
3110
+ [aws|cdn]
3111
+ Added commands for streaming distribution lists. thanks Christopher Oliver
3112
+
3113
+ [aws|compute]
3114
+ describe security groups parser was not taking into account ipPermissionsEgress and therefore returning unexpected results when the account had VPC groups. thanks Christopher Oliver
3115
+ Added missing 'platform' attribute to server model and describe instances request. thanks Christopher Oliver
3116
+
3117
+ [aws|iam]
3118
+ fix 'Path' handling for get_group response. thanks Nick Osborn
3119
+ add missing update_server_certificate request. thanks Nick Osborn
3120
+
3121
+ [aws|rds]
3122
+ Allow string or symbol hash keys. thanks Aaron Suggs
3123
+
3124
+ [aws|s3]
3125
+ Added basic tests for get_bucket, fixed a bug in get_bucket with delimiter option, tests succeed for both mocked and real situation. thanks Erik Terpstra
3126
+ policy should be base64 encoded and not contain new lines. thanks Fujimura Daisuke
3127
+ Require 'multi_json' was lucked. thanks Fujimura Daisuke
3128
+
3129
+ [compute]
3130
+ add server base class to contain shared stuff (scp/ssh). thanks geemus
3131
+
3132
+ [compute|aws]
3133
+ Whitespace removal. thanks Dylan Egan
3134
+ Allow image mocks to support state (except failed). thanks Dylan Egan
3135
+ fix pluralization of modify_image_attribute. thanks geemus
3136
+ update modify image/snapshot attribute to match latest API. thanks geemus
3137
+ add modify_image_attribute. thanks geemus
3138
+ add support for saving assigned tags at server creation time. thanks geemus
3139
+ add docs for new options on run_instances. thanks geemus
3140
+ guard tag creation against empty tag set. thanks geemus
3141
+ fixes for bootstrap and placing attributes json. thanks geemus
3142
+ identity not needed for setup. thanks geemus
3143
+ fix for running nice with mocked test run. thanks geemus
3144
+
3145
+ [compute|brightbox]
3146
+ Updated test for new expected response from server. thanks Paul Thornthwaite
3147
+ Updated Account format test to allow valid_credit_card flag. thanks Paul Thornthwaite
3148
+ Added IPv6 address to format now it is exposed to API. thanks Paul Thornthwaite
3149
+ DRY up request method. thanks Paul Thornthwaite
3150
+ Corrected attribute name. thanks Paul Thornthwaite
3151
+
3152
+ [compute|voxel]
3153
+ position in format is string, not integer. thanks geemus
3154
+
3155
+ [dns]
3156
+ dry generate_unique_domain to tests helper. thanks geemus
3157
+
3158
+ [dns|dynect]
3159
+ cleanup of initial implementation. thanks geemus
3160
+ fixes to play nice with mocked test runs. thanks geemus
3161
+
3162
+ [dns|zerigo]
3163
+ add host/port/scheme to recognizes. thanks geemus
3164
+
3165
+ [docs]
3166
+ add task to build/publish supported services matrix. thanks geemus
3167
+ alphasort doc tasks. thanks geemus
3168
+
3169
+ [misc]
3170
+ if creating an s3 directory (bucket), one needs to pass in :location as well as have the aws connection set to the correct region... thanks Adam Greene
3171
+ - Write files as binary (otherwise UTF8 - ASCII errors can occur) - Check if File exists before trying to delete it (paperclip sometimes deletes files twice) - Check if Directory exists before trying to "cd" into it. thanks Andre Meij
3172
+ Fix issue 464, add howto for European Rackspace cloud. thanks Andre Meij
3173
+ Initial support for adding/deleting a load balancer (requests only). thanks Brian Hartsock
3174
+ Complete lifecycle for a load balancer. thanks Brian Hartsock
3175
+ Improved error handling. thanks Brian Hartsock
3176
+ Model and collection for load balancers. thanks Brian Hartsock
3177
+ Fixed issues with loading all LB params. thanks Brian Hartsock
3178
+ Requests for nodes. thanks Brian Hartsock
3179
+ Rackspace Load Balancers: model classes for nodes. thanks Brian Hartsock
3180
+ Rackspace Load Balancers: requests for virtual ips. thanks Brian Hartsock
3181
+ Added virtual IP models. thanks Brian Hartsock
3182
+ Rackspace LB: Made some updates from the pull request. thanks Brian Hartsock
3183
+ Rackspace LB: protocols, algorithms, and connection logging. thanks Brian Hartsock
3184
+ Added access list requests. thanks Brian Hartsock
3185
+ Rackspace LB: Added session persistence requests. thanks Brian Hartsock
3186
+ Rackspace LB: Connection throttling requests. thanks Brian Hartsock
3187
+ Rackspace LB: Fixed issues with connection logging model. thanks Brian Hartsock
3188
+ Rackspace LB: Health Monitor requests. thanks Brian Hartsock
3189
+ Rackspace LB: account usage request. thanks Brian Hartsock
3190
+ Rackspace LB: Load Balancer Usage requests. thanks Brian Hartsock
3191
+ Rackspace LB: Added model capabilities for a lot of additional actions. thanks Brian Hartsock
3192
+ Rackspace LB: models for access lists. thanks Brian Hartsock
3193
+ Rackspace LB: account usage call. thanks Brian Hartsock
3194
+ Rackspace LB: Refactoring and cleanup. thanks Brian Hartsock
3195
+ register_image mocking support. thanks Dylan Egan
3196
+ Remove GENTOO_AMI. thanks Dylan Egan
3197
+ Store it under the ID, not the name. thanks Dylan Egan
3198
+ Allow tag filtering for images. thanks Dylan Egan
3199
+ Set imageOwnerAlias to self. Not 100% on this, but it will allow you to search for images with 'owner-alias' => 'self'. thanks Dylan Egan
3200
+ Back to using Owner. A couple of tests for it too. thanks Dylan Egan
3201
+ Added support for delimiter option in Fog::Storage::AWS::Mock object. thanks Erik Terpstra
3202
+ Link to EBS snapshots blog post. thanks Gavin Sandie
3203
+ Add force stop functionality to AWS Instance. thanks John Ferlito
3204
+ * Changed LoadError to Fog::Error::LoadError when missing configuration * When running from command line, rescue the exception, and print the help message. thanks Mark A. Miller
3205
+ * Fix VirtualBox in compute case statement. thanks Mark A. Miller
3206
+ Update to the latest VirtualBox gem while we're at it for good measure. thanks Mark A. Miller
3207
+ add dynect DNS provider with session request implemented. thanks Michael Hale
3208
+ add dynect provider and cleanup extra requires. thanks Michael Hale
3209
+ enable mocking for dynect. thanks Michael Hale
3210
+ parse session request and fix mock for tests. thanks Michael Hale
3211
+ whoops forgot to add these files. thanks Michael Hale
3212
+ temporary rake task for convenient testing. thanks Michael Hale
3213
+ include /REST in all requests. thanks Michael Hale
3214
+ change API-Token to Auth-Token. thanks Michael Hale
3215
+ add zone request. thanks Michael Hale
3216
+ fix API-Token in mock session request. thanks Michael Hale
3217
+ always run both mock and non-mock tests. thanks Michael Hale
3218
+ parse the list of zones returned. thanks Michael Hale
3219
+ require builder in dynect. thanks Michael Hale
3220
+ WIP: add stub model classes. thanks Michael Hale
3221
+ tests passing. thanks Michael Hale
3222
+ rename zone request to zones. thanks Michael Hale
3223
+ add zone request to show information for a single zone. thanks Michael Hale
3224
+ hook up zones model. thanks Michael Hale
3225
+ hook up zones.get. thanks Michael Hale
3226
+ dynect: add a bunch of stuff: node_list, list_any_records, handle 307 job redirect,. thanks Michael Hale
3227
+ dynect: nicer filter api for records. thanks Michael Hale
3228
+ Escape source object name when copying. thanks Pratik Naik
3229
+ provide #providers for shared services. thanks geemus
3230
+
3231
+ [rackspace|load balancers]
3232
+ fixed broken tests. thanks Brian Hartsock
3233
+
3234
+ [rackspace|load_balancers]
3235
+ fixes to play nice with mock test runs. thanks geemus
3236
+ fix typo in tests. thanks geemus
3237
+
3238
+ [rackspace|loadbalancers]
3239
+ cleanup. thanks geemus
3240
+
3241
+ [release]
3242
+ add newest MVP to changelog task MVP omit list. thanks geemus
3243
+ add stats to changelog. thanks geemus
3244
+ remove un-needed rebuild of gem. thanks geemus
3245
+
3246
+ [storage]
3247
+ fix deprecated get_url usage. thanks geemus
3248
+
3249
+ [storage|aws]
3250
+ simplify region accessor. thanks geemus
3251
+
3252
+ [storage|ninefold]
3253
+ remove debug output. thanks geemus
3254
+
3255
+ [tests]
3256
+ non-destructively generate id for get('fake') == nil tests. thanks geemus
3257
+
3258
+
3259
+ 0.10.0 07/25/2011 9ca8cffc000c417a792235438c12855a277fe1ce
3260
+ ==========================================================
3261
+
3262
+ MVPs! Christopher Oliver, Dylan Egan and Henry Addison
3263
+
3264
+ [AWS Autoscaling]
3265
+ Fixed typo in put scaling policy request. thanks Christopher Oliver
3266
+ Fixed error in describe policies parser. thanks Christopher Oliver
3267
+ Got describe policies returning correctly. thanks Christopher Oliver
3268
+ Removed unnecessary options merge in Delete Policy request. thanks Christopher Oliver
3269
+
3270
+ [AWS IAM]
3271
+ Added Alias related functionality to IAM. Also added get_group_policy. thanks Christopher Oliver
3272
+ Added missing request file for list account aliases. thanks Christopher Oliver
3273
+
3274
+ [AWS RDS]
3275
+ Added describe db engine versions and describe db reserved instances. Changed the signed params version to 2011-04-01 from 2010-07-28. thanks Christopher Oliver
3276
+ Added LicenseModel to the db_parser. thanks Christopher Oliver
3277
+
3278
+ [AWS|ELB]
3279
+ fix bug that was causing availability zones to not parse properly on get/reload. thanks Blake Gentry
3280
+ default values for Listeners. thanks Blake Gentry
3281
+ offload Listener defaults to the Listener model. thanks Blake Gentry
3282
+
3283
+ [AWS|SNS]
3284
+ flesh out basics. thanks geemus
3285
+
3286
+ [AWS|SQS]
3287
+ flesh out basics. thanks geemus
3288
+
3289
+ [aws|auto_scaling]
3290
+ implement 2010-08-01 API. thanks Nick Osborn
3291
+
3292
+ [aws|autoscaling]
3293
+ metrics#get should return nil when not found. thanks geemus
3294
+ mark unimplemented/unsupported tests as pending. thanks geemus
3295
+
3296
+ [aws|cloudwatch]
3297
+ mark overly specific test as pending. thanks geemus
3298
+
3299
+ [aws|compute]
3300
+ improve model and tests. thanks Nick Osborn
3301
+
3302
+ [aws|elb]
3303
+ add test to verify that ListenerDescriptions work when creating an ELB. thanks Blake Gentry
3304
+ make describe_load_balancers parse SSLCertificateId. Verify with test. thanks Blake Gentry
3305
+ Raise proper IAM error for CertificateNotFound when creating an ELB or creating Listeners. thanks Blake Gentry
3306
+ move ELB error handling related to certs to the ELB service instead of duplicating at the request level. thanks Blake Gentry
3307
+ use slurp when raising errors to properly capture exception details. thanks Blake Gentry
3308
+ Add set_load_balancer_listener_ssl_certificate. thanks James Miller
3309
+ fix listener defaults to use merge_attributes and therefore aliases. thanks geemus
3310
+
3311
+ [aws|iam]
3312
+ add error handling for common failures resulting from upload_server_certificate. thanks Blake Gentry
3313
+ fix superclass mismatch. thanks Blake Gentry
3314
+ add get_server_certificate request. thanks Blake Gentry
3315
+ raise correct ValidationError when an empty cert or key is used. thanks Blake Gentry
3316
+ Simplify error handling code for errors with custom classes. thanks Blake Gentry
3317
+ raise EntityAlreadyExists when creating a duplicate cert name. thanks Blake Gentry
3318
+ tests and mocks to support many types of key/cert issues. thanks Blake Gentry
3319
+ add proper error messages. thanks Blake Gentry
3320
+ fix expected error result from login_profile_tests. thanks geemus
3321
+
3322
+ [aws|rds]
3323
+ add LicenseModel to format. thanks geemus
3324
+
3325
+ [aws|simpledb]
3326
+ provide for using ConsistentRead on get_attributes and select. thanks geemus
3327
+ fix get_attributes mock deprecation. thanks geemus
3328
+
3329
+ [compute]
3330
+ fix stormondemand namespace mismatch. thanks geemus
3331
+
3332
+ [compute|aws]
3333
+ cluster compute placement group implementation. thanks geemus
3334
+ add request level support for spot instances. thanks geemus
3335
+ fix describe_instances parser to get group ids correctly. thanks geemus
3336
+ fix compute accessor in tests. thanks geemus
3337
+
3338
+ [compute|bluebox]
3339
+ fixes for ip accessor usage. thanks geemus
3340
+
3341
+ [compute|brightbox]
3342
+ Fixed typo in deprecation warning. thanks Paul Thornthwaite
3343
+ Fixed deprecated use of Brightbox[:compute] to new Compute[:brightbox]. thanks Paul Thornthwaite
3344
+ New preference exposed in API added to format test. thanks Paul Thornthwaite
3345
+
3346
+ [compute|ninefold]
3347
+ add default serviceofferingid (flavor). thanks geemus
3348
+ fix zone format. thanks geemus
3349
+ small consistency fixes for server. thanks geemus
3350
+
3351
+ [compute|rackspace]
3352
+ fix for token expiry/reauth. thanks geemus
3353
+
3354
+ [compute|virtualbox]
3355
+ backwards compatibility for gem availability check. thanks geemus
3356
+
3357
+ [compute|voxel]
3358
+ fix server format. thanks geemus
3359
+
3360
+ [core]
3361
+ avoid ArgumentError with Ruby 1.8.5 on CentOS. thanks Nick Osborn
3362
+ fix to_date_header to use self.utc instead of self.class.now.utc. thanks geemus
3363
+ avoid ||= in timeout lookup. thanks geemus
3364
+
3365
+ [docs]
3366
+ update index to use non-deprecated service accessor. thanks geemus
3367
+
3368
+ [misc]
3369
+ Fix ::AWS[] syntax that's only valid in Fog tests when bin/aws.rb is loaded. thanks Blake Gentry
3370
+ Typos. thanks Blake Gentry
3371
+ Require json needed for both Real and Mock implementation of Rackspace; SSH commands in Mock just print to command line. thanks Brian Hartsock
3372
+ Revert "Require json needed for both Real and Mock implementation of Rackspace; SSH commands in Mock just print to command line". thanks Brian Hartsock
3373
+ require json for rackspace compute mock. thanks Brian Hartsock
3374
+ Fixed #444 - Unable to squash kvp with false values. thanks Brian Hartsock
3375
+ Fix make OpenStack swift working properly. thanks Chmouel Boudjnah
3376
+ Move the timeout to Mock and stop hardcoding. thanks Christopher Meiklejohn
3377
+ Fix failures in the simpledb testing due to attribute array option deprecation. thanks Christopher Meiklejohn
3378
+ Guard against item_name not being a valid key. thanks Christopher Meiklejohn
3379
+ Switch to the has_key? syntax for cleanliness. thanks Christopher Meiklejohn
3380
+ Move timeout up to Fog from Fog::Mock. thanks Christopher Meiklejohn
3381
+ Fix deprecation messages. thanks Claudio Poli
3382
+ Make Rails' respond_with play nice with to_json. thanks Claudio Poli
3383
+ Use multi_json gem. thanks Claudio Poli
3384
+ Public API for force_detach on Fog::Compute::AWS::Volume. thanks Dylan Egan
3385
+ Should actually use the attachment_aliases hash. thanks Dylan Egan
3386
+ server method for Fog::Compute::AWS::Volume to easily get the server instance. thanks Dylan Egan
3387
+ requires_one, allows you to require at least one of the specified attributes. thanks Dylan Egan
3388
+ Remove pending on iam/server_certificate_tests. Start the mocking. thanks Dylan Egan
3389
+ list_server_certificates and delete_server_certificates. thanks Dylan Egan
3390
+ Yes, yes it is better. thanks Dylan Egan
3391
+ Start ELB mocks. Support create_load_balancer and describe_load_balancers. thanks Dylan Egan
3392
+ configure_health_check and create_app_cookie_stickiness_policy. thanks Dylan Egan
3393
+ create_lb_cookie_stickiness_policy and delete_load_balancer_policy. thanks Dylan Egan
3394
+ create_load_balancer_listeneners and set_load_balancer_policies_of_listener. thanks Dylan Egan
3395
+ delete_load_balancer_listeners and delete_load_balancer (with two more tests). thanks Dylan Egan
3396
+ deregister_instances_from_load_balancer, describe_instance_health, disable_availability_for_load_balancer, enable_availability_zones_for_load_balancer, register_instances_with_load_balancer and updates to others to get ELB model_tests working. thanks Dylan Egan
3397
+ Remove requirement of basic parsers. thanks Dylan Egan
3398
+ Move things around a bit. Separate ELB test file per concerns. thanks Dylan Egan
3399
+ SSL for ELB mocking. thanks Dylan Egan
3400
+ Tested against AWS. Needed this. Apparently SSLCertificateId == Arn. thanks Dylan Egan
3401
+ Use available availability_zones. thanks Dylan Egan
3402
+ Wait for volume to be ready again. thanks Dylan Egan
3403
+ AWS instance tests 100% against real. thanks Dylan Egan
3404
+ Make stuff pending if you're mocking. Need to fix spot_price_history_tests, see comment. thanks Dylan Egan
3405
+ Let's just sleep forever. thanks Dylan Egan
3406
+ Reinstate ipAddress and privateIpAddress as they're provided for non-terminated instances. thanks Dylan Egan
3407
+ Reinstate ramdiskId. thanks Dylan Egan
3408
+ Revert "Reinstate ramdiskId." - fuckit! Seems like AWS doesn't return ramdiskId for. thanks Dylan Egan
3409
+ Clean up timeout and add tests. thanks Dylan Egan
3410
+ Quick fix, ith != i. thanks Dylan Egan
3411
+ Begin work on mocking reserved instances. Provide describe_reserved_instances_offerings for mocking and real. REAL TALK. thanks Dylan Egan
3412
+ reserved_instances mocking. I think, it's hard to test against a real AWS account since it costs money. thanks Dylan Egan
3413
+ Default to 1. thanks Dylan Egan
3414
+ add spot instance request models. thanks Edward Middleton
3415
+ fixed spot_requests. thanks Edward Middleton
3416
+ spot instance fixes. thanks Edward Middleton
3417
+ cloud_watch toplevel. thanks Frederick Cheung
3418
+ add get/put/list metrics. thanks Frederick Cheung
3419
+ Corrected a couple of syntax errors in the put and get metric cloudwatch requests. thanks Henry Addison
3420
+ Fixed the parser for list metrics cloudwatch request. thanks Henry Addison
3421
+ Added first test of successful list metrics. thanks Henry Addison
3422
+ simplified a bit the long case statement in end element in list_metrics parser. thanks Henry Addison
3423
+ added a few more cloudwatch request metric tests. thanks Henry Addison
3424
+ added metrics collection and model for cloudwatch with all and get methods. thanks Henry Addison
3425
+ split out and got passing get metric statistics request tests. thanks Henry Addison
3426
+ Added metric statistics model and collection. thanks Henry Addison
3427
+ removed old test file. thanks Henry Addison
3428
+ removed empty test for for metric model (nothing to test at the moment). thanks Henry Addison
3429
+ removed unnecessary attributes from metrics collection (naughty copy and pasting). thanks Henry Addison
3430
+ got put_metric_data request working and tested. thanks Henry Addison
3431
+ added model and collection methods and tests to allow putting of metric data. thanks Henry Addison
3432
+ renamed argument for all method in cloud watch metric_statistics from filters to conditions as filters has a meaning in fog. thanks Henry Addison
3433
+ added a conditions method to all metrics method to help filter all metrics. thanks Henry Addison
3434
+ Added some defaults for StartTime, EndTime and Period to model for MetricStatistics. thanks Henry Addison
3435
+ Begin SQS support. thanks Jon Crosby
3436
+ Continued SQS support. thanks Jon Crosby
3437
+ Add SQS get_queue_attributes. thanks Jon Crosby
3438
+ Fix rubygems warning. thanks Jonas Pfenniger
3439
+ Patch for AWS S3 Metadata problem. thanks Kenji Kabashima
3440
+ Changed number of cores reported for rackspace flavors in order to match current rackspace documentation. thanks Steven Danna
3441
+ Checking path for nil. thanks Timothy Klim
3442
+ Fixed escaping in Fog::AWS.escape. thanks croaker
3443
+ Changed the encoding of the space character. thanks croaker
3444
+ rebuild gemfile during release to include updated changelog. thanks geemus
3445
+ bump excon dep. thanks geemus
3446
+ loosen dependencies to avoid conflicts. thanks geemus
3447
+ bump formatador dep. thanks geemus
3448
+ to_json calls to use MultiJson. thanks geemus
3449
+ make collection class_eval more consistent. thanks geemus
3450
+ update gem deps to latest/greatest. thanks geemus
3451
+ Return nil if HOME is non-absolute. Fixes #397. thanks jc00ke
3452
+ Fix a bunch of paths. thanks phiggins
3453
+ Start of SNS. thanks phiggins
3454
+ Working ListUsers for SNS. thanks phiggins
3455
+ Remove copied-and-pasted documentation. thanks phiggins
3456
+ Add SNS's get_topic_attributes command. thanks phiggins
3457
+ SNS ListSubscriptions. thanks phiggins
3458
+ SNS ListSubscriptionsByTopic. thanks phiggins
3459
+ SNS CreateTopic and DeleteTopic. thanks phiggins
3460
+ SNS Publish. thanks phiggins
3461
+ SNS AddPermission. thanks phiggins
3462
+ SNS RemovePermission. thanks phiggins
3463
+ SNS SetTopicAttributes. thanks phiggins
3464
+ SNS Subscribe. thanks phiggins
3465
+ SNS ConfirmSubscription and Unsubscribe. thanks phiggins
3466
+ Add sns to fog bin. thanks phiggins
3467
+ Start SNS tests. thanks phiggins
3468
+
3469
+ [ninefold|storage]
3470
+ Framework + request method for Ninefold storage. thanks Lincoln Stoll
3471
+ Directories Functionality. thanks Lincoln Stoll
3472
+ Nested directories. thanks Lincoln Stoll
3473
+ File operations. thanks Lincoln Stoll
3474
+ Update an existing file. thanks Lincoln Stoll
3475
+ set content type correctly. thanks Lincoln Stoll
3476
+
3477
+ [release]
3478
+ add mvps and fix fog.io uploader. thanks geemus
3479
+ remove problematic pbcopy from changelog rake task. thanks geemus
3480
+ make changelog build separate from release. thanks geemus
3481
+
3482
+ [storage]
3483
+ provide http/https options for signed urls. thanks geemus
3484
+
3485
+ [storage|aws]
3486
+ properly format modified headers in get_object. thanks geemus
3487
+ fix escaping for file#public_url. thanks geemus
3488
+
3489
+ [storage|google]
3490
+ fix get_object_https_url namespace copy/paste error. thanks geemus
3491
+
3492
+ [storage|ninefold]
3493
+ fix file#destroy and test cleanup. thanks geemus
3494
+
3495
+ [storage|rackspace]
3496
+ add large object support via put_object_manifest. thanks geemus
3497
+ cleanup formatting/style. thanks geemus
3498
+
3499
+ [tests]
3500
+ make unimplemented mock tests pending. thanks geemus
3501
+ fix collection helper to play nice with numeric ids. thanks geemus
3502
+ replace letters with letters and numbers with numbers in collection#get failure test. thanks geemus
3503
+
3504
+ [vcloud|compute]
3505
+ create server now takes :catalog_items_uri as an option. thanks Kunal Parikh
3506
+ now referencing catalog_item_uri from options. thanks Kunal Parikh
3507
+ saving server attributes (uncommented code). thanks Kunal Parikh
3508
+ Revert "saving server attributes (uncommented code)". thanks Kunal Parikh
3509
+ duplicate ecloud code for vcloud, remove obvious terremark specific code. thanks Lincoln Stoll
3510
+ update catalog models for 1.0. thanks Lincoln Stoll
3511
+ make auth work. thanks Lincoln Stoll
3512
+ filter non-server items from server list. thanks Lincoln Stoll
3513
+ update for 1.0 functionality, server operations working. thanks Lincoln Stoll
3514
+ use correct power status ID for 'off'. thanks Lincoln Stoll
3515
+ allow specifying a default VDC uri as 'vcloud_default_vdc'. thanks Lincoln Stoll
3516
+ Add description field to server model. thanks Lincoln Stoll
3517
+ Correct friendly status power off check. thanks Lincoln Stoll
3518
+ correct hardware attribute reading. thanks Lincoln Stoll
3519
+ no longer possible to specify memory & cpu on vapp creation. thanks Lincoln Stoll
3520
+ remove outdated/invalid mocking & specs. thanks Lincoln Stoll
3521
+ fix deleting servers. thanks Lincoln Stoll
3522
+ server creation outside of VDC. thanks Lincoln Stoll
3523
+ undeploy request. thanks Lincoln Stoll
3524
+ memory reconfiguration. thanks Lincoln Stoll
3525
+ make status/ready handling more reliable. thanks Lincoln Stoll
3526
+ server tests. thanks Lincoln Stoll
3527
+ only require template name for tests. thanks Lincoln Stoll
3528
+ add and remove disks. thanks Lincoln Stoll
3529
+ ruby 1.8 compatibility. thanks Lincoln Stoll
3530
+ fix error messages in test helper. thanks Lincoln Stoll
3531
+ Fix setting of description. thanks Lincoln Stoll
3532
+ method to find catalog item by name across all catalogs. thanks Lincoln Stoll
3533
+ correct provider lookup. thanks Lincoln Stoll
3534
+
3535
+
3536
+ 0.9.0 06/24/2011 32960d165a65f12d41785f924e6b6b6d8442516a
3537
+ =========================================================
3538
+
3539
+ MVPs! Lincoln Stoll and Luqman Amjad
3540
+
3541
+ [aws]
3542
+ use AWS.escape instead of CGI.escape. thanks geemus
3543
+
3544
+ [aws|compute]
3545
+ Use #public_ip_address instead of deprecated #ip_address in Server#setup. thanks Martin Emde
3546
+ mock: make address detach others before associating. thanks geemus
3547
+
3548
+ [aws|elb]
3549
+ Fix failing created_at test caused by Ruby 1.9 changes to Range#include?. Use simpler test that doesn't care about the exact created_at time. thanks Blake Gentry
3550
+ Update ELB API to version 2011-04-05. thanks Blake Gentry
3551
+ Fix typo in usage documentation and add 'ap-northeast-1' to regions list. thanks Blake Gentry
3552
+ Rearrange DescribeLoadBalancersResult contents to alphabetical order to match the official AWS docs and make it easier to update the list. thanks Blake Gentry
3553
+ Add new attributes for 2011-04-05 API. thanks Blake Gentry
3554
+
3555
+ [aws|rds]
3556
+ Add parameter group tests. thanks Aaron Suggs
3557
+ Add server model & collection tests. thanks Aaron Suggs
3558
+ Add security_groups collection and model tests. thanks Aaron Suggs
3559
+ Server#destroy argument is optional. thanks Aaron Suggs
3560
+ Refactor RDS model & collection tests. thanks Aaron Suggs
3561
+
3562
+ [aws|simpledb]
3563
+ recognize :region option in SimpleDB.new(). thanks Nick Osborn
3564
+
3565
+ [aws|storage]
3566
+ Add get/put bucket policy support. thanks Michael Linderman
3567
+ Add options argument to delete_object to set headers. thanks Michael Linderman
3568
+ Add delete bucket policy. thanks Michael Linderman
3569
+ discern between no file and no directory for files.get. thanks geemus
3570
+ fix error type for non-directories in files.get. thanks geemus
3571
+
3572
+ [brightbox|compute]
3573
+ Added missing Image#compatibility_mode attribute. thanks Paul Thornthwaite
3574
+ Fixed Format of Account representation. thanks Paul Thornthwaite
3575
+ Fixed Format of nested CloudIP's server attribute. thanks Paul Thornthwaite
3576
+ New account limits exposed in API, updating format test. thanks Paul Thornthwaite
3577
+ ApiClient revoked time exposed in API. Updated format test. thanks Paul Thornthwaite
3578
+
3579
+ [cdn]
3580
+ refactor provider/service namespacing. thanks geemus
3581
+ fix top level class/module mismatch. thanks geemus
3582
+
3583
+ [compute]
3584
+ first pass at examples. thanks geemus
3585
+ refactor provider/service namespacing. thanks geemus
3586
+ fixes/skips to get examples working. thanks geemus
3587
+
3588
+ [compute|aws]
3589
+ fix helpers to use Fog::AWS. thanks geemus
3590
+ simplify describe_instances parser. thanks geemus
3591
+ fix deprecated compute service accessor usage. thanks geemus
3592
+ improve consistency of waiting for ssh to be ready. thanks geemus
3593
+ remove debug output from last commit. thanks geemus
3594
+
3595
+ [compute|bluebox]
3596
+ fix format and template id in tests. thanks geemus
3597
+
3598
+ [compute|brightbox]
3599
+ Fixed missed lookup in broken tests caused by namespace rename. thanks Paul Thornthwaite
3600
+
3601
+ [compute|ecloud]
3602
+ fix namespace leftovers. thanks geemus
3603
+
3604
+ [compute|ninefold]
3605
+ test cleanup. thanks geemus
3606
+
3607
+ [compute|rackspace]
3608
+ fix nil check for auth token. thanks geemus
3609
+
3610
+ [compute|stormondemand]
3611
+ fix namespace issue. thanks geemus
3612
+
3613
+ [compute|voxel]
3614
+ fix flavor tests to properly skip voxel. thanks geemus
3615
+ fix namespace issue. thanks geemus
3616
+
3617
+ [core]
3618
+ add namespaced errors for better messaging. thanks geemus
3619
+ making collection.new error more idiomatic. thanks geemus
3620
+ fix mock reset to work with new namespaces. thanks geemus
3621
+
3622
+ [dns]
3623
+ rename ip to value for record. thanks geemus
3624
+ refactor provider/service namespacing. thanks geemus
3625
+
3626
+ [dns|dnsmadeeasy]
3627
+ skip model/collection tests for now (timing issue). thanks geemus
3628
+
3629
+ [dns|examples]
3630
+ fix deprecated record#ip= usage. thanks geemus
3631
+
3632
+ [dns|zerigo]
3633
+ fixes for namespacing. thanks geemus
3634
+ namespace related fixes. thanks geemus
3635
+
3636
+ [docs]
3637
+ main index redirects to /latest. thanks geemus
3638
+ fix rdoc link on index. thanks geemus
3639
+ update to match refactorings. thanks geemus
3640
+
3641
+ [examples]
3642
+ fix descriptions. thanks geemus
3643
+
3644
+ [linode|compute]
3645
+ mark format test for stackscripts pending due to inconsistency of string/float for a value. thanks geemus
3646
+
3647
+ [misc]
3648
+ add braces for new into the documents. thanks Chris Mague
3649
+ use correct variable name in test description. thanks Dr Nic Williams
3650
+ Not sure if I'm missing something here, but rake did not work. thanks Dylan Egan
3651
+ You only need either the size or the snapshot_id. thanks Dylan Egan
3652
+ Provide mocked console output if server has been up for over the delay time. thanks Dylan Egan
3653
+ LIES!. thanks Dylan Egan
3654
+ Add support for specifying a CDN CNAME when getting a Rackspace Cloud Files directory. thanks H. Wade Minter
3655
+ add missing comma. thanks Joseph Anthony Pasquale Holsten
3656
+ skip rackspace get_object test when mocking. thanks Joseph Anthony Pasquale Holsten
3657
+ give a more useful error if someone tries to say connection.directories.create('dir'). thanks Joseph Anthony Pasquale Holsten
3658
+ Added my blog post. thanks Larry Wright
3659
+ Add recursive argument to server scp methods. Set to false by default. thanks Luke Robins
3660
+ Add an options hash to scp. Set to {} by default. thanks Luke Robins
3661
+ Added new DNS provider => DNS Made Easy. thanks Luqman Amjad
3662
+ Removed sandbox url for DNS Made Easy. thanks Luqman Amjad
3663
+ Added missing method "delete all domains". thanks Luqman Amjad
3664
+ (DNSMadeEasy) added support for updating records via PUT. thanks Luqman Amjad
3665
+ Added missing reference to delete_all_domains. thanks Luqman Amjad
3666
+ Rescue 404 when fetching zone. thanks Luqman Amjad
3667
+ Added new blog posting about fog and Carrierwave. thanks Mike Gehard
3668
+ Edited docs/about/press.markdown via GitHub. thanks Mike Gehard
3669
+ Typo fix. thanks Oge Nnadi
3670
+ Fixed Fog::AWS::SimpleDB#delete_attributes. thanks Pan Thomakos
3671
+ add Net::SCP options parameter to Fog::SCP proxy. thanks Phil Cohen
3672
+ use a hash not nil for default scp_options. thanks Phil Cohen
3673
+ rackspace auth url only prepend protocol as needed. thanks Todd Willey
3674
+ Allow auth tokens to be shared among connections to rackspace api. thanks Todd Willey
3675
+ OpenStack responds 200 when creating servers. thanks Todd Willey
3676
+ added 0.8.2 changelog contents. thanks geemus
3677
+ separate fog.io and rdoc tasks. thanks geemus
3678
+ remove provider attribute from shared services. thanks geemus
3679
+ [storage][aws] fix leftover namespace mismatch. thanks geemus
3680
+ [storage][google] fix leftover namespace mismatch. thanks geemus
3681
+ Edited lib/fog/storage/rackspace.rb via GitHub. thanks kbockmanrs
3682
+
3683
+ [ninefold|compute]
3684
+ Boilerplate for ninefold. thanks Lincoln Stoll
3685
+ Ninefold List Functionality. thanks Lincoln Stoll
3686
+ VM Operations + dependencies. thanks Lincoln Stoll
3687
+ Fix data formats for virtual machines. thanks Lincoln Stoll
3688
+ IP Address requests. thanks Lincoln Stoll
3689
+ Refactor out job waiting functionality, test correct data. thanks Lincoln Stoll
3690
+ NAT functionality. thanks Lincoln Stoll
3691
+ Core model functionality. thanks Lincoln Stoll
3692
+ Public IPs and Rules. thanks Lincoln Stoll
3693
+ use lowest network ID as default, correct assignment. thanks Lincoln Stoll
3694
+ No mocks, simplify code. thanks Lincoln Stoll
3695
+ Save operations not supported. thanks Lincoln Stoll
3696
+
3697
+ [rake]
3698
+ add examples back into default rake task. thanks geemus
3699
+
3700
+ [release]
3701
+ update changelog during release process. thanks geemus
3702
+
3703
+ [storage]
3704
+ refactor provider/service namespacing. thanks geemus
3705
+
3706
+ [storage|aws]
3707
+ more robust query handling for signed url. thanks geemus
3708
+ make url a bit more robust. thanks geemus
3709
+ fix url to check for query. thanks geemus
3710
+ fix whitespace errors. thanks geemus
3711
+ more precise mocked get_object. thanks geemus
3712
+
3713
+ [storage|rackspace]
3714
+ fix files#get_url. thanks geemus
3715
+
3716
+ [tests]
3717
+ add dnsmadeeasy and ninefold to mock credentials. thanks geemus
3718
+ nuke rake task for test related cleanup. thanks geemus
3719
+ make collection gsub to find nils a bit more resilient/unique. thanks geemus
3720
+ trying again to make collection gsub to get nils more resilient/unique. thanks geemus
3721
+
3722
+
3723
+ 0.8.2 05/26/2011 9e6ebb6f7316273eb489f8cb60eb1642e6df357b
3724
+ =========================================================
3725
+
3726
+ MVP! nightshade427
3727
+
3728
+ [aws|compute]
3729
+ better region/zone handling for mocks. thanks geemus
3730
+ indentation fix for last commit. thanks geemus
3731
+ add class level reset for Fog::AWS::Compute::Mock. thanks geemus
3732
+ make mock delay comparison >= so that delay 0 will work properly. thanks geemus
3733
+ respect security zone choice in mocked run_instances closes #314. thanks geemus
3734
+ respect key_name in mocked run_instances. thanks geemus
3735
+ fix instance format in tests. thanks geemus
3736
+
3737
+ [brightbox|compute]
3738
+ fix format for account in tests. thanks geemus
3739
+
3740
+ [compute]
3741
+ Test server reloading. thanks Aaron Suggs
3742
+ consistency in #state call and mock test fixes. thanks geemus
3743
+
3744
+ [compute|aws]
3745
+ Fix server tests. thanks Aaron Suggs
3746
+ Mock get_password_data request. thanks Aaron Suggs
3747
+ Fix default region when mocking. thanks Aaron Suggs
3748
+ Better key_pair tests. thanks Aaron Suggs
3749
+ Make volumes format more flexible. thanks Aaron Suggs
3750
+
3751
+ [core]
3752
+ Fixed credential tests. thanks Aaron Suggs
3753
+ Fix responds_to test helper. thanks Aaron Suggs
3754
+ omit Release commits from changelog. thanks geemus
3755
+ put changelog in clipboard to finish release. thanks geemus
3756
+ more consistent redirector for fog.io. thanks geemus
3757
+ create Fog.available_providers for bin rather than overriding Fog.providers. thanks geemus
3758
+
3759
+ [dnsimple|dns]
3760
+ add dnsimple_url param to facilitate using https://test.dnsimple.com closes #323. thanks geemus
3761
+
3762
+ [docs]
3763
+ first pass at compute doc. thanks geemus
3764
+ update version in header/layout. thanks geemus
3765
+ also build/deploy rdocs. thanks geemus
3766
+ make fog.io/latest/foo link to newest versioned docs. thanks geemus
3767
+
3768
+ [ecloud]
3769
+ mark bin specs pending unless credentials provided closes #325. thanks geemus
3770
+
3771
+ [local|storage]
3772
+ fixes for pending mocked tests. thanks geemus
3773
+
3774
+ [misc]
3775
+ Flatten list of security groups. thanks Dan Peterson
3776
+ Added an example of the head method. thanks Larry Wright
3777
+ Clarified my example. thanks Larry Wright
3778
+ Add a link to fog's Rubydocs. thanks Mathias Meyer
3779
+ :size should be a number in GB, not an instance size (e.g. t1.micro). thanks Michael Conigliaro
3780
+ tests. thanks Nicholas Ricketts
3781
+ added rdoc comments. thanks Nicholas Ricketts
3782
+ Add Amazon API reference link to requests' documentation. thanks Peter Weldon
3783
+ Add reset method to mock classes. thanks anomalousthought
3784
+ Add a reset method to Fog::Mock that resets all providers/services. thanks anomalousthought
3785
+ Add reset method to other providers in addition to Compute providers. thanks anomalousthought
3786
+ Add a reset method to Fog::Mock that resets all providers/services in addition to Compute providers. thanks anomalousthought
3787
+ Public key results are cached, avoid a bug by using that cache. thanks bigfleet
3788
+ 0.8.1 changelog. thanks geemus
3789
+ messy first pass at parallelization of testing. thanks geemus
3790
+ fix deprecated rdoc rake tasks. thanks geemus
3791
+ add mvp suggestion to changelog task. thanks geemus
3792
+ started linode models. thanks nightshade427
3793
+ added images models. thanks nightshade427
3794
+ added kernel modes. thanks nightshade427
3795
+ added datacenters models. thanks nightshade427
3796
+ server provisioning completed. thanks nightshade427
3797
+ server creation and deletion working. thanks nightshade427
3798
+ generalize code. thanks nightshade427
3799
+ creating via stackscripts with callbacks working. thanks nightshade427
3800
+ added shutdown, reboot, boot. thanks nightshade427
3801
+ made config private. thanks nightshade427
3802
+ tests passing. thanks nightshade427
3803
+ revert tests to proper error codes, waiting on fix from linode to support correct error codes. thanks nightshade427
3804
+ code cleanup, tests passing. thanks nightshade427
3805
+ more passing tests. thanks nightshade427
3806
+ more test passing. thanks nightshade427
3807
+ more test passing. thanks nightshade427
3808
+ more test passing. thanks nightshade427
3809
+ more test passing. thanks nightshade427
3810
+ more test passing. thanks nightshade427
3811
+
3812
+ [mock]
3813
+ fix Fog::Mock.reset. thanks Dan Peterson
3814
+ error sooner for completely unimplemented services. thanks geemus
3815
+ cleanup and reset related fixes. thanks geemus
3816
+
3817
+ [rackspace|compute]
3818
+ make mocks respect Fog::Mock.delay. thanks geemus
3819
+
3820
+ [storage]
3821
+ fix/consolidate content-length for utf8. thanks geemus
3822
+
3823
+ [tests]
3824
+ add additional fake credentials for mocked tests. thanks geemus
3825
+
3826
+ [voxel|compute]
3827
+ fix format for servers in tests. thanks geemus
3828
+
3829
+
3830
+ 0.8.1 05/13/2011 3a452347a396f0ad1fea7f5475fb3c349b10f527
3831
+ =========================================================
3832
+
3833
+ [aws|compute]
3834
+ less confusing explanation comment. thanks geemus
3835
+
3836
+ [compute|aws]
3837
+ Fix describe_instances filtering. thanks ktheory
3838
+ Add get_password_data request. thanks ktheory
3839
+
3840
+ [core]
3841
+ Add test for Fog::Parsers::Base. thanks ktheory
3842
+ handle busted ENV['HOME']. thanks pfalcone closes #301. thanks geemus
3843
+ update fog.io in release task. thanks geemus
3844
+ add hash to changelog. thanks geemus
3845
+ work toward automating changelog. thanks geemus
3846
+
3847
+ 0.8.0 05/12/2011 27bf76d1f881bec0f900cd11d5c2a10dce4856ca
3848
+ =========================================================
3849
+
3850
+ MVP! ktheory
3851
+
3852
+ [aws|cloudformation] tests sleep to avoid throttling error :(
3853
+
3854
+ [aws|elb]
3855
+ Add tests for create, describe, and delete. thanks ktheory
3856
+ Fix Policies in describe_load_balancers parser. thanks ktheory
3857
+ Stub out missing requests. thanks ktheory
3858
+ Add configure_health_check request. thanks ktheory
3859
+ Add support for creating and deleting listeners. thanks ktheory
3860
+ Add requests for creating cookie policies. thanks ktheory
3861
+ Add request ELB#delete_load_balancer_policy. thanks ktheory
3862
+ Add request ELB#set_load_balancer_policies_of_listener. thanks ktheory
3863
+ Create a model and collection for load_balancers. thanks ktheory
3864
+ Create Policies collection and model. thanks ktheory
3865
+ Create Listeners collection and model. thanks ktheory
3866
+ Remove redundant NotFound error class. thanks ktheory
3867
+ reorg model files for consistency
3868
+
3869
+ [aws|iam]
3870
+ Added server certificate tests. thanks ktheory
3871
+ Parse server certificate UploadDate. thanks ktheory
3872
+ Add list_server_certificates request. thanks ktheory
3873
+ fix test description for update_login_profile
3874
+
3875
+ [aws|rds]
3876
+ Fix exception for missing DB security groups. thanks ktheory
3877
+ Remove redundant NotFound class. thanks ktheory
3878
+ Improve instance tests. thanks ktheory
3879
+ reorg model files for consistency
3880
+ change status waits for more consistent testing
3881
+
3882
+ [aws|ses]
3883
+ fix format of Destinations in send_raw_email and correct doc. thanks jhawthorne
3884
+ Make specifying Destinations for send_raw_email work and match amazon docs. thanks jhawthorne
3885
+ fix indent in doc. thanks jhawthorne
3886
+
3887
+ [aws|simpledb]
3888
+ correction for item and attribute counters in encode_batch_attributes. thanks joshounapoli
3889
+ Fix a problem with the encoding of the tilde character. AWS needs tilde to be unescaped, or else the signature fails. CGI.escape escapes tilde; don't use it. thanks joshounapoli
3890
+ Correction to the regular expression for unreserved characters. thanks joshounapoli
3891
+ Test encode_batch_attributes with two attributes in one item to demonstrate an error in encode_batch_attributes. An unmocked test run will show a "400 Bad Request" response from SimpleDB. thanks joshounapoli
3892
+
3893
+ [compute]
3894
+ default to Ubuntu 10.04 LTS 64bit for image id
3895
+ [aws]
3896
+ Fix server tests. thanks ktheory
3897
+ Fixes trailing whitespace in attributes. thanks ktheory
3898
+ Fix & improve some tests. thanks ktheory
3899
+ Use default AMI in tests. thanks ktheory
3900
+ Add failing tests for keypair parsing. thanks ktheory
3901
+ Add different availability zones for each region to the mock. thanks smerritt
3902
+ Update docs for Compute::Real#initialize to include ap-* regions. thanks smerritt
3903
+ change default flavor to t1.micro (so it will be 64-bit)
3904
+ use old style, more consistent call to get single instance
3905
+ fix console output format in tests
3906
+ [bluebox]
3907
+ Adding lb_applications, lb_services, lb_backends attributes to the model. thanks cparades
3908
+ Adding in a few more tests for LB's. thanks cparades
3909
+ Rolling back change. thanks cparades
3910
+ Added in some data for testing. thanks cparades
3911
+ Fixed typo in Bluebox test. thanks tokengeek
3912
+ don't use a lb_application I don't own in tests
3913
+ [brightbox]
3914
+ Updated Image identifiers to match latest available Ubuntu Lucid 10.04 LTS 64bit image. thanks tokengeek
3915
+ [ecloud]
3916
+ 1.9.2 compat, String#[] doesn't return nil as we expected. thanks dpiddy
3917
+ [stormondemand]
3918
+ Implement Stormondemand API. thanks seeingidog
3919
+ cleanup
3920
+ fixes for tests
3921
+ [voxel]
3922
+ Prevent voxel tests running if missing credentials. thanks tokengeek
3923
+ minor fixes for voxel tests
3924
+
3925
+ [core]
3926
+ Parser does not concatenates all the strings when parsing. thanks geraud
3927
+ Drop default_executable line from gemspec. thanks mattsa
3928
+ Fix small logic error in Model#wait_for. thanks pvande
3929
+ Make Model#reload more resilient against errors. thanks pvande
3930
+ Simplify dup-ing of @attributes for models. thanks smerritt
3931
+ Make Model#dup copy the attributes too. thanks smerritt
3932
+ Fix typo in spec output. thanks smerritt
3933
+ tighten excon dependency. Closes #250
3934
+ cleanup gemspec. closes #251
3935
+ Fixes error messaging when credentials missing
3936
+ update parser to better handle whitespace
3937
+
3938
+ [docs]
3939
+ Add link to multipart upload and threads article. thanks gsandie
3940
+ restructure toward same organization as rest of repo
3941
+ simplify redirector to just point at directory instead of specifically index.html
3942
+ generalize version subbing in href to catch src too
3943
+ style cleanup for cdn/dns/storage
3944
+ storage shouldn't be all caps
3945
+ link to fog.io more prominently
3946
+ fix new links to properly include version
3947
+ replace getting started link
3948
+ add link to learn_fog
3949
+ remove confusion by linking to fog.io instead of wiki
3950
+ reworking getting started guide
3951
+ add requires
3952
+
3953
+ [dns|aws] fix error handling for getting unknown keys
3954
+
3955
+ [storage]
3956
+ auto-paginate for #each closes #268
3957
+ [aws]
3958
+ Add #each_file method to directory model. thanks smerritt
3959
+ Add documentation for #each_file method. thanks smerritt
3960
+ Emit warning from Files#each. thanks smerritt
3961
+ Make Files#each iterate all files, not just the first page. thanks smerritt
3962
+ Fix docs to say files.each, not each_file. thanks smerritt
3963
+ Issue #283: S3 get_object request doesn't really support the Range header. thanks yalon
3964
+ fix format for multipart upload tests
3965
+ [google]
3966
+ fix format in bucket_tests
3967
+ [rackspace]
3968
+ mark get_object with block test pending when mocked
3969
+
3970
+ 0.7.2 04/05/2011
3971
+ ================
3972
+
3973
+ [aws|cloudformation]
3974
+ enabling region parameter for AWS cloud formation requests. thanks flessa
3975
+
3976
+ [compute]
3977
+ [aws]
3978
+ remove CGI escape from create_security_group. thanks coliver
3979
+ replace remaining specs with shindo tests
3980
+ update #keypairs reference to #key_pairs. thanks pvande
3981
+ Emulate volume unavailability when mocking. thanks mtodd
3982
+ Raise error on non-existent snapshot for create_volume. thanks mtodd
3983
+ Add tag to resource data when creating a mock tag. thanks betamatt
3984
+ Add tag filtering to mocks for snapshots, volumes, instances. thanks betamatt
3985
+ Add delete_tags mock. thanks betamatt
3986
+ Support tag-key, tag-value, tag:key filters. thanks betamatt
3987
+ Correct name of dns-filter filter. thanks betamatt
3988
+ allow key pair to write into properly chmodded files. thanks gerred
3989
+ Making key pair names a little less potentially brittle. thanks gerred
3990
+ [rackspace]
3991
+ fix public_ip_address accessors
3992
+
3993
+ [core]
3994
+ updated base parser to not eagerly strip return data. thanks bdorry
3995
+ don't escape ssh commands. thanks pvande
3996
+ Deal with missing FOG_RC/HOME env vars better. thanks outerim
3997
+ fix push parser block passed to excon > 0.6.0
3998
+
3999
+ [docs]
4000
+ move fog.io stuff into docs directory
4001
+ pull in and format data from README, wiki, blog posts
4002
+
4003
+ [storage|rackspace]
4004
+ head_object should use HEAD. thanks nate
4005
+ Support for serving Rackspace CDN objects via SSL. thanks minter
4006
+ Use URI.escape instead of CGI.escape. thanks minter
4007
+
4008
+ 0.7.1 03/21/2011
4009
+ ================
4010
+
4011
+ [aws|storage] normalize headers. thanks pweldon
4012
+
4013
+ [mock] fix reset_data to not be called in Mock#initialize
4014
+
4015
+ [rackspace] add support for using servicenet. thanks minter
4016
+
4017
+ [storage] provide for non file/string files. thanks pweldon
4018
+
4019
+ 0.7.0 03/14/2011
4020
+ ================
4021
+
4022
+ [aws] added ap-northeast-1 (tokyo) region options
4023
+
4024
+ [aws|cloudformation] add basic support. thanks crazed
4025
+
4026
+ [aws|elb] add support for configuring https
4027
+
4028
+ [aws|iam]
4029
+ add support for server certificates. thanks bensie
4030
+ add support for login profiles. thanks fcheung
4031
+
4032
+ [aws|rds]
4033
+ support basic rds operations. thanks fcheung
4034
+ add support for restoring servers and security groups. thanks ktheory
4035
+
4036
+ [cdn|rackspace] use post_container to update
4037
+
4038
+ [compute]
4039
+ [aws]
4040
+ fix tag.destroy. thanks eabbott
4041
+ allow deleting all tags (instead of just specific ones)
4042
+ fix revoke_security_group method signature
4043
+ FLAVORS is now a constant
4044
+ allow for modifying server monitoring. thanks gilles
4045
+ [brightbox] thanks tokengeek
4046
+ Added listener management (add/remove) requests for Load Balancers
4047
+ Added new Server console activation request
4048
+ Added activate_console method to Brightbox servers
4049
+ Set Server#private_ip_address to be the first interface
4050
+ [rackspace] 'official' workaround for awful caching
4051
+ [virtualbox] rough proof of concept/initial implementation
4052
+
4053
+ [core]
4054
+ fix behavior of slice on collections. thanks eabbott
4055
+ fix reset_data to be instance method on mock connection (and work)
4056
+ [credentials]
4057
+ handle undefined ENV['HOME']
4058
+ Allow string keys in credentials file [issue 179]. thanks ryanlower
4059
+
4060
+ [dns|dnsimple] fix misc bugs in models. thanks ijonas
4061
+
4062
+ [storage]
4063
+ use shared parse_data across providers
4064
+ [rackspace]
4065
+ pass through explicit content-type
4066
+ fix bug preventing file uploads to be streamed
4067
+
4068
+ 0.6.0 02/28/2011
4069
+ ================
4070
+
4071
+ [aws|compute] fix method signature for security group requests. Thanks crazed
4072
+
4073
+ [aws|iam]
4074
+ fleshing out support. Thanks bdorry and coliver
4075
+ fix get_group parser to set Arn on group/member as appropriate
4076
+
4077
+ [bluebox|dns] added support. Thanks ggoodale
4078
+
4079
+ [compute]
4080
+ add basic scp support. Thanks crazed
4081
+ consolidate ip accessors
4082
+
4083
+ [core]
4084
+ added changelog, covering 0.5+
4085
+ reset credentials when changing key or path. Thanks ctennis
4086
+
4087
+ [dnsimple|dns] added support. Thanks dje
4088
+
4089
+ [ecloud|compute] cleaned up and reworked as basis for future ecloud work
4090
+
4091
+ [aws|storage] add static website configuration methods
4092
+
4093
+ [local|storage] rewrite using nested directories (NOTE: not backwards compatible)
4094
+
4095
+ [rackspace|storage] disable cdn when deleting container
4096
+
4097
+ [voxel|compute] added support. Thanks splaspood
4098
+
4099
+ remove long standing deprecations
4100
+
4101
+
4102
+ 0.5.3 02/15/11
4103
+ ==============
4104
+
4105
+ [terremark|ecloud] (thanks freeformz)
4106
+ initial support for Disabled monitor types
4107
+ InternetService#disable_monitor and #enable_ping_monitor
4108
+ spec fixes and tests for the new monitor functions
4109
+ fix logic error which prevented turning off persistent connections
4110
+ fix _dump for collections/models
4111
+ require json for to_json of collection/model
4112
+ add some missing parens to fix warnings
4113
+
4114
+
4115
+ 0.5.2 02/11/11
4116
+ ==============
4117
+
4118
+ [aws|compute] fix delete AWS tags to use proper method. Thanks ody
4119
+ [aws|storage]
4120
+ add sort for multi part upload fields. Thanks gavin
4121
+ better RRS docs. Thanks bensie
4122
+ Temporary redirect should not execute the block. Thanks vivienschillis
4123
+ [tests] fix mock_helper load path to allow test runs in 1.9.2. Thanks aeden
4124
+ [compute] disable password auth for current user, rather than always root
4125
+ [aws&google|storage] properly handle custom headers in mocks
4126
+ [aws&google|storage] make signature public method
4127
+ [aws&google] finish fixing headers in mocks
4128
+ [core] cleanup providers/services setup
4129
+ [README] add contributing section, recommendations for blue shirts, move providers to fog.io, cleanup resources
4130
+ implicitly add not_implemented mocks
4131
+
4132
+
4133
+ 0.5.1 01/31/11
4134
+ ==============
4135
+
4136
+ Bug fixes.
4137
+ [aws|iam] add signing certificate and list groups for user. thanks crazed
4138
+ [gogrid|compute] added support for password api calls. thanks lum
4139
+ [fog|time] add date header formatting that is non-localized
4140
+
4141
+
4142
+ 0.5.0 01/27/11
4143
+ ==============
4144
+
4145
+ [aws|compute] describe reserved instances offerings
4146
+ [aws|dns] Fix variable typo create_hosted_zone. Thanks mitchellh
4147
+ [aws|ses] basic support. Thanks adelcambre
4148
+ [aws|storage] Escape the path for signatures. Thanks croaker
4149
+ [aws&google|storage] mock fixes
4150
+ [local|storage] support file#content_type
4151
+ [ssh] use an agent if available instead of requiring explicit keys. thanks davidx and tomstuart
4152
+ [gogrid|compute] fix several issues. Thanks cardmagic
4153
+ [rackspace|compute] get new auth token when one expires
4154
+ [rackspace|storage] remove nil query params in requests
4155
+ [terremark|ecloud] getting started on ecloud specific implementation
4156
+