Hello community,
here is the log from the commit of package python-cfscrape for openSUSE:Factory
checked in at 2019-08-13 13:21:51
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-cfscrape (Old)
and /work/SRC/openSUSE:Factory/.python-cfscrape.new.9556 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-cfscrape"
Tue Aug 13 13:21:51 2019 rev:7 rq:722490 version:2.0.8
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-cfscrape/python-cfscrape.changes
2019-06-14 20:42:33.074377504 +0200
+++
/work/SRC/openSUSE:Factory/.python-cfscrape.new.9556/python-cfscrape.changes
2019-08-13 13:22:47.509394268 +0200
@@ -1,0 +2,7 @@
+Mon Aug 12 00:18:51 UTC 2019 - Martin Herkt <[email protected]>
+
+- Update to 2.0.8
+ * Default SSL ciphers changed to resolve issues with some users
+ reporting receiving Cloudflare captchas
+
+-------------------------------------------------------------------
Old:
----
cloudflare-scrape-2.0.7.tar.gz
New:
----
cloudflare-scrape-2.0.8.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-cfscrape.spec ++++++
--- /var/tmp/diff_new_pack.kwZl6Z/_old 2019-08-13 13:22:48.441394023 +0200
+++ /var/tmp/diff_new_pack.kwZl6Z/_new 2019-08-13 13:22:48.445394022 +0200
@@ -18,7 +18,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-cfscrape
-Version: 2.0.7
+Version: 2.0.8
Release: 0
Summary: Python module to bypass Cloudflare's anti-bot page
License: MIT
++++++ cloudflare-scrape-2.0.7.tar.gz -> cloudflare-scrape-2.0.8.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/cloudflare-scrape-2.0.7/cfscrape/__init__.py
new/cloudflare-scrape-2.0.8/cfscrape/__init__.py
--- old/cloudflare-scrape-2.0.7/cfscrape/__init__.py 2019-06-03
13:25:13.000000000 +0200
+++ new/cloudflare-scrape-2.0.8/cfscrape/__init__.py 2019-08-11
17:48:51.000000000 +0200
@@ -20,7 +20,7 @@
from .user_agents import USER_AGENTS
-__version__ = "2.0.7"
+__version__ = "2.0.8"
DEFAULT_USER_AGENT = random.choice(USER_AGENTS)
@@ -57,7 +57,7 @@
"""
# Remove a few problematic TLSv1.0 ciphers from the defaults
-DEFAULT_CIPHERS += ":!ECDHE+SHA:!AES128-SHA"
+DEFAULT_CIPHERS += ":!ECDHE+SHA:!AES128-SHA:!AESCCM:!DHE:!ARIA"
class CloudflareAdapter(HTTPAdapter):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/cloudflare-scrape-2.0.7/setup.py
new/cloudflare-scrape-2.0.8/setup.py
--- old/cloudflare-scrape-2.0.7/setup.py 2019-06-03 13:25:13.000000000
+0200
+++ new/cloudflare-scrape-2.0.8/setup.py 2019-08-11 17:48:51.000000000
+0200
@@ -26,5 +26,5 @@
url="https://github.com/Anorov/cloudflare-scrape",
keywords=["cloudflare", "scraping"],
include_package_data=True,
- install_requires=["requests >= 2.0.0"],
+ install_requires=["requests >= 2.6.1"],
)