@fedify/fedify 0.15.0 → 0.15.2

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGES.md CHANGED
@@ -3,6 +3,26 @@
3
3
  Fedify changelog
4
4
  ================
5
5
 
6
+ Version 0.15.2
7
+ --------------
8
+
9
+ Released on September 26, 2024.
10
+
11
+ - Fixed a bug of `Object.toJsonLd()` method where it had not fall back to
12
+ the proper compact form when the heuristic compact form was not available.
13
+
14
+
15
+ Version 0.15.1
16
+ --------------
17
+
18
+ Released on September 15, 2024.
19
+
20
+ - Fixed a bug where even if the `ActorCallbackSetters.mapHandle()` method was
21
+ called, a WebFinger username was used as an actor's handle. [[#136]]
22
+
23
+ [#136]: https://github.com/dahlia/fedify/pull/136
24
+
25
+
6
26
  Version 0.15.0
7
27
  --------------
8
28
 
@@ -65,6 +85,15 @@ Released on September 11, 2024.
65
85
  object.
66
86
 
67
87
 
88
+ Version 0.14.5
89
+ --------------
90
+
91
+ Released on September 26, 2024.
92
+
93
+ - Fixed a bug of `Object.toJsonLd()` method where it had not fall back to
94
+ the proper compact form when the heuristic compact form was not available.
95
+
96
+
68
97
  Version 0.14.4
69
98
  --------------
70
99
 
@@ -882,6 +882,7 @@ class FederationImpl {
882
882
  return await handleWebFinger(request, {
883
883
  context,
884
884
  actorDispatcher: this.actorCallbacks?.dispatcher,
885
+ actorHandleMapper: this.actorCallbacks?.handleMapper,
885
886
  onNotFound,
886
887
  });
887
888
  case "nodeInfoJrd":