Update to version 1.3.0
This commit is contained in:
parent
fa7789d226
commit
8ca36f6b7a
3 changed files with 31 additions and 3 deletions
|
@ -6,6 +6,34 @@ All notable changes to this project will be documented in this file.
|
||||||
.. contents:: Table of Contents
|
.. contents:: Table of Contents
|
||||||
:depth: 2
|
:depth: 2
|
||||||
|
|
||||||
|
v1.3.0 - 2021-06-19
|
||||||
|
===================
|
||||||
|
|
||||||
|
Added
|
||||||
|
-----
|
||||||
|
|
||||||
|
* Support for Dango 3.1 and 3.2
|
||||||
|
* Implement CAS_LDAP_ATTRS_VIEW set to 0: then using ldap bind mode, user
|
||||||
|
attributes can be retreive either using CAS_LDAP_USER or using the
|
||||||
|
binded user credentials.
|
||||||
|
* Added ppc64le architecture support on travis-ci (django-cas-server is
|
||||||
|
included in the ppc64le versions of RHEL and Ubuntu)
|
||||||
|
* Python 3.9 support
|
||||||
|
|
||||||
|
Fixes
|
||||||
|
-----
|
||||||
|
|
||||||
|
* Allow to use user attributes if auth by ldap bind
|
||||||
|
* Fix spelling mistakes in french translation
|
||||||
|
* Fix bug model datefield Form (Federated User Admin)
|
||||||
|
* django.conf.urls is deprecated and will be removed in Django 4.0.
|
||||||
|
Use django.urls.re_path instead
|
||||||
|
|
||||||
|
Removed
|
||||||
|
-------
|
||||||
|
|
||||||
|
* Drop support for Django 3.0 as it reached end of life.
|
||||||
|
|
||||||
v1.2.0 - 2020-07-05
|
v1.2.0 - 2020-07-05
|
||||||
===================
|
===================
|
||||||
|
|
||||||
|
|
|
@ -644,8 +644,8 @@ You could for example do as below::
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.. |travis| image:: https://badges.genua.fr/travis/nitmir/django-cas-server/master.svg
|
.. |travis| image:: https://badges.genua.fr/travis/com/nitmir/django-cas-server/master.svg
|
||||||
:target: https://travis-ci.org/nitmir/django-cas-server
|
:target: https://travis-ci.com/nitmir/django-cas-server
|
||||||
|
|
||||||
.. |pypi_version| image:: https://badges.genua.fr/pypi/v/django-cas-server.svg
|
.. |pypi_version| image:: https://badges.genua.fr/pypi/v/django-cas-server.svg
|
||||||
:target: https://pypi.org/project/django-cas-server/
|
:target: https://pypi.org/project/django-cas-server/
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"""A django CAS server application"""
|
"""A django CAS server application"""
|
||||||
|
|
||||||
#: version of the application
|
#: version of the application
|
||||||
VERSION = '1.2.0'
|
VERSION = '1.3.0'
|
||||||
|
|
||||||
#: path the the application configuration class
|
#: path the the application configuration class
|
||||||
default_app_config = 'cas_server.apps.CasAppConfig'
|
default_app_config = 'cas_server.apps.CasAppConfig'
|
||||||
|
|
Loading…
Reference in a new issue