Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-django-request for 
openSUSE:Factory checked in at 2023-07-12 17:27:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-django-request (Old)
 and      /work/SRC/openSUSE:Factory/.python-django-request.new.8922 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-django-request"

Wed Jul 12 17:27:26 2023 rev:5 rq:1098212 version:1.6.3

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-django-request/python-django-request.changes  
    2023-01-28 19:01:10.372004529 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-django-request.new.8922/python-django-request.changes
    2023-07-12 17:27:52.506720348 +0200
@@ -1,0 +2,7 @@
+Tue Jul 11 14:19:18 UTC 2023 - Dirk Müller <dmuel...@suse.com>
+
+- update to 1.6.3:
+  * Confirms support for Django 4.2.
+  * Adds a missing migration with HTTP status codes.
+
+-------------------------------------------------------------------

Old:
----
  django-request-1.6.2.tar.gz

New:
----
  django-request-1.6.3.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-django-request.spec ++++++
--- /var/tmp/diff_new_pack.xVz0bq/_old  2023-07-12 17:27:53.174724972 +0200
+++ /var/tmp/diff_new_pack.xVz0bq/_new  2023-07-12 17:27:53.178724999 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python3-%{**}}
 Name:           python-django-request
-Version:        1.6.2
+Version:        1.6.3
 Release:        0
 Summary:        Django statistics app
 License:        BSD-2-Clause

++++++ django-request-1.6.2.tar.gz -> django-request-1.6.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-request-1.6.2/CHANGELOG.md 
new/django-request-1.6.3/CHANGELOG.md
--- old/django-request-1.6.2/CHANGELOG.md       2023-01-10 17:08:34.000000000 
+0100
+++ new/django-request-1.6.3/CHANGELOG.md       2023-07-02 15:49:03.000000000 
+0200
@@ -1,5 +1,15 @@
 # Changelog for django-request
 
+## 1.6.3
+
+### Enhancements
+
+* Confirms support for Django 4.2.
+
+### Bug Fixes
+
+* Adds a missing migration with HTTP status codes.
+
 ## 1.6.2
 
 ### Enhancements
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-request-1.6.2/README.rst 
new/django-request-1.6.3/README.rst
--- old/django-request-1.6.2/README.rst 2023-01-10 17:08:34.000000000 +0100
+++ new/django-request-1.6.3/README.rst 2023-07-02 15:49:03.000000000 +0200
@@ -33,7 +33,7 @@
 ------------
 
 * **Python**: 3.6, 3.7, 3.8, 3.9, 3.10, 3.11
-* **Django**: 2.2, 3.2, 4.0, 4.1
+* **Django**: 2.2, 3.2, 4.0, 4.1, 4.2
 * **python-dateutil**
 
 django-request 1.5.1_ is the last version that supports Django 1.4, 1.5, 1.6.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-request-1.6.2/request/__init__.py 
new/django-request-1.6.3/request/__init__.py
--- old/django-request-1.6.2/request/__init__.py        2023-01-10 
17:08:34.000000000 +0100
+++ new/django-request-1.6.3/request/__init__.py        2023-07-02 
15:49:03.000000000 +0200
@@ -1,4 +1,4 @@
-__version__ = '1.6.2'
+__version__ = '1.6.3'
 __copyright__ = 'Copyright (c) 2009-2023, Kyle Fuller, Mariusz Felisiak'
 __author__ = [
     'Kyle Fuller <k...@fuller.li>',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/django-request-1.6.2/request/migrations/0008_alter_request_response_choices.py
 
new/django-request-1.6.3/request/migrations/0008_alter_request_response_choices.py
--- 
old/django-request-1.6.2/request/migrations/0008_alter_request_response_choices.py
  1970-01-01 01:00:00.000000000 +0100
+++ 
new/django-request-1.6.3/request/migrations/0008_alter_request_response_choices.py
  2023-07-02 15:49:03.000000000 +0200
@@ -0,0 +1,16 @@
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('request', '0007_alter_request_is_ajax'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='request',
+            name='response',
+            field=models.SmallIntegerField(choices=[(100, 'Continue'), (101, 
'Switching Protocols'), (102, 'Processing (WebDAV)'), (103, 'Early Hints'), 
(200, 'OK'), (201, 'Created'), (202, 'Accepted'), (203, 'Non-Authoritative 
Information'), (204, 'No Content'), (205, 'Reset Content'), (206, 'Partial 
Content'), (207, 'Multi-Status (WebDAV)'), (208, 'Already Reported (WebDAV)'), 
(226, 'IM Used (HTTP Delta encoding)'), (300, 'Multiple Choices'), (301, 'Moved 
Permanently'), (302, 'Found'), (303, 'See Other'), (304, 'Not Modified'), (305, 
'Use Proxy'), (306, 'Switch Proxy'), (307, 'Temporary Redirect'), (308, 
'Permanent Redirect'), (400, 'Bad Request'), (401, 'Unauthorized'), (402, 
'Payment Required'), (403, 'Forbidden'), (404, 'Not Found'), (405, 'Method Not 
Allowed'), (406, 'Not Acceptable'), (407, 'Proxy Authentication Required'), 
(408, 'Request Timeout'), (409, 'Conflict'), (410, 'Gone'), (411, 'Length 
Required'), (412, 'Precondition Failed'), (413, 'Request Entity Too Large'), (41
 4, 'Request-URI Too Long'), (415, 'Unsupported Media Type'), (416, 'Requested 
Range Not Satisfiable'), (417, 'Expectation Failed'), (418, "I'm a teapot"), 
(422, 'Unprocessable Entity (WebDAV)'), (423, 'Locked (WebDAV)'), (424, 'Failed 
Dependency (WebDAV)'), (425, 'Unordered Collection'), (426, 'Upgrade 
Required'), (428, 'Precondition Required'), (429, 'Too Many Requests'), (431, 
'Request Header Fields Too Large'), (449, 'Retry With'), (451, 'Unavailable For 
Legal Reasons'), (500, 'Internal Server Error'), (501, 'Not Implemented'), 
(502, 'Bad Gateway'), (503, 'Service Unavailable'), (504, 'Gateway Timeout'), 
(505, 'HTTP Version Not Supported'), (506, 'Variant Also Negotiates'), (507, 
'Insufficient Storage (WebDAV)'), (509, 'Bandwidth Limit Exceeded'), (510, 'Not 
Extended'), (511, 'Network Authentication Required')], default=200, 
verbose_name='response'),
+        ),
+    ]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-request-1.6.2/setup.cfg 
new/django-request-1.6.3/setup.cfg
--- old/django-request-1.6.2/setup.cfg  2023-01-10 17:08:34.000000000 +0100
+++ new/django-request-1.6.3/setup.cfg  2023-07-02 15:49:03.000000000 +0200
@@ -1,6 +1,6 @@
 [metadata]
 name = django-request
-version = 1.6.2
+version = 1.6.3
 url = https://django-request.readthedocs.io/en/latest/
 download_url = https://pypi.org/project/django-request/
 author = Kyle Fuller
@@ -20,6 +20,7 @@
     Framework :: Django :: 3.2
     Framework :: Django :: 4.0
     Framework :: Django :: 4.1
+    Framework :: Django :: 4.2
     Intended Audience :: Developers
     License :: OSI Approved :: BSD License
     Operating System :: OS Independent
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-request-1.6.2/tox.ini 
new/django-request-1.6.3/tox.ini
--- old/django-request-1.6.2/tox.ini    2023-01-10 17:08:34.000000000 +0100
+++ new/django-request-1.6.3/tox.ini    2023-07-02 15:49:03.000000000 +0200
@@ -3,7 +3,9 @@
     {py36,py37,py38,py39}-django22-test
     {py36,py37,py38,py39,py310}-django32-test
     {py38,py39,py310}-django40-test
-    {py38,py39,py310,py311}-django{main,41}-test
+    {py38,py39,py310,py311}-django41-test
+    {py38,py39,py310,py311}-django42-test
+    {py310,py311}-djangomain-test
     isort
     flake
 
@@ -23,6 +25,7 @@
     django32: Django>=3.2,<4.0
     django40: Django>=4.0,<4.1
     django41: Django>=4.1,<4.2
+    django42: Django>=4.2b1,<5.0
     djangomain: https://github.com/django/django/archive/main.tar.gz
 
 [testenv:isort]

Reply via email to