Releases: jzheng2017/spotify-web-api-wrapper
Releases · jzheng2017/spotify-web-api-wrapper
v1.5.7
v1.5.6
Changelog
- Fixed bug that
getArtistAlbumsreturnedPaging<ArtistSimplified>instead ofPaging<AlbumSimplified>
v1.5.5
Changelog
- Fixed bug in
deleteItemsFromPlaylistthat the passed insnapshotIddid not get passed into the http request - Changed that
snapshotIdis now part of theDeleteItemsFromPlaylistRequestBodyinstead of a separate parameter indeleteItemsFromPlaylist
v1.5.4
Changelog
- Added second constructor to all
RetrofitApiimplementations allowing aRetrofitServiceinjection - Updated some dependencies to newer versions
- Fixed bug that passed in wrong class to
LoggerFactory
v1.5.3
Changelog
- Upgraded library from Java JDK
8to15
v1.5.2
Changelog
- Changed from
String.format()to slf4j internal string interpolation - Changed method name in
AuthorizationRequestTokenandAuthorizationPKCERequestTokento make it more clear - Removed explicit
toString()calls to preventNullPointerException
v1.5.1
Changelog
- Remove
Mainfrom being included into the.jarfile.
v1.5.0
Major updates:
This version release the following api endpoint have been covered:
- Search (complete)
- Authorization Code Flow with Proof Key for Code Exchange (PKCE)
Minor changes to API:
- Refactored
AuthorizationRequestTokensplural to singularAuthorizationRequestToken - Extracted http call execution in
AuthorizationRequestTokentoHttpUtilso it can be reused insideAuthorizationPKCERequestToken
As of this version all endpoints of Spotify Web API have been covered
v1.4.0
Major updates:
This version release the following api endpoint have been covered:
- Personalization (complete)
- Player (complete)
Minor changes to API:
- Changed
ArtistFullCursorBasedPagingtoCursorBasedPaging<T>which takes in a generic type.
v1.3.0
Major updates:
This version release the following api endpoint have been covered:
- Playlist (complete)
Minor changes to API:
TracksandEpisodesnow extend base classAbstractPlayableObject- Gson factory also serves gson with custom deserializer
AbstractPlayableObjectDeserializer