Skip to content

Releases: bookwyrm-social/bookwyrm

v0.8.7

08 Jun 16:15

Choose a tag to compare

v0.8.7 Pre-release
Pre-release

This is mainly bug fixes for the previous release.

What's Changed

New Features 🎉

  • Allow admins to delete invite codes and revoke sent invites by @diaxoaine in #3930

Bug Fixes 🐛

  • Do not raise PermissionDenied errors on unsigned get requests by @hughrun in #3925
  • fix federated server notes by @hughrun in #3938

Other Changes

New Contributors

Full Changelog: v0.8.6...v0.8.7

v0.8.6

23 May 18:58

Choose a tag to compare

v0.8.6 Pre-release
Pre-release

What's Changed

‼️ Breaking Changes & New Settings ⚙️

Updated Dependencies 🧸

New Features 🎉

Bug Fixes 🐛

Other Changes

New Contributors

Full Changelog: v0.8.5...v0.8.6

v0.8.5

21 Feb 19:21

Choose a tag to compare

What's Changed

Updated Dependencies 🧸

  • pump nginx container version to current stable and enable file-descriptor/ssl session cache by @ilkka-ollakka in #3827
  • Pump environs version to support reading secrets from file by @ilkka-ollakka in #3848

Bug Fixes 🐛

Other Changes

New Contributors

Full Changelog: v0.8.4...v0.8.5

v0.8.4

02 Feb 22:33

Choose a tag to compare

v0.8.4 Pre-release
Pre-release

What's Changed

‼️ Breaking Changes & New Settings ⚙️

Updated Dependencies 🧸

New Features 🎉

Other Changes

New Contributors

Full Changelog: v0.8.3...v0.8.4

v0.8.3

07 Jan 16:29

Choose a tag to compare

What's Changed

Updated Dependencies 🧸

Bug Fixes 🐛

Other Changes

New Contributors

Full Changelog: v0.8.2...v0.8.3

v0.8.2

16 Nov 02:45

Choose a tag to compare

Important

This update includes important security fixes.

Upgrading to BookWyrm v0.8.2

All environments

Warning

Version 0.8.0 included a major upgrade to the required Postgres version. If you are migrating from a version prior to v0.8.0, you must follow the v0.8.0 upgrade instructions to ensure your database is properly upgraded.

Warning

This release includes a database migration

  • ALWAYS BACK UP YOUR DATABASE BEFORE UPGRADING and ideally know how you can restore it if something goes wrong.

Docker

Run ./bw-dev update

Non-docker

Follow the instructions for dockerless upgrades.

What's Changed

Updated Dependencies 🧸

Other Changes

Full Changelog: v0.8.1...v0.8.2

v0.8.1

15 Nov 21:37

Choose a tag to compare

v0.8.1 Pre-release
Pre-release

This is a bugfix release. It is strongly recommended to patch as soon as possible.

Upgrading to BookWyrm v0.8.1

All environments

Warning

This release includes a data migration

  • ALWAYS BACK UP YOUR DATABASE BEFORE UPGRADING and ideally know how you can restore it if something goes wrong.
  • This patch includes a data migration and adds a new management command (fix_isbn10_entries). Both of these repair 11-digit ISBN-10 entries caused by a bug in v0.8.0. You do not need to run the new command when updating, but you may wish to use it in the future to fix any books that are added or merged from a federated server.

Docker

Run ./bw-dev update

Non-docker

Follow the instructions for dockerless upgrades. It is important that you complete the migration stage (venv/bin/python3 manage.py migrate) as this will apply a fix to incorrect ISBN entries.

What's Changed

Bug Fixes 🐛

Other Changes

  • edit_book: improve author search matching on some names and aliases by @ilkka-ollakka in #3714

Full Changelog: v0.8.0...v0.8.1

v0.8.0

14 Oct 20:45

Choose a tag to compare

Important

This update includes important security fixes.

User exports and imports

User import and export files will now both be saved to /exports in local storage by default. Import files will be deleted once the import is completed.

Instance administrators should manually check your images directory (local and S3 storage) for any user export files (ending in .gz). These should be deleted as a matter of priority as they are publicly available. You are also strongly encouraged to delete any files in S3 exports directories, especially is you are using Backblaze (B2) or Cloudflare (R2) S3-compatible storage as your bucket may be unsecured.

If you wish to use S3 storage for export files instead of local storage, you must set the following values in your .env file:

  • USE_S3_FOR_EXPORTS=true
  • EXPORTS_S3_CUSTOM_DOMAIN
  • EXPORTS_STORAGE_BUCKET_NAME

The following new .env values for are optional, and will default to the equivalent S3 env values if not set:

  • EXPORTS_ACCESS_KEY_ID
  • EXPORTS_SECRET_ACCESS_KEY
  • EXPORTS_S3_REGION_NAME
  • EXPORTS_S3_ENDPOINT_URL

Important

This update changes default values

The default file upload limit is now 100MiB. This can be changed by defining MAX_UPLOAD_MiB in .env, as a number representing mebibytes. This may change again in future after enough time is provided for legacy user export files to be imported to new instances.

User import and export files now default to save to /exports in local storage. If you wish to use S3 storage for user import/export files instead of local storage, you must set USE_S3_FOR_EXPORTS=truein your .env file.

Warning

This version has new minimum versions for dependencies

Postgres version

The minimum Postgres version is now 14 (17 preferred). Follow the BookWyrm upgrade instructions below to ensure a smooth migration.

Django version

The Django version is now 5.2.

Environment variables

New env variables

  • NGINX_SETUP - this actually changed in 0.7.5 but was not mentioned in the release notes. Possible values are reverse_proxy or https. If not set, defaults to https. If you are using a reverse-proxy or working in a development environment (including when using localhost), set this to reverse-proxy. See the documentation on NGINX_SETUP for more information.

Changes and deprecations to env values

  • USE_HTTPS is no longer used. HTTPS will now always be assumed unless DOMAIN=localhost. This ensures that it is not possible to run in production on the http protocol. If you were previously running in production with USE_HTTPS set to False (or not set at all) you may have some user and object IDs with http URLs. You should ensure that you have http to https forwarding in place for your IDs work correctly.
  • DEBUG now defaults to false rather than true. This makes production installs more secure by default, but may require adjustment for existing development environments.
  • If not set, PORT will now default to 443 unless DOMAIN is localhost, in which case it will default to 80. This is different to previous behaviour, where if unset, PORT was 1333.

Upgrading to BookWyrm v0.8.0

All environments

  • ALWAYS BACK UP YOUR DATABASE BEFORE UPGRADING and ideally know how you can restore it if something goes wrong.
  • Check the environment variables you have set in .env against the notes above, and make any necessary changes

Docker

  • You will need to stop your containers in order to upgrade: docker compose down
  • Upgrade postgres to version 17: ./bw-dev upgrade_db_version
  • Upgrade BookWyrm: ./bw-dev update (NOTE: if you have previously commented out the docker-compose build stage you must uncomment this first in order to correctly rebuild with Django 5.2)

Non-docker

What's Changed

‼️ Breaking Changes & New Settings ⚙️

Updated Dependencies 🧸

New Features 🎉

Bug Fixes 🐛

Other Changes

Read more

v0.7.5

15 Apr 19:28

Choose a tag to compare

What's Changed

Updated Dependencies 🧸

Other Changes

New Contributors

Full Changelog: v0.7.4...v0.7.5

v0.7.4

06 Jun 23:12

Choose a tag to compare

v0.7.4 Pre-release
Pre-release

What's Changed

Updated Dependencies 🧸

Other Changes

New Contributors

Full Changelog: v0.7.3...v0.7.4