@fedify/fedify 1.1.0-dev.442 → 1.1.0-dev.446
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGES.md +22 -0
- package/esm/vocab/application.yaml +4 -1
- package/esm/vocab/group.yaml +4 -1
- package/esm/vocab/organization.yaml +4 -1
- package/esm/vocab/person.yaml +4 -1
- package/esm/vocab/service.yaml +4 -1
- package/esm/vocab/vocab.js +448 -168
- package/package.json +1 -1
- package/types/vocab/vocab.d.ts.map +1 -1
package/CHANGES.md
CHANGED
@@ -65,6 +65,28 @@ To be released.
|
|
65
65
|
[#150]: https://github.com/dahlia/fedify/issues/150
|
66
66
|
|
67
67
|
|
68
|
+
Version 1.0.4
|
69
|
+
-------------
|
70
|
+
|
71
|
+
Released on October 17, 2024.
|
72
|
+
|
73
|
+
- Fixed a bug where `Actor.aliasId` and `Actor.aliasIds` properties had been
|
74
|
+
represented as `as:alsoKnownAs` property instead of `alsoKnownAs` property
|
75
|
+
in compacted JSON-LD objects.
|
76
|
+
|
77
|
+
- Improved compatibility with Bridgy Fed for Bluesky where it puts
|
78
|
+
an invalid URI with the format `at://...` in the `alsoKnownAs` property.
|
79
|
+
|
80
|
+
|
81
|
+
Version 1.0.3
|
82
|
+
-------------
|
83
|
+
|
84
|
+
Released on October 17, 2024.
|
85
|
+
|
86
|
+
- Improved compatibility with some implementations (e.g., Nexkey) where
|
87
|
+
some `CryptographicKey` objects are incorrectly typed in JSON-LD objects.
|
88
|
+
|
89
|
+
|
68
90
|
Version 1.0.2
|
69
91
|
-------------
|
70
92
|
|
@@ -11,7 +11,10 @@ defaultContext:
|
|
11
11
|
- "https://w3id.org/security/data-integrity/v1"
|
12
12
|
- "https://www.w3.org/ns/did/v1"
|
13
13
|
- "https://w3id.org/security/multikey/v1"
|
14
|
-
-
|
14
|
+
- alsoKnownAs:
|
15
|
+
"@id": "as:alsoKnownAs"
|
16
|
+
"@type": "@id"
|
17
|
+
manuallyApprovesFollowers: "as:manuallyApprovesFollowers"
|
15
18
|
toot: "http://joinmastodon.org/ns#"
|
16
19
|
featured:
|
17
20
|
"@id": "toot:featured"
|
package/esm/vocab/group.yaml
CHANGED
@@ -11,7 +11,10 @@ defaultContext:
|
|
11
11
|
- "https://w3id.org/security/data-integrity/v1"
|
12
12
|
- "https://www.w3.org/ns/did/v1"
|
13
13
|
- "https://w3id.org/security/multikey/v1"
|
14
|
-
-
|
14
|
+
- alsoKnownAs:
|
15
|
+
"@id": "as:alsoKnownAs"
|
16
|
+
"@type": "@id"
|
17
|
+
manuallyApprovesFollowers: "as:manuallyApprovesFollowers"
|
15
18
|
toot: "http://joinmastodon.org/ns#"
|
16
19
|
featured:
|
17
20
|
"@id": "toot:featured"
|
@@ -11,7 +11,10 @@ defaultContext:
|
|
11
11
|
- "https://w3id.org/security/data-integrity/v1"
|
12
12
|
- "https://www.w3.org/ns/did/v1"
|
13
13
|
- "https://w3id.org/security/multikey/v1"
|
14
|
-
-
|
14
|
+
- alsoKnownAs:
|
15
|
+
"@id": "as:alsoKnownAs"
|
16
|
+
"@type": "@id"
|
17
|
+
manuallyApprovesFollowers: "as:manuallyApprovesFollowers"
|
15
18
|
toot: "http://joinmastodon.org/ns#"
|
16
19
|
featured:
|
17
20
|
"@id": "toot:featured"
|
package/esm/vocab/person.yaml
CHANGED
@@ -11,7 +11,10 @@ defaultContext:
|
|
11
11
|
- "https://w3id.org/security/data-integrity/v1"
|
12
12
|
- "https://www.w3.org/ns/did/v1"
|
13
13
|
- "https://w3id.org/security/multikey/v1"
|
14
|
-
-
|
14
|
+
- alsoKnownAs:
|
15
|
+
"@id": "as:alsoKnownAs"
|
16
|
+
"@type": "@id"
|
17
|
+
manuallyApprovesFollowers: "as:manuallyApprovesFollowers"
|
15
18
|
toot: "http://joinmastodon.org/ns#"
|
16
19
|
featured:
|
17
20
|
"@id": "toot:featured"
|
package/esm/vocab/service.yaml
CHANGED
@@ -11,7 +11,10 @@ defaultContext:
|
|
11
11
|
- "https://w3id.org/security/data-integrity/v1"
|
12
12
|
- "https://www.w3.org/ns/did/v1"
|
13
13
|
- "https://w3id.org/security/multikey/v1"
|
14
|
-
-
|
14
|
+
- alsoKnownAs:
|
15
|
+
"@id": "as:alsoKnownAs"
|
16
|
+
"@type": "@id"
|
17
|
+
manuallyApprovesFollowers: "as:manuallyApprovesFollowers"
|
15
18
|
toot: "http://joinmastodon.org/ns#"
|
16
19
|
featured:
|
17
20
|
"@id": "toot:featured"
|