Skip to content

Releases: thelinmichael/spotify-web-api-node

v5.0.2

24 Jan 19:57
Compare
Choose a tag to compare
  • Fix #349: Transfer playback options parameter is optional.

v5.0.1

23 Jan 22:37
Compare
Choose a tag to compare

v5.0.0

23 Jan 19:53
4fae3c5
Compare
Choose a tag to compare
v5.0.0

v4.0.0

14 Sep 18:43
Compare
Choose a tag to compare
  • Modified functions that operate on playlists to drop the user id parameter. This is a breaking change. #243
  • Updated superagent to fix a security warning. #211
  • Fixed a bug by which an empty user was not handled properly in getUserPlaylists(). #244

v3.1.1

29 Apr 10:00
Compare
Choose a tag to compare
  • Modernized stack for a better developer experience. Integrated prettier and jest. This simplifies the amount of dev dependencies.
  • Improved calls to save and remove saved tracks by adding a key as specified in the Spotify docs (See PR). Thanks to @yanniz0r and @adcar for bringing it up.

v3.1.0

26 Apr 13:03
Compare
Choose a tag to compare

v3.0.0

08 Mar 21:33
Compare
Choose a tag to compare

New features

Documentation

  • Added documentation in the README for getMyCurrentPlaybackState(). Thanks @PanMan for your PR!

Internals

  • @brodin realized we there was a lot of duplicated code and refactored it in a great PR.

v2.5.0

04 Sep 10:57
Compare
Choose a tag to compare
  • 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

02 May 20:49
Compare
Choose a tag to compare

v2.3.5

20 Jul 07:07
Compare
Choose a tag to compare

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.