brel 0.3.0 → 0.5.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.
- package/CHANGELOG.md +16 -0
- package/LICENSE +21 -0
- package/README.md +4 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## [0.5.0] - 2026-02-18
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- Use setup-brel action
|
|
6
|
+
## [0.4.0] - 2026-02-18
|
|
7
|
+
|
|
8
|
+
### 🚀 Features
|
|
9
|
+
|
|
10
|
+
- Add PAT token for tag pushing
|
|
11
|
+
## [0.3.1] - 2026-02-18
|
|
12
|
+
|
|
13
|
+
### 🐛 Bug Fixes
|
|
14
|
+
|
|
15
|
+
- Update release & remove facet
|
|
16
|
+
- Changelog prepend
|
|
1
17
|
## [0.3.0] - 2026-02-18
|
|
2
18
|
|
|
3
19
|
### 🚀 Features
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Matteo Gassend
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -162,6 +162,10 @@ For PRs:
|
|
|
162
162
|
- Tag format config: `[release_pr.tagging] tag_template = "v{version}"` (default shown).
|
|
163
163
|
- When enabled, the generated workflow listens for merged pull requests into the configured default branch.
|
|
164
164
|
- If the merged PR is managed by `brel` and titled `Release <rendered-tag>`, the workflow validates it against `tag_template`, then creates and pushes that tag when it does not already exist.
|
|
165
|
+
- Create repository secret `BREL_TAG_PUSH_TOKEN` before using tagging-on-merge.
|
|
166
|
+
- Use a PAT that can push tags to the repository (fine-grained PAT with `Contents: Read and write`).
|
|
167
|
+
- This is required because pushes done with `GITHUB_TOKEN` do not trigger downstream tag-push workflows.
|
|
168
|
+
- `brel init` prints this secret requirement whenever tagging is enabled.
|
|
165
169
|
|
|
166
170
|
## PR Body Templates
|
|
167
171
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"name": "brel",
|
|
26
|
-
"version": "0.
|
|
26
|
+
"version": "0.5.0"
|
|
27
27
|
},
|
|
28
28
|
"node_modules/@isaacs/balanced-match": {
|
|
29
29
|
"engines": {
|
|
@@ -515,5 +515,5 @@
|
|
|
515
515
|
}
|
|
516
516
|
},
|
|
517
517
|
"requires": true,
|
|
518
|
-
"version": "0.
|
|
518
|
+
"version": "0.5.0"
|
|
519
519
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/better-releases/brel/releases/download/0.
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/better-releases/brel/releases/download/0.5.0",
|
|
3
3
|
"bin": {
|
|
4
4
|
"brel": "run-brel.js"
|
|
5
5
|
},
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"zipExt": ".tar.xz"
|
|
98
98
|
}
|
|
99
99
|
},
|
|
100
|
-
"version": "0.
|
|
100
|
+
"version": "0.5.0",
|
|
101
101
|
"volta": {
|
|
102
102
|
"node": "18.14.1",
|
|
103
103
|
"npm": "9.5.0"
|