@omkarux/vela 0.3.0 → 0.3.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 +21 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,27 @@
|
|
|
3
3
|
All notable changes to this project are documented here.
|
|
4
4
|
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
5
|
|
|
6
|
+
## [0.3.1] — 2026-09-10
|
|
7
|
+
|
|
8
|
+
### Fixed
|
|
9
|
+
- **The release workflow could never publish.** It triggered only on pushes to `main` and on pull
|
|
10
|
+
requests, while the publish job gated on `refs/tags/v*` — so a tag push matched no trigger and
|
|
11
|
+
the job never ran. Tags are now listed explicitly.
|
|
12
|
+
- Trusted publishing requires npm >= 11.5.1; Node 22 ships npm 10.x. The publish job now upgrades
|
|
13
|
+
npm first. Without it npm falls back to looking for a token and fails with `ENEEDAUTH`, which
|
|
14
|
+
reads like a credentials problem rather than a version one.
|
|
15
|
+
|
|
16
|
+
- **`scripts/verify-pack.mjs` crashed on `npm pack --json`.** It assumed an array and indexed
|
|
17
|
+
`[0].filename` directly, which threw a bare `TypeError` when npm returned a different shape from
|
|
18
|
+
inside a lifecycle script. It now parses defensively and reports the actual output.
|
|
19
|
+
- The publish job no longer re-runs the full gate. `prepublishOnly` fired inside `npm publish`,
|
|
20
|
+
repeating work the `verify` job had already done and putting a second failure surface inside the
|
|
21
|
+
publish step — which is what broke the first tagged release. The gate runs once, in `verify`.
|
|
22
|
+
|
|
23
|
+
This release exists to prove the pipeline end to end. The tarball contents are unchanged from
|
|
24
|
+
0.3.0 — but this one was built and published by CI from a git tag, with a provenance attestation
|
|
25
|
+
tying it to the commit, rather than by hand from a laptop.
|
|
26
|
+
|
|
6
27
|
## [0.3.0] — 2026-09-10
|
|
7
28
|
|
|
8
29
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omkarux/vela",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "A token-first React component kit: two-layer color architecture, separate severity and risk taxonomies, full light and dark theming, zero runtime dependencies.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|