14
0

Commit Graph

  • 9dee6820b8 Accepting request 1249141 from devel:languages:python main Dominique Leuenberger 2025-02-28 16:39:30 +00:00
  • e649388e4d - 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
  • 2e73445bbc Accepting request 1235646 from devel:languages:python Ana Guerrero 2025-01-07 19:55:06 +00:00
  • e0dd32f8c4 Accepting request 1235644 from home:glaubitz:branches:devel:languages:python Markéta Machová 2025-01-07 14:33:59 +00:00
  • 2d34a766f8 Accepting request 1198594 from devel:languages:python Dominique Leuenberger 2024-09-04 11:26:52 +00:00
  • 22543db719 Accepting request 1198446 from home:pgajdos Matej Cepl 2024-09-03 23:21:27 +00:00
  • f686e6662d Accepting request 1179665 from devel:languages:python Ana Guerrero 2024-06-10 15:38:14 +00:00
  • 62e754952f - 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
  • 90fa57d206 Accepting request 1133445 from devel:languages:python Ana Guerrero 2023-12-15 20:50:38 +00:00
  • d72afb98d9 - 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
  • 6efe006f0e Accepting request 1042865 from devel:languages:python Dominique Leuenberger 2022-12-15 18:24:47 +00:00
  • 4334213d54 Accepting request 1042751 from home:yarunachalam:branches:devel:languages:python Dirk Mueller 2022-12-14 10:06:47 +00:00
  • ef82d34b86 Accepting request 1035256 from devel:languages:python Dominique Leuenberger 2022-11-12 16:41:04 +00:00
  • 93c0f4645d Accepting request 1034930 from home:yarunachalam:branches:devel:languages:python Markéta Machová 2022-11-11 13:17:29 +00:00
  • f1ef0bc8e4 Accepting request 1007083 from devel:languages:python Richard Brown 2022-09-30 15:57:59 +00:00
  • f848786960 Accepting request 1006951 from system:homeautomation:home-assistant:unstable Dirk Mueller 2022-09-29 19:06:35 +00:00
  • e4921075ee Accepting request 970764 from devel:languages:python Dominique Leuenberger 2022-04-20 14:55:06 +00:00
  • 6de25496f0 Accepting request 970741 from home:pgajdos:python Markéta Machová 2022-04-19 12:05:01 +00:00
  • 82ee24b01c Accepting request 844848 from devel:languages:python Dominique Leuenberger 2020-10-29 13:53:02 +00:00
  • 3acc814c3f Accepting request 844822 from home:alarrosa:branches:devel:languages:python Markéta Machová 2020-10-29 11:10:02 +00:00
  • d56143b0eb Accepting request 819125 from devel:languages:python Dominique Leuenberger 2020-07-08 17:12:46 +00:00
  • 0425ae1ce9 - 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
  • 2e4052001f Accepting request 788591 from devel:languages:python Dominique Leuenberger 2020-03-26 22:35:07 +00:00
  • 58d0c0a4e0 Accepting request 788584 from home:mcalabkova:branches:devel:languages:python Tomáš Chvátal 2020-03-26 15:22:44 +00:00
  • e3ab819059 Accepting request 785944 from devel:languages:python Dominique Leuenberger 2020-03-18 11:40:57 +00:00
  • 7cb29533d7 Accepting request 785943 from home:pgajdos:python Tomáš Chvátal 2020-03-17 14:11:54 +00:00
  • bd1a5d11b4 Accepting request 667877 from devel:languages:python Dominique Leuenberger 2019-01-24 13:14:33 +00:00
  • 5e2599ca4b Accepting request 660058 from home:jengelh:branches:devel:languages:python Matej Cepl 2018-12-19 16:57:46 +00:00
  • b1936167c9 Accepting request 660005 from devel:languages:python Dominique Leuenberger 2018-12-21 07:21:41 +00:00
  • 0b510ff7a6 - Fix description and summary Matej Cepl 2018-12-19 13:08:12 +00:00
  • 830d89702b - Initial packaging (version 2.4.4) Thomas Bechtold 2018-10-17 09:17:50 +00:00