Unverified Commit 53b601f8 authored by Hong Minhee's avatar Hong Minhee
Browse files

Merge tag '1.1.20' into 1.2-maintenance

Fedify 1.1.20
parents 360070e4 9b93c418
Loading
Loading
Loading
Loading
+29 −0
Original line number Diff line number Diff line
@@ -8,6 +8,11 @@ Version 1.2.20

To be released.

 -  Fixed a `TypeError` thrown by the followers collection dispatcher when
    the `base-url` parameter was provided.
 -  Fixed a `TypeError` thrown by the `signRequest()` function on Node.js.
    [[#222]]


Version 1.2.19
--------------
@@ -364,6 +369,17 @@ Released on October 31, 2024.
[#118]: https://github.com/dahlia/fedify/issues/118


Version 1.1.20
--------------

Released on March 26, 2025.

 -  Fixed a `TypeError` thrown by the followers collection dispatcher when
    the `base-url` parameter was provided.
 -  Fixed a `TypeError` thrown by the `signRequest()` function on Node.js.
    [[#222]]


Version 1.1.19
--------------

@@ -760,6 +776,19 @@ Released on October 20, 2024.
[#150]: https://github.com/dahlia/fedify/issues/150


Version 1.0.23
--------------

Released on March 26, 2025.

 -  Fixed a `TypeError` thrown by the followers collection dispatcher when
    the `base-url` parameter was provided.
 -  Fixed a `TypeError` thrown by the `signRequest()` function on Node.js.
    [[#222]]

[#222]: https://github.com/fedify-dev/fedify/issues/222


Version 1.0.22
--------------

+1 −1
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@
    "@std/async": "jsr:@std/async@^1.0.5",
    "@std/bytes": "jsr:@std/bytes@^1.0.2",
    "@std/collections": "jsr:@std/collections@^1.0.6",
    "@std/encoding": "jsr:@std/encoding@^1.0.5",
    "@std/encoding": "jsr:@std/encoding@1.0.7",
    "@std/fs": "jsr:@std/fs@^1.0.3",
    "@std/http": "jsr:@std/http@^1.0.6",
    "@std/path": "jsr:@std/path@^1.0.6",
+1 −1
Original line number Diff line number Diff line
@@ -253,7 +253,7 @@ export async function handleCollection<
      }
      collection = new OrderedCollection({
        id: baseUri,
        totalItems: Number(totalItems),
        totalItems: totalItems == null ? null : Number(totalItems),
        first,
        last,
      });