17
0

29 Commits

Author SHA256 Message Date
f2dbd1e84f Accepting request 1292495 from devel:languages:python
- update to 2.2.0:
  * Running pyproject-fmt
  * Update bundled user agents file
  * Add SPDX license identifier
  * Add Python 3.13 to test matrix

OBS-URL: https://build.opensuse.org/request/show/1292495
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-fake-useragent?expand=0&rev=14
2025-07-14 08:52:02 +00:00
93306a0018 - update to 2.2.0:
* Running pyproject-fmt
  * Update bundled user agents file
  * Add SPDX license identifier
  * Add Python 3.13 to test matrix

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fake-useragent?expand=0&rev=27
2025-07-13 12:18:56 +00:00
6d7d667750 Accepting request 1267931 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1267931
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-fake-useragent?expand=0&rev=13
2025-04-10 19:58:31 +00:00
2fd27c4b75 Accepting request 1267874 from home:bnavigator:branches:openSUSE:Factory:Staging:adi:5
- Update to 2.1.0
  *  Speedup ua_convert parser by @sebastian-correa in #424
  *  Check for dunder attributes in FakeUserAgent.getattr() and
     make safe_attrs = ['shape'] by default by @rjys365 in #454
- Release 2.0.0
  * Finally, we successfully switched (again) to a new data source
    from Intoli, which allows us to have much more user-agent
    strings again. Thank you all for your support!
  * Important: Keep in mind that v2.0.0 does have some breaking
    changes like platform type "pc" value is now changed to
    "desktop" (in case you were using this). See below for all
    breaking changes!
  ## Breaking changes
  * OS and browser options are now case sensitive!!
  * Possible browser options are: ["Google", "Chrome", "Firefox",
    "Edge", "Opera"," Safari", "Android", "Yandex Browser",
    "Samsung Internet", "Opera Mobile", "Mobile Safari", "Firefox
    Mobile", "Firefox iOS", "Chrome Mobile", "Chrome Mobile iOS",
    "Mobile Safari UI/WKWebView", "Edge Mobile", "DuckDuckGo
    Mobile", "MiuiBrowser", "Whale", "Twitter", "Facebook", "Amazon
    Silk"]
  * Most browser strings are case-sensitive, except for some common
    browsers like firefox, edge, chrome, opera, safari. In these
    cases you will receive both mobile and non-mobile user-agent
    strings by default.
  * Platforms types (if specified) allowed options are: ["desktop",
    "mobile", "tablet"] (no pc anymore)
  * Possible OS options are now increased to the following list:
    ["Windows", "Linux", "Ubuntu", "Chrome OS", "Mac OS X",
    "Android", "iOS"]. And again case sensitive.

OBS-URL: https://build.opensuse.org/request/show/1267874
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fake-useragent?expand=0&rev=25
2025-04-08 15:07:55 +00:00
2e574487d3 Accepting request 1218773 from devel:languages:python
- Enable sle15_python_module_pythons.
- Disable test_utils_load_pkg_resource_fallback test case because
  of pkg_resource and setuptools incompatibility.

OBS-URL: https://build.opensuse.org/request/show/1218773
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-fake-useragent?expand=0&rev=12
2024-10-28 14:22:49 +00:00
ae64383e51 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fake-useragent?expand=0&rev=23 2024-10-28 10:18:58 +00:00
c75596a077 Accepting request 1218421 from home:yeey:OpenWebUI
- Enable sle15_python_module_pythons.
- Disable test_utils_load_pkg_resource_fallback test case because
  of pkg_resource and setuptools incompatibility.

OBS-URL: https://build.opensuse.org/request/show/1218421
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fake-useragent?expand=0&rev=22
2024-10-28 10:16:44 +00:00
71d78f8537 Accepting request 1158955 from devel:languages:python
- update to 1.5.1:
  * Remove trailing spaces in user agent strings
- update to 1.5.0:
  * Most important change: The user-agent database has been
    updated with a more recent list of user agents. It also now
    comes with mobile UA's, meaning a new parameter: `platforms`
    has been introduced (see README.md).

OBS-URL: https://build.opensuse.org/request/show/1158955
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-fake-useragent?expand=0&rev=11
2024-03-18 15:47:05 +00:00
d6647ed9e0 - update to 1.5.1:
* Remove trailing spaces in user agent strings
- update to 1.5.0:
  * Most important change: The user-agent database has been
    updated with a more recent list of user agents. It also now
    comes with mobile UA's, meaning a new parameter: `platforms`
    has been introduced (see README.md).

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fake-useragent?expand=0&rev=20
2024-03-18 10:40:46 +00:00
7e1fb03dd2 Accepting request 1130471 from devel:languages:python
- update to 1.4.0:
  * python 3.12 support
  * Introducing new `ua.getRandom`, `ua.getFirefox`,
    `ua.getChrome`, `ua.getSafari`. And a generic method:
    `ua.getBrowser(..)` (eg. `getBrowser('firefox')`)
    These new properties above allows you to retrieve the whole
    raw Python dictionary, instead of only the UA string.
    These properties might return different key/values pairs in
    the future! So `ua.random` is a more stable interface.
  * Improved user-agent scraper (now also containing Safari
    browser again)
  * Updated browsers.json data file

  * security update

OBS-URL: https://build.opensuse.org/request/show/1130471
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-fake-useragent?expand=0&rev=10
2023-12-02 16:13:41 +00:00
5d801f611a - update to 1.4.0:
* python 3.12 support
  * Introducing new `ua.getRandom`, `ua.getFirefox`,
    `ua.getChrome`, `ua.getSafari`. And a generic method:
    `ua.getBrowser(..)` (eg. `getBrowser('firefox')`)
    These new properties above allows you to retrieve the whole
    raw Python dictionary, instead of only the UA string.
    These properties might return different key/values pairs in
    the future! So `ua.random` is a more stable interface.
  * Improved user-agent scraper (now also containing Safari
    browser again)
  * Updated browsers.json data file
  * security update

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fake-useragent?expand=0&rev=18
2023-12-02 14:17:21 +00:00
717c38517f Accepting request 1102873 from devel:languages:python
- update to 1.2.1:
  * Still using the new dataset of course!
  * Small improvements in the min_percentage check
  * Update all Pip package dependencies
  * Updated browser useragent data 🚀
  * Allow filters on browser, OS and usage percentage 🚀
  * Update the cache scraper to scape the new data source for
    user-agent strings
  * Adapted the code to work with the new JSON data format

OBS-URL: https://build.opensuse.org/request/show/1102873
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-fake-useragent?expand=0&rev=9
2023-08-10 13:33:17 +00:00
e856cc3607 - update to 1.2.1:
* Still using the new dataset of course!
  * Small improvements in the min_percentage check
  * Update all Pip package dependencies
  * Updated browser useragent data 🚀
  * Allow filters on browser, OS and usage percentage 🚀
  * Update the cache scraper to scape the new data source for
    user-agent strings
  * Adapted the code to work with the new JSON data format

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fake-useragent?expand=0&rev=16
2023-08-08 11:06:28 +00:00
0d10438751 Accepting request 1080290 from devel:languages:python
- update to 1.1.3:
  * Update deps

OBS-URL: https://build.opensuse.org/request/show/1080290
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-fake-useragent?expand=0&rev=8
2023-05-09 12:07:50 +00:00
2b1e7dee26 - update to 1.1.3:
* Update deps

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fake-useragent?expand=0&rev=14
2023-04-19 09:46:20 +00:00
4ed261079a Accepting request 1064064 from devel:languages:python
- update to 1.1.2:
  * security update

OBS-URL: https://build.opensuse.org/request/show/1064064
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-fake-useragent?expand=0&rev=7
2023-02-10 13:34:22 +00:00
62c395dcda - update to 1.1.2:
* security update

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fake-useragent?expand=0&rev=12
2023-02-09 17:10:36 +00:00
52018b37e9 Accepting request 1046239 from devel:languages:python
- update to 1.1.1:
  * Remove white spaces from user agent strings, this is a patch release

OBS-URL: https://build.opensuse.org/request/show/1046239
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-fake-useragent?expand=0&rev=6
2023-01-03 14:05:03 +00:00
99e695183f - update to 1.1.1:
* Remove white spaces from user agent strings, this is a patch release

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fake-useragent?expand=0&rev=10
2023-01-02 16:02:14 +00:00
14dc464347 Accepting request 1040545 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1040545
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-fake-useragent?expand=0&rev=5
2022-12-06 13:24:17 +00:00
b12eb0147a Accepting request 1040476 from home:yarunachalam:branches:devel:languages:python
- Update to v1.1.1 
  * Remove whitespaces from user agent strings, this is a patch release
- Update to v1.1.0
  * Add pkg_resource as fallback mechanism in trying to retrieve the local JSON data file

OBS-URL: https://build.opensuse.org/request/show/1040476
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fake-useragent?expand=0&rev=8
2022-12-06 09:05:42 +00:00
8bfdf7bd74 Accepting request 1036970 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1036970
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-fake-useragent?expand=0&rev=4
2022-11-21 15:19:37 +00:00
ea22091fcb Accepting request 1036859 from home:jayvdb:branches:devel:languages:python
- Update to v1.0.1

OBS-URL: https://build.opensuse.org/request/show/1036859
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fake-useragent?expand=0&rev=6
2022-11-20 18:42:14 +00:00
f36c149c19 Accepting request 1033547 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1033547
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-fake-useragent?expand=0&rev=3
2022-11-04 16:38:13 +00:00
8481a69168 Accepting request 1033422 from home:jayvdb:branches:devel:languages:python
- Re-activate test suite
- Update to v0.1.13

OBS-URL: https://build.opensuse.org/request/show/1033422
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fake-useragent?expand=0&rev=4
2022-11-04 14:49:05 +00:00
eacfda6039 Accepting request 919150 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/919150
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-fake-useragent?expand=0&rev=2
2021-09-15 20:51:30 +00:00
c398b70ba0 Accepting request 919130 from home:pgajdos:python
- %check: note tests are online, do not run them

OBS-URL: https://build.opensuse.org/request/show/919130
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fake-useragent?expand=0&rev=3
2021-09-15 12:09:27 +00:00
6d9c9a499d Accepting request 704285 from devel:languages:python
Useragent faker package for Python

OBS-URL: https://build.opensuse.org/request/show/704285
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-fake-useragent?expand=0&rev=1
2019-05-21 08:41:18 +00:00
Todd R
03ce44cd94 Accepting request 704284 from home:TheBlackCat:branches:devel:languages:python
Useragent faker package for Python

OBS-URL: https://build.opensuse.org/request/show/704284
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fake-useragent?expand=0&rev=1
2019-05-20 15:17:46 +00:00