toys-release 0.2.2 → 0.3.0
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 +4 -4
- data/CHANGELOG.md +13 -0
- data/README.md +1 -1
- data/docs/guide.md +826 -1
- data/lib/toys/release/version.rb +1 -1
- data/toys/.data/templates/release-request.yml.erb +1 -1
- data/toys/.lib/toys/release/change_set.rb +7 -7
- data/toys/.lib/toys/release/component.rb +7 -68
- data/toys/.lib/toys/release/environment_utils.rb +13 -0
- data/toys/.lib/toys/release/performer.rb +2 -7
- data/toys/.lib/toys/release/pipeline.rb +41 -12
- data/toys/.lib/toys/release/repo_settings.rb +282 -256
- data/toys/.lib/toys/release/repository.rb +3 -3
- data/toys/.lib/toys/release/steps.rb +39 -22
- data/toys/.toys.rb +2 -2
- data/toys/_onclosed.rb +8 -0
- data/toys/gen-config.rb +137 -0
- data/toys/gen-workflows.rb +23 -6
- metadata +4 -4
- data/toys/gen-settings.rb +0 -46
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e246a109a9bcbbe565935d1cf5a915308c4e0cb52185d916050cc9f921f23902
|
|
4
|
+
data.tar.gz: 581130fc95c1cfe9bf04122e89d94b1b4559eeb8cd392f87a561c910be183c99
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c81089d76c5038be6a72440228e94bfc5fec13f9943a5487e5076849f62e38eb8ceda2ed504719103d6a45315c12da1872079bf098c5231d88f8a61085339b28
|
|
7
|
+
data.tar.gz: a1c0b68d7152331c1a7734f2e81f75f367ebb9fc7035c30de8c1189b66823e060fc1ce97085bdd389a68cbdcffb7aaf1955beba9f440dff95abd9eaa9640335c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Release History
|
|
2
2
|
|
|
3
|
+
### v0.3.0 / 2025-12-06
|
|
4
|
+
|
|
5
|
+
This release includes fairly substantial changes, a few of them breaking, to the configuration mechanism:
|
|
6
|
+
* Component types have been removed. You can customize the pipeline for specific components, but there are no longer any predefined "categories" of components.
|
|
7
|
+
* Commit tag handling can be overridden for specific components.
|
|
8
|
+
* Added a configuration to control how collisions during file copies (in inputs and outputs) are resolved.
|
|
9
|
+
* Unknown or misspelled keys in the configuration now trigger an error.
|
|
10
|
+
|
|
11
|
+
Aditional changes:
|
|
12
|
+
* Renamed the gen-settings tool to gen-config and expanded its capabilities, including generating git_user_name and git_user_email.
|
|
13
|
+
* When the release automation starts, it posts a comment on the release pull request with a link to its logs.
|
|
14
|
+
* Initial work on the users guide.
|
|
15
|
+
|
|
3
16
|
### v0.2.2 / 2025-11-30
|
|
4
17
|
|
|
5
18
|
* FIXED: Fixed several crashes in the retry tool
|
data/README.md
CHANGED
|
@@ -59,7 +59,7 @@ by closing the pull request without merging.
|
|
|
59
59
|
|
|
60
60
|
### System requirements
|
|
61
61
|
|
|
62
|
-
Toys-Release requires Ruby 2.7 or later, and Toys 0.
|
|
62
|
+
Toys-Release requires Ruby 2.7 or later, and Toys 0.18 or later. We recommend
|
|
63
63
|
the latest version of the standard C implementation of Ruby. (JRuby or
|
|
64
64
|
TruffleRuby _may_ work, but are unsupported.) The Ruby provided by the standard
|
|
65
65
|
`setup-ruby` GitHub Action is sufficient.
|