Skip to content

Commit 60a0fcb

Browse files
committed
Merge tag '2.0.9' into 2.1-maintenance
Fedify 2.0.9
2 parents b4e74cd + 4a32566 commit 60a0fcb

31 files changed

Lines changed: 835 additions & 489 deletions

CHANGES.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ Version 2.1.2
88

99
To be released.
1010

11+
### @fedify/fedify
12+
13+
- Fixed CommonJS builds of `@fedify/fedify/vocab` missing the `Object`
14+
export from the entry point. Older `tsdown` output generated an invalid
15+
CommonJS re-export, causing `require("@fedify/fedify/vocab").Object` to be
16+
`undefined`. Updated the bundler toolchain and added a regression test for
17+
the built CommonJs entry point. [[#651]]
18+
19+
[#651]: https://github.com/fedify-dev/fedify/issues/651
20+
1121

1222
Version 2.1.1
1323
-------------
@@ -232,6 +242,20 @@ Released on March 24, 2026.
232242
[#599]: https://github.com/fedify-dev/fedify/pull/599
233243

234244

245+
Version 2.0.9
246+
-------------
247+
248+
Released on March 29, 2026.
249+
250+
### @fedify/fedify
251+
252+
- Fixed CommonJS builds of `@fedify/fedify/vocab` missing the `Object`
253+
export from the entry point. Older `tsdown` output generated an invalid
254+
CommonJS re-export, causing `require("@fedify/fedify/vocab").Object` to be
255+
`undefined`. Updated the bundler toolchain and added a regression test for
256+
the built CommonJs entry point. [[#651]]
257+
258+
235259
Version 2.0.8
236260
-------------
237261

@@ -966,6 +990,20 @@ Released on February 22, 2026.
966990
[#351]: https://github.com/fedify-dev/fedify/issues/351
967991

968992

993+
Version 1.10.6
994+
--------------
995+
996+
Released on March 29, 2026.
997+
998+
### @fedify/fedify
999+
1000+
- Fixed CommonJS builds of `@fedify/fedify/vocab` missing the `Object`
1001+
export from the entry point. Older `tsdown` output generated an invalid
1002+
CommonJS re-export, causing `require("@fedify/fedify/vocab").Object` to be
1003+
`undefined`. Updated the bundler toolchain and added a regression test for
1004+
the built CommonJs entry point. [[#651]]
1005+
1006+
9691007
Version 1.10.5
9701008
--------------
9711009

@@ -1139,6 +1177,20 @@ Released on December 24, 2025.
11391177
- Implemented `list()` method in `WorkersKvStore`. [[#498], [#500]]
11401178

11411179

1180+
Version 1.9.7
1181+
-------------
1182+
1183+
Released on March 29, 2026.
1184+
1185+
### @fedify/fedify
1186+
1187+
- Fixed CommonJS builds of `@fedify/fedify/vocab` missing the `Object`
1188+
export from the entry point. Older `tsdown` output generated an invalid
1189+
CommonJS re-export, causing `require("@fedify/fedify/vocab").Object` to be
1190+
`undefined`. Updated the bundler toolchain and added a regression test for
1191+
the built CommonJs entry point. [[#651]]
1192+
1193+
11421194
Version 1.9.6
11431195
-------------
11441196

deno.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
"mysql2/promise": "npm:mysql2@^3.18.0/promise",
7171
"postgres": "npm:postgres@^3.4.7",
7272
"preact": "npm:preact@10.19.6",
73-
"tsdown": "npm:tsdown@^0.18.4"
73+
"tsdown": "npm:tsdown@^0.21.6"
7474
},
7575
"unstable": [
7676
"fs",
@@ -114,7 +114,7 @@
114114
]
115115
},
116116
"install": {
117-
"command": "deno install && pnpm install",
117+
"command": "deno run --allow-read --allow-env --allow-run scripts/install.ts && pnpm install",
118118
"dependencies": [
119119
"codegen"
120120
]

0 commit comments

Comments
 (0)