Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-cloudflare for
openSUSE:Factory checked in at 2023-12-18 22:56:33
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-cloudflare (Old)
and /work/SRC/openSUSE:Factory/.python-cloudflare.new.9037 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-cloudflare"
Mon Dec 18 22:56:33 2023 rev:15 rq:1133820 version:2.14.3
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-cloudflare/python-cloudflare.changes
2023-11-30 22:01:27.417359734 +0100
+++
/work/SRC/openSUSE:Factory/.python-cloudflare.new.9037/python-cloudflare.changes
2023-12-18 22:56:38.721154881 +0100
@@ -1,0 +2,7 @@
+Mon Dec 18 09:29:38 UTC 2023 - Dirk Müller <[email protected]>
+
+- update to 2.14.3:
+ * /live added - but does not response yet
+ * handle {account-identifier} with a dash vs underscore.
+
+-------------------------------------------------------------------
Old:
----
cloudflare-2.14.2.tar.gz
New:
----
cloudflare-2.14.3.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-cloudflare.spec ++++++
--- /var/tmp/diff_new_pack.xowJrw/_old 2023-12-18 22:56:39.901198097 +0100
+++ /var/tmp/diff_new_pack.xowJrw/_new 2023-12-18 22:56:39.901198097 +0100
@@ -18,7 +18,7 @@
%{?sle15_python_module_pythons}
Name: python-cloudflare
-Version: 2.14.2
+Version: 2.14.3
Release: 0
Summary: Python wrapper for the Cloudflare v4 API
License: MIT
++++++ cloudflare-2.14.2.tar.gz -> cloudflare-2.14.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/cloudflare-2.14.2/CloudFlare/__init__.py
new/cloudflare-2.14.3/CloudFlare/__init__.py
--- old/cloudflare-2.14.2/CloudFlare/__init__.py 2023-11-26
05:05:05.000000000 +0100
+++ new/cloudflare-2.14.3/CloudFlare/__init__.py 2023-12-13
14:59:14.000000000 +0100
@@ -1,6 +1,6 @@
""" Cloudflare v4 API"""
-__version__ = '2.14.2'
+__version__ = '2.14.3'
from .cloudflare import CloudFlare
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/cloudflare-2.14.2/CloudFlare/api_decode_from_openapi.py
new/cloudflare-2.14.3/CloudFlare/api_decode_from_openapi.py
--- old/cloudflare-2.14.2/CloudFlare/api_decode_from_openapi.py 2023-09-21
18:52:22.000000000 +0200
+++ new/cloudflare-2.14.3/CloudFlare/api_decode_from_openapi.py 2023-12-13
14:50:31.000000000 +0100
@@ -7,7 +7,7 @@
API_TYPES = ['GET', 'POST', 'PATCH', 'PUT', 'DELETE']
-match_identifier = re.compile(r'\{[A-Za-z0-9_]*\}')
+match_identifier = re.compile(r'\{[A-Za-z0-9_\-]*\}')
def do_path(cmd, values):
""" do_path() """
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/cloudflare-2.14.2/CloudFlare/api_v4.py
new/cloudflare-2.14.3/CloudFlare/api_v4.py
--- old/cloudflare-2.14.2/CloudFlare/api_v4.py 2023-11-25 19:04:44.000000000
+0100
+++ new/cloudflare-2.14.3/CloudFlare/api_v4.py 2023-12-13 14:47:45.000000000
+0100
@@ -48,6 +48,9 @@
# The API commands for /ips/
ips(self)
+ # The API commands for /live/
+ live(self)
+
# The API commands for /accounts/
accounts(self)
accounts_access(self)
@@ -269,6 +272,11 @@
self.add('OPEN', 'ips')
+def live(self):
+ """ live """
+
+ self.add('AUTH', 'live')
+
def zones_argo(self):
""" zones argo """
@@ -659,6 +667,7 @@
self.add('VOID', 'accounts', 'ai')
self.add('AUTH', 'accounts', 'ai/run')
+ self.add('AUTH', 'accounts', 'ai/run/proxy')
self.add('VOID', 'accounts', 'alerting')
self.add('VOID', 'accounts', 'alerting/v3')
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/cloudflare-2.14.2/PKG-INFO
new/cloudflare-2.14.3/PKG-INFO
--- old/cloudflare-2.14.2/PKG-INFO 2023-11-26 05:05:51.078833000 +0100
+++ new/cloudflare-2.14.3/PKG-INFO 2023-12-13 15:01:36.177684300 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: cloudflare
-Version: 2.14.2
+Version: 2.14.3
Summary: Python wrapper for the Cloudflare v4 API
Home-page: https://github.com/cloudflare/python-cloudflare
Author: Martin J. Levy
@@ -13,8 +13,13 @@
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
-Provides-Extra: test
License-File: LICENSE
+Requires-Dist: requests
+Requires-Dist: pyyaml
+Requires-Dist: jsonlines
+Requires-Dist: beautifulsoup4
+Provides-Extra: test
+Requires-Dist: pytest; extra == "test"
# cloudflare-python
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/cloudflare-2.14.2/cloudflare.egg-info/PKG-INFO
new/cloudflare-2.14.3/cloudflare.egg-info/PKG-INFO
--- old/cloudflare-2.14.2/cloudflare.egg-info/PKG-INFO 2023-11-26
05:05:51.000000000 +0100
+++ new/cloudflare-2.14.3/cloudflare.egg-info/PKG-INFO 2023-12-13
15:01:36.000000000 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: cloudflare
-Version: 2.14.2
+Version: 2.14.3
Summary: Python wrapper for the Cloudflare v4 API
Home-page: https://github.com/cloudflare/python-cloudflare
Author: Martin J. Levy
@@ -13,8 +13,13 @@
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
-Provides-Extra: test
License-File: LICENSE
+Requires-Dist: requests
+Requires-Dist: pyyaml
+Requires-Dist: jsonlines
+Requires-Dist: beautifulsoup4
+Provides-Extra: test
+Requires-Dist: pytest; extra == "test"
# cloudflare-python