takahe/docs/releases/0.6.rst

129 lines
4.5 KiB
ReStructuredText
Raw Normal View History

2022-12-15 22:57:29 +00:00
0.6
===
2022-12-24 17:50:24 +00:00
*Released: 2022/12/24*
2022-12-15 22:57:29 +00:00
2022-12-20 10:42:49 +00:00
This release focuses primarily on server completeness and stability, with
an extra helping of moderation tools as well.
2022-12-22 18:03:01 +00:00
This is the first release we *might* recommend you start a community on. Bear in
2022-12-20 10:42:49 +00:00
mind that this is still beta software, and so not free of bugs, but we've now
reached enough stability and moderation functionality that it's doable. We're
also spooling up invites on `takahe.social <https://takahe.social>`_ as part
of our own push in this regard - see https://jointakahe.org/takahesocial/ for
2022-12-22 18:03:01 +00:00
more information and how to get an invite.
If you're curious on the reasons *not* to use Takahē yet, see what's left
2022-12-22 18:10:47 +00:00
to implement on our :doc:`/features` page, and our federation and client
compatibility list on our :doc:`/interoperability` page.
2022-12-20 10:42:49 +00:00
Major features:
* Initial Mastodon Client API support
2022-12-20 14:33:42 +00:00
2022-12-20 10:42:49 +00:00
* Timelines, notifications, posting, image upload, emoji, search, follow/unfollow, like, boost, thread view all work
* Filtering, DMs/conversations, bookmarks, favourites list, lists, scheduling, announcements do not work yet
2022-12-20 14:33:42 +00:00
2022-12-20 10:42:49 +00:00
* Custom Emoji ("emojo") support
2022-12-20 14:33:42 +00:00
2022-12-20 10:42:49 +00:00
* Fetching and rendering is fully supported
* Local creation is still via the Django Admin, but otherwise works well
2022-12-20 14:33:42 +00:00
2022-12-20 10:42:49 +00:00
* Report functionality and moderation queue
2022-12-20 14:33:42 +00:00
2022-12-20 10:42:49 +00:00
* Both local and forwarded reports from other servers
* Identities can now be "limited" or blocked entirely
2022-12-20 14:33:42 +00:00
2022-12-24 17:50:24 +00:00
* Following/Followers pages
2022-12-20 10:42:49 +00:00
* Identity, user and invites admin pages
* Stator status monitoring page
* Separate moderation and admin user permission levels
* Terms Of Service, Privacy Policy, and Server Rules page functionality
Additionally, we've made lots of bug fixes and other improvements, including:
* Profile and post URLs now work in search
* Character counter on compose forms
2022-12-24 17:50:24 +00:00
* Videos will now show in the timeline
* Counts on boosts and likes (that can be turned off in new Wellness settings)
2022-12-22 05:14:44 +00:00
* Compatibility with more Fediverse servers (see :doc:`/interoperability`)
2022-12-20 10:42:49 +00:00
* Static files are now efficiently served/proxied by a bundled nginx
* All uploaded images are now WebP for efficiency
* Sessions use signed cookies for reduced database load
2022-12-24 17:50:24 +00:00
* Better web user experience on mobile devices
2022-12-20 10:42:49 +00:00
2022-12-22 18:03:01 +00:00
Our plan for the 0.7 release is not finalised, but likely includes:
* Emoji admin page
* User-initiated identity deletion
* Server announcements system
* Initial video support
2022-12-22 18:27:26 +00:00
* HTML emails and moderation emails
2022-12-22 18:03:01 +00:00
2022-12-24 17:50:24 +00:00
We're specifically looking help from the following people as we develop further:
2022-12-22 18:03:01 +00:00
* Visual Design - We'd like to have a proper design system and identity for Takahē
* Instance admins or developers of non-Mastodon servers - We need help debugging
federation issues, especially where we're causing errors we can't see elsewhere.
2022-12-22 18:10:47 +00:00
If you'd like to help with these or other areas, see :doc:`/contributing` to
2022-12-22 18:03:01 +00:00
see how to get in touch.
2022-12-15 22:57:29 +00:00
2022-12-22 18:10:47 +00:00
I would also like to specifically thank `Michael Manfre <https://manfre.me/>`_
and `Tyler Kennedy (TkTech) <https://tkte.ch/>`_ for their help during the 0.6
development cycle; it is people like them, who turn up and help with the boring
and unglamarous parts of development, who make Open Source work.
2022-12-15 22:57:29 +00:00
You can download images from `Docker Hub <https://hub.docker.com/r/jointakahe/takahe>`_,
or use the image name ``jointakahe/takahe:0.6``.
Upgrade Notes
-------------
2022-12-24 17:50:24 +00:00
Migrations
~~~~~~~~~~
There are new database migrations, but this once, they are not fully
backwards-compatible, as we've deleted the unneeded ``stator_errors`` table.
To apply these migrations, you should:
* Stop all Stator processes (it's fine to leave webservers going)
* Apply the migrations
* Start new Stator processes
2022-12-15 22:57:29 +00:00
Signed Cookie Sessions
~~~~~~~~~~~~~~~~~~~~~~
As of version 0.6, Takahē uses signed cookies for sessions rather than a
database table. As part of this change, when you upgrade, all users will be
signed out, but no data will be lost - they just need to sign in again.
2022-12-23 07:48:15 +00:00
Signup Settings
~~~~~~~~~~~~~~~
The previous "invite only signups mode" option has been removed - invites are
now always allowed to sign up, and the only option is to disable open signup
or not.
As a result, your site may default to open signups after upgrade - check the
setting and ensure signups are disabled if you want invite-only.
2022-12-15 22:57:29 +00:00
Storage Settings
~~~~~~~~~~~~~~~~
If you use Google Cloud for storage, the URI format has changed - before it was
``gcs://bucketname``, and now it is ``gs:///bucketname``.
2022-12-24 17:50:24 +00:00
About Page Format
~~~~~~~~~~~~~~~~~
2022-12-15 22:57:29 +00:00
2022-12-24 17:50:24 +00:00
The about page and homepage have been merged and have a new format (and
Markdown is now supported). You should check your layout and formatting still
looks good.