Hello hello, here's a bugfix release! v0.22.1 Shrubbier Sloth πΏπΏ!
If you're updating to this version from v0.22.0, it's a very easy update with no db migrations.
If you're updating to this version from a version before v0.22.0, please follow the update instructions from v0.22.0, but replace 0.22.0 with 0.22.1 throughout. Be aware that the update to 0.22.x contains some serious database migrations. Please do read the notes carefully!
If you're on current main/snapshot, stay there. You already have all the bugfixes from here, and going backwards won't work.
Release highlights
- Bug fixes!
- Hide instance directory link when directory is not enabled.
- Few dependency updates.
- Add more gay kissing to the code.
Migration notes
Upgrading
To upgrade to v0.22.1 from a previous release:
Binary/tar
- Stop GoToSocial.
- Back up your database! If you're running on SQLite, this is as simple as copying your
sqlite.dbfile, eg.,cp sqlite.db sqlite.db.backup. On Postgres you can do this with pg_dump. - Download and untar the new release, including the web assets and html templates, not just the binary.
- Edit your config.yaml file if necessary (see below).
- Start GoToSocial.
- Wait patiently for any migrations to run, do not interrupt migrations or you could leave your db in a broken state and will have to restore from backup!
- Enjoy your updated instance.
Docker
- Stop GoToSocial.
- Back up your database! If you're running on SQLite, this is as simple as copying your
sqlite.dbfile, eg.,cp sqlite.db sqlite.db.backup. On Postgres you can do this with pg_dump. - Pull the new docker container with
docker pull docker.io/superseriousbusiness/gotosocial:0.22.1ordocker pull docker.io/superseriousbusiness/gotosocial:latestif this is a stable release and not a release candidate. - Edit your config.yaml file or environment variables if necessary (see below).
- Start GoToSocial.
- Wait patiently for any migrations to run, do not interrupt migrations or you could leave your db in a broken state and will have to restore from backup!
- Enjoy your updated instance.
config.yaml
No changes since v0.22.x.
Database Migrations
No migrations since v0.22.x.
Which release archive/container should I use?
GoToSocial releases binary builds for 64-bit Linux, FreeBSD, and NetBSD operating systems. We also release Docker builds for 64-bit Linux.
| OS | Architecture | Support level | Binary archive | Docker |
|---|---|---|---|---|
| Linux | x86-64/AMD64 (64-bit) | π’ Full | linux_amd64.tar.gz | docker.io/superseriousbusiness/gotosocial:0.22.1
|
| Linux | Armv8/ARM64 (64-bit) | π’ Full | linux_arm64.tar.gz | docker.io/superseriousbusiness/gotosocial:0.22.1
|
| FreeBSD | x86-64/AMD64 (64-bit) | π’ Full | freebsd_amd64.tar.gz | Not provided |
| FreeBSD | Armv8/ARM64 (64-bit) | π’ Full | freebsd_arm64.tar.gz | Not provided |
| NetBSD | x86-64/AMD64 (64-bit) | π’ Full | netbsd_amd64.tar.gz | Not provided |
| NetBSD | Armv8/ARM64 (64-bit) | π’ Full | netbsd_arm64.tar.gz | Not provided |
nowasm
For your convenience, we also provide UNSUPPORTED, EXPERIMENTAL BUILDS, created using the nowasm tag, in the downloads list below. There is no Docker build for nowasm.
GoToSocial releases built with nowasm use the Go-native, modernc version of SQLite instead of the WASM one, and will use on-system ffmpeg and ffprobe binaries for media processing.
Using a nowasm build is currently the only way to run GoToSocial on a 32-bit system.
For more information on running a nowasm build, see the nowasm documentation page.
Changelog
Bug fixes
- 26b61ae9b2d0846b3b30fa1c6a4cf4e6fe4348fd [bugfix] Restore accidentally-removed outgoing http proxy config (#4954)
- 1764961ca0270d4d76172f1b2e0b29c287f37b05 [bugfix] recent tweaking broke the pollJustClosed() heuristic by forgetting a time.Time{}.IsZero() check, this fixes that (#4938)
- 2813e6ccb8b3c4ceaac612c01d68f793f5264abd [bugfix] add checks for status creation date to status timelining, to prevent notifications of new-old statuses (#4935)
- 086c6fb31ef642e35b4158595573fbaca2b5efe5 [bugfix] old (expired) remote polls awaiting dereference still show as votable (#4927)
- 0605b8f6a6df693c66a47cead391e28605541180 [bugfix] Include
instance.domainin undeliverable instances query for Postgres (#4926) - d1107d261c91277808878f1b17d574d623496d9a [bugfix/frontend] don't link to /directory when it is disabled (#4917)
- e54e92c35dfaa46815fbd39fd34fd64e346f06d0 [bugfix] Set
status_idtoNULLwhen unattaching attachments from deleted local statuses (#4922)
Chores & version bumps
- fdff42baf16bdc8f793ce5137ecf2c2e6c67a9f2 [chore/v0.22.1 back compat] Remove stray line in internal/api/client/polls
- 809723ceb47a5f3e79a337c2a35c7fa6b542e1da [chore] update dependencies (#4933)
- 9d162cb6dc4a5e5674a179738d738dd39e597b90 [chore] Pointless emoji comment formatting to trigger a snapshot (#4956)
- 19bb83bc8737bed497e05d89adc60a5cf4ab8218 [chore] Update
gotosocial-woodpecker-buildto v0.13.0; usegitfor changelog instead ofgitea(#4955)
Documentation
- f9483b0ba99f09a5616e8072d52aafa9fd32ded9 [docs/bugfix] fix documentation urls for relay pushes (#4912)