Skip to content

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jul 21, 2025

Bumps youtube-transcript-api from 1.1.0 to 1.2.0.

Release notes

Sourced from youtube-transcript-api's releases.

v1.2.0

What's Changed

  • [BREAKING] Removed the deprecated methods get_transcript, get_transcripts and list_transcripts. They have already been deprecated in v1.0.0, but I've kept them around to allow for an easier migration to v1.0.0. However, these methods have led to a lot of issues being created due to people initializing a YouTubeTranscriptApi object and passing a proxy config into the constructor, but then calling the deprecated static methods on that object. As these methods are static they don't/can't access the state set in the constructor, therefore, the proxy config is ignored.

Migration Guide

If you're still using get_transcript, get_transcripts you have to change your code as follows:

# old API
transcript = YouTubeTranscriptApi.get_transcript("abc")
new API
ytt_api = YouTubeTranscriptApi()
transcript = ytt_api.fetch("abc").to_raw_data()

If you're still using list_transcripts you have to change your code as follows:

# old API
transcript_list = YouTubeTranscriptApi.list_transcripts("abc")
new API
ytt_api = YouTubeTranscriptApi()
transcript_list = ytt_api.list("abc")

Full Changelog: jdepoix/youtube-transcript-api@v1.1.1...v1.2.0

v1.1.1

What's Changed

New Contributors

Full Changelog: jdepoix/youtube-transcript-api@v1.1.0...v1.1.1

Commits
  • da6920b Merge pull request #488 from jdepoix/feature/remove-depcreated-methods
  • a951854 v1.2.0
  • ed8b666 removed deprecated methods: get_transcript, get_transcripts, list_transcripts
  • d2a409d Merge pull request #469 from jdepoix/release/v1.1.1
  • bec3db9 v1.1.1
  • 0f9da7b Merge pull request #468 from jdepoix/feature/ipblocked-exception-on-429
  • cf87b20 fmt
  • 4020bd6 added IpBlocked exception when status 429 is returned
  • c9ca514 Merge pull request #463 from alx/patch-1
  • f641bea fix: typo in README.md
  • See full diff in compare view

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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)

Bumps [youtube-transcript-api](https://github.com/jdepoix/youtube-transcript-api) from 1.1.0 to 1.2.0.
- [Release notes](https://github.com/jdepoix/youtube-transcript-api/releases)
- [Commits](jdepoix/youtube-transcript-api@v1.1.0...v1.2.0)

---
updated-dependencies:
- dependency-name: youtube-transcript-api
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Jul 21, 2025
Copy link
Author

dependabot bot commented on behalf of github Jul 29, 2025

Superseded by #45.

@dependabot dependabot bot closed this Jul 29, 2025
@dependabot dependabot bot deleted the dependabot/uv/youtube-transcript-api-1.2.0 branch July 29, 2025 00:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants