Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Doppins] Upgrade dependency spotify-web-api-js to ^1.5.1 #22

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

doppins-bot
Copy link
Contributor

Hi!

A new version was just released of spotify-web-api-js, so Doppins
has upgraded your project's dependency ranges.

Make sure that it doesn't break anything, and happy merging! :shipit:


Upgraded spotify-web-api-js from ^0.24.0 to ^1.5.1

Changelog:

Version 1.5.1

This is a minor update that solves an issue in environments like React Native, where the absence of content-type in some requests was giving errors (see #175).

Version 1.5.0

Added support for Add to Queue beta endpoint

Version 1.4.1

Minor fix in TypeScript documentation for playlist object. See https://github.com/JMPerez/spotify-web-api-js/pull/178.

Version 1.4.0

This is a minor release that includes support for the "Get a Playlist Cover Image" endpoint. https://github.com/JMPerez/spotify-web-api-js/pull/163

Version 1.3.0

This release includes support for shows and episodes (podcasts) endpoints, and TypeScript annotation fixes:

  • Support for searching, fetching, and adding shows and episodes to a user's library https://github.com/JMPerez/spotify-web-api-js/pull/161. Thanks @andyruwruw!
  • Fix TypeScript typings for getUserPlaylists https://github.com/JMPerez/spotify-web-api-js/pull/156. Thanks @neilime, @EricLambrecht, @mzbrandl, and @emyann!
  • Fix TypeScript typings for setting and getting access tokens https://github.com/JMPerez/spotify-web-api-js/pull/154. Thanks @hankhester!
  • Upgrade dependencies, improve linting and code formatting.

Version 1.2.0

This release includes these minor fixes:

  • Fix type declaration for play operation (https://github.com/JMPerez/spotify-web-api-js/pull/120). Thanks @pduchesne!
  • Update createPlaylist to use the new endpoint route. Fixes #124 (https://github.com/JMPerez/spotify-web-api-js/pull/125). Thanks @adamgrieger!

Version 1.1.1

This release includes lots of fixes done by @amelialaundy (see https://github.com/JMPerez/spotify-web-api-js/pull/112). Thank you so much for your contributions!

Version 1.1.0

This release includes an enhancement for the TypeScript binding, by which it's now possible to use the type of the SpotifyWebApi object.

See https://github.com/JMPerez/spotify-web-api-js/pull/44#issuecomment-336503855 and https://github.com/JMPerez/spotify-web-api-js/pull/101 for more information.

Thank @rshkv for reporting it and @amelialaundy for sending the PR that fixes it!

Version 1.0.0

This major version includes a breaking change to follow the new playlist uris (https://github.com/JMPerez/spotify-web-api-js/issues/103).

In practice, this means that you don't pass the user id anymore when performing an operation on a playlist. For instance, to fetch a playlist you used to write:

spotifyApi.getPlaylist('jmperezperez', '4vHIKV7j4QcZwgzGQcZg1x')
  .then(function(data) {
    console.log('User playlist', data);
  }, function(err) {
    console.error(err);
  });

after the change, you don't pass the user id (in this case jmperezperez) anymore:

spotifyApi.getPlaylist('4vHIKV7j4QcZwgzGQcZg1x')
  .then(function(data) {
    console.log('User playlist', data);
  }, function(err) {
    console.error(err);
  });

Thanks @jmfortunatojr for reporting the issue and fixing it.

Version 0.25.0

This release fixes a bug in the play() function. It now allows the function to not receive any parameters, since all of them are optional (see https://github.com/JMPerez/spotify-web-api-js/issues/97). It also adds support for position_ms (see https://github.com/JMPerez/spotify-web-api-js/issues/104).

Thanks @Yarael-Poof and @UlysseM for reporting these issues.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant