Skip to content

Commit

Permalink
Bump Grafana to 1.7.0-rc1 and release cookbook version 1.3.1 (fixes s…
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanTron committed Aug 7, 2014
1 parent d625239 commit e6ae3fc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

This file is used to list changes made in each version of grafana.

## 1.3.1:

* Update `Grafana` to `1.7.1-rc1`. It fixes a regression introduced when merging
[#16](https://github.com/JonathanTron/chef-grafana/pull/16). Thanks to
Greg Fitzgerald for reporting it.

## 1.3.0:

* Allow attribute configuration for datasources (Grégoire Seux) [#16](https://github.com/JonathanTron/chef-grafana/pull/16)
Expand Down
4 changes: 2 additions & 2 deletions attributes/default.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
default['grafana']['git']['branch'] = 'master'
default['grafana']['git']['type'] = 'sync' # checkout | sync
default['grafana']['file']['type'] = 'tar.gz' # tar.gz | zip
default['grafana']['file']['version'] = '1.6.1'
default['grafana']['file']['version'] = '1.7.0-rc1'
f = node['grafana']['file']
default['grafana']['file']['url'] = "http://grafanarel.s3.amazonaws.com/grafana-#{f['version']}.#{f['type']}"
default['grafana']['file']['checksum'] = 'e16f4485777aa68e2c750c36a2bb696fe45a69fbe9b687f62afac950a503229a' # sha256 ( shasum -a 256 FILENAME )
default['grafana']['file']['checksum'] = 'f0fc0f7710622d5ec738f3c09451b271d9ff5b76f8db3cbec429debf5ca0fb4b' # sha256 ( shasum -a 256 FILENAME )
default['grafana']['webserver'] = 'nginx'
default['grafana']['install_path'] = '/srv/apps'
default['grafana']['install_dir'] = "#{node['grafana']['install_path']}/grafana"
Expand Down
2 changes: 1 addition & 1 deletion metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
license 'Apache 2.0'
description 'Installs/Configures grafana'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '1.3.0'
version '1.3.1'

depends 'git'
depends 'ark', '>= 0.7.2'
Expand Down

0 comments on commit e6ae3fc

Please sign in to comment.