Hello community,
here is the log from the commit of package python-django-cors-headers for
openSUSE:Factory checked in at 2019-05-06 21:17:20
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-django-cors-headers (Old)
and /work/SRC/openSUSE:Factory/.python-django-cors-headers.new.5148 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-django-cors-headers"
Mon May 6 21:17:20 2019 rev:2 rq:701061 version:2.5.3
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-django-cors-headers/python-django-cors-headers.changes
2019-03-26 22:31:02.877725686 +0100
+++
/work/SRC/openSUSE:Factory/.python-django-cors-headers.new.5148/python-django-cors-headers.changes
2019-05-06 21:17:23.089093560 +0200
@@ -1,0 +2,7 @@
+Mon May 6 11:33:53 UTC 2019 - Tomáš Chvátal <[email protected]>
+
+- Update to 2.5.3:
+ * Tested on Django 2.2. No changes were needed for compatibility.
+ * Tested on Python 3.7. No changes were needed for compatibility.
+
+-------------------------------------------------------------------
Old:
----
django-cors-headers-2.5.2.tar.gz
New:
----
django-cors-headers-2.5.3.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-django-cors-headers.spec ++++++
--- /var/tmp/diff_new_pack.ZDJhAA/_old 2019-05-06 21:17:23.541094735 +0200
+++ /var/tmp/diff_new_pack.ZDJhAA/_new 2019-05-06 21:17:23.541094735 +0200
@@ -15,9 +15,10 @@
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
+
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-django-cors-headers
-Version: 2.5.2
+Version: 2.5.3
Release: 0
Summary: A Django App that adds CORS headers to responses
License: MIT
@@ -25,8 +26,8 @@
URL: https://github.com/ottoyiu/django-cors-headers
Source:
https://files.pythonhosted.org/packages/source/d/django-cors-headers/django-cors-headers-%{version}.tar.gz
BuildRequires: %{python_module Django}
-BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module pytest-django}
+BuildRequires: %{python_module setuptools}
# Test config requires 100% test coverage
BuildRequires: %{python_module pytest-cov}
BuildRequires: fdupes
++++++ django-cors-headers-2.5.2.tar.gz -> django-cors-headers-2.5.3.tar.gz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-cors-headers-2.5.2/HISTORY.rst
new/django-cors-headers-2.5.3/HISTORY.rst
--- old/django-cors-headers-2.5.2/HISTORY.rst 2019-03-15 17:42:27.000000000
+0100
+++ new/django-cors-headers-2.5.3/HISTORY.rst 2019-04-28 21:03:13.000000000
+0200
@@ -6,6 +6,12 @@
.. Insert new release notes below this line
+2.5.3 (2019-04-28)
+------------------
+
+* Tested on Django 2.2. No changes were needed for compatibility.
+* Tested on Python 3.7. No changes were needed for compatibility.
+
2.5.2 (2019-03-15)
------------------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-cors-headers-2.5.2/PKG-INFO
new/django-cors-headers-2.5.3/PKG-INFO
--- old/django-cors-headers-2.5.2/PKG-INFO 2019-03-15 17:42:50.000000000
+0100
+++ new/django-cors-headers-2.5.3/PKG-INFO 2019-04-28 21:03:29.000000000
+0200
@@ -1,6 +1,6 @@
Metadata-Version: 1.2
Name: django-cors-headers
-Version: 2.5.2
+Version: 2.5.3
Summary: django-cors-headers is a Django application for handling the server
headers required for Cross-Origin Resource Sharing (CORS).
Home-page: https://github.com/ottoyiu/django-cors-headers
Author: Otto Yiu
@@ -26,8 +26,8 @@
Tested with all combinations of:
- * Python: 2.7, 3.6
- * Django: 1.11, 2.0, 2.1
+ * Python: 2.7, 3.5, 3.6, 3.7
+ * Django: 1.11, 2.0, 2.1, 2.2
Setup
-----
@@ -239,6 +239,12 @@
If ``True``, cookies will be allowed to be included in cross-site HTTP
requests. Defaults to ``False``.
+ Note: in Django 2.1 the `SESSION_COOKIE_SAMESITE`_ setting was added,
set to
+ ``'Lax'`` by default, which will prevent Django's session cookie being
sent
+ cross-domain. Change it to ``None`` to bypass this security
restriction.
+
+ .. _SESSION_COOKIE_SAMESITE:
https://docs.djangoproject.com/en/2.1/ref/settings/#std:setting-SESSION_COOKIE_SAMESITE
+
``CORS_MODEL``
~~~~~~~~~~~~~~
@@ -377,6 +383,12 @@
.. Insert new release notes below this line
+ 2.5.3 (2019-04-28)
+ ------------------
+
+ * Tested on Django 2.2. No changes were needed for compatibility.
+ * Tested on Python 3.7. No changes were needed for compatibility.
+
2.5.2 (2019-03-15)
------------------
@@ -584,6 +596,7 @@
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 2.1
+Classifier: Framework :: Django :: 2.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
@@ -593,6 +606,7 @@
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
+Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries :: Application
Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-cors-headers-2.5.2/README.rst
new/django-cors-headers-2.5.3/README.rst
--- old/django-cors-headers-2.5.2/README.rst 2019-03-15 17:25:10.000000000
+0100
+++ new/django-cors-headers-2.5.3/README.rst 2019-04-28 20:15:27.000000000
+0200
@@ -18,8 +18,8 @@
Tested with all combinations of:
-* Python: 2.7, 3.6
-* Django: 1.11, 2.0, 2.1
+* Python: 2.7, 3.5, 3.6, 3.7
+* Django: 1.11, 2.0, 2.1, 2.2
Setup
-----
@@ -231,6 +231,12 @@
If ``True``, cookies will be allowed to be included in cross-site HTTP
requests. Defaults to ``False``.
+Note: in Django 2.1 the `SESSION_COOKIE_SAMESITE`_ setting was added, set to
+``'Lax'`` by default, which will prevent Django's session cookie being sent
+cross-domain. Change it to ``None`` to bypass this security restriction.
+
+.. _SESSION_COOKIE_SAMESITE:
https://docs.djangoproject.com/en/2.1/ref/settings/#std:setting-SESSION_COOKIE_SAMESITE
+
``CORS_MODEL``
~~~~~~~~~~~~~~
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-cors-headers-2.5.2/corsheaders/__init__.py
new/django-cors-headers-2.5.3/corsheaders/__init__.py
--- old/django-cors-headers-2.5.2/corsheaders/__init__.py 2019-03-15
17:42:30.000000000 +0100
+++ new/django-cors-headers-2.5.3/corsheaders/__init__.py 2019-04-28
21:02:41.000000000 +0200
@@ -1,3 +1,3 @@
from .checks import check_settings # noqa: F401
-__version__ = '2.5.2'
+__version__ = '2.5.3'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/django-cors-headers-2.5.2/django_cors_headers.egg-info/PKG-INFO
new/django-cors-headers-2.5.3/django_cors_headers.egg-info/PKG-INFO
--- old/django-cors-headers-2.5.2/django_cors_headers.egg-info/PKG-INFO
2019-03-15 17:42:50.000000000 +0100
+++ new/django-cors-headers-2.5.3/django_cors_headers.egg-info/PKG-INFO
2019-04-28 21:03:28.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 1.2
Name: django-cors-headers
-Version: 2.5.2
+Version: 2.5.3
Summary: django-cors-headers is a Django application for handling the server
headers required for Cross-Origin Resource Sharing (CORS).
Home-page: https://github.com/ottoyiu/django-cors-headers
Author: Otto Yiu
@@ -26,8 +26,8 @@
Tested with all combinations of:
- * Python: 2.7, 3.6
- * Django: 1.11, 2.0, 2.1
+ * Python: 2.7, 3.5, 3.6, 3.7
+ * Django: 1.11, 2.0, 2.1, 2.2
Setup
-----
@@ -239,6 +239,12 @@
If ``True``, cookies will be allowed to be included in cross-site HTTP
requests. Defaults to ``False``.
+ Note: in Django 2.1 the `SESSION_COOKIE_SAMESITE`_ setting was added,
set to
+ ``'Lax'`` by default, which will prevent Django's session cookie being
sent
+ cross-domain. Change it to ``None`` to bypass this security
restriction.
+
+ .. _SESSION_COOKIE_SAMESITE:
https://docs.djangoproject.com/en/2.1/ref/settings/#std:setting-SESSION_COOKIE_SAMESITE
+
``CORS_MODEL``
~~~~~~~~~~~~~~
@@ -377,6 +383,12 @@
.. Insert new release notes below this line
+ 2.5.3 (2019-04-28)
+ ------------------
+
+ * Tested on Django 2.2. No changes were needed for compatibility.
+ * Tested on Python 3.7. No changes were needed for compatibility.
+
2.5.2 (2019-03-15)
------------------
@@ -584,6 +596,7 @@
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 2.1
+Classifier: Framework :: Django :: 2.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
@@ -593,6 +606,7 @@
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
+Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries :: Application
Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-cors-headers-2.5.2/requirements.txt
new/django-cors-headers-2.5.3/requirements.txt
--- old/django-cors-headers-2.5.2/requirements.txt 2019-03-14
10:53:13.000000000 +0100
+++ new/django-cors-headers-2.5.3/requirements.txt 2019-04-28
20:14:35.000000000 +0200
@@ -2,31 +2,36 @@
# This file is autogenerated by pip-compile
# To update, run:
#
-# pip-compile --output-file requirements.txt requirements.in
+# __main__.py compile -r -U
#
-atomicwrites==1.2.1 # via pytest
-attrs==18.2.0 # via pytest
-configparser==3.7.1 # via flake8
-coverage==4.5.2 # via pytest-cov
+atomicwrites==1.3.0 # via pytest
+attrs==19.1.0 # via pytest
+backports.functools-lru-cache==1.5 ; python_version < '3.0' # via isort
+configparser==3.7.4 # via entrypoints, flake8
+coverage==4.5.3 # via pytest-cov
docutils==0.14
+entrypoints==0.3 # via flake8
enum34==1.1.6 # via flake8
-flake8==3.6.0
+flake8==3.7.7
funcsigs==1.0.2 # via pytest
+functools32==3.2.3.post2 ; python_version < '3.0' # via flake8
futures==3.1.1
-isort==4.3.4
+isort==4.3.17
mccabe==0.6.1 # via flake8
-modernize==0.6.1
+modernize==0.7
more-itertools==5.0.0 # via pytest
multilint==2.4.0
pathlib2==2.3.3 # via pytest, pytest-django
-pluggy==0.8.1 # via pytest
-py==1.7.0 # via pytest
-pycodestyle==2.4.0 # via flake8
-pyflakes==2.0.0 # via flake8
+pluggy==0.9.0 # via pytest
+py==1.8.0 # via pytest
+pycodestyle==2.5.0 # via flake8
+pyflakes==2.1.1 # via flake8
pygments==2.3.1
pytest-cov==2.6.1
-pytest-django==3.4.5
-pytest==4.1.1
-pytz==2018.9
-scandir==1.9.0 # via pathlib2
+pytest-django==3.4.8
+pytest==4.4.1
+pytz==2019.1
+scandir==1.10.0 # via pathlib2
six==1.12.0 # via more-itertools, multilint, pathlib2, pytest
+sqlparse==0.3.0
+typing==3.6.6 # via flake8
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-cors-headers-2.5.2/setup.py
new/django-cors-headers-2.5.3/setup.py
--- old/django-cors-headers-2.5.2/setup.py 2019-03-14 10:53:13.000000000
+0100
+++ new/django-cors-headers-2.5.3/setup.py 2019-04-28 20:15:56.000000000
+0200
@@ -46,6 +46,7 @@
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
+ 'Framework :: Django :: 2.2',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
@@ -55,6 +56,7 @@
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
+ 'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-cors-headers-2.5.2/tox.ini
new/django-cors-headers-2.5.3/tox.ini
--- old/django-cors-headers-2.5.2/tox.ini 2019-03-14 10:53:13.000000000
+0100
+++ new/django-cors-headers-2.5.3/tox.ini 2019-04-28 19:03:00.000000000
+0200
@@ -1,7 +1,7 @@
[tox]
envlist =
py{27,3}-django{111},
- py3-django{20,21},
+ py3-django{20,21,22},
py{27,3}-codestyle
[testenv]
@@ -13,6 +13,7 @@
django111: Django>=1.11,<2.0
django20: Django>=2.0,<2.1
django21: Django>=2.1,<2.2
+ django22: Django>=2.2,<2.3
commands = ./runtests.py {posargs}
[testenv:py27-codestyle]