@fedify/express 0.1.4-dev.8 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -1
- package/package.json +4 -10
package/README.md
CHANGED
|
@@ -34,9 +34,19 @@ app.use(integrateFederation(federation, (req) => "context data goes here"));
|
|
|
34
34
|
Changelog
|
|
35
35
|
---------
|
|
36
36
|
|
|
37
|
+
### Version 0.2.0
|
|
38
|
+
|
|
39
|
+
Released on September 30, 2024.
|
|
40
|
+
|
|
41
|
+
- Relaxed the requirement for the peer dependency `@fedify/fedify` to allow
|
|
42
|
+
any version under 2.0.0.
|
|
43
|
+
|
|
37
44
|
### Version 0.1.4
|
|
38
45
|
|
|
39
|
-
|
|
46
|
+
Released on August 31, 2024.
|
|
47
|
+
|
|
48
|
+
- Fixed a bug where it throws `TypeError` with message <q>RequestInit: duplex
|
|
49
|
+
option is required when sending a body.</q>
|
|
40
50
|
|
|
41
51
|
### Version 0.1.3
|
|
42
52
|
|
package/package.json
CHANGED
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fedify/express",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Integrate Fedify with Express",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"Fedify",
|
|
7
|
-
"Express",
|
|
8
|
-
"Express.js"
|
|
9
|
-
],
|
|
5
|
+
"keywords": ["Fedify", "Express", "Express.js"],
|
|
10
6
|
"author": {
|
|
11
7
|
"name": "Hong Minhee",
|
|
12
8
|
"email": "hong@minhee.org",
|
|
@@ -36,9 +32,7 @@
|
|
|
36
32
|
}
|
|
37
33
|
}
|
|
38
34
|
},
|
|
39
|
-
"files": [
|
|
40
|
-
"dist/"
|
|
41
|
-
],
|
|
35
|
+
"files": ["dist/"],
|
|
42
36
|
"devDependencies": {
|
|
43
37
|
"@biomejs/biome": "1.8.3",
|
|
44
38
|
"@types/express": ">=4.0.0, <5",
|
|
@@ -48,7 +42,7 @@
|
|
|
48
42
|
"typescript": "^5.0.0"
|
|
49
43
|
},
|
|
50
44
|
"peerDependencies": {
|
|
51
|
-
"@fedify/fedify": ">=0.12.0, <
|
|
45
|
+
"@fedify/fedify": ">=0.12.0, <2"
|
|
52
46
|
},
|
|
53
47
|
"scripts": {
|
|
54
48
|
"build": "tsup",
|