Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
328c990
Set nodeModulesDir to auto
dodok8 Nov 3, 2025
07167d5
Add fresh demo project
dodok8 Nov 3, 2025
fa0358b
Add Federation middleware
dodok8 Nov 4, 2025
236ba7d
Make external @fedify/fedify
dodok8 Nov 4, 2025
0701784
Add workspace "./packages/fresh"
dodok8 Nov 5, 2025
70180a9
Add @fedify/fresh package
dodok8 Nov 5, 2025
e38aedc
Apply @fedify/fresh to example
dodok8 Nov 5, 2025
c18199d
Update deno.lock
dodok8 Nov 5, 2025
73ad99a
Separate federation file and remove _middleware.ts
dodok8 Nov 5, 2025
e42e94d
docs: add integration section `@fedify/fresh`
dodok8 Nov 5, 2025
6b3b826
docs: packages/fresh/src/mod.ts
dodok8 Nov 5, 2025
4acac30
docs: add README to packages/fresh
dodok8 Nov 5, 2025
9b20da2
docs: specify file name in fresh integration
dodok8 Nov 5, 2025
512571e
docs: Update example comment in examples/fresh
dodok8 Nov 5, 2025
02a6bdd
docs: update CHANGES.md
dodok8 Nov 5, 2025
847b5fb
Add deno.unstable to Compiler Options of fresh example
dodok8 Nov 5, 2025
432eb98
docs: update about Temporal compiler Options
dodok8 Nov 5, 2025
66139c3
fix: add --node-modules-dir=none option to deno compile command
dodok8 Nov 7, 2025
8f1cc12
remove: duplicated workspace
dodok8 Nov 17, 2025
c89da60
docs: update title of packages/fresh/README.md
dodok8 Nov 17, 2025
db6d2fc
assets: replace logo with fedify's
dodok8 Nov 17, 2025
c020c1e
docs: change README of fresh example
dodok8 Nov 17, 2025
53cba28
refactor: remove unused components and middleware from fresh example
dodok8 Nov 17, 2025
4cb9fda
fix: remove duplicated preact dependency and update to fresh 2.2
dodok8 Nov 22, 2025
7dd676c
dep: update lockfile
dodok8 Nov 22, 2025
408c05e
docs: remove unused style
dodok8 Nov 22, 2025
55479fc
fix: hooks:pre-commit error
dodok8 Nov 22, 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 @@ -186,6 +186,15 @@ To be released.
- This package is primarily used by generated vocabulary classes and
provides the runtime infrastructure for ActivityPub object processing.

### @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
7 changes: 4 additions & 3 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 @@ -18,7 +19,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 All @@ -42,7 +44,6 @@
"ioredis": "npm:ioredis@^5.6.1",
"json-preserve-indent": "npm:json-preserve-indent@^1.1.3",
"postgres": "npm:postgres@^3.4.7",
"preact": "npm:[email protected]",
"tsdown": "npm:tsdown@^0.12.9"
},
"unstable": [
Expand All @@ -68,7 +69,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