Module: Kettle::Jem::MaintenanceChangelog
- Defined in:
- lib/kettle/jem/maintenance_changelog.rb
Constant Summary collapse
- TEMPLATE_CHANGELOG_INTERNAL_PATHS =
%w[ CHANGELOG.md .structuredmerge/kettle-jem.lock .kettle-jem.lock ].freeze
- TEMPLATE_CHANGE_CATEGORIES =
{ workflows: ->(path) { path.start_with?(".github/workflows/") }, dependencies: ->(path) { path == "Gemfile" || path == "Appraisals" || path.end_with?(".gemspec", ".gemfile", ".gemfile.lock") || path.start_with?("gemfiles/") }, documentation: ->(path) { %w[README.md CONTRIBUTING.md SECURITY.md].include?(path) || path.start_with?("docs/") }, configuration: ->(path) { path.start_with?(".structuredmerge/") || path == "mise.toml" || path == ".gitignore" }, code_and_tests: ->(path) { path.start_with?("lib/", "spec/", "test/", "bin/") || path == "Rakefile" } }.freeze
- BUNDLER_ENVIRONMENT =
%w[ BUNDLE_BIN_PATH BUNDLE_FROZEN BUNDLE_GEMFILE BUNDLE_LOCKFILE BUNDLER_SETUP BUNDLER_VERSION RUBYLIB RUBYOPT ].freeze
Class Method Summary collapse
- .add_unreleased_entry(project_root:, section:, entry:) ⇒ Object
- .bootstrap_only_report?(report) ⇒ Boolean
- .record_template_run(project_root:, report:, run_options: {}, label: "Apply kettle-jem templates") ⇒ Object
- .template_change_category(path) ⇒ Object
- .template_changed_files(changed_files) ⇒ Object
- .template_changelog_disabled?(run_options) ⇒ Boolean
- .template_run_entry(label, changed_files) ⇒ Object
- .upsert_unreleased_entry(project_root:, section:, key:, entry:, legacy_prefixes: []) ⇒ Object
Class Method Details
.add_unreleased_entry(project_root:, section:, entry:) ⇒ Object
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
# File 'lib/kettle/jem/maintenance_changelog.rb', line 39 def add_unreleased_entry(project_root:, section:, entry:) command = [ RbConfig.ruby, "-rrubygems", "-e", 'exec Gem.ruby, Gem.bin_path("kettle-changelog", "kettle-changelog"), *ARGV', "--", "--add-unreleased-entry", "--json", "--section", section.to_s, "--entry", entry.to_s ] environment = BUNDLER_ENVIRONMENT.to_h { |key| [key, nil] } stdout, stderr, status = Open3.capture3(environment, *command, chdir: project_root) unless status.success? detail = [stdout, stderr].reject(&:empty?).join("\n") raise "kettle-changelog failed (exit #{status.exitstatus}): #{detail}" end result = JSON.parse(stdout) { status: result.fetch("changed") ? "updated" : "unchanged", section: result.fetch("section"), entry: result.fetch("entry") } rescue JSON::ParserError => error raise "kettle-changelog returned invalid JSON: #{error.}" rescue Gem::Exception => error raise "kettle-changelog executable is not installed: #{error.}" end |
.bootstrap_only_report?(report) ⇒ Boolean
131 132 133 |
# File 'lib/kettle/jem/maintenance_changelog.rb', line 131 def bootstrap_only_report?(report) report.fetch(:setup_status, "").to_s.start_with?("bootstrap_") end |
.record_template_run(project_root:, report:, run_options: {}, label: "Apply kettle-jem templates") ⇒ Object
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
# File 'lib/kettle/jem/maintenance_changelog.rb', line 83 def record_template_run(project_root:, report:, run_options: {}, label: "Apply kettle-jem templates") report = report.to_h if template_changelog_disabled?() || bootstrap_only_report?(report) return report.merge(changelog: {status: "skipped", reason: template_changelog_disabled?() ? "disabled" : "bootstrap_only"}) end changed_files = template_changed_files(report.fetch(:changed_files, [])) if changed_files.empty? return report.merge(changelog: {status: "skipped", reason: "no_template_changes", changed_files: []}) end entry = template_run_entry(label, changed_files) result = add_unreleased_entry(project_root: project_root, section: "Changed", entry: entry) changelog = result.merge(changed_files: changed_files, entry: entry) changed_files_with_changelog = if result.fetch(:status) == "updated" (Array(report.fetch(:changed_files, [])) + ["CHANGELOG.md"]).uniq.sort else Array(report.fetch(:changed_files, [])).uniq.sort end report.merge(changelog: changelog, changed_files: changed_files_with_changelog) end |
.template_change_category(path) ⇒ Object
119 120 121 122 123 124 |
# File 'lib/kettle/jem/maintenance_changelog.rb', line 119 def template_change_category(path) TEMPLATE_CHANGE_CATEGORIES.each do |category, matcher| return category if matcher.call(path) end :other end |
.template_changed_files(changed_files) ⇒ Object
105 106 107 108 109 |
# File 'lib/kettle/jem/maintenance_changelog.rb', line 105 def template_changed_files(changed_files) Array(changed_files).map(&:to_s).uniq.sort.reject do |path| TEMPLATE_CHANGELOG_INTERNAL_PATHS.include?(path) end end |
.template_changelog_disabled?(run_options) ⇒ Boolean
126 127 128 129 |
# File 'lib/kettle/jem/maintenance_changelog.rb', line 126 def template_changelog_disabled?() = .to_h DecisionPolicy.value_to_boolean([:skip_changelog] || ["skip_changelog"]) end |
.template_run_entry(label, changed_files) ⇒ Object
111 112 113 114 115 116 117 |
# File 'lib/kettle/jem/maintenance_changelog.rb', line 111 def template_run_entry(label, changed_files) counts = changed_files.group_by { |path| template_change_category(path) } .sort_by { |category, _paths| category.to_s } .map { |category, paths| "#{category.to_s.tr("_", " ")} (#{paths.length})" } areas = counts.empty? ? "project files" : counts.join(", ") "#{label}: updated #{changed_files.length} project file#{"s" unless changed_files.length == 1} across #{areas}." end |
.upsert_unreleased_entry(project_root:, section:, key:, entry:, legacy_prefixes: []) ⇒ Object
72 73 74 75 76 77 78 79 80 81 |
# File 'lib/kettle/jem/maintenance_changelog.rb', line 72 def upsert_unreleased_entry(project_root:, section:, key:, entry:, legacy_prefixes: []) result = Kettle::Changelog::KeyedEntryUpserter.new( root: project_root, section: section, key: key, entry: entry, legacy_prefixes: legacy_prefixes ).run result.merge(status: result.fetch(:changed) ? "updated" : "unchanged") end |