Skip to content

Commit fc049a3

Browse files
committed
8.22.0
1 parent 88aa1e7 commit fc049a3

File tree

4 files changed

+26
-8
lines changed

4 files changed

+26
-8
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
<a name="8.22.0"></a>
2+
# [8.22.0](https://github.com/videojs/video.js/compare/v8.21.1...v8.22.0) (2025-02-05)
3+
4+
### Features
5+
6+
* Make seek bar keyboard skip increment configurable ([#8919](https://github.com/videojs/video.js/issues/8919)) ([f2311c8](https://github.com/videojs/video.js/commit/f2311c8)), closes [1000#0](https://github.com/1000/issues/0)
7+
* **package:** Update to [@videojs](https://github.com/videojs)/http-streaming v3.17.0 ([#8976](https://github.com/videojs/video.js/issues/8976)) ([88aa1e7](https://github.com/videojs/video.js/commit/88aa1e7))
8+
9+
### Bug Fixes
10+
11+
* hide mouse tooltip on touch devices when not scrubbing ([#8945](https://github.com/videojs/video.js/issues/8945)) ([4661aa7](https://github.com/videojs/video.js/commit/4661aa7))
12+
* registering new player component ([#8932](https://github.com/videojs/video.js/issues/8932)) ([f8e9bfc](https://github.com/videojs/video.js/commit/f8e9bfc)), closes [#8925](https://github.com/videojs/video.js/issues/8925)
13+
14+
### Chores
15+
16+
* Enable supply chain security through npm provenance attestation ([#8911](https://github.com/videojs/video.js/issues/8911)) ([c1a8cbf](https://github.com/videojs/video.js/commit/c1a8cbf)), closes [1000#0](https://github.com/1000/issues/0)
17+
* Update sass and change colour syntax ([#8894](https://github.com/videojs/video.js/issues/8894)) ([55bb0fd](https://github.com/videojs/video.js/commit/55bb0fd))
18+
119
<a name="8.21.1"></a>
220
## [8.21.1](https://github.com/videojs/video.js/compare/v8.21.0...v8.21.1) (2024-12-05)
321

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ Video.js was started in the middle of 2010 and is now used on over ~~50,000~~ ~~
2222
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>`:
2323

2424
```html
25-
<link href="//vjs.zencdn.net/8.21.1/video-js.min.css" rel="stylesheet">
26-
<script src="//vjs.zencdn.net/8.21.1/video.min.js"></script>
25+
<link href="//vjs.zencdn.net/8.22.0/video-js.min.css" rel="stylesheet">
26+
<script src="//vjs.zencdn.net/8.22.0/video.min.js"></script>
2727
```
2828

2929
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.
@@ -34,12 +34,12 @@ Alternatively, you can include Video.js by getting it from [npm](https://videojs
3434
<script src="https://unpkg.com/video.js/dist/video.min.js"></script>
3535

3636
<!-- unpkg : use a specific version of Video.js (change the version numbers as necessary) -->
37-
<link href="https://unpkg.com/video.js@8.21.1/dist/video-js.min.css" rel="stylesheet">
38-
<script src="https://unpkg.com/video.js@8.21.1/dist/video.min.js"></script>
37+
<link href="https://unpkg.com/video.js@8.22.0/dist/video-js.min.css" rel="stylesheet">
38+
<script src="https://unpkg.com/video.js@8.22.0/dist/video.min.js"></script>
3939

4040
<!-- cdnjs : use a specific version of Video.js (change the version numbers as necessary) -->
41-
<link href="https://cdnjs.cloudflare.com/ajax/libs/video.js/8.21.1/video-js.min.css" rel="stylesheet">
42-
<script src="https://cdnjs.cloudflare.com/ajax/libs/video.js/8.21.1/video.min.js"></script>
41+
<link href="https://cdnjs.cloudflare.com/ajax/libs/video.js/8.22.0/video-js.min.css" rel="stylesheet">
42+
<script src="https://cdnjs.cloudflare.com/ajax/libs/video.js/8.22.0/video.min.js"></script>
4343
```
4444

4545
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.21.1",
4+
"version": "8.22.0",
55
"main": "./dist/video.cjs.js",
66
"module": "./dist/video.es.js",
77
"style": "./dist/video-js.css",

0 commit comments

Comments
 (0)