@warlock.js/herald 5.3.2 → 5.5.0
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 +6 -0
- package/llms-full.txt +1 -1
- package/package.json +3 -3
- package/skills/herald-basics/SKILL.md +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ All notable changes to `@warlock.js/herald` are documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). `@warlock.js/*` packages are released in lockstep — every package shares the same version number, so a version below may list only the changes that affected this package.
|
|
6
6
|
|
|
7
|
+
## 5.5.0 - 2026-09-07
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- Documentation shipped in this package's `skills/` told users to run `pnpm`-specific commands. `pnpm <binary>` has no npm equivalent, so those instructions failed outright for anyone not using pnpm. Commands are now package-manager neutral.
|
|
12
|
+
|
|
7
13
|
## 5.2.3 - 2026-09-02
|
|
8
14
|
|
|
9
15
|
### Fixed
|
package/llms-full.txt
CHANGED
|
@@ -243,7 +243,7 @@ Message bus library — wraps RabbitMQ (Kafka WIP) behind a unified pub/sub API.
|
|
|
243
243
|
## Install
|
|
244
244
|
|
|
245
245
|
```bash
|
|
246
|
-
|
|
246
|
+
npm install @warlock.js/herald amqplib # amqplib for RabbitMQ
|
|
247
247
|
```
|
|
248
248
|
|
|
249
249
|
## Server-only package
|
package/package.json
CHANGED
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
"@mongez/copper": "^2.1.2",
|
|
9
9
|
"@mongez/events": "^2.2.7",
|
|
10
10
|
"@mongez/reinforcements": "^4.0.1",
|
|
11
|
-
"@warlock.js/logger": "5.
|
|
12
|
-
"@warlock.js/seal": "5.
|
|
11
|
+
"@warlock.js/logger": "5.5.0",
|
|
12
|
+
"@warlock.js/seal": "5.5.0"
|
|
13
13
|
},
|
|
14
14
|
"repository": {
|
|
15
15
|
"type": "git",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
],
|
|
37
37
|
"author": "hassanzohdy",
|
|
38
38
|
"license": "MIT",
|
|
39
|
-
"version": "5.
|
|
39
|
+
"version": "5.5.0",
|
|
40
40
|
"main": "./cjs/index.cjs",
|
|
41
41
|
"module": "./esm/index.mjs",
|
|
42
42
|
"types": "./esm/index.d.mts",
|
|
@@ -12,7 +12,7 @@ Message bus library — wraps RabbitMQ (Kafka WIP) behind a unified pub/sub API.
|
|
|
12
12
|
## Install
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
|
-
|
|
15
|
+
npm install @warlock.js/herald amqplib # amqplib for RabbitMQ
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
## Server-only package
|