wendkeep 0.57.1 → 0.57.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/README.en.md +18 -6
- package/README.md +18 -6
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,22 @@ All notable changes to **wendkeep** are documented here. Format based on
|
|
|
4
4
|
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/); this project follows
|
|
5
5
|
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.57.2] — 2026-07-25
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **O README deixa de recomendar um `pnpm add` que não atualiza.** A seção "Atualizar"
|
|
12
|
+
mandava rodar `pnpm add -D -w wendkeep@latest`. Medido num projeto pnpm limpo, sem
|
|
13
|
+
configuração alguma: o comando devolveu `+ wendkeep 0.49.0 (0.57.1 is available)` e saiu 0.
|
|
14
|
+
O `minimumReleaseAge` de 24h é **default do pnpm 11**, não config do projeto, e ele não
|
|
15
|
+
recusa o pacote recente — instala o anterior em silêncio, com o `(X.Y.Z is available)` como
|
|
16
|
+
única pista. Quem seguia o README ficava na versão velha achando que tinha atualizado. O
|
|
17
|
+
bloco pnpm passa a mostrar a versão exata com `--config.minimumReleaseAge=0`, e o `@latest`
|
|
18
|
+
aparece como armadilha nomeada. A nota também corrige quem escreve a exceção: o
|
|
19
|
+
`minimumReleaseAgeExclude` do `pnpm-workspace.yaml` é **manual** — o pnpm não escreve essa
|
|
20
|
+
linha, e sem ela o `pnpm install` do CI falha com
|
|
21
|
+
`ERR_PNPM_MINIMUM_RELEASE_AGE_VIOLATION` até a versão completar 24h. Vale nos dois idiomas.
|
|
22
|
+
|
|
7
23
|
## [0.57.1] — 2026-07-25
|
|
8
24
|
|
|
9
25
|
### Fixed
|
package/README.en.md
CHANGED
|
@@ -124,16 +124,28 @@ The install stays outside `sync` on purpose: a running process cannot replace it
|
|
|
124
124
|
keep going — the code in memory would still be the old one.
|
|
125
125
|
|
|
126
126
|
In a **pnpm** monorepo the install command differs (`npm` in a pnpm repo fails with
|
|
127
|
-
`Cannot read properties of null (reading 'matches')`)
|
|
127
|
+
`Cannot read properties of null (reading 'matches')`) and the version must be **exact**:
|
|
128
128
|
|
|
129
129
|
```bash
|
|
130
|
-
pnpm add -D -w wendkeep@
|
|
130
|
+
pnpm add -D -w wendkeep@X.Y.Z --config.minimumReleaseAge=0 && npx --no-install wendkeep sync --project . --yes
|
|
131
131
|
```
|
|
132
132
|
|
|
133
|
-
> pnpm
|
|
134
|
-
>
|
|
135
|
-
>
|
|
136
|
-
> in
|
|
133
|
+
> **Do not ask pnpm for `wendkeep@latest`.** pnpm 11 ignores packages published in the last
|
|
134
|
+
> 24h by default (`minimumReleaseAge`, a supply-chain guard) — and it does not complain: it
|
|
135
|
+
> installs the previous version, exits 0, and the only hint is a quiet `(X.Y.Z is available)`
|
|
136
|
+
> in the output. You end up on the old version thinking you upgraded. Check with
|
|
137
|
+
> `npx wendkeep --version`.
|
|
138
|
+
>
|
|
139
|
+
> After installing, record the exception in `pnpm-workspace.yaml` — **pnpm does not write
|
|
140
|
+
> that line for you**:
|
|
141
|
+
>
|
|
142
|
+
> ```yaml
|
|
143
|
+
> minimumReleaseAgeExclude:
|
|
144
|
+
> - wendkeep@X.Y.Z
|
|
145
|
+
> ```
|
|
146
|
+
>
|
|
147
|
+
> Without it, CI's `pnpm install` fails with `ERR_PNPM_MINIMUM_RELEASE_AGE_VIOLATION` until
|
|
148
|
+
> the version turns 24h old.
|
|
137
149
|
|
|
138
150
|
Restart Codex and Claude Code afterwards — the generated skills are read at startup.
|
|
139
151
|
|
package/README.md
CHANGED
|
@@ -124,16 +124,28 @@ The install stays outside `sync` on purpose: a running process cannot replace it
|
|
|
124
124
|
keep going — the code in memory would still be the old one.
|
|
125
125
|
|
|
126
126
|
In a **pnpm** monorepo the install command differs (`npm` in a pnpm repo fails with
|
|
127
|
-
`Cannot read properties of null (reading 'matches')`)
|
|
127
|
+
`Cannot read properties of null (reading 'matches')`) and the version must be **exact**:
|
|
128
128
|
|
|
129
129
|
```bash
|
|
130
|
-
pnpm add -D -w wendkeep@
|
|
130
|
+
pnpm add -D -w wendkeep@X.Y.Z --config.minimumReleaseAge=0 && npx --no-install wendkeep sync --project . --yes
|
|
131
131
|
```
|
|
132
132
|
|
|
133
|
-
> pnpm
|
|
134
|
-
>
|
|
135
|
-
>
|
|
136
|
-
> in
|
|
133
|
+
> **Do not ask pnpm for `wendkeep@latest`.** pnpm 11 ignores packages published in the last
|
|
134
|
+
> 24h by default (`minimumReleaseAge`, a supply-chain guard) — and it does not complain: it
|
|
135
|
+
> installs the previous version, exits 0, and the only hint is a quiet `(X.Y.Z is available)`
|
|
136
|
+
> in the output. You end up on the old version thinking you upgraded. Check with
|
|
137
|
+
> `npx wendkeep --version`.
|
|
138
|
+
>
|
|
139
|
+
> After installing, record the exception in `pnpm-workspace.yaml` — **pnpm does not write
|
|
140
|
+
> that line for you**:
|
|
141
|
+
>
|
|
142
|
+
> ```yaml
|
|
143
|
+
> minimumReleaseAgeExclude:
|
|
144
|
+
> - wendkeep@X.Y.Z
|
|
145
|
+
> ```
|
|
146
|
+
>
|
|
147
|
+
> Without it, CI's `pnpm install` fails with `ERR_PNPM_MINIMUM_RELEASE_AGE_VIOLATION` until
|
|
148
|
+
> the version turns 24h old.
|
|
137
149
|
|
|
138
150
|
Restart Codex and Claude Code afterwards — the generated skills are read at startup.
|
|
139
151
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wendkeep",
|
|
3
|
-
"version": "0.57.
|
|
3
|
+
"version": "0.57.2",
|
|
4
4
|
"description": "A persistent-memory harness for AI coding agents on your Obsidian vault: turn-by-turn session capture plus a native, zero-dependency spec→change→verify→archive loop (sensor-gated, independent verdict, mutation discrimination). Local-first, agent-agnostic (Claude Code, Codex, Cursor…).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -49,6 +49,6 @@
|
|
|
49
49
|
"url": "https://github.com/rogersialves/wendkeep/issues"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"wendkeep": "^0.
|
|
52
|
+
"wendkeep": "^0.57.1"
|
|
53
53
|
}
|
|
54
54
|
}
|