[PR #236] [MERGED] Bump rspotify from 0.7.0 to 0.8.0 #689

Closed
opened 2026-02-28 14:50:29 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Rigellute/spotify-tui/pull/236
Author: @dependabot-preview[bot]
Created: 1/30/2020
Status: Merged
Merged: 1/30/2020
Merged by: @Rigellute

Base: masterHead: dependabot/cargo/rspotify-0.8.0


📝 Commits (2)

  • 4c884f8 Bump rspotify from 0.7.0 to 0.8.0
  • 1913634 Fix breaking changes

📊 Changes

4 files changed (+424 additions, -435 deletions)

View changed files

📝 Cargo.lock (+413 -412)
📝 Cargo.toml (+1 -1)
📝 src/app.rs (+4 -3)
📝 src/handlers/input.rs (+6 -19)

📄 Description

Bumps rspotify from 0.7.0 to 0.8.0.

Changelog

Sourced from rspotify's changelog.

0.8 (2020/01/30)

  • Provide more informational error strings for API.
  • Fix tuneable attribute passing for recommendations.
  • Support system proxy setting.
  • Add two endpoint functions: current_user_saved_albums_contains, user_artist_check_follow.
  • (Breaking change)Change AlbumType::from_str, SearchType::from_str, RepeatState::from_str, Country::from_str, TimeRange::from_str, Type::from_str, AlbumType::from_str, implement FromStr trait for all of them.

0.7 (2019/10/11)

  • Code optimize, remove a unnecessary mut and add a missing reference
  • Fix reqwest breaking change
  • Add missing devices type
  • Add position_ms to `start_playback

0.6 (2019/07/22)

  • Make PrivateUser country optional

0.5 (2019/04/30)

  • Replace println! with log!
  • FIx errors when email or birthdate are missing
  • Fix de-serialization panics for null values
  • Implement unsaving albums and unfollowing users/artists

0.4 (2019/03/23)

  • Allow application to perform error handling

0.3 (2019/02/20)

  • update dependencies to fix issus on Windows
  • fix failed test

0.2.6 (2018/12/20)

  • Hide warning on successful authentication
  • Remove unneeded extern crate from examples/new_releases.rs
  • Changes to Spotify.user_playlist and Spotify.playlist methods
  • add new field Unknown for DeviceType enum

0.2.5 (2018/10/05)

  • update reqwest to 0.9

0.2.4 (2018/08/19)

  • add debug and clone derives to spotify client and credentials
  • Change state field for authorization URL to have default
... (truncated)
Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Rigellute/spotify-tui/pull/236 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 1/30/2020 **Status:** ✅ Merged **Merged:** 1/30/2020 **Merged by:** [@Rigellute](https://github.com/Rigellute) **Base:** `master` ← **Head:** `dependabot/cargo/rspotify-0.8.0` --- ### 📝 Commits (2) - [`4c884f8`](https://github.com/Rigellute/spotify-tui/commit/4c884f8a0f606538c7a4a5486b65a7c5c9e8db5c) Bump rspotify from 0.7.0 to 0.8.0 - [`1913634`](https://github.com/Rigellute/spotify-tui/commit/1913634565f969e451dcd86243ef754f7984ed37) Fix breaking changes ### 📊 Changes **4 files changed** (+424 additions, -435 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+413 -412) 📝 `Cargo.toml` (+1 -1) 📝 `src/app.rs` (+4 -3) 📝 `src/handlers/input.rs` (+6 -19) </details> ### 📄 Description Bumps [rspotify](https://github.com/samrayleung/rspotify) from 0.7.0 to 0.8.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/ramsayleung/rspotify/blob/master/CHANGELOG.md">rspotify's changelog</a>.</em></p> <blockquote> <h2>0.8 (2020/01/30)</h2> <ul> <li>Provide more informational error strings for API.</li> <li>Fix tuneable attribute passing for recommendations.</li> <li>Support system proxy setting.</li> <li>Add two endpoint functions: <code>current_user_saved_albums_contains</code>, <code>user_artist_check_follow</code>.</li> <li>(Breaking change)Change <code>AlbumType::from_str</code>, <code>SearchType::from_str</code>, <code>RepeatState::from_str</code>, <code>Country::from_str</code>, <code>TimeRange::from_str</code>, <code>Type::from_str</code>, <code>AlbumType::from_str</code>, implement <code>FromStr</code> trait for all of them.</li> </ul> <h2>0.7 (2019/10/11)</h2> <ul> <li>Code optimize, remove a unnecessary mut and add a missing reference</li> <li>Fix reqwest breaking change</li> <li>Add missing devices type</li> <li>Add <code>position_ms</code> to `start_playback</li> </ul> <h2>0.6 (2019/07/22)</h2> <ul> <li>Make PrivateUser country optional</li> </ul> <h2>0.5 (2019/04/30)</h2> <ul> <li>Replace println! with log!</li> <li>FIx errors when email or birthdate are missing</li> <li>Fix de-serialization panics for null values</li> <li>Implement unsaving albums and unfollowing users/artists</li> </ul> <h2>0.4 (2019/03/23)</h2> <ul> <li>Allow application to perform error handling</li> </ul> <h2>0.3 (2019/02/20)</h2> <ul> <li>update dependencies to fix issus on Windows</li> <li>fix failed test</li> </ul> <h2>0.2.6 (2018/12/20)</h2> <ul> <li>Hide warning on successful authentication</li> <li>Remove unneeded extern crate from examples/new_releases.rs</li> <li>Changes to Spotify.user_playlist and Spotify.playlist methods</li> <li>add new field <code>Unknown</code> for <code>DeviceType</code> enum</li> </ul> <h2>0.2.5 (2018/10/05)</h2> <ul> <li>update reqwest to 0.9</li> </ul> <h2>0.2.4 (2018/08/19)</h2> <ul> <li>add debug and clone derives to spotify client and credentials</li> <li>Change state field for authorization URL to have default</li> </ul> </tr></table> ... (truncated) </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/samrayleung/rspotify/commits">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=rspotify&package-manager=cargo&previous-version=0.7.0&new-version=0.8.0)](https://dependabot.com/compatibility-score.html?dependency-name=rspotify&package-manager=cargo&previous-version=0.7.0&new-version=0.8.0) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-28 14:50:29 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/spotify-tui#689
No description provided.