Skip to content

Commit 8e4ec97

Browse files
committed
8.23.4
1 parent c3e4f6b commit 8e4ec97

File tree

4 files changed

+24
-8
lines changed

4 files changed

+24
-8
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
<a name="8.23.4"></a>
2+
## [8.23.4](https://github.com/videojs/video.js/compare/v8.23.3...v8.23.4) (2025-08-01)
3+
4+
### Bug Fixes
5+
6+
* Component.js string arg type for for removeChild ([#9070](https://github.com/videojs/video.js/issues/9070)) ([31f8d7c](https://github.com/videojs/video.js/commit/31f8d7c))
7+
8+
### Chores
9+
10+
* **package:** update VHS to v3.17.2 ([#9079](https://github.com/videojs/video.js/issues/9079)) ([c3e4f6b](https://github.com/videojs/video.js/commit/c3e4f6b))
11+
12+
### Documentation
13+
14+
* Update README.md w/ v10 news link ([#9037](https://github.com/videojs/video.js/issues/9037)) ([09eb715](https://github.com/videojs/video.js/commit/09eb715))
15+
116
<a name="8.23.3"></a>
217
## [8.23.3](https://github.com/videojs/video.js/compare/v8.23.2...v8.23.3) (2025-04-16)
318

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Video.js is a full featured, open source video player for all web-based platform
1111
Right out of the box, Video.js supports all common media formats used on the web including streaming formats like HLS and DASH. It works on desktops, mobile devices, tablets, and web-based Smart TVs. It can be further extended and customized by a robust ecosystem of [plugins][plugins].
1212

1313
Video.js was started in May 2010 and since then:
14+
1415
* Millions of websites have used VideoJS over time (source [Builtwith][builtwith])
1516
* Billions of end-users every month of just the CDN-hosted copy (source Fastly stats)
1617
* 900+ amazing contributors to the video.js core
@@ -28,8 +29,8 @@ Video.js was started in May 2010 and since then:
2829
Thanks to the awesome folks over at [Fastly][fastly], there's a free, CDN hosted version of Video.js that anyone can use. Add these tags to your document's `<head>`:
2930

3031
```html
31-
<link href="//vjs.zencdn.net/8.23.3/video-js.min.css" rel="stylesheet">
32-
<script src="//vjs.zencdn.net/8.23.3/video.min.js"></script>
32+
<link href="//vjs.zencdn.net/8.23.4/video-js.min.css" rel="stylesheet">
33+
<script src="//vjs.zencdn.net/8.23.4/video.min.js"></script>
3334
```
3435

3536
Alternatively, you can include Video.js by getting it from [npm](https://videojs.com/getting-started/#install-via-npm), downloading it from [GitHub releases](https://github.com/videojs/video.js/releases) or by including it via [unpkg](https://unpkg.com) or another JavaScript CDN, like CDNjs.
@@ -40,12 +41,12 @@ Alternatively, you can include Video.js by getting it from [npm](https://videojs
4041
<script src="https://unpkg.com/video.js/dist/video.min.js"></script>
4142

4243
<!-- unpkg : use a specific version of Video.js (change the version numbers as necessary) -->
43-
<link href="https://unpkg.com/[email protected].3/dist/video-js.min.css" rel="stylesheet">
44-
<script src="https://unpkg.com/[email protected].3/dist/video.min.js"></script>
44+
<link href="https://unpkg.com/[email protected].4/dist/video-js.min.css" rel="stylesheet">
45+
<script src="https://unpkg.com/[email protected].4/dist/video.min.js"></script>
4546

4647
<!-- cdnjs : use a specific version of Video.js (change the version numbers as necessary) -->
47-
<link href="https://cdnjs.cloudflare.com/ajax/libs/video.js/8.23.3/video-js.min.css" rel="stylesheet">
48-
<script src="https://cdnjs.cloudflare.com/ajax/libs/video.js/8.23.3/video.min.js"></script>
48+
<link href="https://cdnjs.cloudflare.com/ajax/libs/video.js/8.23.4/video-js.min.css" rel="stylesheet">
49+
<script src="https://cdnjs.cloudflare.com/ajax/libs/video.js/8.23.4/video.min.js"></script>
4950
```
5051

5152
Next, using Video.js is as simple as creating a `<video>` element, but with an additional `data-setup` attribute. At a minimum, this attribute must have a value of `'{}'`, but it can include any Video.js [options][options] - just make sure it contains valid JSON!

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "video.js",
33
"description": "An HTML5 video player that supports HLS and DASH with a common API and skin.",
4-
"version": "8.23.3",
4+
"version": "8.23.4",
55
"main": "./dist/video.cjs.js",
66
"module": "./dist/video.es.js",
77
"style": "./dist/video-js.css",

0 commit comments

Comments
 (0)