@fedify/fedify 0.8.0-dev.154 → 0.8.0-dev.156
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/CHANGES.md +3 -2
- package/README.md +2 -6
- package/esm/mod.js +3 -7
- package/package.json +1 -1
- package/types/mod.d.ts +3 -7
- package/types/mod.d.ts.map +1 -1
package/CHANGES.md
CHANGED
|
@@ -8,8 +8,9 @@ Version 0.8.0
|
|
|
8
8
|
|
|
9
9
|
To be released.
|
|
10
10
|
|
|
11
|
-
- The CLI toolchain is now available on JSR:
|
|
12
|
-
|
|
11
|
+
- The CLI toolchain for testing and debugging is now available on JSR:
|
|
12
|
+
[@fedify/cli]. You can install it with
|
|
13
|
+
`deno install -A -n fedify jsr:@fedify/cli`.
|
|
13
14
|
|
|
14
15
|
- Implemented [followers collection synchronization mechanism][FEP-8fcf].
|
|
15
16
|
|
package/README.md
CHANGED
|
@@ -19,21 +19,17 @@ It aims to eliminate the complexity and redundant boilerplate code when
|
|
|
19
19
|
building a federated server app, so that you can focus on your business logic
|
|
20
20
|
and user experience.
|
|
21
21
|
|
|
22
|
-
Currently, Fedify
|
|
23
|
-
recommend using it in production yet, so please use it if you would like to
|
|
24
|
-
experiment with it and help us improve it.
|
|
25
|
-
|
|
26
|
-
The rough roadmap is to implement the following features out of the box:
|
|
22
|
+
Currently, Fedify provides the following features out of the box:
|
|
27
23
|
|
|
28
24
|
- Type-safe objects for [Activity Vocabulary] (including some vendor-specific
|
|
29
25
|
extensions)
|
|
30
26
|
- [WebFinger] client and server
|
|
31
27
|
- [HTTP Signatures]
|
|
32
28
|
- Middlewares for handling webhooks
|
|
33
|
-
- [ActivityPub] client
|
|
34
29
|
- [NodeInfo] protocol
|
|
35
30
|
- Special touch for interoperability with Mastodon and few other popular
|
|
36
31
|
fediverse software
|
|
32
|
+
- CLI toolchain for testing and debugging
|
|
37
33
|
|
|
38
34
|
If you want to know more about the project, please take a look at the following
|
|
39
35
|
resources:
|
package/esm/mod.js
CHANGED
|
@@ -8,27 +8,23 @@
|
|
|
8
8
|
* building a federated server app, so that you can focus on your business
|
|
9
9
|
* logic and user experience.
|
|
10
10
|
*
|
|
11
|
-
* Currently, Fedify
|
|
12
|
-
* recommend using it in production yet, so please use it if you would like to
|
|
13
|
-
* experiment with it and help us improve it.
|
|
14
|
-
*
|
|
15
|
-
* The rough roadmap is to implement the following features out of the box:
|
|
11
|
+
* Currently, Fedify provides the following features out of the box:
|
|
16
12
|
*
|
|
17
13
|
* - Type-safe objects for [Activity Vocabulary] (including some vendor-specific
|
|
18
14
|
* extensions)
|
|
19
15
|
* - [WebFinger] client and server
|
|
20
16
|
* - [HTTP Signatures]
|
|
21
17
|
* - Middlewares for handling webhooks
|
|
22
|
-
* - [ActivityPub] client
|
|
23
18
|
* - [NodeInfo] protocol
|
|
24
19
|
* - Special touch for interoperability with Mastodon and few other popular
|
|
25
20
|
* fediverse software
|
|
21
|
+
* - CLI toolchain for testing and debugging
|
|
26
22
|
*
|
|
27
23
|
* If you want to know more about the project, please take a look at the
|
|
28
24
|
* following resources:
|
|
29
25
|
*
|
|
30
26
|
* - [GitHub](https://github.com/dahlia/fedify)
|
|
31
|
-
* -
|
|
27
|
+
* - [Tutorial](https://fedify.dev/tutorial)
|
|
32
28
|
* - [Manual](https://fedify.dev/manual)
|
|
33
29
|
* ([Unstable](https://unstable.fedify.dev/manual))
|
|
34
30
|
* - [Examples](https://github.com/dahlia/fedify/tree/main/examples)
|
package/package.json
CHANGED
package/types/mod.d.ts
CHANGED
|
@@ -8,27 +8,23 @@
|
|
|
8
8
|
* building a federated server app, so that you can focus on your business
|
|
9
9
|
* logic and user experience.
|
|
10
10
|
*
|
|
11
|
-
* Currently, Fedify
|
|
12
|
-
* recommend using it in production yet, so please use it if you would like to
|
|
13
|
-
* experiment with it and help us improve it.
|
|
14
|
-
*
|
|
15
|
-
* The rough roadmap is to implement the following features out of the box:
|
|
11
|
+
* Currently, Fedify provides the following features out of the box:
|
|
16
12
|
*
|
|
17
13
|
* - Type-safe objects for [Activity Vocabulary] (including some vendor-specific
|
|
18
14
|
* extensions)
|
|
19
15
|
* - [WebFinger] client and server
|
|
20
16
|
* - [HTTP Signatures]
|
|
21
17
|
* - Middlewares for handling webhooks
|
|
22
|
-
* - [ActivityPub] client
|
|
23
18
|
* - [NodeInfo] protocol
|
|
24
19
|
* - Special touch for interoperability with Mastodon and few other popular
|
|
25
20
|
* fediverse software
|
|
21
|
+
* - CLI toolchain for testing and debugging
|
|
26
22
|
*
|
|
27
23
|
* If you want to know more about the project, please take a look at the
|
|
28
24
|
* following resources:
|
|
29
25
|
*
|
|
30
26
|
* - [GitHub](https://github.com/dahlia/fedify)
|
|
31
|
-
* -
|
|
27
|
+
* - [Tutorial](https://fedify.dev/tutorial)
|
|
32
28
|
* - [Manual](https://fedify.dev/manual)
|
|
33
29
|
* ([Unstable](https://unstable.fedify.dev/manual))
|
|
34
30
|
* - [Examples](https://github.com/dahlia/fedify/tree/main/examples)
|
package/types/mod.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mod.d.ts","sourceRoot":"","sources":["../src/mod.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"mod.d.ts","sourceRoot":"","sources":["../src/mod.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AACH,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC;AAC/B,OAAO,EAAE,eAAe,EAAE,KAAK,kBAAkB,EAAE,MAAM,oBAAoB,CAAC"}
|