Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-json-rpc for openSUSE:Factory checked in at 2023-12-08 22:32:03 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-json-rpc (Old) and /work/SRC/openSUSE:Factory/.python-json-rpc.new.25432 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-json-rpc" Fri Dec 8 22:32:03 2023 rev:7 rq:1131726 version:1.15.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-json-rpc/python-json-rpc.changes 2023-01-07 17:23:16.311429352 +0100 +++ /work/SRC/openSUSE:Factory/.python-json-rpc.new.25432/python-json-rpc.changes 2023-12-08 22:32:24.592786803 +0100 @@ -1,0 +2,6 @@ +Thu Dec 7 22:28:27 UTC 2023 - Dirk Müller <dmuel...@suse.com> + +- update to 1.15.0: + * ADD: support for Django>=4.0 url template + +------------------------------------------------------------------- Old: ---- json-rpc-1.14.0.tar.gz New: ---- json-rpc-1.15.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-json-rpc.spec ++++++ --- /var/tmp/diff_new_pack.BgJUFL/_old 2023-12-08 22:32:26.028839643 +0100 +++ /var/tmp/diff_new_pack.BgJUFL/_new 2023-12-08 22:32:26.028839643 +0100 @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-json-rpc -Version: 1.14.0 +Version: 1.15.0 Release: 0 Summary: JSON-RPC transport implementation License: MIT ++++++ json-rpc-1.14.0.tar.gz -> json-rpc-1.15.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/json-rpc-1.14.0/PKG-INFO new/json-rpc-1.15.0/PKG-INFO --- old/json-rpc-1.14.0/PKG-INFO 2022-12-23 08:52:39.331370800 +0100 +++ new/json-rpc-1.15.0/PKG-INFO 2023-06-11 11:39:31.217675400 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: json-rpc -Version: 1.14.0 +Version: 1.15.0 Summary: JSON-RPC transport implementation Home-page: https://github.com/pavlov99/json-rpc Author: Kirill Pavlov diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/json-rpc-1.14.0/json_rpc.egg-info/PKG-INFO new/json-rpc-1.15.0/json_rpc.egg-info/PKG-INFO --- old/json-rpc-1.14.0/json_rpc.egg-info/PKG-INFO 2022-12-23 08:52:39.000000000 +0100 +++ new/json-rpc-1.15.0/json_rpc.egg-info/PKG-INFO 2023-06-11 11:39:31.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: json-rpc -Version: 1.14.0 +Version: 1.15.0 Summary: JSON-RPC transport implementation Home-page: https://github.com/pavlov99/json-rpc Author: Kirill Pavlov diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/json-rpc-1.14.0/jsonrpc/__init__.py new/json-rpc-1.15.0/jsonrpc/__init__.py --- old/json-rpc-1.14.0/jsonrpc/__init__.py 2022-12-23 08:43:33.000000000 +0100 +++ new/json-rpc-1.15.0/jsonrpc/__init__.py 2023-06-11 11:29:10.000000000 +0200 @@ -1,7 +1,7 @@ from .manager import JSONRPCResponseManager from .dispatcher import Dispatcher -__version = (1, 14, 0) +__version = (1, 15, 0) __version__ = version = '.'.join(map(str, __version)) __project__ = PROJECT = __name__ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/json-rpc-1.14.0/jsonrpc/backend/django.py new/json-rpc-1.15.0/jsonrpc/backend/django.py --- old/json-rpc-1.14.0/jsonrpc/backend/django.py 2022-12-23 07:59:25.000000000 +0100 +++ new/json-rpc-1.15.0/jsonrpc/backend/django.py 2023-06-11 11:25:01.000000000 +0200 @@ -1,7 +1,12 @@ from __future__ import absolute_import from django.views.decorators.csrf import csrf_exempt -from django.conf.urls import url + +try: + from django.conf.urls import url # Django <4.0 +except ImportError: + from django.urls import re_path as url # Django >=4.0 + from django.conf import settings from django.http import HttpResponse, HttpResponseNotAllowed import json diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/json-rpc-1.14.0/jsonrpc/manager.py new/json-rpc-1.15.0/jsonrpc/manager.py --- old/json-rpc-1.14.0/jsonrpc/manager.py 2022-12-23 08:21:07.000000000 +0100 +++ new/json-rpc-1.15.0/jsonrpc/manager.py 2023-06-11 11:24:49.000000000 +0200 @@ -32,7 +32,7 @@ :param str request_str: json string. Will be converted into JSONRPC20Request, JSONRPC20BatchRequest or JSONRPC10Request - :param dict dispather: dict<function_name:function>. + :param dict dispatcher: dict<function_name:function>. """