@fedify/fedify 1.3.16 → 1.3.17

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 CHANGED
@@ -3,6 +3,28 @@
3
3
  Fedify changelog
4
4
  ================
5
5
 
6
+ Version 1.3.17
7
+ --------------
8
+
9
+ Released on April 8, 2025.
10
+
11
+ - Activity Vocabulary API became to accept [RFC 3339] date-time strings
12
+ without a timezone offset. This is not a bug fix, but improves
13
+ interoperability with some implementations that do not include a timezone
14
+ offset in their date-time strings including WordPress. [[#226]]
15
+
16
+ - Added the following default context to `Undo` class:
17
+
18
+ ~~~~ json
19
+ {
20
+ "litepub": "http://litepub.social/ns#",
21
+ "toot": "http://joinmastodon.org/ns#",
22
+ "EmojiReact": "litepub:EmojiReact",
23
+ "Emoji": "toot:Emoji"
24
+ }
25
+ ~~~~
26
+
27
+
6
28
  Version 1.3.16
7
29
  --------------
8
30
 
@@ -321,6 +343,28 @@ Released on November 30, 2024.
321
343
  [#193]: https://github.com/fedify-dev/fedify/issues/193
322
344
 
323
345
 
346
+ Version 1.2.21
347
+ --------------
348
+
349
+ Released on April 8, 2025.
350
+
351
+ - Activity Vocabulary API became to accept [RFC 3339] date-time strings
352
+ without a timezone offset. This is not a bug fix, but improves
353
+ interoperability with some implementations that do not include a timezone
354
+ offset in their date-time strings including WordPress. [[#226]]
355
+
356
+ - Added the following default context to `Undo` class:
357
+
358
+ ~~~~ json
359
+ {
360
+ "litepub": "http://litepub.social/ns#",
361
+ "toot": "http://joinmastodon.org/ns#",
362
+ "EmojiReact": "litepub:EmojiReact",
363
+ "Emoji": "toot:Emoji"
364
+ }
365
+ ~~~~
366
+
367
+
324
368
  Version 1.2.20
325
369
  --------------
326
370
 
@@ -687,6 +731,28 @@ Released on October 31, 2024.
687
731
  [#118]: https://github.com/fedify-dev/fedify/issues/118
688
732
 
689
733
 
734
+ Version 1.1.21
735
+ --------------
736
+
737
+ Released on April 8, 2025.
738
+
739
+ - Activity Vocabulary API became to accept [RFC 3339] date-time strings
740
+ without a timezone offset. This is not a bug fix, but improves
741
+ interoperability with some implementations that do not include a timezone
742
+ offset in their date-time strings including WordPress. [[#226]]
743
+
744
+ - Added the following default context to `Undo` class:
745
+
746
+ ~~~~ json
747
+ {
748
+ "litepub": "http://litepub.social/ns#",
749
+ "toot": "http://joinmastodon.org/ns#",
750
+ "EmojiReact": "litepub:EmojiReact",
751
+ "Emoji": "toot:Emoji"
752
+ }
753
+ ~~~~
754
+
755
+
690
756
  Version 1.1.20
691
757
  --------------
692
758
 
@@ -1094,6 +1160,20 @@ Released on October 20, 2024.
1094
1160
  [#150]: https://github.com/fedify-dev/fedify/issues/150
1095
1161
 
1096
1162
 
1163
+ Version 1.0.24
1164
+ --------------
1165
+
1166
+ Released on April 8, 2025.
1167
+
1168
+ - Activity Vocabulary API became to accept [RFC 3339] date-time strings
1169
+ without a timezone offset. This is not a bug fix, but improves
1170
+ interoperability with some implementations that do not include a timezone
1171
+ offset in their date-time strings including WordPress. [[#226]]
1172
+
1173
+ [RFC 3339]: https://datatracker.ietf.org/doc/html/rfc3339
1174
+ [#226]: https://github.com/fedify-dev/fedify/issues/226
1175
+
1176
+
1097
1177
  Version 1.0.23
1098
1178
  --------------
1099
1179
 
package/esm/deno.js CHANGED
@@ -1,6 +1,6 @@
1
1
  export default {
2
2
  "name": "@fedify/fedify",
3
- "version": "1.3.16",
3
+ "version": "1.3.17",
4
4
  "license": "MIT",
5
5
  "exports": {
6
6
  ".": "./mod.ts",
@@ -19,4 +19,8 @@ defaultContext:
19
19
  - "https://w3id.org/security/data-integrity/v1"
20
20
  - "https://www.w3.org/ns/did/v1"
21
21
  - "https://w3id.org/security/multikey/v1"
22
+ - litepub: "http://litepub.social/ns#"
23
+ toot: "http://joinmastodon.org/ns#"
24
+ EmojiReact: "litepub:EmojiReact"
25
+ Emoji: "toot:Emoji"
22
26
  properties: []