openwolf-enhanced 1.9.3 → 1.9.4
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 +12 -0
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,18 @@ This is a fork of [OpenWolf](https://github.com/cytostack/openwolf) by Cytostack
|
|
|
6
6
|
Pvt Ltd. Versions ≤ 1.0.4 refer to the upstream project; `1.1.0` is the first
|
|
7
7
|
release of this fork.
|
|
8
8
|
|
|
9
|
+
## [1.9.4] — 2026-07-10
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- **Tokenless releases via npm Trusted Publishing (OIDC).** `.github/workflows/publish.yml` publishes
|
|
13
|
+
from GitHub Actions on a `v*` tag push, authenticating with a short-lived, workflow-scoped OIDC
|
|
14
|
+
credential instead of a stored `NPM_TOKEN`, and attaching a provenance attestation automatically.
|
|
15
|
+
No long-lived publish token exists anymore; the one used to bootstrap the package on npm was
|
|
16
|
+
revoked. Releasing is now: bump the version, tag `vX.Y.Z`, push.
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- **`packageManager` pinned to `pnpm@11.1.3`** so `pnpm/action-setup` resolves a version in CI.
|
|
20
|
+
|
|
9
21
|
## [1.9.3] — 2026-07-10
|
|
10
22
|
|
|
11
23
|
First release published to npm as [`openwolf-enhanced`](https://www.npmjs.com/package/openwolf-enhanced) — `npm install -g openwolf-enhanced`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openwolf-enhanced",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.4",
|
|
4
4
|
"description": "Token-conscious AI brain for Claude Code projects — enhanced fork with bounded storage, self-maintenance (openwolf doctor), .wolfignore scoping, and tunable retention.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
"engines": {
|
|
50
50
|
"node": ">=20.0.0"
|
|
51
51
|
},
|
|
52
|
+
"packageManager": "pnpm@11.1.3",
|
|
52
53
|
"license": "AGPL-3.0-only",
|
|
53
54
|
"author": "Krynex Labs <info@krynexlabs.de> (https://krynexlabs.de)",
|
|
54
55
|
"contributors": [
|