[PR #517] [CLOSED] Bump rspotify from 0.9.0 to 0.10.0 #870

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

📋 Pull Request Information

Original PR: https://github.com/Rigellute/spotify-tui/pull/517
Author: @dependabot-preview[bot]
Created: 7/2/2020
Status: Closed

Base: masterHead: dependabot/cargo/rspotify-0.10.0


📝 Commits (1)

  • 15b6d68 Bump rspotify from 0.9.0 to 0.10.0

📊 Changes

2 files changed (+3 additions, -3 deletions)

View changed files

📝 Cargo.lock (+2 -2)
📝 Cargo.toml (+1 -1)

📄 Description

Bumps rspotify from 0.9.0 to 0.10.0.

Changelog

Sourced from rspotify's changelog.

0.10 (2020/07/01)

  • Add get_access_token_without_cache and refresh_access_token_without_cache to get and refresh access token without caching it.

  • Add cross compile support.

  • Add podcast support:

    • add save_shows endpoint.
    • add get_saved_shows endpoint.
    • add get_a_show endpoint.
    • add get_several_shows endpoint.
    • add get_shows_episodes endpoint.
    • add get_an_episode endpoint.
    • add get_several_episodes endpoint.
    • add check_users_saved_shows endpoint.
    • add remove_users_saved_shows endpoint

    Breaking Change

    • update the current_playing endpoint, add a new parameter named additional_types, and add some new fields for return object, change the return object type from SimplifiedPlayingContext to CurrentlyPlaybackContext.
    • update the current_playback endpoint, add a new parameter named current_playback, and add some new fields for return object, change the return object type from FullPlayingContext to CurrentlyPlaybackContext.
    • update the search endpoint, which adds support of podcast shows and spisodes, add a new parameter named include_external, change search function from private to public.
    • remove search_album, search_artist, search_playlist, and search_track, now there is only search method left, it's the search endpoint.

0.9 (2020/02/28)

  • Adds async/await support.
  • Keeps the previous synchronous API, enabled by extra feature blocking, disabled by default.
  • Shorten the import path.
  • Add missing Show and Episode types.

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!
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/517 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 7/2/2020 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/cargo/rspotify-0.10.0` --- ### 📝 Commits (1) - [`15b6d68`](https://github.com/Rigellute/spotify-tui/commit/15b6d6826e27e59c59d15d861519a64b400fe341) Bump rspotify from 0.9.0 to 0.10.0 ### 📊 Changes **2 files changed** (+3 additions, -3 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+2 -2) 📝 `Cargo.toml` (+1 -1) </details> ### 📄 Description Bumps [rspotify](https://github.com/samrayleung/rspotify) from 0.9.0 to 0.10.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.10 (2020/07/01)</h2> <ul> <li> <p>Add <code>get_access_token_without_cache</code> and <code>refresh_access_token_without_cache</code> to get and refresh access token without caching it.</p> </li> <li> <p>Add <code>cross compile</code> support.</p> </li> <li> <p>Add <code>podcast</code> support:</p> <ul> <li>add <code>save_shows</code> endpoint.</li> <li>add <code>get_saved_shows</code> endpoint.</li> <li>add <code>get_a_show</code> endpoint.</li> <li>add <code>get_several_shows</code> endpoint.</li> <li>add <code>get_shows_episodes</code> endpoint.</li> <li>add <code>get_an_episode</code> endpoint.</li> <li>add <code>get_several_episodes</code> endpoint.</li> <li>add <code>check_users_saved_shows</code> endpoint.</li> <li>add <code>remove_users_saved_shows</code> endpoint</li> </ul> <p><strong>Breaking Change</strong></p> <ul> <li>update the <code>current_playing</code> endpoint, add a new parameter named <code>additional_types</code>, and add some new fields for return object, change the return object type from <code>SimplifiedPlayingContext</code> to <code>CurrentlyPlaybackContext.</code></li> <li>update the <code>current_playback</code> endpoint, add a new parameter named <code>current_playback</code>, and add some new fields for return object, change the return object type from <code>FullPlayingContext</code> to <code>CurrentlyPlaybackContext</code>.</li> <li>update the <code>search</code> endpoint, which adds support of podcast shows and spisodes, add a new parameter named <code>include_external</code>, change <code>search</code> function from private to public.</li> <li>remove <code>search_album</code>, <code>search_artist</code>, <code>search_playlist</code>, and <code>search_track</code>, now there is only search method left, it's the <code>search</code> endpoint.</li> </ul> </li> </ul> <h2>0.9 (2020/02/28)</h2> <ul> <li>Adds <code>async/await</code> support.</li> <li>Keeps the previous synchronous API, enabled by extra feature <code>blocking</code>, disabled by default.</li> <li>Shorten the import path.</li> <li>Add missing <code>Show</code> and <code>Episode</code> types.</li> </ul> <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> </ul> <!-- raw HTML omitted --> </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.9.0&new-version=0.10.0)](https://dependabot.com/compatibility-score/?dependency-name=rspotify&package-manager=cargo&previous-version=0.9.0&new-version=0.10.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:53:39 +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#870
No description provided.