mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Merge branch 'master' into rackspace_servicenet
This commit is contained in:
commit
3f4478f63e
5 changed files with 56 additions and 7 deletions
|
@ -1,7 +1,7 @@
|
||||||
PATH
|
PATH
|
||||||
remote: .
|
remote: .
|
||||||
specs:
|
specs:
|
||||||
fog (0.6.0)
|
fog (0.7.0)
|
||||||
builder
|
builder
|
||||||
excon (>= 0.5.5)
|
excon (>= 0.5.5)
|
||||||
formatador (>= 0.1.1)
|
formatador (>= 0.1.1)
|
||||||
|
|
|
@ -1,3 +1,52 @@
|
||||||
|
0.7.0 03/14/2011
|
||||||
|
================
|
||||||
|
|
||||||
|
[aws] added ap-northeast-1 (tokyo) region options
|
||||||
|
|
||||||
|
[aws|cloudformation] add basic support. thanks crazed
|
||||||
|
|
||||||
|
[aws|elb] add support for configuring https
|
||||||
|
|
||||||
|
[aws|iam]
|
||||||
|
add support for server certificates. thanks bensie
|
||||||
|
add support for login profiles. thanks fcheung
|
||||||
|
|
||||||
|
[aws|rds]
|
||||||
|
support basic rds operations. thanks fcheung
|
||||||
|
add support for restoring servers and security groups. thanks ktheory
|
||||||
|
|
||||||
|
[cdn|rackspace] use post_container to update
|
||||||
|
|
||||||
|
[compute]
|
||||||
|
[aws]
|
||||||
|
fix tag.destroy. thanks eabbott
|
||||||
|
allow deleting all tags (instead of just specific ones)
|
||||||
|
fix revoke_security_group method signature
|
||||||
|
FLAVORS is now a constant
|
||||||
|
allow for modifying server monitoring. thanks gilles
|
||||||
|
[brightbox] thanks tokengeek
|
||||||
|
Added listener management (add/remove) requests for Load Balancers
|
||||||
|
Added new Server console activation request
|
||||||
|
Added activate_console method to Brightbox servers
|
||||||
|
Set Server#private_ip_address to be the first interface
|
||||||
|
[rackspace] 'official' workaround for awful caching
|
||||||
|
[virtualbox] rough proof of concept/initial implementation
|
||||||
|
|
||||||
|
[core]
|
||||||
|
fix behavior of slice on collections. thanks eabbott
|
||||||
|
fix reset_data to be instance method on mock connection (and work)
|
||||||
|
[credentials]
|
||||||
|
handle undefined ENV['HOME']
|
||||||
|
Allow string keys in credentials file [issue 179]. thanks ryanlower
|
||||||
|
|
||||||
|
[dns|dnsimple] fix misc bugs in models. thanks ijonas
|
||||||
|
|
||||||
|
[storage]
|
||||||
|
use shared parse_data across providers
|
||||||
|
[rackspace]
|
||||||
|
pass through explicit content-type
|
||||||
|
fix bug preventing file uploads to be streamed
|
||||||
|
|
||||||
0.6.0 02/28/2011
|
0.6.0 02/28/2011
|
||||||
================
|
================
|
||||||
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ Gem::Specification.new do |s|
|
||||||
## If your rubyforge_project name is different, then edit it and comment out
|
## If your rubyforge_project name is different, then edit it and comment out
|
||||||
## the sub! line in the Rakefile
|
## the sub! line in the Rakefile
|
||||||
s.name = 'fog'
|
s.name = 'fog'
|
||||||
s.version = '0.6.0'
|
s.version = '0.7.0'
|
||||||
s.date = '2011-02-28'
|
s.date = '2011-03-18'
|
||||||
s.rubyforge_project = 'fog'
|
s.rubyforge_project = 'fog'
|
||||||
|
|
||||||
## Make sure your summary is short. The description may be as long
|
## Make sure your summary is short. The description may be as long
|
||||||
|
|
|
@ -3,7 +3,7 @@ require File.join(File.dirname(__FILE__), 'fog', 'core')
|
||||||
module Fog
|
module Fog
|
||||||
|
|
||||||
unless const_defined?(:VERSION)
|
unless const_defined?(:VERSION)
|
||||||
VERSION = '0.6.0'
|
VERSION = '0.7.0'
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -4,7 +4,7 @@ module Fog
|
||||||
|
|
||||||
requires :aws_access_key_id, :aws_secret_access_key
|
requires :aws_access_key_id, :aws_secret_access_key
|
||||||
recognizes :host, :nil_string, :path, :port, :scheme, :persistent
|
recognizes :host, :nil_string, :path, :port, :scheme, :persistent
|
||||||
|
|
||||||
request_path 'fog/aws/requests/simpledb'
|
request_path 'fog/aws/requests/simpledb'
|
||||||
request :batch_put_attributes
|
request :batch_put_attributes
|
||||||
request :create_domain
|
request :create_domain
|
||||||
|
@ -43,7 +43,7 @@ module Fog
|
||||||
# Initialize connection to SimpleDB
|
# Initialize connection to SimpleDB
|
||||||
#
|
#
|
||||||
# ==== Notes
|
# ==== Notes
|
||||||
# options parameter must include values for :aws_access_key_id and
|
# options parameter must include values for :aws_access_key_id and
|
||||||
# :aws_secret_access_key in order to create a connection
|
# :aws_secret_access_key in order to create a connection
|
||||||
#
|
#
|
||||||
# ==== Examples
|
# ==== Examples
|
||||||
|
@ -164,7 +164,7 @@ module Fog
|
||||||
response = @connection.request({
|
response = @connection.request({
|
||||||
:body => body,
|
:body => body,
|
||||||
:expects => 200,
|
:expects => 200,
|
||||||
:headers => { 'Content-Type' => 'application/x-www-form-urlencoded' },
|
:headers => { 'Content-Type' => 'application/x-www-form-urlencoded; charset=utf-8' },
|
||||||
:host => @host,
|
:host => @host,
|
||||||
:idempotent => idempotent,
|
:idempotent => idempotent,
|
||||||
:method => 'POST',
|
:method => 'POST',
|
||||||
|
|
Loading…
Reference in a new issue