Conversation
|
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
1e0f14f to
68c5a01
Compare
68c5a01 to
2ffe92a
Compare
2ffe92a to
c8a689b
Compare
c8a689b to
6a6dda4
Compare
6a6dda4 to
bad955e
Compare
bad955e to
5c21ea1
Compare
5c21ea1 to
6549734
Compare
6549734 to
a0b8680
Compare
a0b8680 to
d70e1ba
Compare
d70e1ba to
d4fc69f
Compare
d4fc69f to
d56cfcb
Compare
|
@codex review |
|
Codex Review: Didn't find any major issues. Keep it up! ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
If Codex has suggestions, it will comment; otherwise it will react with 👍. Codex can also answer questions or update the PR. Try commenting "@codex address that feedback". |
There was a problem hiding this comment.
Pull request overview
This PR updates the @fedify/cli development dependency from version 1.9.1 to 1.10.3, bringing in several bug fixes and new features from the Fedify ecosystem. The CLI tool is used for development and testing purposes and does not affect the runtime dependencies of the application.
Changes:
- Updated
@fedify/clifrom 1.9.1 to 1.10.3 in package.json - Updated yarn.lock with corresponding package resolution and integrity hash
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| package.json | Updated @fedify/cli devDependency version from 1.9.1 to 1.10.3 |
| yarn.lock | Updated package resolution, integrity hash, and registry information for @fedify/cli |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
d56cfcb to
fe77206
Compare
This PR contains the following updates:
1.9.1→1.10.3Release Notes
fedify-dev/fedify (@fedify/cli)
v1.10.3Compare Source
Released on February 1, 2026.
@fedify/fedify
traverseCollection()yielding no items when aCollectionhasan inline
CollectionPagein itsfirstproperty without an explicitid. This is common in Mastodon'srepliescollections. The functionpreviously used
collection.firstIdto determine pagination, whichreturned
nullfor inline pages without anid, causing it toincorrectly fall into the non-paginated branch. [#550 by Lee Dogeon]
v1.10.2Compare Source
Released on January 23, 2026.
@fedify/testing
TestContext.getActorKeyPairs()returning empty array instead ofcalling registered key pairs dispatcher. The method now properly invokes
the key pairs dispatcher when it is registered via
setKeyPairsDispatcher(). [#530]v1.10.1Compare Source
Released on January 22, 2026.
@fedify/testing
TestContext.getActor()andTestContext.getObject()returningnullinstead of calling registered dispatchers. The methods now properlyinvoke actor and object dispatchers when they are registered via
setActorDispatcher()andsetObjectDispatcher(). [[#530]]v1.10.0Compare Source
Released on December 24, 2025.
@fedify/fedify
Enhanced OpenTelemetry instrumentation with span events for capturing
detailed activity data. Span events now record complete activity JSON
payloads and verification status, enabling richer observability and
debugging capabilities without relying solely on span attributes
(which only support primitive values). [#323]
activitypub.activity.receivedspan event to theactivitypub.inboxspan, recording the full activity JSON,verification status (activity verified, HTTP signatures verified,
Linked Data signatures verified), and actor information.
activitypub.activity.sentspan event to theactivitypub.send_activityspan, recording the full activity JSONand target inbox URL.
activitypub.object.fetchedspan event to theactivitypub.lookup_objectspan, recording the fetched object'stype and complete JSON-LD representation.
Added OpenTelemetry spans for previously uninstrumented operations:
[#323]
activitypub.fetch_documentspan for document loader operations,tracking URL fetching, HTTP redirects, and final document URLs.
activitypub.verify_key_ownershipspan for cryptographickey ownership verification, recording actor ID, key ID, verification
result, and the verification method used.
Added optional
list()method to theKvStoreinterface for enumeratingentries by key prefix. This method takes an optional
prefixparameter;when omitted or empty, it returns all entries. This enables efficient
prefix scanning which is useful for implementing features like distributed
trace storage, cache invalidation by prefix, and listing related entries.
[#498, #500]
KvStoreListEntryinterface.MemoryKvStore.Added
FedifySpanExporterclass that persists ActivityPub activity tracesto a
KvStorefor distributed tracing support. This enables aggregatingtrace data across multiple nodes in a distributed deployment, making it
possible to build debug dashboards that show complete request flows across
web servers and background workers. [#497, #502]
@fedify/fedify/otelmodule.FedifySpanExporterclass implementing OpenTelemetry'sSpanExporterinterface.TraceActivityRecordinterface for stored activity data,including
actorIdandsignatureDetailsfields for debug dashboardsupport.
SignatureVerificationDetailsinterface for detailed signatureverification information.
TraceSummaryinterface for trace listing.FedifySpanExporterOptionsinterface.GetRecentTracesOptionsinterface.ActivityDirectiontype.@fedify/nestjs
expresspeer dependency range to support NestJS 11.[#492, #493 by Cho Hasang]
@fedify/sqlite
list()method inSqliteKvStore. [#498, #500]@fedify/postgres
list()method inPostgresKvStore. [#498, #500]@fedify/redis
list()method inRedisKvStore. [#498, #500]@fedify/denokv
list()method inDenoKvStore. [#498, #500]@fedify/cfworkers
list()method inWorkersKvStore. [#498, #500]v1.9.5Compare Source
Released on February 1, 2026.
@fedify/fedify
traverseCollection()yielding no items when aCollectionhasan inline
CollectionPagein itsfirstproperty without an explicitid. This is common in Mastodon'srepliescollections. The functionpreviously used
collection.firstIdto determine pagination, whichreturned
nullfor inline pages without anid, causing it toincorrectly fall into the non-paginated branch. [[#550] by Lee Dogeon]
v1.9.4Compare Source
Released on January 23, 2026.
@fedify/testing
TestContext.getActorKeyPairs()returning empty array instead ofcalling registered key pairs dispatcher. The method now properly invokes
the key pairs dispatcher when it is registered via
setKeyPairsDispatcher(). [[#530]]v1.9.3Compare Source
Released on January 22, 2026.
@fedify/testing
TestContext.getActor()andTestContext.getObject()returningnullinstead of calling registered dispatchers. The methods now properlyinvoke actor and object dispatchers when they are registered via
setActorDispatcher()andsetObjectDispatcher(). [[#530]]v1.9.2Compare Source
Released on December 20, 2025.
@fedify/fedify
the document loader's HTML parsing. An attacker-controlled server could
respond with a malicious HTML payload that blocked the event loop.
[CVE-2025-68475]
@fedify/sqlite
SyntaxError: Identifier 'Temporal' has already been declarederrorthat occurred when using
SqliteKvStoreon Node.js or Bun. The errorwas caused by duplicate
Temporalimports during the build process.[#487]
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - Between 07:00 AM and 04:59 PM, only on Monday, Tuesday, Wednesday, and Thursday ( * 7-16 * * 1,2,3,4 ) (UTC).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Never, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.