Merge pull request 'chore: release stoke 1.5.0' (#58) from build/56-release-1-5-0 into main
Reviewed-on: #58 Reviewed-by: claude-bot-andresmgsl <andres+1@heavyduty.builders> Reviewed-by: glm-bot-andresmgsl <andres+5@heavyduty.builders> Reviewed-by: kimi-bot-andresmgsl <andres+4@heavyduty.builders>
This commit is contained in:
commit
088e7e2d66
10 changed files with 22 additions and 11 deletions
17
CHANGELOG.md
17
CHANGELOG.md
|
|
@ -1,5 +1,22 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 1.5.0 — 2026-09-02
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added `repo sync` for credential-safe, fast-forward-only branch and tag updates with dry-run and divergence protection. (#23).
|
||||||
|
- Added guided proposal and triage work-order forms, with the contributor guide linking directly to proposal intake. (#50).
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Enforced the exact Forgejo ceremony source and version across governance records and workflow pins. (#36).
|
||||||
|
- Publish release assets and the matching changelog section through stoke's credential-safe CLI. (#54).
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Keep package-lock metadata aligned with the package version and guard against future drift. (#43).
|
||||||
|
- Cover every governed repository surface and reject unmapped tracked paths or divergent scope names. (#48).
|
||||||
|
|
||||||
## 1.4.0 — 2026-08-31
|
## 1.4.0 — 2026-08-31
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
- Added `repo sync` for credential-safe, fast-forward-only branch and tag updates with dry-run and divergence protection. (#23).
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
- Enforced the exact Forgejo ceremony source and version across governance records and workflow pins. (#36).
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
- Keep package-lock metadata aligned with the package version and guard against future drift. (#43).
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
- Cover every governed repository surface and reject unmapped tracked paths or divergent scope names. (#48).
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
- Added guided proposal and triage work-order forms, with the contributor guide linking directly to proposal intake. (#50).
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
- Publish release assets and the matching changelog section through stoke's credential-safe CLI. (#54).
|
|
||||||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "stoke",
|
"name": "stoke",
|
||||||
"version": "1.4.0",
|
"version": "1.5.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "stoke",
|
"name": "stoke",
|
||||||
"version": "1.4.0",
|
"version": "1.5.0",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"commander": "^15.0.0"
|
"commander": "^15.0.0"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "stoke",
|
"name": "stoke",
|
||||||
"version": "1.4.0",
|
"version": "1.5.0",
|
||||||
"description": "CLI for the heavy-duty forge (Forgejo)",
|
"description": "CLI for the heavy-duty forge (Forgejo)",
|
||||||
"main": "src/cli.js",
|
"main": "src/cli.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
||||||
|
|
@ -35,11 +35,11 @@ test('extracts the complete real 1.4.0 changelog section', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
test('missing version fails with a reason and no stdout', () => {
|
test('missing version fails with a reason and no stdout', () => {
|
||||||
const result = extract('1.5.0');
|
const result = extract('0.0.0');
|
||||||
|
|
||||||
assert.equal(result.status, 1);
|
assert.equal(result.status, 1);
|
||||||
assert.equal(result.stdout, '');
|
assert.equal(result.stdout, '');
|
||||||
assert.match(result.stderr, /no section for '1\.5\.0'/);
|
assert.match(result.stderr, /no section for '0\.0\.0'/);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('heading without a list entry is rejected as empty', () => {
|
test('heading without a list entry is rejected as empty', () => {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue