harnessbrew 0.5.0 → 0.5.2
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/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## 0.5.2 - 2026-08-13
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- automated publication now passes npm an explicit local tarball path instead of a Git dependency specifier
|
|
10
|
+
- release tests guard the exact artifact handoff between `npm pack` and `npm publish`
|
|
11
|
+
|
|
12
|
+
## 0.5.1 - 2026-08-13
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- npm package metadata now preserves the `harnessbrew` executable mapping in the published tarball
|
|
17
|
+
- package smoke tests run in clean CI environments without requiring an already-populated offline cache
|
|
18
|
+
- release automation checks out and validates the exact release tag, builds one immutable tarball, and publishes that same artifact with provenance
|
|
19
|
+
- release version consistency is now covered by an automated check across package metadata, source, changelog, and Git tags
|
|
20
|
+
|
|
5
21
|
## 0.5.0 - 2026-08-13
|
|
6
22
|
|
|
7
23
|
### Added
|
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.5.
|
|
1
|
+
export declare const VERSION = "0.5.2";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = "0.5.
|
|
1
|
+
export const VERSION = "0.5.2";
|
|
2
2
|
//# sourceMappingURL=version.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "harnessbrew",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"description": "A Git-native package manager for AI Agent assets.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -25,7 +25,8 @@
|
|
|
25
25
|
"start": "node ./dist/bin.js",
|
|
26
26
|
"test": "npm run build:test && node --test .test-dist/tests/*.test.js",
|
|
27
27
|
"test:package": "npm run build && node ./scripts/package-smoke.mjs",
|
|
28
|
-
"check": "npm run build && npm test && npm run test:package && npm pack --dry-run --cache .npm-cache",
|
|
28
|
+
"check": "npm run build && npm test && npm run test:package && npm run release:verify && npm pack --dry-run --cache .npm-cache",
|
|
29
|
+
"release:verify": "node ./scripts/release-check.mjs",
|
|
29
30
|
"prepack": "npm run build"
|
|
30
31
|
},
|
|
31
32
|
"keywords": [
|