Skip to content

Commit

Permalink
Merge pull request #264 from chef/tm/3_0_0
Browse files Browse the repository at this point in the history
Prepare for 3.0 release
  • Loading branch information
thommay committed Apr 10, 2017
2 parents 8d3a43f + bf9c00f commit dcd26aa
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 8 deletions.
36 changes: 34 additions & 2 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,39 @@
# Change Log

## [2.9.0](https://github.com/chef/chef-vault/tree/2.9.0) (2016-04-06)
[Full Changelog](https://github.com/chef/chef-vault/compare/v2.8.0...2.9.0)
## [v3.0.0](https://github.com/chef/chef-vault/tree/v3.0.0) (2017-04-10)
[Full Changelog](https://github.com/chef/chef-vault/compare/v2.9.1...v3.0.0)

**Implemented enhancements:**

- Vault creation, list, and destruction in sparse mode [\#252](https://github.com/chef/chef-vault/pull/252) ([rveznaver](https://github.com/rveznaver))

## [v3.0.0.rc2](https://github.com/chef/chef-vault/tree/v3.0.0.rc2) (2016-12-05)
[Full Changelog](https://github.com/chef/chef-vault/compare/v3.0.0.rc1...v3.0.0.rc2)

**Implemented enhancements:**

- Add feature to save each key in different data bag item [\#246](https://github.com/chef/chef-vault/pull/246) ([rveznaver](https://github.com/rveznaver))
- Enable testing with Chef Zero [\#244](https://github.com/chef/chef-vault/pull/244) ([rveznaver](https://github.com/rveznaver))
- Minimize the number of searches [\#243](https://github.com/chef/chef-vault/pull/243) ([thommay](https://github.com/thommay))
- Optimise queries when finding nodes [\#240](https://github.com/chef/chef-vault/pull/240) ([thommay](https://github.com/thommay))

**Fixed bugs:**

- Use solo\_legacy\_mode fully [\#242](https://github.com/chef/chef-vault/pull/242) ([thommay](https://github.com/thommay))
- Use legacy solo mode [\#241](https://github.com/chef/chef-vault/pull/241) ([thommay](https://github.com/thommay))

## [v3.0.0.rc1](https://github.com/chef/chef-vault/tree/v3.0.0.rc1) (2016-10-21)
[Full Changelog](https://github.com/chef/chef-vault/compare/v2.9.0...v3.0.0.rc1)

**Implemented enhancements:**

- Removed deprecated knife commands [\#236](https://github.com/chef/chef-vault/pull/236) ([thommay](https://github.com/thommay))
- rename ChefKey to Actor [\#234](https://github.com/chef/chef-vault/pull/234) ([thommay](https://github.com/thommay))
- Move to using a logger for all user output [\#232](https://github.com/chef/chef-vault/pull/232) ([thommay](https://github.com/thommay))
- Add support for clients [\#227](https://github.com/chef/chef-vault/pull/227) ([svanharmelen](https://github.com/svanharmelen))

## [v2.9.0](https://github.com/chef/chef-vault/tree/v2.9.0) (2016-04-08)
[Full Changelog](https://github.com/chef/chef-vault/compare/v2.8.0...v2.9.0)

**Implemented enhancements:**

Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ group :development do
end

group :changelog do
gem "github_changelog_generator", git: "https://github.com/tduffield/github-changelog-generator", branch: "adjust-tag-section-mapping"
gem "github_changelog_generator", git: "https://github.com/chef/github-changelog-generator"
end

gemspec
2 changes: 1 addition & 1 deletion lib/chef-vault/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
# limitations under the License.

class ChefVault
VERSION = "3.0.0.rc2"
VERSION = "3.0.0"
MAJOR, MINOR, TINY = VERSION.split(".")
end
7 changes: 3 additions & 4 deletions tasks/github_changelog_generator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,9 @@
require "github_changelog_generator/task"

GitHubChangelogGenerator::RakeTask.new :changelog do |config|
config.future_release = ChefVault::VERSION
config.enhancement_labels = "enhancement,Enhancement,New Feature,Feature".split(",")
config.bug_labels = "bug,Bug,Improvement,Upstream Bug".split(",")
config.exclude_labels = "duplicate,question,invalid,wontfix,no_changelog,Exclude From Changelog,Question,Discussion".split(",")
config.future_release = "v#{ChefVault::VERSION}"
config.max_issues = 0
config.add_issues_wo_labels = false
end
rescue LoadError
puts "github_changelog_generator is not available. gem install github_changelog_generator to generate changelogs"
Expand Down

0 comments on commit dcd26aa

Please sign in to comment.