Releases: jzheng2017/spotify-web-api-wrapper
Releases · jzheng2017/spotify-web-api-wrapper
v1.5.7
v1.5.6
Changelog
- Fixed bug that
getArtistAlbums
returnedPaging<ArtistSimplified>
instead ofPaging<AlbumSimplified>
v1.5.5
Changelog
- Fixed bug in
deleteItemsFromPlaylist
that the passed insnapshotId
did not get passed into the http request - Changed that
snapshotId
is now part of theDeleteItemsFromPlaylistRequestBody
instead of a separate parameter indeleteItemsFromPlaylist
v1.5.4
Changelog
- Added second constructor to all
RetrofitApi
implementations allowing aRetrofitService
injection - Updated some dependencies to newer versions
- Fixed bug that passed in wrong class to
LoggerFactory
v1.5.3
Changelog
- Upgraded library from Java JDK
8
to15
v1.5.2
Changelog
- Changed from
String.format()
to slf4j internal string interpolation - Changed method name in
AuthorizationRequestToken
andAuthorizationPKCERequestToken
to make it more clear - Removed explicit
toString()
calls to preventNullPointerException
v1.5.1
Changelog
- Remove
Main
from being included into the.jar
file.
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
AuthorizationRequestTokens
plural to singularAuthorizationRequestToken
- Extracted http call execution in
AuthorizationRequestToken
toHttpUtil
so 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
ArtistFullCursorBasedPaging
toCursorBasedPaging<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:
Tracks
andEpisodes
now extend base classAbstractPlayableObject
- Gson factory also serves gson with custom deserializer
AbstractPlayableObjectDeserializer