Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Commit

Permalink
Merge pull request #185 from linc01n/4.5.2
Browse files Browse the repository at this point in the history
 Prepare for 4.5.2 cookbook release
  • Loading branch information
linc01n authored Jun 14, 2017
2 parents 0d89218 + e81407e commit 61004fa
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 24 deletions.
26 changes: 25 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,30 @@
# Change Log

## [4.5.1](https://github.com/bflad/chef-stash/tree/4.5.1) (2016-06-10)
## [4.5.2](https://github.com/bflad/chef-stash/tree/4.5.2) (2017-06-14)

[Full Changelog](https://github.com/bflad/chef-stash/compare/4.5.1...4.5.2)

**Implemented enhancements:**

- Fix rubocop offenses [\#165](https://github.com/bflad/chef-stash/pull/165) ([linc01n](https://github.com/linc01n))

**Closed issues:**

- Allow SSL from the application to the database [\#159](https://github.com/bflad/chef-stash/issues/159)
- Compatability.md is severely out of date. [\#164](https://github.com/bflad/chef-stash/issues/164)

**Merged pull requests:**

- Fix ruby syntax error [\#184](https://github.com/bflad/chef-stash/pull/184) ([linc01n](https://github.com/linc01n))
- Added checksums for versions 4.9.0 --\> 4.14.5 [\#183](https://github.com/bflad/chef-stash/pull/183) ([linc01n](https://github.com/linc01n))
- Fix foodcritic and rubocop [\#182](https://github.com/bflad/chef-stash/pull/182) ([linc01n](https://github.com/linc01n))
- Fix travis errors [\#177](https://github.com/bflad/chef-stash/pull/177) ([linc01n](https://github.com/linc01n))
- Enable setting the session timeout [\#172](https://github.com/bflad/chef-stash/pull/172) ([akarasik](https://github.com/akarasik))
- Don't redirect /server-status for monitoring systems [\#170](https://github.com/bflad/chef-stash/pull/170) ([scopenco](https://github.com/scopenco))
- Moved checksum's and download url calculation into helper.rb [\#169](https://github.com/bflad/chef-stash/pull/169) ([katbyte](https://github.com/katbyte))
- Added versions 4.6.1, 4.6.3, 4.7.1, 4.8.0, 4.8.1, 4.8.2, 4.8.3 [\#166](https://github.com/bflad/chef-stash/pull/166) ([katbyte](https://github.com/katbyte))

## [4.5.1](https://github.com/bflad/chef-stash/tree/4.5.1) (2016-06-10)
[Full Changelog](https://github.com/bflad/chef-stash/compare/4.5.0...4.5.1)

**Fixed bugs:**
Expand All @@ -10,6 +33,7 @@

**Merged pull requests:**

- Prepare for 4.5.1 cookbook release [\#163](https://github.com/bflad/chef-stash/pull/163) ([linc01n](https://github.com/linc01n))
- Update bitbucket to 4.6.2 [\#162](https://github.com/bflad/chef-stash/pull/162) ([linc01n](https://github.com/linc01n))
- Run start-bitbucket.sh with the full path in Bitbucket init script [\#158](https://github.com/bflad/chef-stash/pull/158) ([atikhono](https://github.com/atikhono))
- Bitbucket 4.6 needs set-bitbucket-home.sh and set-bitbucket-user.sh [\#157](https://github.com/bflad/chef-stash/pull/157) ([atikhono](https://github.com/atikhono))
Expand Down
19 changes: 0 additions & 19 deletions COMPATIBILITY.md

This file was deleted.

7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ install_type | Stash install type - "standalone" only for now | String | standal
url_base | URL base for Stash install | String | http://www.atlassian.com/software/stash/downloads/binary/atlassian-stash
url | URL for Stash install | String | auto-detected (see attributes/default.rb)
user | user to run Stash | String | stash
version | Stash version to install | String | 4.6.2
version | Stash version to install | String | 4.14.5

### Stash Backup Attributes (Shared)

Expand Down Expand Up @@ -316,5 +316,8 @@ Please see license information in: [LICENSE](LICENSE)
* Claudio Rivabene (@crivabene)
* Patrick Connolly (@patcon)
* Benjamin Neff (@SuperTux88)
* Anna (@atikhono)
* Anna Tikhonova (@atikhono)
* Alex Karasik (@akarasik)
* Andrei Skopenko (@scopenco)
* Kate Lynn (@katbyte)
* Lincoln Lee (@linc01n)
2 changes: 1 addition & 1 deletion attributes/default.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set['build-essential']['compile_time'] = true

default['stash']['version'] = '4.6.2'
default['stash']['version'] = '4.14.5'
default['stash']['product'] = Chef::Version.new(node['stash']['version']) >= Chef::Version.new('4.0.0') ? 'bitbucket' : 'stash'

default['stash']['home_path'] = if Dir.exist?('/var/atlassian/application-data/stash')
Expand Down
2 changes: 1 addition & 1 deletion metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
license 'Apache-2.0'
description 'Installs/Configures Atlassian Stash'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '4.5.1'
version '4.5.2'
chef_version '>= 11' if respond_to?(:chef_version)

recipe 'stash', 'Installs/Configures Atlassian Stash'
Expand Down

0 comments on commit 61004fa

Please sign in to comment.