Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/setup-deno/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ runs:
steps:
- uses: denoland/setup-deno@v2
with:
deno-version: 2.7.6 # Keep in sync with mise.toml
deno-version: 2.7.7 # Keep in sync with mise.toml
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
.pnpm-store/
.vocab-codegen.lock/
dist/
dist-tests/
node_modules/
package-lock.json
repomix-output.xml
Expand Down
26 changes: 26 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,32 @@ Version 2.0.7

To be released.

### @fedify/fedify

- Switched Fedify's source-based JSON-LD loading to the new
`@fedify/vocab-runtime/jsonld` subpath so generated vocabulary code and
Linked Data signature support no longer have to evaluate `jsonld` through
a CommonJS-sensitive package root in Fresh 2, Deno, and other ESM-first
runtimes. Fresh 2 development mode has been verified on Deno 2.7.7
after an upstream Deno 2.7.6 dev server regression was fixed.
[[#621], [#639]]

[#621]: https://github.com/fedify-dev/fedify/issues/621
[#639]: https://github.com/fedify-dev/fedify/pull/639

### @fedify/vocab-runtime

- Fixed multibase public key handling to stop relying on the deprecated
CommonJS-only `multicodec` package. This removes the Vite SSR crash that
prevented Fresh 2 applications from importing `@fedify/fedify` with
`TypeError: varint.encode is not a function`. Fresh 2 no longer needs a
Vite externalization workaround for Fedify. [[#621], [#639]]

- Added the new `@fedify/vocab-runtime/jsonld` subpath export so generated
vocabulary code and other Fedify runtime code can share a JSR-safe wrapper
around `jsonld`'s ESM entrypoint instead of depending on fragile relative
shims or the package-root import path. [[#621], [#639]]

### @fedify/init

- Revived removed `fedify init` options. [[#632], [#638] by ChanHaeng Lee]
Expand Down
Loading
Loading