Skip to content

Releases: flusio/Flus

Flus v2.2.1

30 Dec 14:16
v2.2.1
18c6338

Choose a tag to compare

Bug fixes

  • Allow to import .opml files (4f07eb12)
  • Fallback to Mastodon API v1 when getting server information (dbbfc32a)

Maintenance

  • Strengthen MastodonThreadsTest to not fail randomly (55c3cc91)

Flus v2.2.0

24 Dec 08:19
v2.2.0
630b69b

Choose a tag to compare

Features

Maintenance

Developers

Flus v2.1.3

06 Dec 10:35
v2.1.3
4f32bd9

Choose a tag to compare

Bug fixes

  • Fix check of the group name uniqueness (7b75a95f)

CLI

  • Provide a basic command to import a wallabag export (90d57f8d)

Flus v2.1.2

30 Nov 12:08
v2.1.2
6c36cc9

Choose a tag to compare

Maintenance

  • Add missing links indexes on fetched columns (52741d13)

Flus v2.1.1

29 Nov 20:01
v2.1.1
80494c0

Choose a tag to compare

Maintenance

Developers

  • Provide a generic Cache system (9b766fa7)
  • Set the default timezone to Europe/Paris in development (f7c0a1e8)

Flus v2.1.0

25 Nov 20:26
v2.1.0
43ee402

Choose a tag to compare

Migration notes

Pocket is now definitely down, and Pocket import has been removed (except the file import with the CLI).
You can safely remove the APP_POCKET_CONSUMER_KEY environment key from your .env file.

Features

Bug fixes

  • Make sure that links and feeds are saved in database (18b70a95)

Maintenance

Flus v2.0.6

23 Oct 07:53
v2.0.6
58a87ac

Choose a tag to compare

Bug fixes

  • Fix performance when refreshing news (1692ce6d)

Flus v2.0.5

22 Oct 16:03
v2.0.5
e6bfa63

Choose a tag to compare

Migration notes

After the update, you may want to run the new CollectionsPublicationFrequencySync job:

$ php cli jobs
$ # Get the id of the job
$ php cli jobs run --id=<ID>

Depending on the number of collections in the database, this operation can take a long time or not.

This operation is not required as it will be run everyday at 3AM then.
It just allows to have coherent publication frequencies in the interface.

API

  • Add enpoints to follow/unfollow a collection/feed (ae8c3904)
  • Return feeds on the search enpoint (83d333d1)
  • Add the is_followed attribute to the collections/feeds objects (26c196ce)
  • Add the publication_frequency_per_year attribute to the collections/feeds objects (39419a55)
  • Add the missing link created_at, is_hidden, source, published_at, number_notes attributes to the search response (8669729a)
  • Document a changelog for each API endpoints (8989c305)

Technical

  • Store the publication frequency in database (c1895833)
  • Optimize calculation of publication frequency (59074931)
  • Update the dependencies (573f0196)

Flus v2.0.4

19 Sep 18:57
v2.0.4
4cdf3b9

Choose a tag to compare

Bug fixes

  • Fix the series SQL fetch queries (fd2e7721)

Flus v2.0.3

19 Sep 18:01
v2.0.3
cc24a20

Choose a tag to compare

API

  • Add an endpoint to delete the current session (6c7b4847)

CLI

  • Allow to pass a User-Agent to the urls show command (1dcf0b0e)

Technical

Developers