Here's version 0.18.2 of GoToSocial, hopefully the last bugfix release of 0.18.x :)
Mostly bug fixes and version bumps in this one, though it's possible if you were seeing very poor performance on v0.18.0 or v0.18.1 then the small wasm/wazero tweak we made in this release might improve things for you.
If you're updating to this version from v0.18.0 or v0.18.1, it's a very easy update with no db migrations or config file changes :)
If you're updating to this version from a version before v0.18.0, please follow the update instructions from v0.18.0, but replace 0.18.0
with 0.18.2
throughout. Be aware that the update to 0.18.x contains some very long migrations. Please do read the notes carefully.
Migration notes
Upgrading
To upgrade to v0.18.2 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.db
file, eg.,cp sqlite.db sqlite.db.backup
. - Download and untar the new release, including the web assets and html templates.
- 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.db
file, eg.,cp sqlite.db sqlite.db.backup
. - Pull the new docker container (
superseriousbusiness/gotosocial:0.18.2
orsuperseriousbusiness/gotosocial:latest
) - 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.18.0.
Database Migrations
None since v0.18.0.
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 | superseriousbusiness/gotosocial:0.18.2
|
Linux | Armv8/ARM64 (64-bit) | 🟢 Full | linux_arm64.tar.gz | superseriousbusiness/gotosocial:0.18.2
|
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
- f5967d0: [bugfix] fix refreshed additional media info being ignored (#3867) (@NyaaaWhatsUpDoc)
- d0ae8f6: [bugfix] Return useful err on
server start
failure (#3879) (@tsmethurst) - edfbbff: [bugfix] Fix
length for type varchar must be at least 1
on Postgres (#3885) (@tsmethurst) - 8beeeb9: [bugfix] Fix panic when opening instance actor in web view (#3898) (@tsmethurst)
Chores & version bumps
- a372ee9: [chore] Fix typo in common.tsx (#3834) (@PrivacyDragon)
- d8c027f: [chore]: Bump github.com/tetratelabs/wazero from 1.8.2 to 1.9.0 (#3827) (@dependabot[bot])
- f1af6a5: [chore]: Bump github.com/google/go-cmp from 0.6.0 to 0.7.0 (#3826) (@dependabot[bot])
- a935993: [chore]: Bump golang.org/x/crypto from 0.33.0 to 0.34.0 (#3824) (@dependabot[bot])
- 6631c82: [chore] Update KimMachineGun/automemlimit (#3841) (@tsmethurst)
- 12e3f4c: [chore] Remove duplicate swagger docs build in Dockerfile (#3842) (@tsmethurst)
- 4819a33: [chore]: Bump github.com/go-jose/go-jose/v4 from 4.0.2 to 4.0.5 (#3831) (@dependabot[bot])
- 97adf00: [chore]: Bump github.com/ncruces/go-sqlite3 from 0.23.0 to 0.24.0 (#3862) (@dependabot[bot])
- 310319d: [chore] fixed email template to align with the new "Log in" button + separate page (#3871) (@wolfyjade)
- 10ad4b2: [chore] update links in CONTRIBUTING.md (#3881) (@cdn0x12)
- 0a8d218: [chore]: Bump golang.org/x/crypto from 0.35.0 to 0.36.0 (#3887) (@dependabot[bot])
- d0cbd54: [chore] add warning message when wazero compiler not supported (#3894) (@NyaaaWhatsUpDoc)
- 602d235: [chore] vendoring (@tsmethurst)
- 12d4d36: bumps our uptrace/bun dependencies to v1.2.10 (#3865) (@NyaaaWhatsUpDoc)
- 3cc2b93: bumps go-ffmpreg to v0.6.6 (#3866) (@NyaaaWhatsUpDoc)
- 120be69: bumps our uptrace/bun dependencies to v1.2.11 (#3895) (@NyaaaWhatsUpDoc)
Documentation
- f7ac15f: [docs] correct docker version format (#3832) (@elliotblackburn)
- 2decea6: [docs] Fix swagger operation descriptions (#3830) (@mkljczk)
- e6b4426: [docs] Update swagger docs command (#3897) (@tsmethurst)
- bc6b7c3: Document importing posts (#3844) (@VyrCossont)