discharger 0.2.12 → 0.2.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0556c953dac93a704d652f69824bd24da384f42c204487340512beafde360f95
4
- data.tar.gz: f3224ed2f8bc399bc7a9e33014334843058a4e44540fc8a14e34fa47091611d5
3
+ metadata.gz: 9ce45e28ffd20d694eec7075403138701e726efbaef6f5b5000e51c34eca3961
4
+ data.tar.gz: f378cf858c863d47255ea695ed95daf676c7943ea1ac7d5f4f2044cb04604d17
5
5
  SHA512:
6
- metadata.gz: 33ace7f51a07a0c126ba03285cde6695bdb5b38a84b796ca1588a16695dac532f9222340ca683ed5b2b7ae5e61d1abc3704f444db15ee2ba73a60f6e2e95f6a4
7
- data.tar.gz: f0c3821be4631d3a804a71f68df53a56b7788f7d56598361d540027b7118f79466ba8e82a082ddac1bd2c124c8e4002f37e5f5cb3aa8da62ffbe7a4da97ee842
6
+ metadata.gz: 466259f1fd4d919e807694c007e59292eeaa8ef2d5f3b50e8ae7fdb2ae5514e2cec983c903c4d6667ec16fc8a7129c0b28146cc21eb9bc721f6129d37c872267
7
+ data.tar.gz: 8e99e498e7c594b168e8835fad33111ec2b8d4e08d96a2434cae97c9bebcd71ba55a48ab7cf50a59eaae976651b74503001a424d06fcbc82e250fc192924e86a
data/CHANGELOG.md ADDED
@@ -0,0 +1,27 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](http://keepachangelog.com/)
6
+ and this project adheres to [Semantic Versioning](http://semver.org/).
7
+
8
+ ## [0.2.13] - 2025-09-02
9
+
10
+ ### Added
11
+
12
+ - Added clean up fragment_directory task on Task.
13
+ - Added trusted publisher flow to GitHub release action.
14
+ - Adding commit step if needed after the finalize.
15
+
16
+ ### Fixed
17
+
18
+ - Fixed version on GitHub trusted publisher action.
19
+ - Added debugging for OIDC.
20
+ - Switching back to version 1.0.0 for trusted publisher
21
+ - Now going for the official RubyGems GitHub action for the gem publishing.
22
+
23
+ ## [0.2.12] - 2025-08-19
24
+
25
+ ### Added
26
+
27
+ - Added fragment directory attribute for task configuration.
data/Rakefile CHANGED
@@ -10,6 +10,7 @@ Reissue::Task.create :reissue do |task|
10
10
  task.commit = !ENV["GITHUB_ACTIONS"]
11
11
  task.commit_finalize = !ENV["GITHUB_ACTIONS"]
12
12
  task.push_finalize = :branch
13
+ task.clear_fragments = true
13
14
  end
14
15
 
15
16
  Rake::TestTask.new(:test) do |t|
@@ -17,6 +17,7 @@ module Discharger
17
17
  reissue.commit = task.commit
18
18
  reissue.commit_finalize = task.commit_finalize
19
19
  reissue.fragment_directory = task.fragment_directory
20
+ reissue.clear_fragments = task.clear_fragments
20
21
  end
21
22
  task.define
22
23
  task
@@ -38,6 +39,7 @@ module Discharger
38
39
  attr_accessor :commit_identifier
39
40
  attr_accessor :pull_request_url
40
41
  attr_accessor :fragment_directory
42
+ attr_accessor :clear_fragments
41
43
 
42
44
  attr_reader :last_message_ts
43
45
 
@@ -55,6 +57,7 @@ module Discharger
55
57
  @staging_branch = "stage"
56
58
  @production_branch = "main"
57
59
  @description = "Release the current version to #{staging_branch}"
60
+ @clear_fragments = true
58
61
  end
59
62
  private attr_reader :tasker
60
63
 
@@ -1,3 +1,3 @@
1
1
  module Discharger
2
- VERSION = "0.2.12"
2
+ VERSION = "0.2.13"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: discharger
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.12
4
+ version: 0.2.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jim Gay
@@ -101,6 +101,7 @@ executables: []
101
101
  extensions: []
102
102
  extra_rdoc_files: []
103
103
  files:
104
+ - CHANGELOG.md
104
105
  - LICENSE
105
106
  - README.md
106
107
  - Rakefile
@@ -161,7 +162,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
161
162
  - !ruby/object:Gem::Version
162
163
  version: '0'
163
164
  requirements: []
164
- rubygems_version: 3.6.7
165
+ rubygems_version: 3.6.9
165
166
  specification_version: 4
166
167
  summary: Tasks for discharging an application for deployment.
167
168
  test_files: []