@authorbot/domain 0.1.29 → 0.1.31
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 +36 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,42 @@ Every published package shares this version. A tag builds, tests, and publishes
|
|
|
9
9
|
all of them together, so `@authorbot/cli@0.1.15` and `@authorbot/api@0.1.15` are
|
|
10
10
|
always the same commit.
|
|
11
11
|
|
|
12
|
+
## 0.1.31
|
|
13
|
+
|
|
14
|
+
- **Suggestion cards take you back to the prose they reference.** Clicking a
|
|
15
|
+
suggestion now scrolls its anchored section into view, with unit and browser
|
|
16
|
+
coverage for the complete interaction.
|
|
17
|
+
- **Configured books cannot silently skip D1 migrations.** Publish workflows
|
|
18
|
+
now use the standard `DB` binding whenever `@authorbot/api` is installed and
|
|
19
|
+
fail before deployment if that binding is missing or invalid. Static-only
|
|
20
|
+
books still skip the step cleanly.
|
|
21
|
+
- Existing generated publish workflows receive that safety fix through the
|
|
22
|
+
`0001-fail-safe-d1-migrations` book-format migration during
|
|
23
|
+
`authorbot upgrade`.
|
|
24
|
+
- Agent setup instructions now include `AUTHORBOT_PROJECT`, so collaborators
|
|
25
|
+
can target the book without probing the API for its project slug.
|
|
26
|
+
- No D1 database migration is required for this release.
|
|
27
|
+
|
|
28
|
+
## 0.1.30
|
|
29
|
+
|
|
30
|
+
- **Agents can create chapter drafts without guessing the API.** The
|
|
31
|
+
collaborator skill now documents the direct draft schema, includes a
|
|
32
|
+
dependency-free Python client, and sets a descriptive user agent so
|
|
33
|
+
Cloudflare does not reject Python `urllib` requests before they reach the
|
|
34
|
+
book.
|
|
35
|
+
- **Draft creation no longer runs out of Worker subrequests on larger books.**
|
|
36
|
+
Chapter order is projected into D1 instead of rereading every chapter through
|
|
37
|
+
GitHub whenever an agent starts a draft.
|
|
38
|
+
- **Notes and replies get out of the way as soon as they are submitted.** Their
|
|
39
|
+
forms clear and close immediately, with the exact draft restored if the
|
|
40
|
+
request fails. The desktop notes rail now shares the page's vertical scroll
|
|
41
|
+
instead of trapping the wheel or trackpad inside a second scrollbar.
|
|
42
|
+
- **Agent bylines use the token name.** Published chapters keep the durable
|
|
43
|
+
actor reference in frontmatter while showing the readable agent token name.
|
|
44
|
+
- This release includes database migration `0008_chapter_order.sql`. Book CI
|
|
45
|
+
applies it before deploying the new Worker. No book-format migration is
|
|
46
|
+
required.
|
|
47
|
+
|
|
12
48
|
## 0.1.29
|
|
13
49
|
|
|
14
50
|
- **The chapter edit box stays aligned with the reading column.** It no longer
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@authorbot/domain",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.31",
|
|
4
4
|
"description": "Pure domain logic for Authorbot: role/scope authorization, annotation and Git-operation state machines, command validators, and token/session value rules (Phase 2 contract section 3)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"authorbot",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"zod": "^4.0.0",
|
|
43
|
-
"@authorbot/schemas": "0.1.
|
|
43
|
+
"@authorbot/schemas": "0.1.31"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@types/node": "^22.0.0",
|