Docs tweaks
[mediagoblin.git] / docs / source / siteadmin / relnotes.rst
1 .. MediaGoblin Documentation
2
3 Written in 2012 by MediaGoblin contributors
4
5 To the extent possible under law, the author(s) have dedicated all
6 copyright and related and neighboring rights to this software to
7 the public domain worldwide. This software is distributed without
8 any warranty.
9
10 You should have received a copy of the CC0 Public Domain
11 Dedication along with this software. If not, see
12 <http://creativecommons.org/publicdomain/zero/1.0/>.
13
14 =============
15 Release Notes
16 =============
17
18 This chapter has important information for releases in it.
19 If you're upgrading from a previous release, please read it
20 carefully, or at least skim over it.
21
22
23 0.3.1
24 =====
25
26 FIXME: Needs to be written
27
28
29 0.3.0
30 =====
31
32 This release has one important change. You need to act when
33 upgrading from a previous version!
34
35 This release changes the database system from MongoDB to
36 SQL(alchemy). If you want to setup a fresh instance, just
37 follow the instructions in the deployment chapter. If on
38 the other hand you want to continue to use one instance,
39 read on.
40
41 To convert your data from MongoDB to SQL(alchemy), you need
42 to follow these steps:
43
44 1. Make sure your MongoDB is still running and has your
45 data, it's needed for the conversion.
46
47 2. Configure the ``sql_engine`` URI in the config to represent
48 your target database (see: :ref:`deploying-chapter`)
49
50 3. You need an empty database.
51
52 4. Then run the following command::
53
54 bin/gmg [-cf mediagoblin_config.ini] convert_mongo_to_sql
55
56 5. Start your server and investigate.
57
58 6. That's it.