Skip to content

Commit ec07fe1

Browse files
committed
Upgrade Mattermost cookbook to support v4.8.1
- Close #23
1 parent 75d96ee commit ec07fe1

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
This file is used to list changes made in each version of the Mattermost cookbook.
44

5+
## v1.6.7 (2018.04.16)
6+
7+
- [#23](https://github.com/ist-dsi/mattermost-cookbook/issues/23) Update settings for Mattermost 4.8.1
8+
59
## v1.6.6 (2018.03.23)
610

711
- [#22](https://github.com/ist-dsi/mattermost-cookbook/issues/22) Update settings for Mattermost 4.8.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This cookbook installs and configures Mattermost, the opensource Slack alternati
1212

1313
| Mattermost Version | Cookbook Version |
1414
|:------------------:|:----------------:|
15-
| 4.8.0 | v1.6.6 |
15+
| 4.8.1 | v1.6.7 |
1616
| 4.7.3 | v1.6.5 |
1717
| 4.6.0 | v1.6.3 |
1818
| 4.5.0 | v1.6.2 |
@@ -48,7 +48,7 @@ Using this cookbook is relatively straightforward. It is recommended to create a
4848

4949
### Attributes
5050

51-
All settings are the [default settings](https://github.com/mattermost/mattermost-server/blob/v4.8.0/config/default.json) that come from [Mattermost repository](https://github.com/mattermost/mattermost-server/). Make sure to review them all and change what's necessary.
51+
All settings are the [default settings](https://github.com/mattermost/mattermost-server/blob/v4.8.1/config/default.json) that come from [Mattermost repository](https://github.com/mattermost/mattermost-server/). Make sure to review them all and change what's necessary.
5252

5353
## License and Authors
5454

attributes/mattermost.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
default['mattermost']['package'] = {
2-
'url' => 'https://releases.mattermost.com/4.8.0/mattermost-4.8.0-linux-amd64.tar.gz',
3-
'checksum' => '1d6dda36592544b92905989a922ff4698d0a824c30483e0ecdf7233443001c25',
2+
'url' => 'https://releases.mattermost.com/4.8.1/mattermost-4.8.1-linux-amd64.tar.gz',
3+
'checksum' => '3dac9f9bb4884cd83b8274c2bd7c32418f2535d3f9911cea845ac047ee2c7a82',
44
}
55

66
default['mattermost']['config'] = {

metadata.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name 'mattermost-cookbook'
22
license 'Apache-2.0'
3-
version '1.6.6'
3+
version '1.6.7'
44

55
chef_version '>= 12.19'
66

spec/default_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010
it 'downloads and extracts ark' do
1111
expect(chef_run).to put_ark('mattermost').with(
12-
url: 'https://releases.mattermost.com/4.8.0/mattermost-4.8.0-linux-amd64.tar.gz',
13-
checksum: '1d6dda36592544b92905989a922ff4698d0a824c30483e0ecdf7233443001c25',
12+
url: 'https://releases.mattermost.com/4.8.1/mattermost-4.8.1-linux-amd64.tar.gz',
13+
checksum: '3dac9f9bb4884cd83b8274c2bd7c32418f2535d3f9911cea845ac047ee2c7a82',
1414
path: '/opt',
1515
owner: 'mattermost'
1616
)

0 commit comments

Comments
 (0)