@authorbot/domain 0.1.39 → 0.1.41

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +55 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -9,6 +9,61 @@ 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.41
13
+
14
+ - **Normal browsing no longer exhausts the live-event stream limit.** Streams
15
+ are scoped to the authenticated credential instead of a shared public IP,
16
+ and a reconnect or same-tab navigation replaces and closes its stale stream.
17
+ Unrelated readers behind one NAT no longer consume each other's allowance.
18
+ - Repository-backed reads now retry short-lived GitHub and gateway failures
19
+ within a small bounded budget. Unexpected API failures also emit safe,
20
+ correlation-keyed Worker logs without exposing SQL, repository content, or
21
+ credentials.
22
+ - The event-stream replacement contract is documented in OpenAPI. This patch
23
+ adds no D1 or book-format migration.
24
+
25
+ ## 0.1.40
26
+
27
+ - **Character details open correctly from hosted and local chapter pages.**
28
+ The 0.1.39 packed publisher could erase Web Awesome's runtime drawer import
29
+ when a book built outside the Authorbot workspace. Character links still
30
+ fetched their detail page, but the unregistered element stayed invisible.
31
+ The drawer now has an explicit runtime registration boundary, a browser
32
+ regression, and a packed-tarball build check that exercises the same
33
+ consumer context used by book CI.
34
+ - The README and publisher architecture docs now state the browser contract
35
+ directly: hosted and local-dev modes include progressive-enhancement
36
+ JavaScript, while an API-less build remains script-free and readable.
37
+ - The mobile header now contains its scrollable navigation at 320px, and
38
+ keyboard-created notes receive focus only after their anchored gutter layout
39
+ is visible.
40
+ - This hotfix adds no D1 or book-format migration.
41
+
42
+ ## 0.1.39
43
+
44
+ - **The hosted and local authoring UI now share the dogfooded reading
45
+ experience.** Chapter and summary editing load in place without clearing the
46
+ manuscript, reader controls can hide notes and use the available reading
47
+ width, and character links open full details in a right-side drawer.
48
+ Outline, timeline, and character editing use the same compact controls and
49
+ in-place loading behavior.
50
+ - **Chapter history now reads as a seamless layer over the manuscript.** The
51
+ revision rail stays beside the page, selected revision controls occupy the
52
+ notes column, and word- and sentence-level changes render in the normal
53
+ prose surface with semantic inserted and deleted colors. Revision loading
54
+ preserves the current view until the replacement is ready.
55
+ - **Notes and discussions are denser and more capable.** Anchored comments
56
+ follow the manuscript without covering it, collapsed notes retain the
57
+ author and text, reply and thread promotion create Work with the discussion
58
+ text intact, and editor/comment handoffs preserve selections and unsaved
59
+ input.
60
+ - **The browser UI now uses focused lightweight primitives where they help.**
61
+ Lit owns reader controls, Web Awesome supplies the character drawer, and
62
+ Floating UI positions anchored annotation surfaces; the rest remains
63
+ progressive-enhancement custom elements over static reading HTML.
64
+ - This release adds D1 migration `0014_reply_work_promotion.sql` and no
65
+ book-format migration.
66
+
12
67
  ## 0.1.38
13
68
 
14
69
  - **Authorbot now has a complete local authoring mode.** `authorbot dev` runs
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@authorbot/domain",
3
- "version": "0.1.39",
3
+ "version": "0.1.41",
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.39"
43
+ "@authorbot/schemas": "0.1.41"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@types/node": "^22.0.0",