Update dependency @fedify/redis to v1.10.3#1491
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 |
b8501bf to
5081b4e
Compare
5081b4e to
dc5f109
Compare
dc5f109 to
70f4fd9
Compare
70f4fd9 to
60f8610
Compare
60f8610 to
65dbe77
Compare
65dbe77 to
d908cdf
Compare
d908cdf to
71b0c46
Compare
71b0c46 to
fc1193e
Compare
fc1193e to
36a6d78
Compare
36a6d78 to
2f3b56c
Compare
2f3b56c to
71c770a
Compare
|
@codex review |
|
Codex Review: Didn't find any major issues. Swish! ℹ️ 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 Renovate PR updates the project’s Redis-backed Fedify KV store dependency to pick up upstream fixes and enhancements.
Changes:
- Bump
@fedify/redisfrom1.9.1to1.10.3inpackage.json. - Refresh
yarn.lockto lock@fedify/redis@1.10.3and its updated transitive dependency range for@logtape/logtape.
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| package.json | Updates the direct dependency version for @fedify/redis. |
| yarn.lock | Updates the lockfile entry for @fedify/redis@1.10.3 and associated resolved artifacts. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In `@package.json`:
- Around line 66-69: The package.json has a peer dependency conflict:
`@fedify/redis`@1.10.3 requires `@fedify/fedify`@^1.10.3 but package.json pins
`@fedify/fedify` at 1.9.1; update the dependency entries for "@fedify/fedify" (and
optionally "@fedify/hono") to 1.10.3 (or a compatible ^1.10.3 range) so they
satisfy `@fedify/redis`, then run your package manager to regenerate the lockfile
and run the test/build to verify no regressions.
| "@fedify/fedify": "1.9.1", | ||
| "@fedify/hono": "1.9.1", | ||
| "@fedify/redis": "1.9.1", | ||
| "@fedify/redis": "1.10.3", | ||
| "@google-cloud/opentelemetry-cloud-trace-exporter": "2.4.1", |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Check for lockfile entries
fd -t f '^(yarn\.lock|package-lock\.json|pnpm-lock\.yaml)$' -x rg -n '@fedify/redis' {} +Repository: TryGhost/ActivityPub
Length of output: 294
🌐 Web query:
@fedify/redis 1.10.3 peer dependencies release notes breaking changes
💡 Result:
Does @fedify/redis 1.10.3 exist?
Yes—JSR shows @fedify/redis@1.10.3 published ~2 weeks ago, with these (effective) dependency constraints: @fedify/fedify ^1.10.3, @logtape/logtape ^1.2.2, and ioredis ^5.6.1. [1]
Peer dependencies (what you must align)
- The key one to align is
@fedify/fedify^1.10.3(shown as a dependency on JSR; on npm it’s typically treated/declared as the peer requirement for adapter packages). [1] - Fedify previously changed the adapter packages (including
@fedify/redis) to use explicit@fedify/fedifypeer version ranges instead of “any version”. [2]
Release notes for 1.10.3
Fedify’s 1.10.3 changelog lists a fix in @fedify/fedify and does not list any @fedify/redis-specific changes for that release. [2]
Breaking changes in 1.10.3
None called out for @fedify/redis in the 1.10.3 release notes; the practical “break risk” is just the tighter requirement to use a compatible @fedify/fedify version (see peer range above). [1][2]
Sources: [1] [2]
@fedify/redis 1.10.3 requires @fedify/fedify ^1.10.3, but package.json has @fedify/fedify at 1.9.1—upgrade @fedify/fedify to resolve the peer dependency conflict.
Line 68 bumps @fedify/redis to 1.10.3, which declares a peer dependency on @fedify/fedify@^1.10.3 (per JSR). Your package.json currently pins @fedify/fedify at 1.9.1, creating a peer dependency violation. Either downgrade @fedify/redis to 1.9.1 to match the rest of the @fedify ecosystem, or upgrade @fedify/fedify (and @fedify/hono) to 1.10.3 or later. The lockfile is already aligned with the 1.10.3 version.
🤖 Prompt for AI Agents
In `@package.json` around lines 66 - 69, The package.json has a peer dependency
conflict: `@fedify/redis`@1.10.3 requires `@fedify/fedify`@^1.10.3 but package.json
pins `@fedify/fedify` at 1.9.1; update the dependency entries for "@fedify/fedify"
(and optionally "@fedify/hono") to 1.10.3 (or a compatible ^1.10.3 range) so
they satisfy `@fedify/redis`, then run your package manager to regenerate the
lockfile and run the test/build to verify no regressions.
71c770a to
a1a2617
Compare
This PR contains the following updates:
1.9.1→1.10.3Release Notes
fedify-dev/fedify (@fedify/redis)
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.