toys-release 0.1.1 → 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 +31 -0
- data/README.md +4 -4
- 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/artifact_dir.rb +21 -1
- data/toys/.lib/toys/release/change_set.rb +8 -8
- data/toys/.lib/toys/release/component.rb +24 -85
- data/toys/.lib/toys/release/environment_utils.rb +29 -6
- data/toys/.lib/toys/release/performer.rb +48 -43
- data/toys/.lib/toys/release/pipeline.rb +577 -0
- data/toys/.lib/toys/release/pull_request.rb +0 -2
- data/toys/.lib/toys/release/repo_settings.rb +494 -332
- data/toys/.lib/toys/release/repository.rb +7 -8
- data/toys/.lib/toys/release/request_spec.rb +1 -1
- data/toys/.lib/toys/release/steps.rb +295 -441
- data/toys/.toys.rb +2 -2
- data/toys/_onclosed.rb +9 -1
- data/toys/gen-config.rb +137 -0
- data/toys/gen-workflows.rb +23 -6
- data/toys/perform.rb +7 -5
- data/toys/retry.rb +20 -14
- metadata +5 -6
- data/toys/.data/templates/release-hook-on-open.yml.erb +0 -30
- data/toys/_onopen.rb +0 -158
- 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,36 @@
|
|
|
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
|
+
|
|
16
|
+
### v0.2.2 / 2025-11-30
|
|
17
|
+
|
|
18
|
+
* FIXED: Fixed several crashes in the retry tool
|
|
19
|
+
* FIXED: Fixed step cleaner trying to clean the .git directory on non-monorepos
|
|
20
|
+
* FIXED: Repo prechecks can now actually stop releases from being performed
|
|
21
|
+
* FIXED: Retry tool uses --work-dir= instead of --gh-pages-dir=
|
|
22
|
+
* FIXED: Dry run mode no longer attempts to update pull requests or open issues
|
|
23
|
+
|
|
24
|
+
### v0.2.1 / 2025-11-30
|
|
25
|
+
|
|
26
|
+
* FIXED: Fixed some typos in the release pipeline logs
|
|
27
|
+
* DOCS: Fixed minor typos in readme files
|
|
28
|
+
|
|
29
|
+
### v0.2.0 / 2025-11-30
|
|
30
|
+
|
|
31
|
+
* BREAKING CHANGE: Reworked pipeline design and normalized how steps communicate
|
|
32
|
+
* BREAKING CHANGE: Removed defunct commit linter
|
|
33
|
+
|
|
3
34
|
### v0.1.1 / 2025-11-09
|
|
4
35
|
|
|
5
36
|
* FIXED: The gen-gh-pages script now generates the correct redirect paths on a non-monorepo with the default directory structure
|
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ based on semantic versioning, and supports fine tuning and approval of releases
|
|
|
7
7
|
using GitHub pull requests.
|
|
8
8
|
|
|
9
9
|
Out of the box, Toys-Release knows how to tag GitHub releases, build and push
|
|
10
|
-
gems to
|
|
10
|
+
gems to RubyGems, and build and publish documentation to gh-pages. You can also
|
|
11
11
|
customize the build pipeline and many aspects of its behavior.
|
|
12
12
|
|
|
13
13
|
## Description
|
|
@@ -59,14 +59,14 @@ 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
|
-
setup-ruby GitHub Action is sufficient.
|
|
65
|
+
`setup-ruby` GitHub Action is sufficient.
|
|
66
66
|
|
|
67
67
|
## License
|
|
68
68
|
|
|
69
|
-
Copyright
|
|
69
|
+
Copyright 2025 Daniel Azuma and the Toys contributors
|
|
70
70
|
|
|
71
71
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
72
72
|
of this software and associated documentation files (the "Software"), to deal
|