mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Release 1.39.0
This commit is contained in:
parent
d6c89ea01e
commit
cca1da34c7
4 changed files with 73 additions and 7 deletions
66
CHANGELOG.md
66
CHANGELOG.md
|
@ -1,3 +1,69 @@
|
|||
## 1.39.0 03/13/2017
|
||||
*Hash* d6c89ea01e747f36e3d384191ac3072e29ddec64
|
||||
|
||||
Statistic | Value
|
||||
------------- | --------:
|
||||
Collaborators | 2
|
||||
Forks | 1556
|
||||
Open Issues | 48
|
||||
Watchers | 3975
|
||||
|
||||
**MVP!** Cherdancev Evgeni
|
||||
|
||||
#### [CloudSigma]
|
||||
* add snapshots (#3491). thanks zephyrean
|
||||
|
||||
#### [digitalocean]
|
||||
* delete leftover spec. thanks geemus
|
||||
|
||||
#### [misc]
|
||||
* Adding postinstall message. thanks Artem Yakimenko
|
||||
* Fixing gemspec conflicts with 1.9. thanks Artem Yakimenko
|
||||
* Add instance_types support to oVirt provider. thanks Baptiste Agasse
|
||||
* Fix filtering for Digital Ocean list_ssh_keys request. thanks Ben Sedat
|
||||
* Allow filtering for Digital Ocean list_flavors request. thanks Ben Sedat
|
||||
* Fix Digital Ocean list_servers mock format. thanks Ben Sedat
|
||||
* Add tests for Digital Ocean list_ssh_keys request. thanks Ben Sedat
|
||||
* Digital Ocean list_* requests pass query params to Excon. thanks Ben Sedat
|
||||
* add suspend&resume support and change tests to fog way. thanks Cherdancev Evgeni
|
||||
* remove execute flag from README.md. thanks Cherdancev Evgeni
|
||||
* retab & remove empty Mock. thanks Cherdancev Evgeni
|
||||
* change tests for using fogtest flavor. thanks Cherdancev Evgeni
|
||||
* add suspend&resume support and change tests to fog way. thanks Cherdancev Evgeni
|
||||
* remove execute flag from README.md. thanks Cherdancev Evgeni
|
||||
* retab & remove empty Mock. thanks Cherdancev Evgeni
|
||||
* change tests for using fogtest flavor. thanks Cherdancev Evgeni
|
||||
* Prevent malformed request with asterisk (*) character. thanks Gavin Lam
|
||||
* Add DigitalOcean provider. thanks Garcia
|
||||
* Removed 'filters' from ssh_key. thanks JJ Asghar
|
||||
* extract DNSimple, require 'fog-dnsimple'. thanks Joshua Lane
|
||||
* remove dnsimple tests. thanks Joshua Lane
|
||||
* remove ninefold. thanks Joshua Lane
|
||||
* Fix default API version for Joyent. thanks Manuel Franco
|
||||
* fix dependency issues when building on 1.9.*. thanks Paulo Ribeiro
|
||||
* Add request to create snapshot. thanks Pierre Tinguely
|
||||
* #3900 Escape VM name in OpenNebula allocator. thanks Sergey Susikov
|
||||
* Remove digitalocean. thanks Suraj Shirvankar
|
||||
* Remove digitalocean bin files. thanks Suraj Shirvankar
|
||||
* Total number of droplets for digital ocean. thanks Tameem
|
||||
* Add more changes. thanks Tameem
|
||||
* Testing. thanks Tameem
|
||||
* Working. thanks Tameem
|
||||
* clean. thanks Tameem
|
||||
* F rage4 bulk update endpoint (#3917). thanks Tameem Iftikhar
|
||||
* Drop 'hp' from compute tests. thanks t Ondruch
|
||||
* Drop 'hp' from storage tests. thanks t Ondruch
|
||||
* Drop 'hp' test cases. thanks t Ondruch
|
||||
* bump fog-core dep. thanks geemus
|
||||
* bump fog-core dependency. thanks geemus
|
||||
* fix fog-core dependency. thanks geemus
|
||||
* bump fog-core dep. thanks geemus
|
||||
* remove require for missing digitalocean bin. thanks geemus
|
||||
* Update licence.md. thanks pieceofcakeresul
|
||||
* Update compose_common.rb. thanks tinguelyp
|
||||
* Update post_create_snapshot.rb. thanks tinguelyp
|
||||
|
||||
|
||||
## 1.38.0 03/28/2016
|
||||
*Hash* 5e4bde2733adc08ba2d92b2d2824e2d3845fc5e5
|
||||
|
||||
|
|
|
@ -11,8 +11,8 @@ Gem::Specification.new do |s|
|
|||
## If your rubyforge_project name is different, then edit it and comment out
|
||||
## the sub! line in the Rakefile
|
||||
s.name = "fog"
|
||||
s.version = "1.38.0"
|
||||
s.date = "2016-08-03"
|
||||
s.version = "1.39.0"
|
||||
s.date = "2017-03-13"
|
||||
s.rubyforge_project = "fog"
|
||||
|
||||
## Make sure your summary is short. The description may be as long
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
module Fog
|
||||
VERSION = '1.38.0'
|
||||
VERSION = '1.39.0'
|
||||
end
|
||||
|
|
|
@ -31,7 +31,6 @@ module Fog
|
|||
Statistic | Value
|
||||
------------- | --------:
|
||||
Collaborators | #{collaborators}
|
||||
Downloads | #{downloads}
|
||||
Forks | #{forks}
|
||||
Open Issues | #{open_issues}
|
||||
Watchers | #{watchers}
|
||||
|
@ -109,6 +108,7 @@ Watchers | #{watchers}
|
|||
'Benson Kalahar',
|
||||
'Brian Hartsock',
|
||||
'bryanl',
|
||||
'Cherdancev Evgeni',
|
||||
'Chris Luo',
|
||||
'Chris Roberts',
|
||||
'Christopher Oliver',
|
||||
|
@ -184,9 +184,9 @@ Watchers | #{watchers}
|
|||
end
|
||||
|
||||
def downloads
|
||||
repsonse = Excon.get('https://rubygems.org/api/v1/gems/fog.json')
|
||||
data = Fog::JSON.decode(repsonse.body)
|
||||
data['downloads']
|
||||
response = Excon.get('https://rubygems.org/api/v1/downloads/fog.json')
|
||||
data = Fog::JSON.decode(response.body)
|
||||
data['total_downloads']
|
||||
end
|
||||
|
||||
def collaborators
|
||||
|
|
Loading…
Reference in a new issue