@authorbot/domain 0.1.20 → 0.1.21

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 +14 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -9,6 +9,20 @@ 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.21
13
+
14
+ - **Installing the GitHub App no longer lands you on a 404.** GitHub was asked
15
+ to run its OAuth flow during installation, which redirected to a callback
16
+ that cannot exist yet — the Worker's config needs the installation id that
17
+ installing is in the middle of producing. It now returns you to your book's
18
+ own site.
19
+ - **The agent stage stopped asking for a credential nobody has.** It wanted "a
20
+ maintainer token you already hold"; signing in gives you a session cookie and
21
+ nothing in Authorbot issues bearer tokens. It now prints a request you can
22
+ actually run from your signed-in site. (A create control on the settings page
23
+ is the real fix and is still to come.)
24
+ - Colour is drawn with chalk, so it adapts to what your terminal supports.
25
+
12
26
  ## 0.1.20
13
27
 
14
28
  - **The GitHub App key was stored in a format the Worker cannot read.** GitHub's
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@authorbot/domain",
3
- "version": "0.1.20",
3
+ "version": "0.1.21",
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.20"
43
+ "@authorbot/schemas": "0.1.21"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@types/node": "^22.0.0",