@authorbot/domain 0.1.40 → 0.1.42

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 +24 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -9,6 +9,30 @@ 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.42
13
+
14
+ - Production builds now opt out of Cloudflare response rewriting, which
15
+ prevents the platform from injecting its browser analytics beacon into book
16
+ pages. Cloudflare's edge request counts remain available, so authors retain
17
+ ordinary traffic visibility without shipping third-party tracking
18
+ JavaScript.
19
+ - The generated `_headers` file applies at the static-assets root, including
20
+ books served beneath a base path. This patch adds no D1 or book-format
21
+ migration.
22
+
23
+ ## 0.1.41
24
+
25
+ - **Normal browsing no longer exhausts the live-event stream limit.** Streams
26
+ are scoped to the authenticated credential instead of a shared public IP,
27
+ and a reconnect or same-tab navigation replaces and closes its stale stream.
28
+ Unrelated readers behind one NAT no longer consume each other's allowance.
29
+ - Repository-backed reads now retry short-lived GitHub and gateway failures
30
+ within a small bounded budget. Unexpected API failures also emit safe,
31
+ correlation-keyed Worker logs without exposing SQL, repository content, or
32
+ credentials.
33
+ - The event-stream replacement contract is documented in OpenAPI. This patch
34
+ adds no D1 or book-format migration.
35
+
12
36
  ## 0.1.40
13
37
 
14
38
  - **Character details open correctly from hosted and local chapter pages.**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@authorbot/domain",
3
- "version": "0.1.40",
3
+ "version": "0.1.42",
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.40"
43
+ "@authorbot/schemas": "0.1.42"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@types/node": "^22.0.0",