Skip to content

Releases: bookwyrm-social/bookwyrm

v0.7.3

31 Mar 21:28
Compare
Choose a tag to compare
v0.7.3 Pre-release
Pre-release

What's Changed

New Contributors

Full Changelog: v0.7.2...v0.7.3

v0.7.2

17 Jan 22:47
Compare
Choose a tag to compare

Important
You will need to update your nginx config! You need to make two changes to the default.conf file so that they reflect the current state of production.conf:

  1. Change the location block on line 99 (this may vary if you have made any edits to your copy of the file) from location ~ ^/(images|static)/ { to location ~ \.(bmp|ico|jpg|jpeg|png|tif|tiff|webp|css|js)$ {. The whole block should now look like this:
    location ~ \.(bmp|ico|jpg|jpeg|png|tif|tiff|webp|css|js)$ {
        root /app;
        try_files $uri =404;
        add_header X-Cache-Status STATIC;
        access_log off;
    }
  1. Add a new block below (by default this will be on line 106):
    # block access to any non-image files from images or static
    location ~ ^/images/ {
         return 403;
    }

It's a good idea to check that your config syntax is valid before restarting nginx. With docker, you can run: docker-compose run --rm nginx nginx -t. Please reach out in the developer chat if you have any questions ❤️

What's Changed

New Contributors

Full Changelog: v0.7.1...v0.7.2

v0.7.1

02 Jan 16:54
Compare
Choose a tag to compare
v0.7.1 Pre-release
Pre-release

What's Changed

New Contributors

Full Changelog: v0.6.6...v0.7.1

v0.6.6

02 Oct 17:25
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.6.5...v0.6.6

v0.6.5

19 Aug 21:54
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.6.4...v0.6.5

v0.6.4

21 Jul 02:11
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.6.3...v0.6.4

v0.6.3

30 May 18:42
Compare
Choose a tag to compare

What's Changed

  • Add a management command to merge works by @bpeel in #2838
  • Use the translated shelf name in the message for when another edition is shelved by @bpeel in #2850
  • Optimize get_audience by only fetching IDs by @WesleyAC in #2839
  • Show all (not just open) reports when linked from user admin by @mouse-reeve in #2843
  • Fix federation with GoToSocial and inconsistent KeyId in headers by @hughrun in #2812
  • Add dates to RSS feeds and sort by most recent first by @kvibber in #2862
  • Show “no rating” instead of blank stars if the review has no rating by @bpeel in #2857
  • Retain subjects and authors when new book form fails validation by @hughrun in #2827

Full Changelog: v0.6.2...v0.6.3

v0.6.2

26 Apr 00:48
Compare
Choose a tag to compare

What's Changed

  • Add form to remove tasks from Celery by @WesleyAC in #2787
  • Spelling by @jsoref in #2780
  • Add automatic instrumentation to Postgres queries by @WesleyAC in #2795
  • Optimize get_audience by @WesleyAC in #2785
  • Fix Accept header for requesting ActivityPub objects by @WesleyAC in #2800
  • Small quality of life improvements to list handling by @ranok in #2782
  • Fix a few strings that weren’t marked as translatable by @bpeel in #2816
  • Fix two places where the reading status shelf name wasn’t translated by @bpeel in #2789
  • Stop ignoring task results by @WesleyAC in #2805
  • Fix language constant to show correct lang in API by @jaschaurbach in #2832
  • Add management commands to merge a pair of editions or authors by @bpeel in #2821
  • Fix deduplicating books that are on a shelf or in a list by @bpeel in #2818

New Contributors

Full Changelog: v0.6.1...v0.6.2

v0.6.1

04 Apr 04:34
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.6.0...v0.6.1

v0.6.0

13 Mar 15:20
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.5.5...v0.6.0