Here's version 0.19.1 of GoToSocial!
It's a bugfix release. We fixed some bugs. By which we mean we removed them from the sloth, and set them free. They can live their own happy lives now.
More importantly, it's the first release we've done via Codeberg rather than Github. Hurray! Kiss our arse, Microsoft!
If you're updating to this version from v0.19.0, it's a very easy update with no db migrations and just a few small config file changes :)
If you're updating to this version from a version before v0.19.0, please follow the update instructions from v0.19.0, but replace 0.19.0
with 0.19.1
throughout. Be aware that the update to 0.19.x contains some long migrations. Please do read the notes carefully!
Release highlights
- You can configure S3 lookup type now.
description_limit
added to/api/v2/instance
response.- Fix some outgoing messages issues that was causing stuff to sometimes not get sent properly (see #4097).
- Fix some settings panel bugs, make sure interaction policies page works properly with keyboard.
- Million billion docs + CICD changes.
- Added some more queer + trans rights to the code. Instance footer is now 100% gayer. That is, it contains pride and trans flags now. Folks in places where it is illegal / dangerous to show such flags can remove them by editing
web/template/page_footer.tmpl
and restarting the instance to reload the template.
Migration notes
Upgrading
To upgrade to v0.19.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.db
file, 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.db
file, 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.19.1
ordocker pull docker.io/superseriousbusiness/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
The configuration file has changed since the previous release.
- Changed
media-description-max-chars
default from 1500 to 5000. - Added
storage-s3-bucket-lookup
with a default value ofauto
.
You can see a diff of the config file here: https://codeberg.org/superseriousbusiness/gotosocial/compare/v0.19.0...v0.19.1#diff-cf8ca241b529962d30020f62ae2f54d5b46bcf47
Database Migrations
None since v0.19.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 | docker.io/superseriousbusiness/gotosocial:0.19.1
|
Linux | Armv8/ARM64 (64-bit) | 🟢 Full | linux_arm64.tar.gz | docker.io/superseriousbusiness/gotosocial:0.19.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
Features and performance
- 95554220f3286d20f0b65c2ce98fbcf4e9993b4d: [feature] Add
description_limit
to/api/v2/instance
, increase default limit to 5k (#4140) (@kipvandenbos) - 18f82b83de1dd7f601e7209e2c1b9c22fda5a4cd: [feature] add ability to change s3 bucket lookup type (#4120) (@nopjmp)
- 27edfccf7dc4f7ad329dabfb12fa75e547ecdd40: [feature] Move to code.superseriousbusiness.org ( <>)
Bug fixes
- d0c3bd80e6a2401de2848a1e8dbb1b6d832c09ec: [bugfix] Fixes to tablist, fileinput, checkbox (@kipvandenbos)
- 0bda273f61edd700f6f0a1fa8cb9b52bfa323cbe: [bugfix] Prevent multiple mentions being created for one mention (#4127) (@kipvandenbos)
- fd12b36fbd84e945161aa2d06250d54065bfc23d: [bugfix] Fix no notification if mention edited into status (#4102) (@kipvandenbos)
- 882d97f7b353be730be2a187d59f4ed900701bb0: [bugfix] Fix wrong URI used in dereferenceLocal (#4097) (@kipvandenbos)
- 77008feafb146c3dc8169e35a104989ad0fc9822: [bugfix] Fix migration unsetting bot flag (#4098) (@kipvandenbos)
- 307cfd0fdb1c44f2f1d25284d8c3a30e624f3041: [bugfix] Fix nil ptr exception on creating user without running server first (#4094) (@kipvandenbos)
- 75100649ff6b68e649335ad4b7fe1a755eb50f2e: [bugfix] don't prevent moved accounts from invalidating their old tokens (#4091) (@gruf)
Chores & version bumps
- ca0451268966a1638abe00a5b73a1da46f60a9af: [chore] Update goreleaser (#4133) (@kipvandenbos)
- 2f88039d57d806128f57e2fae85253bc33d927ae: [chore/cicd] Account for force pushes in conditional runs (#4121) (@kipvandenbos)
- 842f575785ad4c3f6a2433f6b9f5fdf5f9ce5f35: [chore/cicd] Snapshot only if source code files have changed (#4115) (@kipvandenbos)
- 378920ca250700bc7359528e9696b3162ee15c28: [chore/cicd] conditional tests + linting for pull requests (#4114) (@kipvandenbos)
- 958ac4c45f7753f013d97a28047e9ca630fd5cd6: [chore] Update release CICD to point at "gitea" (#4100) (@kipvandenbos)
- 161215c54f5b30108d819c0385b9472e60809d87: [chore/docs] add symmetry to the politics (#4081) (@mkljczk)
- bde189909c2c44c6465e7c3c5b8cb0c868d13fad: [chore/docs] Put some politics in the code (#4076) (@kipvandenbos)
- 68a48d5d791ccbcd0963941ed22f5a397d444c3d: [chore] Update build to use new woodpecker dind container, bump version numbers (#4073) (@kipvandenbos)
- 269c5556aebf02307a8190f9228b3b9cbcc67151: [chore] Override woodpecker plugin for snapshot + release to get tags (#4069) (@kipvandenbos)
- 62538aafc868b421d334ab45170a96a40e4f4682: [chore] Fix CI/CD snapshot / release (#4068) (@kipvandenbos)
- 99ca395e2d9ae97a37dcd30d59b44bff9367d396: [chore] Disable default issue template (@daenney)
- b3e01f46c13489ceb56014d34e4d6a53a4616296: [chore] Bring back the issue and PR templates (@daenney)
- 60aca6daa26fefeea881611f6254aa752884a880: [chore] Rewrite all remaining Github links (@daenney)
- 512e2c88beef641474d6dc5251b494b1c4aeb8c1: [chore] add woodpecker ci/cd pipelines (#4061) (@kipvandenbos)
- 10e62d8bc7d6273f6ed2880f9862e12447aa7a32: [chore] Fix daenney being bad at sed (#4060) (@daenney)
- 034d58069c1ec92f8ae58359bdfd7a3119afe67d: [chore] Set up Github to be a mirror ( <>)
- 723c0af647fbe8e43194574ebcb00ee0496e08df: [chore] Move deps to code.superseriousbusiness.org (#4054) ( <>)
- 8aba20fb726c374030c4472afd13eb3c287d8f56: [chore] Update
activity
to v1.14.0 (#4038) ( <>)
Documentation
- 6574dc8a09d127af23218796119d33b3badcb1f5: [docs] Various little docs updates (#4144) (@kipvandenbos)
- d43fef5812ee1ef24ee3b17d2f35759939a003b1: [docs/zh] Update zh docs: synced to 6c879186 (#4117) (@cdn0x12)
- c88a95e3c5e15924b9da38ae6a980bb7e8d7ee1a: [docs] Move docs links to codeberg (#4074) (@kipvandenbos)
- 66d465b421ae8812d18fe38cd77651be06e92f0e: [docs] clearer structure for "combining blocks and allows" section (#4065) (@kutuptiyini)
- 1acad624945d85840a423b64793a7d37c4b76116: [docs] Mention where to run the command to grant CREATE permissions (#4050) (@Ember)
Other
- 293053f58c350e088a32d677c45ea88ba6f6f98f: bump dependencies: minio-go, go-sqlite3, goldmark, otel, x/image/webp (#4075) (@gruf)
- 052a84b9722a9a8bee3a271e128ef139a131c417: weenus (@kipvandenbos)