Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade django version #5

Open
wants to merge 224 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
224 commits
Select commit Hold shift + click to select a range
0c7e800
Adding a modeladmin class allowing one to restrict access to the admi…
Apr 22, 2011
c4717c1
Adding a subclass of CurrentSiteManager accepting a path to a 'site'/…
Apr 29, 2011
8a606f1
Adding better handling of distant 'site' or 'sites' foreign keys.
Apr 29, 2011
a6ee0eb
Moving managers to the proper place.
Apr 29, 2011
3c30e4e
Fixing admin to use "_default_manager", rather than the usual "objects".
May 16, 2011
a52f873
Merge pull request #1 from robthehall/master
coddingtonbear May 16, 2011
ddbf6ab
new template loader
plazix Jul 6, 2011
76dc037
update README
plazix Jul 6, 2011
f814205
Now hiding change list site filters which your user isn't allowed to …
Jul 8, 2011
d5f497c
Merge pull request #2 from robthehall/master
coddingtonbear Jul 8, 2011
cfc049e
Added option to limit FK fields to objects that belong to the same site
Jul 10, 2011
9a130ab
pep8
plazix Jul 11, 2011
c20a854
Merge branch 'master' of git://github.com/latestrevision/django-multi…
plazix Jul 11, 2011
64cc32b
Updated README
Jul 11, 2011
21c5ffe
Merge branch 'master' of git://github.com/robthehall/django-multisite
sfllaw Feb 1, 2012
d73c379
SiteIDHook supports comparisons to int and long.
sfllaw Feb 1, 2012
e1cfa4e
Tests for DynamicSiteMiddleware
sfllaw Apr 17, 2012
77cd208
Tests for SiteIDHook.
sfllaw May 28, 2012
49d6ef2
SiteIDHook() now properly compares with itself and other types.
sfllaw May 28, 2012
b2b63ee
Test case to verify that Site.objects.get_current() still works.
sfllaw May 28, 2012
222b586
SiteIDHook.set() knows about Site models now.
sfllaw May 28, 2012
1fee71c
Make SiteIDHook into a threading.local object.
sfllaw May 28, 2012
3455ed7
Replace SiteIDHook with SiteID: a better name, as it's not really a h…
sfllaw May 28, 2012
7e2259d
str() and repr() support for SiteID.
sfllaw May 28, 2012
866f17e
SiteDomain() allows you to specify a default SiteID based on domain n…
sfllaw May 29, 2012
bd7809a
middleware.py: Use Django's cache framework for DynamicSiteMiddleware…
sfllaw May 29, 2012
ddc9db0
middleware.py: DynamicSiteMiddleware must be case-insensitive for hosts.
sfllaw May 30, 2012
cf9869c
middleware.py: DynamicSiteMiddleware raises TypeError on bad settings…
sfllaw May 30, 2012
9bc0d58
middleware.py: settings.MULTISITE_FALLBACK lets you define a fallback…
sfllaw May 30, 2012
4d24608
models.py: Alias model for domain name aliases of Site.domain
sfllaw Jun 1, 2012
914c914
middleware.py: Rename 'host' to 'netloc', because it may contain the …
sfllaw Jun 1, 2012
259f916
middleware.py: Use Alias model to lookup aliases and wildcards for Si…
sfllaw Jun 1, 2012
6e1b4dc
models.py: Move DynamicSiteMiddleware methods to AliasManager:
sfllaw Jun 1, 2012
56fdb60
AliasManager.resolve() and _expand_netloc() take 'host' and 'port' pa…
sfllaw Jun 1, 2012
1ed04aa
models.py: Add Alias.redirect_to_canonical field.
sfllaw Jun 1, 2012
b46a841
middleware.py: DynamicSiteMiddleware redirects to canonical domain na…
sfllaw Jun 1, 2012
43ff35d
admin.py: PEP8 and PyFlakes
sfllaw Jun 1, 2012
2bfa170
middleware.py: Allow missing Alias when under runserver and settings.…
sfllaw Jun 1, 2012
177a555
models.py: Force post_syncdb signal to fire.
sfllaw Jun 1, 2012
e6076ef
admin.py: AdminAdmin for Alias model and an AliasInline for Sites.
sfllaw Jun 1, 2012
0d7b07f
setup.py: Remove auto-discovery of packages - do it the old-fashioned…
sfllaw Jun 4, 2012
b2ff78b
Convert README.markdown to README.rst: reStructuredText
sfllaw Jun 4, 2012
2a25734
setup.py: Add long_description for PyPi.
sfllaw Jun 4, 2012
92fbf39
threadlocals.py: SiteID.override() is a contextmanager that overrides…
sfllaw Jun 4, 2012
283eb44
hacks.py: Monkeypatch django.contrib.sites to use Django's cache fram…
sfllaw Jun 4, 2012
d12e40d
Caching now uses key prefixes properly.
sfllaw Jun 5, 2012
69a4a27
Update django.contrib.sites.models.SITE_CACHE when Site objects change.
sfllaw Jun 5, 2012
88716a3
managers.py: SpanningCurrentSiteManager replaces PathAssistedCurrentS…
sfllaw Jun 5, 2012
e4481ac
hacks.py: Warn if the SITE_CACHE backend is the wrong type.
sfllaw Jun 5, 2012
38712b2
hacks.py: CACHE_SITES_KEY_PREFIX lookup is now deferred to each opera…
sfllaw Jun 5, 2012
007721c
Version 0.2.
sfllaw Jun 6, 2012
8802769
Added tag version-0.2 for changeset eddc73ee5453
sfllaw Jun 6, 2012
f9ec719
threadlocals.py: Fix incorrect documentation in SiteDomain.__init__
sfllaw Jun 7, 2012
1803065
setup.py: Requires Django >= 1.3
sfllaw Jun 8, 2012
66949de
Fix get_development_alias for Django 1.3.4 and 1.4.2 by adding admins…
Oct 29, 2012
366b4aa
Bump version to 0.2.1
sfllaw Oct 31, 2012
e1b1930
Added tag version-0.2.1 for changeset 444842039a40
sfllaw Oct 31, 2012
d1bfcea
Replace SiteAdmin.form with one that checks if Alias will fail valida…
sfllaw Nov 12, 2012
06218fb
Bump version to 0.2.2
sfllaw Nov 12, 2012
a84ba36
Added tag version-0.2.2 for changeset 0de1201845d8
sfllaw Nov 12, 2012
3932abc
admin.py: Fix typo
sfllaw Nov 12, 2012
8f0851c
Added tag version-0.2.2 for changeset c723f9796de6
sfllaw Nov 12, 2012
4890495
Update to work with Django 1.3.5
sfllaw Dec 12, 2012
4e7fcce
Bump version to 0.2.3
sfllaw Dec 12, 2012
e462961
Added tag version-0.2.3 for changeset be904a3e798c
sfllaw Dec 12, 2012
90ac573
Improve performance of DynamicSiteMiddleware.
sfllaw Feb 26, 2013
d2a2f3e
Bump version to 0.2.4
sfllaw Feb 26, 2013
b2659c3
Added tag version-0.2.4 for changeset b1cedca9137c
sfllaw Feb 26, 2013
6d536bf
Cross-domain cookie support.
sfllaw Mar 27, 2013
1b27afc
Added tag version-0.3.0 for changeset ca16e31171a0
sfllaw Mar 27, 2013
f70fd38
Ship update_public_suffix_list command
sfllaw May 6, 2013
d090a75
Added tag version-0.3.1 for changeset 3fa7a1923f4f
sfllaw May 6, 2013
00e4062
test.py: Skip function-based views tests if using Django 1.5 or above.
Oct 16, 2013
ccddf70
hosts.py: Added ALLOWED_HOSTS lazy iterable object.
Oct 17, 2013
d526076
Added cached template loader.
Mar 3, 2014
10ab5c9
middleware.py: Import md5_constructor from Python starting Django 1.6
Mar 14, 2014
079020b
tests.py: Fix a test that was failing because Site object creation ha…
Mar 14, 2014
35c1a11
setup.py: Added missing packages.
May 26, 2014
62a4a23
setup.py: Bump version to 0.4.0
Aug 1, 2014
f65ce43
Added tag version-0.4.0 for changeset 2da6336d70b0
Aug 1, 2014
97ecd3d
hacks.py: Added get() method to DictCache
Oct 6, 2014
d1e5806
setup.py: Bumped version to 0.4.1
Oct 6, 2014
5a47c2f
Use default key prefix if multisite key prefix is not set
rebkwok Sep 2, 2015
846fb6b
Merge pull request #8 from rebkwok/master
rory-geoghegan-ecometrica Sep 2, 2015
575e659
Update setup and changelog for version 0.5.0
rebkwok Sep 3, 2015
98f51a7
Correct test settings for CACHE_MULTISITE_ALIAS
rebkwok Sep 7, 2015
7441d70
Tests for cache key prefixes
rebkwok Sep 7, 2015
434a9cf
Merge pull request #9 from rebkwok/keyprefix_tests
mghughes Sep 9, 2015
6485995
Update setup and changelog for version 0.5.1
mghughes Sep 9, 2015
93e02b1
rename get_query_set to get_query_set
jordiecometrica Oct 2, 2015
2a36219
Update setup and changelog for version 1.0.0
jordiecometrica Oct 2, 2015
2ec85d7
Merge pull request #10 from jordiecometrica/rename-get-query-set
rory-geoghegan-ecometrica Oct 2, 2015
bf81805
add Django 1.7+ post-South migrations
jordiecometrica Oct 9, 2015
c0a89c6
release 1.1.0
jordiecometrica Oct 9, 2015
0516569
Added tag version-1.1.0 for changeset 1f497c216209
jordiecometrica Oct 9, 2015
b8491e9
Merge pull request #11 from jordiecometrica/master
rory-geoghegan-ecometrica Oct 9, 2015
eaaa24f
Rename variable to clarify context manager's logic
eddiejessup Oct 27, 2015
46a06bc
Cleanup site override even if exception occurs
eddiejessup Oct 27, 2015
049a741
Merge pull request #13 from eddiejessup/master
mghughes Nov 6, 2015
6188e3e
Bump up version to 1.1.1
mghughes Nov 6, 2015
d9c550f
templates: don't error out if template isn't in a particular path
jordiecometrica Nov 16, 2015
b57a470
DynamicSiteMiddleware: error out more gracefully in Django 1.8
jordiecometrica Nov 16, 2015
115b1ee
Merge pull request #16 from jordiecometrica/catch_templates
jordiecometrica Nov 16, 2015
db030e0
Merge pull request #15 from jordiecometrica/better_error
jordiecometrica Nov 16, 2015
110c7e5
Bump up version to 1.1.2
jordiecometrica Nov 16, 2015
7f2f55b
Add Python 3.3 support
avbasov Nov 29, 2015
031b480
Use "six" package instead of "future"
avbasov Dec 2, 2015
2777011
Merge pull request #18 from DemonVex/master
jordiecometrica Dec 2, 2015
5e8d516
Use `cache` instead of `get_cache` for Django >= 1.7
mghughes Dec 4, 2015
e798690
Merge pull request #19 from mghughes/master
mghughes Dec 7, 2015
cf58283
Bump up version to 1.2.0
mghughes Dec 7, 2015
d6956eb
Use python unittest instead of django.utils.unittest
mghughes Dec 9, 2015
4310dad
Replace post_syncdb signal with post_migrate signal
mghughes Dec 9, 2015
ca622b0
Add comment for try..except import
mghughes Dec 9, 2015
ad9ed12
Merge pull request #20 from mghughes/master
mghughes Dec 10, 2015
136fd26
Bump up version to 1.2.1
mghughes Dec 10, 2015
0acb281
Change return type of get_template_sources() in filesystem loader
mghughes Dec 11, 2015
64d1bbf
Use `continue` instead of `pass` when catching non-fatal errors
mghughes Dec 14, 2015
d2d38fb
Change `Origin` import to support django < 1.9
mghughes Dec 17, 2015
3e7fdc5
Merge pull request #21 from mghughes/master
mghughes Dec 17, 2015
9d159f3
Bump up version to 1.2.2
mghughes Dec 17, 2015
7a22876
Fix a 'unique constraint' exception raised during tests
mghughes Dec 17, 2015
94614a2
Merge pull request #22 from mghughes/master
mghughes Jan 5, 2016
c06e0ce
Bump up version to 1.2.3
mghughes Jan 5, 2016
30c96d2
Move validation of domain to save so it is called after the pre_save …
rebkwok Jan 11, 2016
36ceb4a
Remove clean_fields, fix validate_unique on domain so error is not du…
rebkwok Jan 12, 2016
2b1601f
Merge pull request #23 from rebkwok/master
mghughes Jan 13, 2016
930a6da
Bump up version to 1.2.4
mghughes Jan 13, 2016
e752be4
Avoid template loader details for better django version compatibility.
jbazik Feb 1, 2016
d645915
Update documentation.
jordiecometrica Jan 26, 2016
68a3022
Merge pull request #26 from jbazik/fix-loader
mghughes Apr 29, 2016
216552d
Bump up version to 1.2.5
mghughes May 2, 2016
4441043
restrict version of tldextract (#27)
jordiecometrica Jun 13, 2016
0e0b5f5
Bump up version to 1.2.6
jordiecometrica Jun 15, 2016
bb3424a
Fix "error reading TLD cache file" error
Jul 11, 2016
ceb5728
Update minimum tldextract requirement
Jul 11, 2016
4c7b8a5
Merge pull request #28 from mghughes/master
mghughes Jul 11, 2016
ee289f9
remove `fetch` arg for tldextract.TLDExtract
Jul 11, 2016
f68be87
Remove upper limit for tldextract requirement
Jul 11, 2016
32efe3f
Merge pull request #30 from mghughes/master
mghughes Jul 15, 2016
c7a0a16
Bump up version to 1.3.0
Jul 15, 2016
4c029db
Added tag version-1.3.0 for changeset 16618d8dfaa8
Jul 15, 2016
d00da8d
Missing comma
Jul 15, 2016
ebf3333
Added tag version-1.3.0 for changeset efe5daef3c88
Jul 15, 2016
ec24a3b
Update README.rst
jedie Jul 15, 2016
de23687
Replace deprecated ExtractResult().tld with .suffix
rebkwok Jul 19, 2016
2401962
Bugfix: respect CACHE_MULTISITE_ALIAS
jedie Jul 22, 2016
c999a6c
Merge pull request #31 from jedie/patch-1
mghughes Aug 2, 2016
ec568f4
Merge pull request #34 from jedie/patch-2
mghughes Aug 2, 2016
780bf22
Merge pull request #32 from rebkwok/master
mghughes Aug 2, 2016
93e637c
Bump up version to 1.3.1
mghughes Aug 2, 2016
07f45ee
Enable "python setup.py test" by using setuptools over distutils.
Jan 24, 2017
04e742e
Repair and modernize tests to run standalone.
Jan 25, 2017
a370190
Repair under Django 1.6 / python2
Jan 25, 2017
0b8304b
test_versions, to prevent bitrot
Jan 25, 2017
1140076
Repair tests for Django 1.9
Jan 25, 2017
85a263c
Repairs for Django 1.10 on python2.
Jan 25, 2017
113dc87
Insist on absolute imports, since python3 does.
Jan 25, 2017
4939d2d
ValueError -> TypeError, since this line is explicitly checking a type.
Jan 25, 2017
67983fa
Make it very obvious what platform is broken, when it's broken.
Jan 25, 2017
d427776
Python3 fixes.
Jan 25, 2017
f57be9c
Update changelog
Jan 25, 2017
6f3302a
README syntax
Jan 25, 2017
c03ae06
Remove years-dead tests
Jan 25, 2017
b435c13
Create middlewares per-test, to prevent accidental state leakage corr…
Feb 6, 2017
d778950
Scrap these redundant tearDown methods.
Feb 6, 2017
960d756
Test the loading of the extension via MIDDLEWARE/MIDDLEWARE_CLASSES
Feb 6, 2017
bf5b92e
Update documentation to match reality.
Feb 6, 2017
e040172
960d7568eee97b9ba9deb0fc95dc6f9ae2628dbc wasn't quite working.
Feb 6, 2017
f54915e
Repair the caching test.
Feb 6, 2017
084e0a3
Explain why the tests are checking for SiteID == 0
Feb 6, 2017
b78a2a7
Repair tests.
Feb 7, 2017
562da70
These test settings are necessary to make the caching tests work.
Feb 7, 2017
b3206d6
Remove redundant and misleading third-assertEqual() argument
Feb 7, 2017
d15555b
Weakly patch over a setting that broke one of our tests.
Feb 7, 2017
7452c20
Changes for Django 1.10+ compatibility
JordanReiter Jan 23, 2017
4b6e309
Use a special testing prefix for the caches, to avoid breaking prod.
Feb 7, 2017
0788dc5
Run tests with pytest
rebkwok Apr 18, 2017
93410a2
Add explicit __repr__ method and __str__ for python2/3 compatibility
rebkwok Apr 18, 2017
550213c
Return multisite fallback for hosts not in ALLOWED_HOSTS
rebkwok Apr 18, 2017
d1db2c8
Support multiple Python and Django versions; setup tox and travis to …
rebkwok Apr 18, 2017
de7e31a
Remove some workarounds for old django versions <1.7 which are no lon…
rebkwok Apr 18, 2017
960a442
Update README to clarify CACHE_MULTISITE_KEY_PREFIX defaults;
rebkwok Apr 18, 2017
5747fac
Add pip install instruction to README
rebkwok Apr 18, 2017
aa64f16
Test for old template loader setting
rebkwok Apr 19, 2017
9cec9c2
Add coverage and coveralls
rebkwok Apr 19, 2017
b365d8c
Document MULTISTE_EXTRA_HOSTS in README and add tests
rebkwok Apr 19, 2017
b234d66
Remove get_cache
rebkwok Apr 19, 2017
77f103b
Remove Django 1.6 from setup.py
rebkwok Apr 19, 2017
7298c6b
Keep test_settings minimal for integration with other projects
rebkwok Apr 19, 2017
5e92191
Update CookieDomainMiddleware to use new stype Django 1.10+ middleware
rebkwok Apr 25, 2017
56525a8
Merge pull request #45 from rebkwok/master
rebkwok Apr 26, 2017
afa5270
Bump up version to 1.4.0
rebkwok Apr 26, 2017
a04c53f
Add mock to test requirements
Jun 25, 2017
04e6dd1
Remove try for override_settings
Jun 25, 2017
3f3c1b5
Add logging, StringIO, and call_command imports
Jun 25, 2017
8b50002
Move imports to top of file
Jun 25, 2017
625b5c4
Remove deprecated NoArgsCommand
Jun 25, 2017
fe184a1
Add test of management command and tldextract output
Jun 25, 2017
c0e04d5
Add mock to tox requirements
Jun 25, 2017
3d28b61
Limit mock dependency in tox to python 2.7
Jun 26, 2017
6a2a97a
Merge pull request #46 from pauricthelodger/noargs
pauricthelodger Jun 26, 2017
b356f21
Update setup.py to specify Django<2.0
Dec 22, 2017
ed03de3
rel.to removed in Django 2.0
JordanReiter Jan 18, 2018
5fa2486
Instead of ForeignObjectRel.to, use model. Also renamed rel_to to rem…
JordanReiter Jan 18, 2018
2ad523b
Merge pull request #47 from JordanReiter/RelToRemovedInDjango20
rebkwok Apr 19, 2018
7020dcb
Updates to support Django 2.0
Apr 19, 2018
5f47820
Update setup.py and tox to install/test with Django 2.0
Apr 19, 2018
ccdd848
Remove old deprecated PathAssistedCurrentSiteManager
Apr 19, 2018
cabfab9
Remove template.loaders.cached
Apr 19, 2018
70d5b00
Pin pytest-django version for Django 1.7
Apr 19, 2018
8037ec5
Remove code for unsupported Django versions (<1.7)
Apr 19, 2018
3596326
Update .gitignore
Apr 19, 2018
0d496bf
Update README to document development mode
Apr 19, 2018
dda2c3f
Bump to version 1.5.0
Apr 20, 2018
866f69a
Merge pull request #52 from ecometrica/supportDjango2.0
rebkwok Apr 20, 2018
618ba14
Fix typos in README
Apr 20, 2018
0d1e94a
Fix KeyError from _get_site_by_id
Sep 3, 2018
10366f8
Remove unnecessary cache type warnings
Sep 4, 2018
5ceea6d
Remove deprecated SiteIDHook
Sep 4, 2018
ddff3ec
Drop support for Django 1.7, bump version to 1.6.0
Sep 3, 2018
eec65e9
Better patch for _get_site_by_id
Sep 6, 2018
ced3d20
Merge pull request #55 from ecometrica/fix_keyerror
rebkwok Sep 21, 2018
a9106fa
compatibility with dajngo 2.2
Mar 25, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[run]
source=multisite
omit=multisite/tests.py,multisite/migrations/*,multisite/south_migrations/*
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
*.pyc
*.pyo
.cache/
.eggs/
.installed.cfg
bin
develop-eggs
django_multisite.egg-info/
dist
downloads
eggs
parts
MANIFEST
multisite/*.egg-info
.tox/
.pytest_cache/
14 changes: 14 additions & 0 deletions .hgtags
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
eddc73ee54538a88c0a65496f9f70d0f8ff7ad54 version-0.2
444842039a404fe6ffb5124865df2e5ab26e69a3 version-0.2.1
0de1201845d838d910bb2076c849575690e3bed7 version-0.2.2
0de1201845d838d910bb2076c849575690e3bed7 version-0.2.2
c723f9796de60e2651b2d9f3b3688bd65c83df62 version-0.2.2
be904a3e798ce001dc4b5feb0b82602368827906 version-0.2.3
b1cedca9137cb7e4bf49e61205c216d7a0dd610c version-0.2.4
ca16e31171a00aa53a54f2c93d1c31ecd8947e2b version-0.3.0
3fa7a1923f4fad345e32d1616a8f38c31505eb8c version-0.3.1
2da6336d70b099d1b817f72ba7144f15e2b21346 version-0.4.0
1f497c216209683af3bc20bb15bb29ef305f7ca8 version-1.1.0
16618d8dfaa888a2ad5a094d7dcbec6d68152e4e version-1.3.0
16618d8dfaa888a2ad5a094d7dcbec6d68152e4e version-1.3.0
efe5daef3c883dc309e64e6fa1ab88bb69098ab5 version-1.3.0
18 changes: 18 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
sudo: false
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"

install:
- pip install tox-travis
- pip install coverage
- pip install python-coveralls

script:
- tox

after_success:
- coveralls
105 changes: 105 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
=============
Release Notes
=============

1.6.0
-----
* Fix KeyError from _get_site_by_id
* Drop support for Django 1.7
* Remove unnecessary cache type warnings
* Remove deprecated SiteIDHook

1.5.0
-----
* Support Django 2.0 (PR #47 and #60)
* Remove code for Django < 1.7
* Remove obsolete PathAssistedCurrentSiteManager
* Remove obsolete template.loaders.cached
* Update README to better describe local development setup

1.4.1
-----
* Specify Django <2.0 in setup.py
* Drop support for python 3.3

1.4.0
-----
* Support Django 1.10 (PR #38) and 1.11
* Support Python 3
* Remove support for Django <1.7
* Use setuptools over distutils, and integrate the tests with them
* Use pytest and tox for testing
* Set up CI with travis
* Set up coverage and coveralls.io
* Document MULTISITE_EXTRA_HOSTS in README

1.3.1
-----

* Add default for SiteID in the README (PR #31)
* Respect the CACHE_MULTISITE_ALIAS in SiteCache (PR #34)
* Replace deprecated ExtractResult().tld with .suffic (PR #32)

1.3.0
-----

* Fix tempfile issue with update_public_suffix_list command
* Support for tldextract version >= 2.0

1.2.6
----

* Pin the tldextract dependency to version < 2.0, which breaks API.

1.2.5
----

* Make template loading more resilient to changes in django (thanks to jbazik for the contribution)

1.2.4
-----

* Fix domain validation so it's called after the pre_save signal

1.2.3
-----

* Fix a broken test, due to a django uniqueness constraint in 1.9

1.2.2
-----

* Fix for 1.9: change the return type of filesystem template loader's get_template_sources()

1.2.1
-----

* Remove django.utils.unittest (deprecated in 1.9)
* Use post_migrate instead of post_syncdb in > 1.7

1.2.0
-----

* We now support Django 1.9
* Following deprecation in django, all get_cache methods have been replaced caches.

1.1.0
-----

* We now support post-South Django 1.7 native migrations.

1.0.0
-----

* 1.0 release. API stability promised from now on.
* Following the deprecation in Django itself, all get_query_set methods have been renamed to get_queryset. This means Django 1.6 is now the minimum required version.

0.5.1
-----

* Add key prefix tests

0.5.0
-----

* Allow use of cache key prefixes from the CACHES settings if CACHE_MULTISITE_KEY_PREFIX not set
10 changes: 0 additions & 10 deletions INSTALL.txt

This file was deleted.

3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include INSTALL.txt
include README.rst
graft multisite
34 changes: 0 additions & 34 deletions README.markdown

This file was deleted.

Loading