Skip to content

Fedify 1.9.1

Latest

Choose a tag to compare

@github-actions github-actions released this 31 Oct 07:32
· 8 commits to main since this release
1.9.1
71ae5c6

Released on October 31, 2025.

@fedify/testing

  • Fixed JSR publishing hanging indefinitely at the processing stage by hiding complex type exports from the public API. The JSR type analyzer struggled with complex type dependencies when analyzing the MockFederation, TestFederation, TestContext, and SentActivity types, causing indefinite hangs during the processing stage. [#468]

    • Breaking change: MockFederation class is no longer exported from the public API. Use createFederation() factory function instead.
    • TestFederation<TContextData>, TestContext<TContextData>, and SentActivity interfaces are no longer exported from the public API, but their types are still inferred from createFederation() return type and can be used via TypeScript's type inference.

@fedify/cli

  • Fixed fedify command failing on Windows with PermissionDenied error when trying to locate or execute package managers during initialization. The CLI now properly handles *.cmd and *.bat files on Windows by invoking them through cmd /c. [#463]