opencode-cmd-provider 1.0.0 → 1.0.1
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 +8 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.0.1 - 2026-08-16
|
|
4
|
+
|
|
5
|
+
Chore: harden the release flow so a tag push can no longer publish from an unmerged tree or rewrite tags.
|
|
6
|
+
|
|
7
|
+
- The release pipeline now refuses to run unless the tag's commit is an ancestor of `origin/main` — a tag pushed before the version bump lands on main fails with an explicit error instead of publishing (ADR 0003).
|
|
8
|
+
- A stale catalog snapshot now fails the run with remediation instructions instead of committing on the tag's tree, force-pushing main, and re-pointing the tag.
|
|
9
|
+
- The release skill ritual was updated: the bump and CHANGELOG entry land on main via PR before tagging; the tag push is all that triggers the pipeline.
|
|
10
|
+
|
|
3
11
|
## 1.0.0 - 2026-08-16
|
|
4
12
|
|
|
5
13
|
First stable release: API and behavior locked in, shipping now runs through a tag-driven pipeline.
|