Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
1b064b0
Set nodeModulesDir to auto
dodok8 Nov 3, 2025
1b80174
Add fresh demo project
dodok8 Nov 3, 2025
0023ab3
Add Federation middleware
dodok8 Nov 4, 2025
4f7543e
Make external @fedify/fedify
dodok8 Nov 4, 2025
23e6a3e
Add workspace "./packages/fresh"
dodok8 Nov 5, 2025
2a9c9a1
Add @fedify/fresh package
dodok8 Nov 5, 2025
9356790
Apply @fedify/fresh to example
dodok8 Nov 5, 2025
b84dc2a
Update deno.lock
dodok8 Nov 5, 2025
bde8854
Separate federation file and remove _middleware.ts
dodok8 Nov 5, 2025
c9e0b75
docs: add integration section `@fedify/fresh`
dodok8 Nov 5, 2025
6b49b8c
docs: packages/fresh/src/mod.ts
dodok8 Nov 5, 2025
464e060
docs: add README to packages/fresh
dodok8 Nov 5, 2025
84a5e50
docs: specify file name in fresh integration
dodok8 Nov 5, 2025
f27a210
docs: Update example comment in examples/fresh
dodok8 Nov 5, 2025
5d5799e
docs: update CHANGES.md
dodok8 Nov 5, 2025
4d16668
Add deno.unstable to Compiler Options of fresh example
dodok8 Nov 5, 2025
2474b75
docs: update about Temporal compiler Options
dodok8 Nov 5, 2025
a931686
fix: add --node-modules-dir=none option to deno compile command
dodok8 Nov 7, 2025
d79bfad
docs: update title of packages/fresh/README.md
dodok8 Nov 17, 2025
0f7b7ad
assets: replace logo with fedify's
dodok8 Nov 17, 2025
71f1d24
docs: change README of fresh example
dodok8 Nov 17, 2025
5d15f4c
refactor: remove unused components and middleware from fresh example
dodok8 Nov 17, 2025
fd2fb99
Fix typo in packages/fresh/README.md
dodok8 Dec 25, 2025
834c1eb
Update CHANGES.md
dodok8 Dec 25, 2025
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
9 changes: 9 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,15 @@ To be released.
consistent code style across Fedify packages and user projects.
[[#297], [#494] by ChanHaeng Lee]

### @fedify/fresh

- Created a new @fedify/fresh package that provides seamless integration
between Fedify and Fresh 2.0, replacing the deprecated `@fedify/fedify/x/fresh`
module that was designed for Fresh 1.x.
[[#466], [#478] by Hyeonseo Kim]

[#466]: https://github.com/fedify-dev/fedify/issues/466
[#478]: https://github.com/fedify-dev/fedify/pull/478

Version 1.10.0
--------------
Expand Down
6 changes: 4 additions & 2 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"./packages/express",
"./packages/fastify",
"./packages/fedify",
"./packages/fresh",
"./packages/h3",
"./packages/hono",
"./packages/koa",
Expand All @@ -19,7 +20,8 @@
"./packages/testing",
"./packages/vocab-runtime",
"./packages/vocab-tools",
"./examples/hono-sample"
"./examples/hono-sample",
"./examples/fresh"
],
"imports": {
"@cloudflare/workers-types": "npm:@cloudflare/workers-types@^4.20250529.0",
Expand Down Expand Up @@ -71,7 +73,7 @@
"**/*.md"
]
},
"nodeModulesDir": "none",
"nodeModulesDir": "auto",
"tasks": {
"codegen": "deno task -f @fedify/cli codegen",
"check-versions": "deno run --allow-read --allow-write scripts/check_versions.ts",
Expand Down
Loading
Loading