@fedify/fedify 1.3.22 → 1.3.24

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,29 @@
3
3
  Fedify changelog
4
4
  ================
5
5
 
6
+ Version 1.3.24
7
+ --------------
8
+
9
+ Released on September 17, 2025.
10
+
11
+ - Improved the AT Protocol URI workaround to handle all DID methods and
12
+ edge cases. The fix now properly percent-encodes any authority component
13
+ in `at://` URIs, supporting `did:web`, `did:key`, and other DID methods
14
+ beyond just `did:plc`. Also handles URIs without path components
15
+ correctly. [[#436]]
16
+
17
+
18
+ Version 1.3.23
19
+ --------------
20
+
21
+ Released on September 17, 2025.
22
+
23
+ - Added a temporary workaround for invalid AT Protocol URIs from BridgyFed.
24
+ URIs like `at://did:plc:...` that violate RFC 3986 URI syntax are now
25
+ automatically URL-encoded to `at://did%3Aplc%3A...` to prevent parsing
26
+ failures when processing bridged Bluesky content. [[#436]]
27
+
28
+
6
29
  Version 1.3.22
7
30
  --------------
8
31
 
@@ -407,6 +430,29 @@ Released on November 30, 2024.
407
430
  [#193]: https://github.com/fedify-dev/fedify/issues/193
408
431
 
409
432
 
433
+ Version 1.2.27
434
+ --------------
435
+
436
+ Released on September 17, 2025.
437
+
438
+ - Improved the AT Protocol URI workaround to handle all DID methods and
439
+ edge cases. The fix now properly percent-encodes any authority component
440
+ in `at://` URIs, supporting `did:web`, `did:key`, and other DID methods
441
+ beyond just `did:plc`. Also handles URIs without path components
442
+ correctly. [[#436]]
443
+
444
+
445
+ Version 1.2.26
446
+ --------------
447
+
448
+ Released on September 17, 2025.
449
+
450
+ - Added a temporary workaround for invalid AT Protocol URIs from BridgyFed.
451
+ URIs like `at://did:plc:...` that violate RFC 3986 URI syntax are now
452
+ automatically URL-encoded to `at://did%3Aplc%3A...` to prevent parsing
453
+ failures when processing bridged Bluesky content. [[#436]]
454
+
455
+
410
456
  Version 1.2.25
411
457
  --------------
412
458
 
@@ -844,6 +890,29 @@ Released on October 31, 2024.
844
890
  [#118]: https://github.com/fedify-dev/fedify/issues/118
845
891
 
846
892
 
893
+ Version 1.1.27
894
+ --------------
895
+
896
+ Released on September 17, 2025.
897
+
898
+ - Improved the AT Protocol URI workaround to handle all DID methods and
899
+ edge cases. The fix now properly percent-encodes any authority component
900
+ in `at://` URIs, supporting `did:web`, `did:key`, and other DID methods
901
+ beyond just `did:plc`. Also handles URIs without path components
902
+ correctly. [[#436]]
903
+
904
+
905
+ Version 1.1.26
906
+ --------------
907
+
908
+ Released on September 17, 2025.
909
+
910
+ - Added a temporary workaround for invalid AT Protocol URIs from BridgyFed.
911
+ URIs like `at://did:plc:...` that violate RFC 3986 URI syntax are now
912
+ automatically URL-encoded to `at://did%3Aplc%3A...` to prevent parsing
913
+ failures when processing bridged Bluesky content. [[#436]]
914
+
915
+
847
916
  Version 1.1.25
848
917
  --------------
849
918
 
@@ -1322,6 +1391,31 @@ Released on October 20, 2024.
1322
1391
  [#150]: https://github.com/fedify-dev/fedify/issues/150
1323
1392
 
1324
1393
 
1394
+ Version 1.0.30
1395
+ --------------
1396
+
1397
+ Released on September 17, 2025.
1398
+
1399
+ - Improved the AT Protocol URI workaround to handle all DID methods and
1400
+ edge cases. The fix now properly percent-encodes any authority component
1401
+ in `at://` URIs, supporting `did:web`, `did:key`, and other DID methods
1402
+ beyond just `did:plc`. Also handles URIs without path components
1403
+ correctly. [[#436]]
1404
+
1405
+
1406
+ Version 1.0.29
1407
+ --------------
1408
+
1409
+ Released on September 17, 2025.
1410
+
1411
+ - Added a temporary workaround for invalid AT Protocol URIs from BridgyFed.
1412
+ URIs like `at://did:plc:...` that violate RFC 3986 URI syntax are now
1413
+ automatically URL-encoded to `at://did%3Aplc%3A...` to prevent parsing
1414
+ failures when processing bridged Bluesky content. [[#436]]
1415
+
1416
+ [#436]: https://github.com/fedify-dev/fedify/issues/436
1417
+
1418
+
1325
1419
  Version 1.0.28
1326
1420
  --------------
1327
1421
 
package/esm/deno.js CHANGED
@@ -1,6 +1,6 @@
1
1
  export default {
2
2
  "name": "@fedify/fedify",
3
- "version": "1.3.22",
3
+ "version": "1.3.24",
4
4
  "license": "MIT",
5
5
  "exports": {
6
6
  ".": "./mod.ts",