mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Release 0.7.2
This commit is contained in:
parent
be60a1555b
commit
c7ec7c9b2f
4 changed files with 43 additions and 4 deletions
|
@ -1,3 +1,41 @@
|
||||||
|
0.7.2 04/05/2011
|
||||||
|
================
|
||||||
|
|
||||||
|
[aws|cloudformation]
|
||||||
|
enabling region parameter for AWS cloud formation requests. thanks flessa
|
||||||
|
|
||||||
|
[compute]
|
||||||
|
[aws]
|
||||||
|
remove CGI escape from create_security_group. thanks coliver
|
||||||
|
replace remaining specs with shindo tests
|
||||||
|
update #keypairs reference to #key_pairs. thanks pvande
|
||||||
|
Emulate volume unavailability when mocking. thanks mtodd
|
||||||
|
Raise error on non-existent snapshot for create_volume. thanks mtodd
|
||||||
|
Add tag to resource data when creating a mock tag. thanks betamatt
|
||||||
|
Add tag filtering to mocks for snapshots, volumes, instances. thanks betamatt
|
||||||
|
Add delete_tags mock. thanks betamatt
|
||||||
|
Support tag-key, tag-value, tag:key filters. thanks betamatt
|
||||||
|
Correct name of dns-filter filter. thanks betamatt
|
||||||
|
allow key pair to write into properly chmodded files. thanks gerred
|
||||||
|
Making key pair names a little less potentially brittle. thanks gerred
|
||||||
|
[rackspace]
|
||||||
|
fix public_ip_address accessors
|
||||||
|
|
||||||
|
[core]
|
||||||
|
updated base parser to not eagerly strip return data. thanks bdorry
|
||||||
|
don't escape ssh commands. thanks pvande
|
||||||
|
Deal with missing FOG_RC/HOME env vars better. thanks outerim
|
||||||
|
fix push parser block passed to excon > 0.6.0
|
||||||
|
|
||||||
|
[docs]
|
||||||
|
move fog.io stuff into docs directory
|
||||||
|
pull in and format data from README, wiki, blog posts
|
||||||
|
|
||||||
|
[storage|rackspace]
|
||||||
|
head_object should use HEAD. thanks nate
|
||||||
|
Support for serving Rackspace CDN objects via SSL. thanks minter
|
||||||
|
Use URI.escape instead of CGI.escape. thanks minter
|
||||||
|
|
||||||
0.7.1 03/21/2011
|
0.7.1 03/21/2011
|
||||||
================
|
================
|
||||||
|
|
||||||
|
@ -146,3 +184,4 @@ Bug fixes.
|
||||||
[rackspace|compute] get new auth token when one expires
|
[rackspace|compute] get new auth token when one expires
|
||||||
[rackspace|storage] remove nil query params in requests
|
[rackspace|storage] remove nil query params in requests
|
||||||
[terremark|ecloud] getting started on ecloud specific implementation
|
[terremark|ecloud] getting started on ecloud specific implementation
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
<a href="/"><img src="public/images/fog.png" title="fog" /></a>
|
<a href="/"><img src="public/images/fog.png" title="fog" /></a>
|
||||||
<h1>{{ page.title }}</h1>
|
<h1>{{ page.title }}</h1>
|
||||||
<dl>
|
<dl>
|
||||||
<dt>version</dt><dd>v0.7.1</dd>
|
<dt>version</dt><dd>v0.7.2</dd>
|
||||||
<dt>install</dt><dd><code>gem install fog</code></dd>
|
<dt>install</dt><dd><code>gem install fog</code></dd>
|
||||||
<dt>source</dt><dd><a href="http://github.com/geemus/fog">geemus/fog</a></dd>
|
<dt>source</dt><dd><a href="http://github.com/geemus/fog">geemus/fog</a></dd>
|
||||||
</dl>
|
</dl>
|
||||||
|
|
|
@ -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.7.1'
|
s.version = '0.7.2'
|
||||||
s.date = '2011-03-21'
|
s.date = '2011-04-05'
|
||||||
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.7.1'
|
VERSION = '0.7.2'
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue