Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-django-appconf for 
openSUSE:Factory checked in at 2026-01-29 17:46:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-django-appconf (Old)
 and      /work/SRC/openSUSE:Factory/.python-django-appconf.new.1995 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-django-appconf"

Thu Jan 29 17:46:59 2026 rev:25 rq:1329794 version:1.2.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-django-appconf/python-django-appconf.changes  
    2025-06-03 17:53:40.217930991 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-django-appconf.new.1995/python-django-appconf.changes
    2026-01-29 17:49:32.297038548 +0100
@@ -1,0 +2,7 @@
+Thu Jan 22 09:20:15 UTC 2026 - Dirk Müller <[email protected]>
+
+- update to 1.2.0:
+  * Added support for Python 3.14 and Django 6.0
+  * Dropped support for EOL Python 3.19.
+
+-------------------------------------------------------------------

Old:
----
  v1.1.0.tar.gz

New:
----
  v1.2.0.tar.gz

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

Other differences:
------------------
++++++ python-django-appconf.spec ++++++
--- /var/tmp/diff_new_pack.Ahuta3/_old  2026-01-29 17:49:32.921065018 +0100
+++ /var/tmp/diff_new_pack.Ahuta3/_new  2026-01-29 17:49:32.925065188 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-django-appconf
 #
-# Copyright (c) 2025 SUSE LLC
+# Copyright (c) 2026 SUSE LLC and contributors
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %{?sle15_python_module_pythons}
 Name:           python-django-appconf
-Version:        1.1.0
+Version:        1.2.0
 Release:        0
 Summary:        A Helper Class for Handling Configuration Defaults of Packaged 
Apps
 License:        BSD-3-Clause

++++++ v1.1.0.tar.gz -> v1.2.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-appconf-1.1.0/.github/workflows/tests.yml 
new/django-appconf-1.2.0/.github/workflows/tests.yml
--- old/django-appconf-1.1.0/.github/workflows/tests.yml        2025-02-13 
17:07:59.000000000 +0100
+++ new/django-appconf-1.2.0/.github/workflows/tests.yml        2025-11-08 
16:44:22.000000000 +0100
@@ -14,17 +14,17 @@
       fail-fast: false
       matrix:
         python-version:
-        - "3.9"
         - "3.10"
         - "3.11"
         - "3.12"
         - "3.13"
+        - "3.14"
 
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v5
 
       - name: Set up Python ${{ matrix.python-version }}
-        uses: actions/setup-python@v5
+        uses: actions/setup-python@v6
         with:
           python-version: ${{ matrix.python-version }}
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-appconf-1.1.0/appconf/__init__.py 
new/django-appconf-1.2.0/appconf/__init__.py
--- old/django-appconf-1.1.0/appconf/__init__.py        2025-02-13 
17:07:59.000000000 +0100
+++ new/django-appconf-1.2.0/appconf/__init__.py        2025-11-08 
16:44:22.000000000 +0100
@@ -1,3 +1,3 @@
 from .base import AppConf  # noqa
 
-__version__ = "1.1.0"
+__version__ = "1.2.0"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-appconf-1.1.0/docs/changelog.rst 
new/django-appconf-1.2.0/docs/changelog.rst
--- old/django-appconf-1.1.0/docs/changelog.rst 2025-02-13 17:07:59.000000000 
+0100
+++ new/django-appconf-1.2.0/docs/changelog.rst 2025-11-08 16:44:22.000000000 
+0100
@@ -1,6 +1,12 @@
 Changelog
 =========
 
+1.2.0 (2025-11-08)
+------------------
+
+* Added support for Python 3.14 and Django 6.0
+* Dropped support for EOL Python 3.19.
+
 1.1.0 (2025-02-13)
 ------------------
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-appconf-1.1.0/setup.py 
new/django-appconf-1.2.0/setup.py
--- old/django-appconf-1.1.0/setup.py   2025-02-13 17:07:59.000000000 +0100
+++ new/django-appconf-1.2.0/setup.py   2025-11-08 16:44:22.000000000 +0100
@@ -38,15 +38,16 @@
         'Framework :: Django :: 4.2',
         'Framework :: Django :: 5.1',
         'Framework :: Django :: 5.2',
+        'Framework :: Django :: 6.0',
         'Intended Audience :: Developers',
         'License :: OSI Approved :: BSD License',
         'Operating System :: OS Independent',
         'Programming Language :: Python :: 3',
-        'Programming Language :: Python :: 3.9',
         'Programming Language :: Python :: 3.10',
         'Programming Language :: Python :: 3.11',
         'Programming Language :: Python :: 3.12',
         'Programming Language :: Python :: 3.13',
+        'Programming Language :: Python :: 3.14',
         'Programming Language :: Python :: 3 :: Only',
         'Topic :: Utilities',
     ],
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-appconf-1.1.0/tox.ini 
new/django-appconf-1.2.0/tox.ini
--- old/django-appconf-1.1.0/tox.ini    2025-02-13 17:07:59.000000000 +0100
+++ new/django-appconf-1.2.0/tox.ini    2025-11-08 16:44:22.000000000 +0100
@@ -1,8 +1,9 @@
 [tox]
 envlist =
     flake8-py313,
-    py{39,310,311,312}-dj42
+    py{310,311,312}-dj42
     py{310,311,312,313}-dj{51,52}
+    py{312,313,314}-dj60
     py{312,313}-djmain
 
 [testenv]
@@ -11,11 +12,12 @@
     PYTHONPATH = {toxinidir}
     DJANGO_SETTINGS_MODULE=tests.test_settings
 deps =
-    py{39,310,311,312,313}: coverage
+    py{310,311,312,313,314}: coverage
     django-discover-runner
     dj42: Django>=4.2,<4.3
     dj51: Django>=5.1,<5.2
-    dj52: Django>=5.2a1,<5.3
+    dj52: Django>=5.2,<6.0
+    dj60: Django>=6.0b1,<6.1
     djmain: https://github.com/django/django/archive/main.tar.gz#egg=django
 
 commands =

Reply via email to