Commit Graph

  • 6b8d2b0f47 Accepting request 1320285 from devel:languages:python factory Ana Guerrero 2025-11-27 14:21:45 +00:00
  • f0bd469824 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-spotipy?expand=0&rev=35 Markéta Machová 2025-11-27 07:42:57 +00:00
  • 2bae36884d - Update to 2.25.2: * Security + CVE-2025-66040 – HTML for OAuth flow now sanitized: prevents potential XSS attacks (by @yueyueL) Upgrade if you run spotipy with the default OAuth flow (uses a local HTTP server as a callback method) (bsc#1254285) * Added + Adds additional_types parameter to retrieve currently playing episode + Add deprecation warnings to documentation * Fixed + Fixed dead link in README.md + Corrected Spotify/Spotipy typo in documentation Daniel Garcia 2025-11-27 07:22:11 +00:00
  • 80b04129db Accepting request 1249141 from devel:languages:python Dominique Leuenberger 2025-02-28 16:39:30 +00:00
  • 3ca0a9eda0 - Update to 2.25.1: * Security + CVE-2025-27154 – Cache file permissions tightened: now 600 (user read/write only) instead of 644, preventing unauthorized local access to auth tokens (bsc#1238059) * Added + Added examples for audiobooks, shows and episodes methods to examples directory * Fixed + Fixed scripts in examples directory that didn't run correctly + Updated documentation for Client.current_user_top_artists to indicate maximum number of artists limit * Changed + Updated get_cached_token and save_token_to_cache methods to utilize Python's Context Management Protocol + Added except clause to get_cached_token method to handle json decode errors + Added warnings and updated docs due to Spotify's deprecation of HTTP and "localhost" redirect URIs + Use newer string formatters (https://pyformat.info) + Marked recommendation_genre_seeds as deprecated Steve Kowalik 2025-02-28 05:09:56 +00:00
  • fa2b11860d Accepting request 1235646 from devel:languages:python Ana Guerrero 2025-01-07 19:55:06 +00:00
  • b51698b38f Accepting request 1235644 from home:glaubitz:branches:devel:languages:python Markéta Machová 2025-01-07 14:33:59 +00:00
  • 59dfe410f4 Accepting request 1198594 from devel:languages:python Dominique Leuenberger 2024-09-04 11:26:52 +00:00
  • f901f27283 Accepting request 1198446 from home:pgajdos Matej Cepl 2024-09-03 23:21:27 +00:00
  • 1713c617c7 Accepting request 1179665 from devel:languages:python Ana Guerrero 2024-06-10 15:38:14 +00:00
  • 44ddbe5924 - update to 2.24.0: * Added MemcacheCacheHandler, a cache handler that stores the token info using pymemcache. * Added support for audiobook endpoints: get_audiobook, get_audiobooks, and get_audiobook_chapters. * Added integration tests for audiobook endpoints. * Added update field to current_user_follow_playlist. * Fixed error obfuscation when Spotify class is being inherited and an error is raised in the Child's __init__ * Replaced artist_albums(album_type=...) with artist_albums(include_groups=...) due to an API change. * Updated _regex_spotify_url to ignore /intl-<countrycode> in Spotify links Dirk Mueller 2024-06-10 09:23:24 +00:00
  • 9596e2258b Accepting request 1133445 from devel:languages:python Ana Guerrero 2023-12-15 20:50:38 +00:00
  • 6b7a2e1958 - update to 2.23.0: * Added optional encoder_cls argument to CacheFileHandler, which overwrite default encoder for token before writing to disk * Integration tests for searching multiple types in multiple markets (non-user endpoints) * Publish to PyPI action * Fixed the regex for matching playlist URIs with the format spotify:user:USERNAME:playlist:PLAYLISTID. * search_markets now factors the counts of all types in the total rather than just the first type (#534) * Add alternative module installation instruction to README * Added Comment to README - Getting Started for user to add URI to app in Spotify Developer Dashboard. * Added playlist_add_tracks.py to example folder * Modified docstring for playlist_add_items() to accept "only URIs or URLs", * with intended deprecation for IDs in v3 * Path traversal vulnerability that may lead to type confusion in URI handling code * Update contributing.md - Update to version 2.22.0 - Update to version 2.21.0 Dirk Mueller 2023-12-08 13:45:36 +00:00
  • 051f181c2f Accepting request 1042865 from devel:languages:python Dominique Leuenberger 2022-12-15 18:24:47 +00:00
  • 50b21d3c44 Accepting request 1042751 from home:yarunachalam:branches:devel:languages:python Dirk Mueller 2022-12-14 10:06:47 +00:00
  • 29c04d9075 Accepting request 1035256 from devel:languages:python Dominique Leuenberger 2022-11-12 16:41:04 +00:00
  • 23f3b2fca4 Accepting request 1034930 from home:yarunachalam:branches:devel:languages:python Markéta Machová 2022-11-11 13:17:29 +00:00
  • 28430f9abf Accepting request 1007083 from devel:languages:python Richard Brown 2022-09-30 15:57:59 +00:00
  • 07202d5ce3 Accepting request 1006951 from system:homeautomation:home-assistant:unstable Dirk Mueller 2022-09-29 19:06:35 +00:00
  • b18627d13c Accepting request 970764 from devel:languages:python Dominique Leuenberger 2022-04-20 14:55:06 +00:00
  • f641e9f472 Accepting request 970741 from home:pgajdos:python Markéta Machová 2022-04-19 12:05:01 +00:00
  • 024eb26f6e Accepting request 844848 from devel:languages:python Dominique Leuenberger 2020-10-29 13:53:02 +00:00
  • 3a5d04a4a9 Accepting request 844822 from home:alarrosa:branches:devel:languages:python Markéta Machová 2020-10-29 11:10:02 +00:00
  • caec70be40 Accepting request 819125 from devel:languages:python Dominique Leuenberger 2020-07-08 17:12:46 +00:00
  • 2a2e9a03a5 - Update to 2.13.0: * Added + Added SpotifyImplicitGrant as an auth manager option. It provides user authentication without a client secret but sacrifices the ability to refresh the token without user input. (However, read the class docstring for security advisory.) + Added built-in verification of the state query parameter + Added two new attributes: error and error_description to SpotifyOauthError exception class to show + authorization/authentication web api errors details. + Added SpotifyStateError subclass of SpotifyOauthError + Allow extending SpotifyClientCredentials and SpotifyOAuth + Added the market paramter to album_tracks + Added a method to update the auth token. + Support for shows/podcasts and episodes + Added CONTRIBUTING.md * Deprecated + Deprecated util.prompt_for_user_token in favor of spotipy.Spotify(auth_manager=SpotifyOAuth()) * Fixed + Logging regression due to the addition of logging.basicConfig() which was unneeded. + Issue where using http://localhost as redirect_uri would cause the authorization process to hang. + Fixed miscellaneous issues with parsing of callback URL + Close session when Spotipy object is unloaded + Propagate refresh token error * Changed + Updated the documentation to give more details on the authorization + process and reflect 2020 Spotify Application jargon and practices. + The local webserver is only started for localhost redirect_uri which specify a port, + i.e. it is started for http://localhost:8080 or http://127.0.0.1:8080, not for http://localhost. + Client retry logic has changed as it now uses urllib3's Retry in conjunction with requests Session + The session is customizable as it allows for: - status_forcelist - retries - status_retries - backoff_factor + Spin up a local webserver to auto-fill authentication URL + Use session in SpotifyAuthBase + Logging used instead of print statements - Skip one test that requires external internet access Steve Kowalik 2020-07-07 06:58:55 +00:00
  • 064d419204 Accepting request 788591 from devel:languages:python Dominique Leuenberger 2020-03-26 22:35:07 +00:00
  • 552f92c6f6 Accepting request 788584 from home:mcalabkova:branches:devel:languages:python Tomáš Chvátal 2020-03-26 15:22:44 +00:00
  • 70bc1f9c0a Accepting request 785944 from devel:languages:python Dominique Leuenberger 2020-03-18 11:40:57 +00:00
  • 08c74b4c9b Accepting request 785943 from home:pgajdos:python Tomáš Chvátal 2020-03-17 14:11:54 +00:00
  • edfbf29729 Accepting request 667877 from devel:languages:python Dominique Leuenberger 2019-01-24 13:14:33 +00:00
  • b2cceda7a3 Accepting request 660058 from home:jengelh:branches:devel:languages:python Matej Cepl 2018-12-19 16:57:46 +00:00
  • 0e6e0f3a12 Accepting request 660005 from devel:languages:python Dominique Leuenberger 2018-12-21 07:21:41 +00:00
  • 5ef446dd2a - Fix description and summary Matej Cepl 2018-12-19 13:08:12 +00:00
  • 45c4845387 - Initial packaging (version 2.4.4) Thomas Bechtold 2018-10-17 09:17:50 +00:00