Skip to content

Commit e54cb03

Browse files
committed
Merge tag '2.1.2'
Fedify 2.1.2
2 parents cf8cd12 + 780686f commit e54cb03

30 files changed

+820
-485
lines changed

CHANGES.md

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,22 @@ To be released.
2121
maximum number of redirects followed by `getDocumentLoader()`.
2222

2323

24+
Version 2.1.2
25+
-------------
26+
27+
Released on March 29, 2026.
28+
29+
### @fedify/fedify
30+
31+
- Fixed CommonJS builds of `@fedify/fedify/vocab` missing the `Object`
32+
export from the entry point. Older `tsdown` output generated an invalid
33+
CommonJS re-export, causing `require("@fedify/fedify/vocab").Object` to be
34+
`undefined`. Updated the bundler toolchain and added a regression test for
35+
the built CommonJs entry point. [[#651]]
36+
37+
[#651]: https://github.com/fedify-dev/fedify/issues/651
38+
39+
2440
Version 2.1.1
2541
-------------
2642

@@ -244,6 +260,20 @@ Released on March 24, 2026.
244260
[#599]: https://github.com/fedify-dev/fedify/pull/599
245261

246262

263+
Version 2.0.9
264+
-------------
265+
266+
Released on March 29, 2026.
267+
268+
### @fedify/fedify
269+
270+
- Fixed CommonJS builds of `@fedify/fedify/vocab` missing the `Object`
271+
export from the entry point. Older `tsdown` output generated an invalid
272+
CommonJS re-export, causing `require("@fedify/fedify/vocab").Object` to be
273+
`undefined`. Updated the bundler toolchain and added a regression test for
274+
the built CommonJs entry point. [[#651]]
275+
276+
247277
Version 2.0.8
248278
-------------
249279

@@ -978,6 +1008,20 @@ Released on February 22, 2026.
9781008
[#351]: https://github.com/fedify-dev/fedify/issues/351
9791009

9801010

1011+
Version 1.10.6
1012+
--------------
1013+
1014+
Released on March 29, 2026.
1015+
1016+
### @fedify/fedify
1017+
1018+
- Fixed CommonJS builds of `@fedify/fedify/vocab` missing the `Object`
1019+
export from the entry point. Older `tsdown` output generated an invalid
1020+
CommonJS re-export, causing `require("@fedify/fedify/vocab").Object` to be
1021+
`undefined`. Updated the bundler toolchain and added a regression test for
1022+
the built CommonJs entry point. [[#651]]
1023+
1024+
9811025
Version 1.10.5
9821026
--------------
9831027

@@ -1151,6 +1195,20 @@ Released on December 24, 2025.
11511195
- Implemented `list()` method in `WorkersKvStore`. [[#498], [#500]]
11521196

11531197

1198+
Version 1.9.7
1199+
-------------
1200+
1201+
Released on March 29, 2026.
1202+
1203+
### @fedify/fedify
1204+
1205+
- Fixed CommonJS builds of `@fedify/fedify/vocab` missing the `Object`
1206+
export from the entry point. Older `tsdown` output generated an invalid
1207+
CommonJS re-export, causing `require("@fedify/fedify/vocab").Object` to be
1208+
`undefined`. Updated the bundler toolchain and added a regression test for
1209+
the built CommonJs entry point. [[#651]]
1210+
1211+
11541212
Version 1.9.6
11551213
-------------
11561214

deno.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"mysql2/promise": "npm:mysql2@^3.18.0/promise",
7272
"postgres": "npm:postgres@^3.4.7",
7373
"preact": "npm:preact@10.19.6",
74-
"tsdown": "npm:tsdown@^0.18.4"
74+
"tsdown": "npm:tsdown@^0.21.6"
7575
},
7676
"unstable": [
7777
"fs",
@@ -115,7 +115,7 @@
115115
]
116116
},
117117
"install": {
118-
"command": "deno install && pnpm install",
118+
"command": "deno run --allow-read --allow-env --allow-run scripts/install.ts && pnpm install",
119119
"dependencies": [
120120
"codegen"
121121
]

0 commit comments

Comments
 (0)