diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2016-03-29 11:30:26 -0700 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2016-03-29 11:30:26 -0700 |
commit | 6686502f1771c62ee42f921ea21bb3bb045ab8b4 (patch) | |
tree | 880b51a367b11f79bfff81164d7893ad676bdf2d /docs/source | |
parent | d0e666595186d5fa4a9432e59ae18e92ae007048 (diff) | |
download | mediagoblin-6686502f1771c62ee42f921ea21bb3bb045ab8b4.tar.lz mediagoblin-6686502f1771c62ee42f921ea21bb3bb045ab8b4.tar.xz mediagoblin-6686502f1771c62ee42f921ea21bb3bb045ab8b4.zip |
doc: 0.9.0 release notes
* doc/source/siteadmin/relnotes.rst: Add release notes for 0.9.0.
Diffstat (limited to 'docs/source')
-rw-r--r-- | docs/source/siteadmin/relnotes.rst | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/docs/source/siteadmin/relnotes.rst b/docs/source/siteadmin/relnotes.rst index 41d8f623..584fd8c3 100644 --- a/docs/source/siteadmin/relnotes.rst +++ b/docs/source/siteadmin/relnotes.rst @@ -39,6 +39,47 @@ carefully, or at least skim over it. git remote set-url origin git://git.savannah.gnu.org/mediagoblin.git +0.9.0 +===== + +This release has a number of improvements, but is also a major +"plumbing upgrade" release to MediaGoblin. Notably, we now support +Python 3, which is pretty cool! + +**Do this to upgrade** + +0. If you haven't already, switch the git remote URL: + ``git remote set-url origin git://git.savannah.gnu.org/mediagoblin.git`` +1. Update to the latest release. If checked out from git, run: + ``git fetch && git checkout -q v0.9.0`` +2. Run + ``./bootstrap.sh && ./configure && make`` +3. Also run + ``./bin/python setup.py develop --upgrade && ./bin/gmg dbupdate`` + +**Bugfixes/improvements:** + +- Python 3 is now a first class citizen! We now support both + Python 2.7 and Python 3.4 or later. +- Major updates to internal tooling to pave the way for federation. + - Massive overhaul to the database layout (particularly in + permitting generic relations) + - OAuth updates + - Updating how we handle collections + - Add a "graveyard" system with tombstones for keeping information + about removed objects + - Large overhaul to how "comments" work. In federation, many things + can reply to many things, so we had to loosen the model. +- If your user has some collections available, these will be presented + as a dropdown option while submitting media. +- Begin using Alembic for migrations +- Lots of bugfixes and etc + - Many fixes to typos + - Some fixes to the blog system + - Switch to waitress for development + - And more...! + + 0.8.1 ===== |