Releases: thelinmichael/spotify-web-api-node
Releases · thelinmichael/spotify-web-api-node
v5.0.2
v5.0.1
v5.0.0
v5.0.0
v4.0.0
v3.1.1
v3.1.0
- Added support for seeking and setting volume. Thanks to @isokar, @jamesemwallis, @ashthespy, and @vanderlin for your PRs.
v3.0.0
New features
- @DalerAsrorov added support for uploading a custom image to a playlist in this PR.
- You can now pass a
device_id
when playing and pausing playback. @pfftdammitchris started a PR to add device_id to the play() method. The changes served to another PR where we included the functionality. Thanks!
Documentation
Internals
v2.5.0
- Change README to reflect new authorization. Thanks @arirawr for the PR.
- Add support for 'show_dialog' parameter when creating authorization url. Thanks @ajhaupt7 for the PR.
- Add support for playback control (play, pause, prev, next), shuffle and repeat. Thanks @JoseMCO for the PR.
- Add support for currently playing. Thanks @dustinblackman for the PR.
- Fix to remove unnecessary deviceIds parameter from request to transfer playback. Thanks @philnash for the PR.
v2.4.0
- Change
addTracksToPlaylist
to pass the data in the body, preventing an issue with a long URL when passing many tracks. Thanks @dolcalmi for the PR - Add support for fetching recently played tracks. Thanks @jeremyboles for the PR.
v2.3.5
Use encodeURIComponent
instead of encodeURI
to encode the user's id. 'encodeURI' wasn't encoding characters like /
or #
that were generating an invalid endpoint url. Thanks @jgranstrom for the PR.