Skip to content

Commit 2a924b4

Browse files
Release 2025.10.21.063854
Created by: gamer191 :ci skip all
1 parent 9693162 commit 2a924b4

File tree

4 files changed

+30
-11
lines changed

4 files changed

+30
-11
lines changed

Changelog.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,25 @@
44
# To create a release, dispatch the https://github.com/yt-dlp/yt-dlp/actions/workflows/release.yml workflow on master
55
-->
66

7+
### 2025.10.21.063854
8+
9+
#### Important changes
10+
- **The minimum *required* Python version has been raised to 3.10**
11+
Python 3.9 has reached its end-of-life as of October 2025, and yt-dlp has now removed support for it. [Read more](https://github.com/yt-dlp/yt-dlp/issues/13858)
12+
13+
#### Core changes
14+
- [Implement caching for player code](https://github.com/yt-dlp/yt-dlp/commit/9693162312c10a97d35ae7a3b9e28d58338234b5) by [pukkandan](https://github.com/pukkandan)
15+
- [Merge branch 'yt-dlp:master' into feat/jsc-deno](https://github.com/yt-dlp/yt-dlp/commit/626dec4f9355b9ed8b19c6c646ea9e18c687ef36) by [pukkandan](https://github.com/pukkandan)
16+
- [Remove Python 3.9 support](https://github.com/yt-dlp/yt-dlp/commit/4e6a693057cfaf1ce1f07b019ed3bfce2bf936f6) ([#13861](https://github.com/yt-dlp/yt-dlp/issues/13861)) by [bashonly](https://github.com/bashonly)
17+
- [make ruff happy](https://github.com/yt-dlp/yt-dlp/commit/fb4e99e657117eb0c0d6a32e118a62f7eff6eccd) by [bashonly](https://github.com/bashonly)
18+
19+
#### Extractor changes
20+
- **appleconnect**: [Rework extractor](https://github.com/yt-dlp/yt-dlp/commit/78748b506f0dca8236ac0045ed7f72f7cf334b62) ([#13229](https://github.com/yt-dlp/yt-dlp/issues/13229)) by [doe1080](https://github.com/doe1080)
21+
- **tvnoe**: [Rework Extractor](https://github.com/yt-dlp/yt-dlp/commit/fe5ae54a7b08ebe679f03afdeafbe1cee5784d5b) ([#13369](https://github.com/yt-dlp/yt-dlp/issues/13369)) by [doe1080](https://github.com/doe1080)
22+
23+
#### Misc. changes
24+
- **cleanup**: Miscellaneous: [c7bda21](https://github.com/yt-dlp/yt-dlp/commit/c7bda2192aa24afce40fdbbbe056d269aa3b2872) by [bashonly](https://github.com/bashonly), [seproDev](https://github.com/seproDev)
25+
726
### 2025.10.14
827

928
#### Core changes

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -308,10 +308,10 @@ Tip: Use `CTRL`+`F` (or `Command`+`F`) to search by keywords
308308
--no-update Do not check for updates (default)
309309
--update-to [CHANNEL]@[TAG] Upgrade/downgrade to a specific version.
310310
CHANNEL can be a repository as well. CHANNEL
311-
and TAG default to "stable" and "latest"
312-
respectively if omitted; See "UPDATE" for
313-
details. Supported channels: stable,
314-
nightly, master
311+
and TAG default to "yt-dlp/yt-dlp-nightly-
312+
builds" and "latest" respectively if
313+
omitted; See "UPDATE" for details. Supported
314+
channels: stable, nightly, master
315315
-i, --ignore-errors Ignore download and postprocessing errors.
316316
The download will be considered successful
317317
even if the postprocessing fails

supportedsites.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ The only reliable way to check if a site is supported is to try it.
8585
- **aol.com**: Yahoo screen and movies (**Currently broken**)
8686
- **APA**
8787
- **Aparat**
88-
- **AppleConnect**
88+
- **apple:​music:connect**: Apple Music Connect
8989
- **AppleDaily**: 臺灣蘋果日報
9090
- **ApplePodcasts**
9191
- **appletrailers**
@@ -1541,7 +1541,7 @@ The only reliable way to check if a site is supported is to try it.
15411541
- **tvigle**: Интернет-телевидение Tvigle.ru
15421542
- **TVIPlayer**
15431543
- **TVN24**: (**Currently broken**)
1544-
- **TVNoe**: (**Currently broken**)
1544+
- **tvnoe**: Televize Noe
15451545
- **tvopengr:embed**: tvopen.gr embedded videos
15461546
- **tvopengr:watch**: tvopen.gr (and ethnos.gr) videos
15471547
- **tvp**: Telewizja Polska

yt_dlp/version.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# Autogenerated by devscripts/update-version.py
22

3-
__version__ = '2025.10.14'
3+
__version__ = '2025.10.21.063854'
44

5-
RELEASE_GIT_HEAD = 'a98e7f9f58a9492d2cb216baa59c890ed8ce02f3'
5+
RELEASE_GIT_HEAD = '9693162312c10a97d35ae7a3b9e28d58338234b5'
66

77
VARIANT = None
88

99
UPDATE_HINT = None
1010

11-
CHANNEL = 'stable'
11+
CHANNEL = 'yt-dlp/yt-dlp-nightly-builds'
1212

13-
ORIGIN = 'yt-dlp/yt-dlp'
13+
ORIGIN = 'gamer191/yt-dlp'
1414

15-
_pkg_version = '2025.10.14'
15+
_pkg_version = '2025.10.21.063854'

0 commit comments

Comments
 (0)