@evanp/activitypub-bot 0.49.0 → 0.49.1

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 CHANGED
@@ -9,6 +9,12 @@ and this project adheres to
9
9
 
10
10
  ## [Unreleased]
11
11
 
12
+ ## [0.49.1] - 2026-06-28
13
+
14
+ ### Added
15
+
16
+ - Log subject in inbox and shared inbox
17
+
12
18
  ## [0.49.0] - 2026-06-28
13
19
 
14
20
  - New forceUnsubscribe argument for MastodonRelayClient, to force it
@@ -75,7 +75,7 @@ router.post('/user/:username/inbox', async (req, res, next) => {
75
75
  }
76
76
 
77
77
  logger.info(
78
- { reqId: req.id, activity: activity.id, bot: bot.username },
78
+ { reqId: req.id, activity: activity.id, bot: bot.username, subject },
79
79
  'Activity received at bot inbox'
80
80
  )
81
81
 
@@ -72,7 +72,7 @@ router.post('/shared/inbox', async (req, res, next) => {
72
72
  }
73
73
 
74
74
  logger.info(
75
- { reqId: req.id, activity: activity.id },
75
+ { reqId: req.id, activity: activity.id, subject },
76
76
  'Activity received at shared inbox'
77
77
  )
78
78
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evanp/activitypub-bot",
3
- "version": "0.49.0",
3
+ "version": "0.49.1",
4
4
  "description": "server-side ActivityPub bot framework",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",