Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-fake-useragent for openSUSE:Factory checked in at 2023-02-10 14:34:22 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-fake-useragent (Old) and /work/SRC/openSUSE:Factory/.python-fake-useragent.new.1848 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-fake-useragent" Fri Feb 10 14:34:22 2023 rev:7 rq:1064064 version:1.1.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-fake-useragent/python-fake-useragent.changes 2023-01-03 15:05:18.074487406 +0100 +++ /work/SRC/openSUSE:Factory/.python-fake-useragent.new.1848/python-fake-useragent.changes 2023-02-10 14:34:23.993590523 +0100 @@ -1,0 +2,6 @@ +Thu Feb 9 17:10:26 UTC 2023 - Dirk Müller <dmuel...@suse.com> + +- update to 1.1.2: + * security update + +------------------------------------------------------------------- Old: ---- fake-useragent-1.1.1.tar.gz New: ---- fake-useragent-1.1.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-fake-useragent.spec ++++++ --- /var/tmp/diff_new_pack.fSBOC6/_old 2023-02-10 14:34:24.409593009 +0100 +++ /var/tmp/diff_new_pack.fSBOC6/_new 2023-02-10 14:34:24.413593034 +0100 @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %define skip_python2 1 Name: python-fake-useragent -Version: 1.1.1 +Version: 1.1.2 Release: 0 Summary: Useragent faker package for Python License: Apache-2.0 ++++++ fake-useragent-1.1.1.tar.gz -> fake-useragent-1.1.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fake-useragent-1.1.1/cache_scraper/cronjob_spider.py new/fake-useragent-1.1.2/cache_scraper/cronjob_spider.py --- old/fake-useragent-1.1.1/cache_scraper/cronjob_spider.py 2022-12-04 23:20:56.000000000 +0100 +++ new/fake-useragent-1.1.2/cache_scraper/cronjob_spider.py 2023-02-08 18:43:26.000000000 +0100 @@ -12,6 +12,7 @@ from twisted.internet import reactor + # Create Process around the CrawlerRunner class CrawlerRunnerProcess(Process): def __init__(self, spider): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fake-useragent-1.1.1/cache_scraper/requirements.txt new/fake-useragent-1.1.2/cache_scraper/requirements.txt --- old/fake-useragent-1.1.1/cache_scraper/requirements.txt 2022-12-04 23:20:56.000000000 +0100 +++ new/fake-useragent-1.1.2/cache_scraper/requirements.txt 2023-02-08 18:43:26.000000000 +0100 @@ -2,11 +2,11 @@ attrs==22.1.0 Automat==20.2.0 black==22.10.0 -certifi==2022.9.24 +certifi==2022.12.7 cffi==1.15.1 charset-normalizer==2.1.1 constantly==15.1.0 -cryptography==38.0.1 +cryptography==39.0.1 cssselect==1.1.0 filelock==3.8.0 hyperlink==21.0.0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fake-useragent-1.1.1/cache_scraper/useragentscraper/pipelines.py new/fake-useragent-1.1.2/cache_scraper/useragentscraper/pipelines.py --- old/fake-useragent-1.1.1/cache_scraper/useragentscraper/pipelines.py 2022-12-04 23:20:56.000000000 +0100 +++ new/fake-useragent-1.1.2/cache_scraper/useragentscraper/pipelines.py 2023-02-08 18:43:26.000000000 +0100 @@ -13,6 +13,7 @@ # from itemadapter import ItemAdapter # from scrapy.exceptions import DropItem + # Template: class ScraperPipeline: def process_item(self, item, spider): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fake-useragent-1.1.1/src/fake_useragent/fake.py new/fake-useragent-1.1.2/src/fake_useragent/fake.py --- old/fake-useragent-1.1.1/src/fake_useragent/fake.py 2022-12-04 23:20:56.000000000 +0100 +++ new/fake-useragent-1.1.2/src/fake_useragent/fake.py 2023-02-08 18:43:26.000000000 +0100 @@ -140,6 +140,50 @@ return self.fallback + @property + def chrome(self): + return self.__getattr__("chrome") + + @property + def googlechrome(self): + return self.chrome + + @property + def edge(self): + return self.__getattr__("edge") + + @property + def ie(self): + return self.__getattr__("ie") + + @property + def internetexplorer(self): + return self.ie + + @property + def msie(self): + return self.ie + + @property + def firefox(self): + return self.__getattr__("firefox") + + @property + def ff(self): + return self.firefox + + @property + def safari(self): + return self.__getattr__("safari") + + @property + def opera(self): + return self.__getattr__("opera") + + @property + def random(self): + return self.__getattr__("random") + # common alias UserAgent = FakeUserAgent