1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
|
django-solo-2.4.0
=================
Date: 19 October, 2024
* Fix similarly named models from different apps having the same cache key
* Drop support for Python 3.8
* Add support for Python 3.13
* Drop support for end of life Django 3.2
* Add support for Django 5.1
* Improve error handling in template tag
django-solo-2.3.0
=================
Date: 1 July, 2024
* Add typing support
* Deprecate `solo.models.get_cache`
* Switch to `pyproject.toml`
* Switch to Ruff for formatting and linting
django-solo-2.2.0
=================
Date: 1 January, 2024
* Add support for Python 3.12
* Drop support for Python 3.7
* Add support for Django 5.0
* Drop support for end of life Django 4.0 and 4.1
django-solo-2.1.0
=================
Date: 25 May, 2023
* Add support for Django 4.1 and 4.2
* Drop support for end of life Django 2.2
* Add support for Python 3.11
* Drop support for end of life Python 3.6
django-solo-2.0.0
=================
Date: 10 December, 2021
* Add support for Django 4.0
* Drop support for end of life Django versions (only 2.2, 3.2, and 4.0 are supported).
* Add GitHub Actions CI and tox
django-solo-1.2.0
=================
Date: 29 September, 2021
* Make the necessary changes to make the library compatible with Django 3.2
* * *
django-solo-1.1.5
=================
Date: 19 December, 2020
* Fix setup long description - for pypi page
* * *
django-solo-1.1.4
=================
Date: 19 December, 2020
* Now using the same README file github and pypi
* Add pypi badge in Readme
* Add a flag to allow not skipping the admin list page
* Set the zip_safe option to False
* refactor clear_cache into a classmethod
* Added Spanish locale.
* Missing import os added
* update change_form for newer versions of Django
* * *
django-solo-1.1.3
=================
Date: 15 January, 2018
* Merge pull request #64 from the-vishal/patch-2
* Merge pull request #59 from hefting/fix-template-context
* Retrieve app_label from opts in template context - Since Django 1.7
* Fixes #57 -- read SOLO_CACHE_PREFIX from main Django settings
* Merge pull request #56 from girogiro/master
* Fixed #54 -- wrong caching of FileField
* Merge pull request #55 from jaimesanz/master
* Fixed RemovedInDjango20Warning deprecation warning
* Merge pull request #50 from m16a1/patch-1
* .delete() actually deletes now (#48)
* Fix #45 add form_url to change_view (#46)
* Added support for configuring the pk value of the singleton instance (#42)
* * *
django-solo-1.1.2
=================
Date: February 7, 2016
* Documentation update - Elaborated on usage of the template tag
* #37: Update custom_urls in admin.py due to deprecation warning
* #39: Deprecation warning in tests - `TEMPLATES` setting
* * *
django-solo-1.1.1
=================
Date: December 9, 2015
* Add apps module with a basic app config class.
* Change the use of get_cache for Django 1.9.
* Fixed warning messages showing up on Django 1.8.
* Remove 'load url from future' tag from template (1.9).
* Change the way `get_model` is imported.
* * *
django-solo-1.1.0
=================
Date: November 2, 2014
* Fixed warning messages showing up on Django 1.7.
* No need to define a plural name anymore - Pull Request #16.
* Fixed some inconsistent variable names.
* Added 'load url from future' so templates work with Django 1.4 - Pull Request #14.
* * *
django-solo-1.0.5
=================
Date: April 27, 2014
* Pull Request #8: Python3 compatibility issue with `force_unicode` import statement.
* * *
django-solo-1.0.4
=================
Date: November 6, 2013
* Issue #4: Django 1.6 compatibility on `url` and `pattern` import path.
* * *
django-solo-1.0.3
=================
Date: September 14, 2013
* Fixed some packaging issues (licence file).
* * *
django-solo-1.0.2
=================
Date: September 14, 2013
* Fixed some packaging issues.
* * *
django-solo-1.0.1
=================
Date: September 14, 2013
* Added unit tests
* Added support for @override_settings
* Updated doc, licence and packaging
* * *
django-solo-1.0.0
=================
Date: July 11, 2013
* Fist release of django-solo.
* * *
|