@fedify/fedify 0.12.0-dev.298 → 0.12.0-dev.300
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGES.md +7 -0
- package/package.json +5 -1
package/CHANGES.md
CHANGED
@@ -8,6 +8,8 @@ Version 0.12.0
|
|
8
8
|
|
9
9
|
To be released.
|
10
10
|
|
11
|
+
- The `fedify` command is now [available on npm][@fedify/cli]. [[#104]]
|
12
|
+
|
11
13
|
- Incoming activities are now queued before being dispatched to the inbox
|
12
14
|
listener if the `queue` option is provided to the `createFederation()`
|
13
15
|
function. [[#70]]
|
@@ -112,11 +114,14 @@ To be released.
|
|
112
114
|
- Added `createFetchOptions()` function.
|
113
115
|
- Added `ContextDataFactory` type.
|
114
116
|
|
117
|
+
- Added `fedify init` subcommand. [[#105]]
|
118
|
+
|
115
119
|
- Added more log messages using the [LogTape] library. Currently the below
|
116
120
|
logger categories are used:
|
117
121
|
|
118
122
|
- `["fedify", "federation", "queue"]`
|
119
123
|
|
124
|
+
[@fedify/cli]: https://www.npmjs.com/package/@fedify/cli
|
120
125
|
[#6]: https://github.com/dahlia/fedify/issues/6
|
121
126
|
[#50]: https://github.com/dahlia/fedify/issues/50
|
122
127
|
[#53]: https://github.com/dahlia/fedify/issues/53
|
@@ -125,6 +130,8 @@ To be released.
|
|
125
130
|
[#81]: https://github.com/dahlia/fedify/issues/81
|
126
131
|
[#85]: https://github.com/dahlia/fedify/issues/85
|
127
132
|
[#92]: https://github.com/dahlia/fedify/pull/92
|
133
|
+
[#104]: https://github.com/dahlia/fedify/issues/104
|
134
|
+
[#105]: https://github.com/dahlia/fedify/issues/105
|
128
135
|
[Astro]: https://astro.build/
|
129
136
|
|
130
137
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@fedify/fedify",
|
3
|
-
"version": "0.12.0-dev.
|
3
|
+
"version": "0.12.0-dev.300+a4e5c52f",
|
4
4
|
"description": "An ActivityPub server framework",
|
5
5
|
"keywords": [
|
6
6
|
"ActivityPub",
|
@@ -81,6 +81,10 @@
|
|
81
81
|
"scripts": {
|
82
82
|
"test": "node test_runner.js"
|
83
83
|
},
|
84
|
+
"funding": [
|
85
|
+
"https://github.com/sponsors/dahlia",
|
86
|
+
"https://toss.me/hongminhee"
|
87
|
+
],
|
84
88
|
"dependencies": {
|
85
89
|
"@hugoalh/http-header-link": "^1.0.2",
|
86
90
|
"@logtape/logtape": "^0.4.0",
|