~ubuntu-branches/debian/sid/python-django/sid

« back to all changes in this revision

Viewing changes to debian/python-django.NEWS

  • Committer: Package Import Robot
  • Author(s): Raphaël Hertzog
  • Date: 2014-09-17 14:15:11 UTC
  • mfrom: (1.3.17) (6.2.18 experimental)
  • Revision ID: package-import@ubuntu.com-20140917141511-icneokthe9ww5sk4
Tags: 1.7-2
* Release to unstable.
* Add a migrate-south sample script to help users apply their South
  migrations. Thanks to Brian May.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
python-django (1.7-1) unstable; urgency=medium
 
2
 
 
3
  Django 1.7 has a new feature to handle database schema upgrade called
 
4
  "migrations" which is incompatible with South (provided by
 
5
  python-django-south in Debian).
 
6
 
 
7
  If you have Django applications using South, you will need to install Django
 
8
  1.6 to run pending migrations.  This *must* be done first before running any
 
9
  Django 1.7 migrations.
 
10
 
 
11
  There is a script included with this package to automate the task of
 
12
  installing Django 1.6 and south into a virtualenv and running the migrations.
 
13
 
 
14
  apt-get install virtualenv
 
15
  sh /usr/share/doc/python-django/examples/migrate-south --settings app.settings
 
16
 
 
17
  Replace app.settings with the settings module your app uses.
 
18
 
 
19
  Django 1.7 comes with many new features and some backwards incompatible
 
20
  changes. They are well documented in the Django documentation:
 
21
  https://docs.djangoproject.com/en/1.7/releases/1.7/
 
22
  https://docs.djangoproject.com/en/1.7/internals/deprecation/#deprecation-removed-in-1-7
 
23
 
 
24
 -- Raphaël Hertzog <hertzog@debian.org>  Mon, 08 Sep 2014 10:20:37 +0200