Releases: fedify-dev/fedify
Fedify 0.13.3
Fedify 0.14.1
Released on August 29, 2024.
-
Fixed
fedify inbox
command that had not been able to parse activities even if they are valid JSON-LD. [#126] -
Fixed a bug where the Compact Activity tab of
fedify inbox
command's web interface had shown an expanded JSON-LD object instead of a compacted one.
Fedify 0.13.2
Released on August 29, 2024.
- Fixed
fedify inbox
command that had not been able to parse activities even if they are valid JSON-LD. [#126]
Fedify 0.14.0
Released on August 27, 2024.
-
Removed the limitation that the
sendActivity({ handle: string }, "followers", Activity)
overload is only available forRequestContext
but not forContext
. Now it is available for both. [#115]- Added
Context.sendActivity({ handle: string }, "followers", Activity)
overload. - Added type parameter
TContext
toCollectionsDispatcher
type's first parameter to distinguish betweenRequestContext
andContext
. - The first parameter of
CollectionDispatcher
type becameTContext
(wasRequestContext
). - Added type parameter
TContext
toCollectionsCursor
type's first parameter to distinguish betweenRequestContext
andContext
. - The first parameter of
CollectionCursor
type becameTContext
(wasRequestContext
). - Added type parameter
TContext
toCollectionsCallbackSetters
type's first parameter to distinguish betweenRequestContext
andContext
.
- Added
-
Added
source
property toObject
class in Activity Vocabulary API. [#114]- Added
Object.source
property. new Object()
constructor now acceptssource
option.Object.clone()
method now acceptssource
option.
- Added
-
Added
Source
class to Activity Vocabulary API. [#114] -
Added
aliases
property toActor
type in Activity Vocabulary API.- Added
Application.getAliases()
method. - Added
Application.getAlias()
method. new Application()
constructor now acceptsalias
option.new Application()
constructor now acceptsaliases
option.Application.clone()
method now acceptsalias
option.Application.clone()
method now acceptsaliases
option.- Added
Group.getAliases()
method. - Added
Group.getAlias()
method. new Group()
constructor now acceptsalias
option.new Group()
constructor now acceptsaliases
option.Group.clone()
method now acceptsalias
option.Group.clone()
method now acceptsaliases
option.- Added
Organization.getAliases()
method. - Added
Organization.getAlias()
method. new Organization()
constructor now acceptsalias
option.new Organization()
constructor now acceptsaliases
option.Organization.clone()
method now acceptsalias
option.Organization.clone()
method now acceptsaliases
option.- Added
Person.getAliases()
method. - Added
Person.getAlias()
method. new Person()
constructor now acceptsalias
option.new Person()
constructor now acceptsaliases
option.Person.clone()
method now acceptsalias
option.Person.clone()
method now acceptsaliases
option.- Added
Service.getAliases()
method. - Added
Service.getAlias()
method. new Service()
constructor now acceptsalias
option.new Service()
constructor now acceptsaliases
option.Service.clone()
method now acceptsalias
option.Service.clone()
method now acceptsaliases
option.
- Added
-
Improved the performance of
Object.toJsonLd()
method.Object.toJsonLd()
method no longer guarantees that the returned JSON-LD object is compacted unless theformat: "compact"
option is provided.- Added
format
option toObject.toJsonLd()
method. - Deprecated
expand
option ofObject.toJsonLd()
method. Useformat: "expand"
option instead. - The
context
option ofObject.toJsonLd()
method is now only applicable toformat: "compact"
. Otherwise, it throws aTypeError
.
-
The
getActorHandle()
function now supports cross-origin WebFinger resources. -
The
lookupWebFinger()
andgetActorHandle()
functions no more throw an error when they fail to reach the WebFinger resource. -
Collection dispatchers now set the
id
property of theOrderedCollection
/OrderedCollectionPage
objects that they return to the their canonical URI. -
Now
fedify init
generates a default tsconfig.json file on Node.js and Bun, and fills the deno.json file with the defaultcompilerOptions
on Deno.
Fedify 0.13.1
Released on August 18, 2024.
- Fixed a vulnerability where the
getActorHandle()
function had trusted the hostname of WebFinger aliases that had not matched the hostname of the actor ID (URI).
Fedify 0.12.3
Released on August 18, 2024.
- Fixed a vulnerability where the
getActorHandle()
function had trusted the hostname of WebFinger aliases that had not matched the hostname of the actor ID (URI).
Fedify 0.13.0
Released on August 7, 2024.
-
Added
closed
property toQuestion
class in Activity Vocabulary API.- Added
Question.closed
property. new Question()
constructor now acceptsclosed
option.Question.clone()
method now acceptsclosed
option.
- Added
-
Added
voters
property toQuestion
class in Activity Vocabulary API.- Added
Question.voters
property. new Question()
constructor now acceptsvoters
option.Question.clone()
method now acceptsvoters
option.
- Added
-
HTTP Signatures verficiation now can be optionally skipped for the sake of testing. [#110]
- The type of
CreateFederationOptions.signatureTimeWindow
property becameTemporal.DurationLike | false
(wasTemporal.DurationLike
). - The type of
VerifyRequestOptions.timeWindow
property becameTemporal.DurationLike | false
(wasTemporal.DurationLike
). - Added
CreateFederationOptions.skipSignatureVerification
property.
- The type of
-
Removed the singular actor key pair dispatcher APIs which were deprecated in version 0.10.0.
- Removed the last parameter of the
ActorDispatcher
callback type. UseContext.getActorKeyPairs()
method instead. - Removed
ActorKeyPairDispatcher
type. UseActorKeyPairsDispatcher
type instead. - Removed
ActorCallbackSetters.setKeyPairDispatcher()
method. UseActorCallbackSetters.setKeyPairsDispatcher()
method instead. - Removed
Context.getActorKey()
method. UseContext.getActorKeyPairs()
method instead.
- Removed the last parameter of the
-
The
Federation
is no more a class, but an interface, which has been planned since version 0.10.0. [#69]new Federation()
constructor is removed. UsecreateFederation()
function instead.- Removed
Federation.sendActivity()
method. UseContext.sendActivity()
method instead. - Removed
Federation
class. - Added
Federation
interface. - Removed
FederationParameters
interface.
-
Added
fedify tunnel
command to expose a local HTTP server to the public internet. -
A scaffold project generated by the
fedify init
command has several changes:- Added support for Express framework.
- Added support for Nitro framework.
- Now a scaffold project uses a x-forwarded-fetch middleware to support
X-Forwarded-Proto
andX-Forwarded-Host
headers. - Now a scaffold project has hot reloading by default.
- Now a scaffold project has logging configuration using the LogTape library.
-
Added more log messages using the LogTape library. Currently the below logger categories are used:
["fedify", "webfinger", "server"]
Fedify 0.12.2
Released on July 31, 2024.
- Fixed a bug where incoming activities had not been enqueued even if the
queue
option was provided to thecreateFederation()
function.
Fedify 0.12.1
Released on July 27, 2024.
- Fixed a bug where
fedify init -w hono
had generated scaffold files without Fedify integration. - Fixed a bug where
fedify init -r bun -w hono
had generated scaffold files with a wrong port number (was 3000).
Fedify 0.12.0
Released on July 24, 2024.
-
The
fedify
command is now available on npm. [#104] -
Incoming activities are now queued before being dispatched to the inbox listener if the
queue
option is provided to thecreateFederation()
function. [#70]- The type of
InboxListener
callback type's first parameter becameContext
(wasRequestContext
). - The type of
InboxErrorHandler
callback type's first parameter becameContext
(wasRequestContext
). - The type of
SharedInboxKeyDispatcher
callback type's first parameter becameContext
(wasRequestContext
).
- The type of
-
Implemented fully customizable retry policy for failed tasks in the task queue. By default, the task queue retries the failed tasks with an exponential backoff policy with decorrelated jitter.
- Added
outboxRetryPolicy
option toCreateFederationOptions
interface. - Added
inboxRetryPolicy
option toCreateFederationOptions
interface. [#70] - Added
RetryPolicy
callback type. - Added
RetryContext
interface. - Added
createExponentialBackoffPolicy()
function. - Added
CreateExponentialBackoffPolicyOptions
interface.
- Added
-
Federation
object now allows its task queue to be started manually. [#53]- Added
manuallyStartQueue
option toCreateFederationOptions
interface. - Added
Federation.startQueue()
method.
- Added
-
Made the router able to be insensitive to trailing slashes in the URL paths. [#81]
- Added
trailingSlashInsensitive
option toCreateFederationOptions
interface. - Added
RouterOptions
interface. - Added an optional parameter to
new Router()
constructor.
- Added
-
Added
ChatMessage
class to Activity Vocabulary API. [#85] -
Added
Move
class to Activity Vocabulary API. [#65, #92 by Lee Dogeon] -
Added
Read
class to Activity Vocabulary API. [#65, #92 by Lee Dogeon] -
Added
Travel
class to Activity Vocabulary API. [#65, #92 by Lee Dogeon] -
Added
View
class to Activity Vocabulary API. [#65, #92 by Lee Dogeon] -
Added
TentativeAccept
class to Activity Vocabulary API. [#65, #92 by Lee Dogeon] -
Added
TentativeReject
class to Activity Vocabulary API. [#65, #92 by Lee Dogeon] -
Improved multitenancy (virtual hosting) support. [#66]
- Added
Context.hostname
property. - Added
Context.host
property. - Added
Context.origin
property. - The type of
ActorKeyPairsDispatcher<TContextData>
's first parameter becameContext
(wasTContextData
).
- Added
-
During verifying HTTP Signatures and Object Integrity Proofs, once fetched public keys are now cached. [#107]
- The
verifyRequest()
function now caches the fetched public keys when thekeyCache
option is provided. - The
verifyProof()
function now caches the fetched public keys when thekeyCache
option is provided. - The
verifyObject()
function now caches the fetched public keys when thekeyCache
option is provided. - Added
KeyCache
interface. - Added
VerifyRequestOptions.keyCache
property. - Added
VerifyProofOptions.keyCache
property. - Added
VerifyObjectOptions.keyCache
property. - Added
FederationKvPrefixes.publicKey
property.
- The
-
The built-in document loaders now recognize JSON-LD context provided in an HTTP
Link
header. [#6]- The
fetchDocumentLoader()
function now recognizes theLink
header with thehttp://www.w3.org/ns/json-ld#context
link relation. - The
getAuthenticatedDocumentLoader()
function now returns a document loader that recognizes theLink
header with thehttp://www.w3.org/ns/json-ld#context
link relation.
- The
-
Deprecated
Federation.sendActivity()
method. UseContext.sendActivity()
method instead. -
The last parameter of
Federation.sendActivity()
method is no longer optional. Also, it now takes the requiredcontextData
option. -
Removed
Context.getHandleFromActorUri()
method which was deprecated in version 0.9.0. UseContext.parseUri()
method instead. -
Removed
@fedify/fedify/httpsig
module which was deprecated in version 0.9.0. Use@fedify/fedify/sig
module instead.- Removed
sign()
function. - Removed
verify()
function. - Removed
VerifyOptions
interface.
- Removed
-
Fixed a bug where the
lookupWebFinger()
function had incorrectly queried if the givenresource
was a URL starts withhttp:
or had a non-default port number. -
Fixed a SSRF vulnerability in the built-in document loader. [CVE-2024-39687]
- The
fetchDocumentLoader()
function now throws an error when the given URL is not an HTTP or HTTPS URL or refers to a private network address. - Added an optional second parameter to the
fetchDocumentLoader()
function, which can be used to allow fetching private network addresses. - The
getAuthenticatedDocumentLoader()
function now returns a document loader that throws an error when the given URL is not an HTTP or HTTPS URL or refers to a private network address. - Added an optional second parameter to the
getAuthenticatedDocumentLoader()
function, which can be used to allow fetching private network addresses.
- The
-
Added
fedify init
subcommand. [#105] -
Added more log messages using the LogTape library. Currently the below logger categories are used:
["fedify", "federation", "queue"]