From d7d6f70797aca496db2ef2103140e94c16f0a8ff Mon Sep 17 00:00:00 2001 From: Wesley Luyten Date: Tue, 31 Mar 2026 19:11:33 -0500 Subject: [PATCH] chore: release main (#1115) --- .../.release-please-manifest.json | 18 ++++---- CHANGELOG.md | 41 ++++++++++++++++++- packages/core/CHANGELOG.md | 26 ++++++++++++ packages/core/package.json | 2 +- packages/element/CHANGELOG.md | 7 ++++ packages/element/package.json | 2 +- packages/html/CHANGELOG.md | 29 +++++++++++++ packages/html/package.json | 2 +- packages/icons/CHANGELOG.md | 14 +++++++ packages/icons/package.json | 2 +- packages/react/CHANGELOG.md | 27 ++++++++++++ packages/react/package.json | 2 +- packages/skins/CHANGELOG.md | 20 +++++++++ packages/skins/package.json | 2 +- packages/spf/CHANGELOG.md | 19 +++++++++ packages/spf/package.json | 2 +- packages/store/CHANGELOG.md | 24 +++++++++++ packages/store/package.json | 2 +- packages/utils/CHANGELOG.md | 13 ++++++ packages/utils/package.json | 2 +- site/src/content/changelog/10.0.0-beta.11.md | 15 +++++++ 21 files changed, 252 insertions(+), 19 deletions(-) create mode 100644 site/src/content/changelog/10.0.0-beta.11.md diff --git a/.github/release-please/.release-please-manifest.json b/.github/release-please/.release-please-manifest.json index a767caf2..dbcd8227 100644 --- a/.github/release-please/.release-please-manifest.json +++ b/.github/release-please/.release-please-manifest.json @@ -1,11 +1,11 @@ { - "packages/core": "10.0.0-beta.11", - "packages/element": "10.0.0-beta.11", - "packages/html": "10.0.0-beta.11", - "packages/icons": "10.0.0-beta.11", - "packages/react": "10.0.0-beta.11", - "packages/skins": "10.0.0-beta.11", - "packages/store": "10.0.0-beta.11", - "packages/utils": "10.0.0-beta.11", - "packages/spf": "10.0.0-beta.11" + "packages/core": "10.0.0-beta.12", + "packages/element": "10.0.0-beta.12", + "packages/html": "10.0.0-beta.12", + "packages/icons": "10.0.0-beta.12", + "packages/react": "10.0.0-beta.12", + "packages/skins": "10.0.0-beta.12", + "packages/store": "10.0.0-beta.12", + "packages/utils": "10.0.0-beta.12", + "packages/spf": "10.0.0-beta.12" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b45e199..df165c6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,44 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +### ๐Ÿš€ Features +- Add Mux video component ([#1036](https://github.com/videojs/v10/pull/1036)) by [@luwes](https://github.com/luwes) +- *(site)* Improve ejected skin output with usage examples and media elements ([#1108](https://github.com/videojs/v10/pull/1108)) by [@mihar-22](https://github.com/mihar-22) +- *(core)* Implement preload for HLS media ([#1125](https://github.com/videojs/v10/pull/1125)) by [@luwes](https://github.com/luwes) +- Add native hls media + refactor ([#1154](https://github.com/videojs/v10/pull/1154)) by [@luwes](https://github.com/luwes) +- *(packages)* Error dialog component ([#1077](https://github.com/videojs/v10/pull/1077)) by [@sampotts](https://github.com/sampotts) +- *(core)* Add error handling to Hls.js media ([#1164](https://github.com/videojs/v10/pull/1164)) by [@luwes](https://github.com/luwes) + +### ๐Ÿ› Bug Fixes +- *(site)* Use client:idle for ejected skin tabs so hidden panels hydrate ([#1137](https://github.com/videojs/v10/pull/1137)) by [@mihar-22](https://github.com/mihar-22) +- *(utils)* Polyfill AbortSignal.any for Chromium โ‰ค115 ([#1142](https://github.com/videojs/v10/pull/1142)) by [@mihar-22](https://github.com/mihar-22) +- *(site)* Add Netlify redirects for old blog URLs ([#1144](https://github.com/videojs/v10/pull/1144)) by [@decepulis](https://github.com/decepulis) +- *(site)* Add visible "Details" label to API reference table toggle columns ([#1147](https://github.com/videojs/v10/pull/1147)) by [@decepulis](https://github.com/decepulis) +- *(site)* Increase blog body text to 18px for readability ([#1146](https://github.com/videojs/v10/pull/1146)) by [@decepulis](https://github.com/decepulis) +- *(site)* Use overflow-auto on TabsPanel to prevent layout jump ([#1148](https://github.com/videojs/v10/pull/1148)) by [@decepulis](https://github.com/decepulis) +- Isolate preload mixin for hls delegate ([#1150](https://github.com/videojs/v10/pull/1150)) by [@luwes](https://github.com/luwes) +- *(site)* Add missing space in navbar ([#1151](https://github.com/videojs/v10/pull/1151)) by [@decepulis](https://github.com/decepulis) +- *(skin)* Responsive design fixes and improvements ([#1129](https://github.com/videojs/v10/pull/1129)) by [@sampotts](https://github.com/sampotts) +- *(html)* HTML SSR safety and sandbox skin chunking ([#1155](https://github.com/videojs/v10/pull/1155)) by [@sampotts](https://github.com/sampotts) +- *(core)* Fix Mux data initialization ([#1162](https://github.com/videojs/v10/pull/1162)) by [@luwes](https://github.com/luwes) + +### ๐Ÿ’ผ Other +- *(spf)* Migrate reactors from WritableState to TC39 Signals ([#1112](https://github.com/videojs/v10/pull/1112)) by [@cjpillsbury](https://github.com/cjpillsbury) + +### ๐Ÿšœ Refactor +- *(site)* Flatten skin into player in ejected output and replace poster slot with img ([#1127](https://github.com/videojs/v10/pull/1127)) by [@mihar-22](https://github.com/mihar-22) +- *(site)* Reorganize SVG assets into assets/icons and assets/logos ([#1138](https://github.com/videojs/v10/pull/1138)) by [@decepulis](https://github.com/decepulis) + +### ๐Ÿงช Testing +- *(spf)* Restore headless browser config for vitest ([#1103](https://github.com/videojs/v10/pull/1103)) by [@mihar-22](https://github.com/mihar-22) + +### โš™๏ธ Miscellaneous Tasks +- *(packages)* Upgrade tsdown 0.20.3 โ†’ 0.21.4 ([#1102](https://github.com/videojs/v10/pull/1102)) by [@mihar-22](https://github.com/mihar-22) +- *(root)* Replace turbo watch with build-first dev scripts ([#1114](https://github.com/videojs/v10/pull/1114)) by [@mihar-22](https://github.com/mihar-22) +- *(claude)* Add create-issue skill ([#1133](https://github.com/videojs/v10/pull/1133)) by [@mihar-22](https://github.com/mihar-22) + +## [@videojs/core@10.0.0-beta.11] - 2026-03-24 + ### ๐Ÿš€ Features - *(packages)* Export media component building blocks ([#1098](https://github.com/videojs/v10/pull/1098)) by [@mihar-22](https://github.com/mihar-22) @@ -1020,7 +1058,8 @@ All notable changes to this project will be documented in this file. * @decepulis made their first contribution in [#118](https://github.com/videojs/v10/pull/118) * @heff made their first contribution -[unreleased]: https://github.com/videojs/v10/compare/@videojs/core@10.0.0-beta.10...HEAD +[unreleased]: https://github.com/videojs/v10/compare/@videojs/core@10.0.0-beta.11...HEAD +[@videojs/core@10.0.0-beta.11]: https://github.com/videojs/v10/compare/@videojs/core@10.0.0-beta.10...@videojs/core@10.0.0-beta.11 [@videojs/core@10.0.0-beta.10]: https://github.com/videojs/v10/compare/@videojs/core@10.0.0-beta.9...@videojs/core@10.0.0-beta.10 [@videojs/core@10.0.0-beta.9]: https://github.com/videojs/v10/compare/@videojs/core@10.0.0-beta.8...@videojs/core@10.0.0-beta.9 [@videojs/core@10.0.0-beta.8]: https://github.com/videojs/v10/compare/@videojs/core@10.0.0-beta.7...@videojs/core@10.0.0-beta.8 diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 9c9a330d..57113860 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,31 @@ # Changelog +## [10.0.0-beta.12](https://github.com/videojs/v10/compare/@videojs/core@10.0.0-beta.11...@videojs/core@10.0.0-beta.12) (2026-04-01) + + +### Features + +* add Mux video component ([#1036](https://github.com/videojs/v10/issues/1036)) ([271a8c8](https://github.com/videojs/v10/commit/271a8c850216bd1654baaa26f8bb2f5eda56be37)) +* add native hls media + refactor ([#1154](https://github.com/videojs/v10/issues/1154)) ([1b2afc6](https://github.com/videojs/v10/commit/1b2afc6e41a4a8bb4f3ea42b5c04c6232813727e)) +* **core:** add error handling to Hls.js media ([#1164](https://github.com/videojs/v10/issues/1164)) ([9e2ede6](https://github.com/videojs/v10/commit/9e2ede6ddc37622152e1ca90406c72dd580c855b)) +* **core:** implement preload for HLS media ([#1125](https://github.com/videojs/v10/issues/1125)) ([9142841](https://github.com/videojs/v10/commit/9142841d34f091107db4753a8cac0ca6ef5e99ab)) +* **packages:** error dialog component ([#1077](https://github.com/videojs/v10/issues/1077)) ([3430fe1](https://github.com/videojs/v10/commit/3430fe1a493e4bee34f03112206a0cb3cf9d88cf)) + + +### Bug Fixes + +* **core:** fix Mux data initialization ([#1162](https://github.com/videojs/v10/issues/1162)) ([2946560](https://github.com/videojs/v10/commit/29465609c54526b45d59168384fb2d502feed07a)) +* isolate preload mixin for hls delegate ([#1150](https://github.com/videojs/v10/issues/1150)) ([a96aad7](https://github.com/videojs/v10/commit/a96aad7558f777868b6cf1b77c55a7baf05b32c2)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @videojs/spf bumped to 10.0.0-beta.12 + * @videojs/store bumped to 10.0.0-beta.12 + * @videojs/utils bumped to 10.0.0-beta.12 + ## [10.0.0-beta.11](https://github.com/videojs/v10/compare/@videojs/core@10.0.0-beta.10...@videojs/core@10.0.0-beta.11) (2026-03-24) diff --git a/packages/core/package.json b/packages/core/package.json index f4d30e53..3e479ce2 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,7 +1,7 @@ { "name": "@videojs/core", "type": "module", - "version": "10.0.0-beta.11", + "version": "10.0.0-beta.12", "description": "Core components and utilities for Video.js", "license": "Apache-2.0", "repository": { diff --git a/packages/element/CHANGELOG.md b/packages/element/CHANGELOG.md index 7bb86a92..2980fd61 100644 --- a/packages/element/CHANGELOG.md +++ b/packages/element/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [10.0.0-beta.12](https://github.com/videojs/v10/compare/@videojs/element@10.0.0-beta.11...@videojs/element@10.0.0-beta.12) (2026-04-01) + + +### Features + +* add Mux video component ([#1036](https://github.com/videojs/v10/issues/1036)) ([271a8c8](https://github.com/videojs/v10/commit/271a8c850216bd1654baaa26f8bb2f5eda56be37)) + ## [10.0.0-beta.11](https://github.com/videojs/v10/compare/@videojs/element@10.0.0-beta.10...@videojs/element@10.0.0-beta.11) (2026-03-24) diff --git a/packages/element/package.json b/packages/element/package.json index bba08d3f..c55ca5ef 100644 --- a/packages/element/package.json +++ b/packages/element/package.json @@ -1,7 +1,7 @@ { "name": "@videojs/element", "type": "module", - "version": "10.0.0-beta.11", + "version": "10.0.0-beta.12", "description": "Lightweight reactive custom element base for Video.js", "license": "Apache-2.0", "repository": { diff --git a/packages/html/CHANGELOG.md b/packages/html/CHANGELOG.md index 0033aafa..7c930815 100644 --- a/packages/html/CHANGELOG.md +++ b/packages/html/CHANGELOG.md @@ -1,5 +1,34 @@ # Changelog +## [10.0.0-beta.12](https://github.com/videojs/v10/compare/@videojs/html@10.0.0-beta.11...@videojs/html@10.0.0-beta.12) (2026-04-01) + + +### Features + +* add Mux video component ([#1036](https://github.com/videojs/v10/issues/1036)) ([271a8c8](https://github.com/videojs/v10/commit/271a8c850216bd1654baaa26f8bb2f5eda56be37)) +* add native hls media + refactor ([#1154](https://github.com/videojs/v10/issues/1154)) ([1b2afc6](https://github.com/videojs/v10/commit/1b2afc6e41a4a8bb4f3ea42b5c04c6232813727e)) +* **packages:** error dialog component ([#1077](https://github.com/videojs/v10/issues/1077)) ([3430fe1](https://github.com/videojs/v10/commit/3430fe1a493e4bee34f03112206a0cb3cf9d88cf)) + + +### Bug Fixes + +* **html:** HTML SSR safety and sandbox skin chunking ([#1155](https://github.com/videojs/v10/issues/1155)) ([0433722](https://github.com/videojs/v10/commit/0433722ee4b725af213648d589fef80c7e4001a0)) +* **skin:** responsive design fixes and improvements ([#1129](https://github.com/videojs/v10/issues/1129)) ([1082693](https://github.com/videojs/v10/commit/10826932be7861ebf5df8c66db7811c0510339f4)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @videojs/core bumped to 10.0.0-beta.12 + * @videojs/element bumped to 10.0.0-beta.12 + * @videojs/spf bumped to 10.0.0-beta.12 + * @videojs/store bumped to 10.0.0-beta.12 + * @videojs/utils bumped to 10.0.0-beta.12 + * devDependencies + * @videojs/icons bumped to 10.0.0-beta.12 + * @videojs/skins bumped to 10.0.0-beta.12 + ## [10.0.0-beta.11](https://github.com/videojs/v10/compare/@videojs/html@10.0.0-beta.10...@videojs/html@10.0.0-beta.11) (2026-03-24) diff --git a/packages/html/package.json b/packages/html/package.json index 046630be..43f7425e 100644 --- a/packages/html/package.json +++ b/packages/html/package.json @@ -1,7 +1,7 @@ { "name": "@videojs/html", "type": "module", - "version": "10.0.0-beta.11", + "version": "10.0.0-beta.12", "description": "HTML library for building media players", "license": "Apache-2.0", "repository": { diff --git a/packages/icons/CHANGELOG.md b/packages/icons/CHANGELOG.md index ae168899..4d6a73be 100644 --- a/packages/icons/CHANGELOG.md +++ b/packages/icons/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [10.0.0-beta.12](https://github.com/videojs/v10/compare/@videojs/icons@10.0.0-beta.11...@videojs/icons@10.0.0-beta.12) (2026-04-01) + + +### Features + +* add Mux video component ([#1036](https://github.com/videojs/v10/issues/1036)) ([271a8c8](https://github.com/videojs/v10/commit/271a8c850216bd1654baaa26f8bb2f5eda56be37)) + + +### Dependencies + +* The following workspace dependencies were updated + * devDependencies + * @videojs/utils bumped to 10.0.0-beta.12 + ## [10.0.0-beta.11](https://github.com/videojs/v10/compare/@videojs/icons@10.0.0-beta.10...@videojs/icons@10.0.0-beta.11) (2026-03-24) diff --git a/packages/icons/package.json b/packages/icons/package.json index 5952aae2..735dd65b 100644 --- a/packages/icons/package.json +++ b/packages/icons/package.json @@ -2,7 +2,7 @@ "name": "@videojs/icons", "type": "module", "private": true, - "version": "10.0.0-beta.11", + "version": "10.0.0-beta.12", "description": "SVG icon library for Video.js", "license": "Apache-2.0", "repository": { diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 3b20fc73..c8fa98de 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## [10.0.0-beta.12](https://github.com/videojs/v10/compare/@videojs/react@10.0.0-beta.11...@videojs/react@10.0.0-beta.12) (2026-04-01) + + +### Features + +* add Mux video component ([#1036](https://github.com/videojs/v10/issues/1036)) ([271a8c8](https://github.com/videojs/v10/commit/271a8c850216bd1654baaa26f8bb2f5eda56be37)) +* add native hls media + refactor ([#1154](https://github.com/videojs/v10/issues/1154)) ([1b2afc6](https://github.com/videojs/v10/commit/1b2afc6e41a4a8bb4f3ea42b5c04c6232813727e)) +* **packages:** error dialog component ([#1077](https://github.com/videojs/v10/issues/1077)) ([3430fe1](https://github.com/videojs/v10/commit/3430fe1a493e4bee34f03112206a0cb3cf9d88cf)) + + +### Bug Fixes + +* **skin:** responsive design fixes and improvements ([#1129](https://github.com/videojs/v10/issues/1129)) ([1082693](https://github.com/videojs/v10/commit/10826932be7861ebf5df8c66db7811c0510339f4)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @videojs/core bumped to 10.0.0-beta.12 + * @videojs/spf bumped to 10.0.0-beta.12 + * @videojs/store bumped to 10.0.0-beta.12 + * @videojs/utils bumped to 10.0.0-beta.12 + * devDependencies + * @videojs/icons bumped to 10.0.0-beta.12 + * @videojs/skins bumped to 10.0.0-beta.12 + ## [10.0.0-beta.11](https://github.com/videojs/v10/compare/@videojs/react@10.0.0-beta.10...@videojs/react@10.0.0-beta.11) (2026-03-24) diff --git a/packages/react/package.json b/packages/react/package.json index 794ff516..102ae9bd 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,7 +1,7 @@ { "name": "@videojs/react", "type": "module", - "version": "10.0.0-beta.11", + "version": "10.0.0-beta.12", "description": "React library for building media players", "license": "Apache-2.0", "repository": { diff --git a/packages/skins/CHANGELOG.md b/packages/skins/CHANGELOG.md index d7905705..9350db34 100644 --- a/packages/skins/CHANGELOG.md +++ b/packages/skins/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [10.0.0-beta.12](https://github.com/videojs/v10/compare/@videojs/skins@10.0.0-beta.11...@videojs/skins@10.0.0-beta.12) (2026-04-01) + + +### Features + +* add Mux video component ([#1036](https://github.com/videojs/v10/issues/1036)) ([271a8c8](https://github.com/videojs/v10/commit/271a8c850216bd1654baaa26f8bb2f5eda56be37)) +* **packages:** error dialog component ([#1077](https://github.com/videojs/v10/issues/1077)) ([3430fe1](https://github.com/videojs/v10/commit/3430fe1a493e4bee34f03112206a0cb3cf9d88cf)) + + +### Bug Fixes + +* **skin:** responsive design fixes and improvements ([#1129](https://github.com/videojs/v10/issues/1129)) ([1082693](https://github.com/videojs/v10/commit/10826932be7861ebf5df8c66db7811c0510339f4)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @videojs/utils bumped to 10.0.0-beta.12 + ## [10.0.0-beta.11](https://github.com/videojs/v10/compare/@videojs/skins@10.0.0-beta.10...@videojs/skins@10.0.0-beta.11) (2026-03-24) diff --git a/packages/skins/package.json b/packages/skins/package.json index 85c3e6dc..1169c7e1 100644 --- a/packages/skins/package.json +++ b/packages/skins/package.json @@ -1,7 +1,7 @@ { "name": "@videojs/skins", "type": "module", - "version": "10.0.0-beta.11", + "version": "10.0.0-beta.12", "private": true, "description": "Shared skin CSS and Tailwind classname tokens for Video.js", "license": "Apache-2.0", diff --git a/packages/spf/CHANGELOG.md b/packages/spf/CHANGELOG.md index bc378aee..5d474bf3 100644 --- a/packages/spf/CHANGELOG.md +++ b/packages/spf/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [10.0.0-beta.12](https://github.com/videojs/v10/compare/@videojs/spf@10.0.0-beta.11...@videojs/spf@10.0.0-beta.12) (2026-04-01) + + +### Features + +* add Mux video component ([#1036](https://github.com/videojs/v10/issues/1036)) ([271a8c8](https://github.com/videojs/v10/commit/271a8c850216bd1654baaa26f8bb2f5eda56be37)) + + +### Bug Fixes + +* **utils:** polyfill AbortSignal.any for Chromium โ‰ค115 ([#1142](https://github.com/videojs/v10/issues/1142)) ([c3641c8](https://github.com/videojs/v10/commit/c3641c888c9630b2780cdda556431512d9ca5b81)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @videojs/utils bumped to 10.0.0-beta.12 + ## [10.0.0-beta.11](https://github.com/videojs/v10/compare/@videojs/spf@10.0.0-beta.10...@videojs/spf@10.0.0-beta.11) (2026-03-24) diff --git a/packages/spf/package.json b/packages/spf/package.json index d19bcc2e..77fd17fd 100644 --- a/packages/spf/package.json +++ b/packages/spf/package.json @@ -1,7 +1,7 @@ { "name": "@videojs/spf", "type": "module", - "version": "10.0.0-beta.11", + "version": "10.0.0-beta.12", "description": "Stream Processing Framework for Video.js 10", "license": "Apache-2.0", "repository": { diff --git a/packages/store/CHANGELOG.md b/packages/store/CHANGELOG.md index c0ae7e93..7a5a7167 100644 --- a/packages/store/CHANGELOG.md +++ b/packages/store/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## [10.0.0-beta.12](https://github.com/videojs/v10/compare/@videojs/store@10.0.0-beta.11...@videojs/store@10.0.0-beta.12) (2026-04-01) + + +### Features + +* add Mux video component ([#1036](https://github.com/videojs/v10/issues/1036)) ([271a8c8](https://github.com/videojs/v10/commit/271a8c850216bd1654baaa26f8bb2f5eda56be37)) +* add native hls media + refactor ([#1154](https://github.com/videojs/v10/issues/1154)) ([1b2afc6](https://github.com/videojs/v10/commit/1b2afc6e41a4a8bb4f3ea42b5c04c6232813727e)) + + +### Bug Fixes + +* **utils:** polyfill AbortSignal.any for Chromium โ‰ค115 ([#1142](https://github.com/videojs/v10/issues/1142)) ([c3641c8](https://github.com/videojs/v10/commit/c3641c888c9630b2780cdda556431512d9ca5b81)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @videojs/utils bumped to 10.0.0-beta.12 + * devDependencies + * @videojs/element bumped to 10.0.0-beta.12 + * peerDependencies + * @videojs/element bumped to 10.0.0-beta.12 + ## [10.0.0-beta.11](https://github.com/videojs/v10/compare/@videojs/store@10.0.0-beta.10...@videojs/store@10.0.0-beta.11) (2026-03-24) diff --git a/packages/store/package.json b/packages/store/package.json index bcc04df0..f8bf28cf 100644 --- a/packages/store/package.json +++ b/packages/store/package.json @@ -1,7 +1,7 @@ { "name": "@videojs/store", "type": "module", - "version": "10.0.0-beta.11", + "version": "10.0.0-beta.12", "description": "Reactive state management for external systems.", "license": "Apache-2.0", "repository": { diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 5d34e2e8..758cad3f 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [10.0.0-beta.12](https://github.com/videojs/v10/compare/@videojs/utils@10.0.0-beta.11...@videojs/utils@10.0.0-beta.12) (2026-04-01) + + +### Features + +* add Mux video component ([#1036](https://github.com/videojs/v10/issues/1036)) ([271a8c8](https://github.com/videojs/v10/commit/271a8c850216bd1654baaa26f8bb2f5eda56be37)) +* add native hls media + refactor ([#1154](https://github.com/videojs/v10/issues/1154)) ([1b2afc6](https://github.com/videojs/v10/commit/1b2afc6e41a4a8bb4f3ea42b5c04c6232813727e)) + + +### Bug Fixes + +* **utils:** polyfill AbortSignal.any for Chromium โ‰ค115 ([#1142](https://github.com/videojs/v10/issues/1142)) ([c3641c8](https://github.com/videojs/v10/commit/c3641c888c9630b2780cdda556431512d9ca5b81)) + ## [10.0.0-beta.11](https://github.com/videojs/v10/compare/@videojs/utils@10.0.0-beta.10...@videojs/utils@10.0.0-beta.11) (2026-03-24) diff --git a/packages/utils/package.json b/packages/utils/package.json index dd38c1ff..cb8cff60 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,7 +1,7 @@ { "name": "@videojs/utils", "type": "module", - "version": "10.0.0-beta.11", + "version": "10.0.0-beta.12", "description": "Utility functions and helpers for Video.js", "license": "Apache-2.0", "repository": { diff --git a/site/src/content/changelog/10.0.0-beta.11.md b/site/src/content/changelog/10.0.0-beta.11.md new file mode 100644 index 00000000..d7b5e0e0 --- /dev/null +++ b/site/src/content/changelog/10.0.0-beta.11.md @@ -0,0 +1,15 @@ +--- +description: "" +date: 2026-03-24 +version: "10.0.0-beta.11" +prerelease: true +breaking: false +compareUrl: "https://github.com/videojs/v10/compare/@videojs/core@10.0.0-beta.10...@videojs/core@10.0.0-beta.11" +--- + + +### ๐Ÿš€ Features +- *(packages)* Export media component building blocks ([#1098](https://github.com/videojs/v10/pull/1098)) by [@mihar-22](https://github.com/mihar-22) + +### โš™๏ธ Miscellaneous Tasks +- Upgrade typescript 6, vitest 4, align spf package ([#1101](https://github.com/videojs/v10/pull/1101)) by [@mihar-22](https://github.com/mihar-22)