Skip to content

Commit 99d7dcb

Browse files
author
Ciprian Badescu
committed
(MODULES-11244) fix changelog generation
* save existing changelog to HISTORY.md * configure changelog generator to generate new entries starting with 4.9.0 tag * pin octokit to 4.21.0 since we hit the issue at octokit/octokit.rb#1391 * pin async to ~> 1.30 otherwise async 2.0.0(needs ruby >=3.1.0) is wrongly selected by bundler on jenkins while running with ruby 2.7.1
1 parent 73870e6 commit 99d7dcb

File tree

4 files changed

+624
-0
lines changed

4 files changed

+624
-0
lines changed

.sync.yml

+6
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ Gemfile:
3636
- gem: 'beaker-task_helper'
3737
version: '~> 1.9'
3838
condition: 'ENV["GEM_BOLT"]'
39+
- gem: octokit
40+
version: '4.21.0' # due to https://github.com/octokit/octokit.rb/issues/1391
41+
- gem: async
42+
version: '~> 1.30' # otherwise async 2.0.0(needs ruby >=3.1.0) is wrongly selected by bundler on jenkins while running with ruby 2.7.1
3943
appveyor.yml:
4044
delete: true
4145
.travis.yml:
@@ -50,3 +54,5 @@ spec/default_facts.yml:
5054
delete: true
5155
spec/spec_helper.rb:
5256
unmanaged: true
57+
Rakefile:
58+
changelog_since_tag: 4.9.0

Gemfile

+2
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ group :development do
3737
gem "nokogiri", require: false
3838
gem "bolt", '~> 3.0', require: false if ENV["GEM_BOLT"]
3939
gem "beaker-task_helper", '~> 1.9', require: false if ENV["GEM_BOLT"]
40+
gem "octokit", '4.21.0', require: false
41+
gem "async", '~> 1.30', require: false
4042
end
4143
group :system_tests do
4244
gem "puppet-module-posix-system-r#{minor_version}", '~> 1.0', require: false, platforms: [:ruby]

0 commit comments

Comments
 (0)