Merge remote-tracking branch 'origin/master' into icco/clean-internet-archive

This commit is contained in:
Nat Welch 2017-03-19 21:37:14 -04:00
commit 1b9b9ecb06
4 changed files with 89 additions and 8 deletions

View File

@ -1,3 +1,84 @@
## 1.40.0 03/13/2017
*Hash* ed5edd8610f5585267f07567cccec1c10b002764
Statistic | Value
------------- | --------:
Collaborators | 2
Forks | 1556
Open Issues | 48
Watchers | 3975
#### [misc]
* bump fog-digitalocean version to avoid conflict. thanks geemus
## 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

View File

@ -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.40.0"
s.date = "2017-03-13"
s.rubyforge_project = "fog"
## Make sure your summary is short. The description may be as long
@ -58,7 +58,7 @@ Gem::Specification.new do |s|
s.add_dependency("fog-aws", ">= 0.6.0")
s.add_dependency("fog-brightbox", "~> 0.4")
s.add_dependency("fog-cloudatcost", "~> 0.1.0")
s.add_dependency("fog-digitalocean")
s.add_dependency("fog-digitalocean", ">= 0.3.0")
s.add_dependency("fog-dnsimple", "~> 1.0")
s.add_dependency("fog-dynect", "~> 0.0.2")
s.add_dependency("fog-ecloud", "~> 0.1")

View File

@ -1,3 +1,3 @@
module Fog
VERSION = '1.38.0'
VERSION = '1.40.0'
end

View File

@ -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