Unverified Commit 35cc7395 authored by Hong Minhee's avatar Hong Minhee
Browse files

Merge tag '0.13.4' into 0.14-maintenance

Fedify 0.13.4
parents 76e01acb d230a7e2
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
@@ -8,6 +8,9 @@ Version 0.14.3

To be released.

 -  Fixed `fedify inbox` command where it had ignored `-a`/`--accept-follow`
    options when no `-f`/`--follow` option was provided.  [[#132]]


Version 0.14.2
--------------
@@ -125,6 +128,17 @@ Released on August 27, 2024.
[#115]: https://github.com/dahlia/fedify/issues/115


Version 0.13.4
--------------

Released on September 1, 2024.

 -  Fixed `fedify inbox` command where it had ignored `-a`/`--accept-follow`
    options when no `-f`/`--follow` option was provided.  [[#132]]

[#132]: https://github.com/dahlia/fedify/issues/132


Version 0.13.3
--------------

+3 −1
Original line number Diff line number Diff line
@@ -81,10 +81,12 @@ export const command = new Command()
    });
    spinner.start();
    const fedCtx = federation.createContext(server.url, -1);
    if (options.acceptFollow != null && options.acceptFollow.length > 0) {
      acceptFollows.push(...(options.acceptFollow ?? []));
    }
    if (options.follow != null && options.follow.length > 0) {
      spinner.text = "Following actors...";
      const documentLoader = await fedCtx.getDocumentLoader({ handle: "i" });
      acceptFollows.push(...(options.acceptFollow ?? []));
      for (const uri of options.follow) {
        spinner.text = `Following ${colors.green(uri)}...`;
        const actor = await lookupObject(uri, { documentLoader });