From 4229544c567302baeca3e60cba9618198d1be610 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 6 Mar 2026 12:16:52 -0800 Subject: [PATCH] chore: release main (#746) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .../.release-please-manifest.json | 14 ++++---- packages/core/CHANGELOG.md | 26 +++++++++++++++ packages/core/package.json | 2 +- packages/element/CHANGELOG.md | 7 ++++ packages/element/package.json | 2 +- packages/html/CHANGELOG.md | 32 +++++++++++++++++++ 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/store/CHANGELOG.md | 18 +++++++++++ packages/store/package.json | 2 +- packages/utils/CHANGELOG.md | 12 +++++++ packages/utils/package.json | 2 +- 15 files changed, 150 insertions(+), 14 deletions(-) diff --git a/.github/release-please/.release-please-manifest.json b/.github/release-please/.release-please-manifest.json index 21f1867f..d8c388ca 100644 --- a/.github/release-please/.release-please-manifest.json +++ b/.github/release-please/.release-please-manifest.json @@ -1,9 +1,9 @@ { - "packages/core": "10.0.0-alpha.8", - "packages/element": "10.0.0-alpha.8", - "packages/html": "10.0.0-alpha.8", - "packages/icons": "10.0.0-alpha.8", - "packages/react": "10.0.0-alpha.8", - "packages/store": "10.0.0-alpha.8", - "packages/utils": "10.0.0-alpha.8" + "packages/core": "10.0.0-alpha.9", + "packages/element": "10.0.0-alpha.9", + "packages/html": "10.0.0-alpha.9", + "packages/icons": "10.0.0-alpha.9", + "packages/react": "10.0.0-alpha.9", + "packages/store": "10.0.0-alpha.9", + "packages/utils": "10.0.0-alpha.9" } diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 316d4291..044ff36f 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,31 @@ # Changelog +## [10.0.0-alpha.9](https://github.com/videojs/v10/compare/@videojs/core@10.0.0-alpha.8...@videojs/core@10.0.0-alpha.9) (2026-03-06) + + +### Features + +* add subtitles handling + captions core ([#692](https://github.com/videojs/v10/issues/692)) ([5c11606](https://github.com/videojs/v10/commit/5c116065a91ed04753bb2cb83e72dd6471f75ced)) + + +### Bug Fixes + +* **core:** auto-unmute on volume change and restore volume on unmute ([#752](https://github.com/videojs/v10/issues/752)) ([4466d0a](https://github.com/videojs/v10/commit/4466d0a15c2be9d1a0c23dace95cbd079d228d97)) +* **core:** derive effective mute state for volume UI components ([#753](https://github.com/videojs/v10/issues/753)) ([14bcdc8](https://github.com/videojs/v10/commit/14bcdc833f0a09bb3ca92d8a02e68b6802aeebac)) +* **core:** use double-RAF in transition open to enable entry animations ([#755](https://github.com/videojs/v10/issues/755)) ([7b6b301](https://github.com/videojs/v10/commit/7b6b3019dfaa41e34970e5827bd2ba21c7712fbe)) +* delegate not defining Delegate props ([#751](https://github.com/videojs/v10/issues/751)) ([c61fcdc](https://github.com/videojs/v10/commit/c61fcdcc3a64f8a4ef32ec3fd332f1ec5cdbb311)) +* destroy hls.js instance on media unmount ([#749](https://github.com/videojs/v10/issues/749)) ([c4e8bbd](https://github.com/videojs/v10/commit/c4e8bbd3a2bcb66027c64faf8de0ec61d22c84fa)) +* ssr issue with hls.js ([#758](https://github.com/videojs/v10/issues/758)) ([bcc492f](https://github.com/videojs/v10/commit/bcc492f63f8d3e248b3cbba67cbc516420270920)) +* textTrackList and optimize ([#760](https://github.com/videojs/v10/issues/760)) ([04e98f4](https://github.com/videojs/v10/commit/04e98f4007dcc5957ff4b646482036da49e1efd4)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @videojs/store bumped to 10.0.0-alpha.9 + * @videojs/utils bumped to 10.0.0-alpha.9 + ## [10.0.0-alpha.8](https://github.com/videojs/v10/compare/@videojs/core@10.0.0-alpha.7...@videojs/core@10.0.0-alpha.8) (2026-03-05) diff --git a/packages/core/package.json b/packages/core/package.json index ca21695e..eaf91a79 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,7 +1,7 @@ { "name": "@videojs/core", "type": "module", - "version": "10.0.0-alpha.8", + "version": "10.0.0-alpha.9", "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 7432848b..755c2af3 100644 --- a/packages/element/CHANGELOG.md +++ b/packages/element/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [10.0.0-alpha.9](https://github.com/videojs/v10/compare/@videojs/element@10.0.0-alpha.8...@videojs/element@10.0.0-alpha.9) (2026-03-06) + + +### Bug Fixes + +* **html:** add destroy ([#748](https://github.com/videojs/v10/issues/748)) ([3f11424](https://github.com/videojs/v10/commit/3f11424b182f9889a572590e38219e6289f544c2)) + ## [10.0.0-alpha.8](https://github.com/videojs/v10/compare/@videojs/element@10.0.0-alpha.7...@videojs/element@10.0.0-alpha.8) (2026-03-05) diff --git a/packages/element/package.json b/packages/element/package.json index 51f23f53..c666cb65 100644 --- a/packages/element/package.json +++ b/packages/element/package.json @@ -1,7 +1,7 @@ { "name": "@videojs/element", "type": "module", - "version": "10.0.0-alpha.8", + "version": "10.0.0-alpha.9", "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 16f18151..8b782086 100644 --- a/packages/html/CHANGELOG.md +++ b/packages/html/CHANGELOG.md @@ -1,5 +1,37 @@ # Changelog +## [10.0.0-alpha.9](https://github.com/videojs/v10/compare/@videojs/html@10.0.0-alpha.8...@videojs/html@10.0.0-alpha.9) (2026-03-06) + + +### Features + +* add subtitles handling + captions core ([#692](https://github.com/videojs/v10/issues/692)) ([5c11606](https://github.com/videojs/v10/commit/5c116065a91ed04753bb2cb83e72dd6471f75ced)) +* **html:** add alert dialog element ([#741](https://github.com/videojs/v10/issues/741)) ([5fc52aa](https://github.com/videojs/v10/commit/5fc52aa969292a8b8f636b532ac5ff27b082b222)) + + +### Bug Fixes + +* delegate not defining Delegate props ([#751](https://github.com/videojs/v10/issues/751)) ([c61fcdc](https://github.com/videojs/v10/commit/c61fcdcc3a64f8a4ef32ec3fd332f1ec5cdbb311)) +* destroy hls.js instance on media unmount ([#749](https://github.com/videojs/v10/issues/749)) ([c4e8bbd](https://github.com/videojs/v10/commit/c4e8bbd3a2bcb66027c64faf8de0ec61d22c84fa)) +* **html:** add destroy ([#748](https://github.com/videojs/v10/issues/748)) ([3f11424](https://github.com/videojs/v10/commit/3f11424b182f9889a572590e38219e6289f544c2)) + + +### Reverts + +* **html:** remove double raf hls destroy ([#754](https://github.com/videojs/v10/issues/754)) ([dce16ae](https://github.com/videojs/v10/commit/dce16ae5fd414563e6788b506e11bd1cff568870)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @videojs/core bumped to 10.0.0-alpha.9 + * @videojs/element bumped to 10.0.0-alpha.9 + * @videojs/store bumped to 10.0.0-alpha.9 + * @videojs/utils bumped to 10.0.0-alpha.9 + * devDependencies + * @videojs/icons bumped to 10.0.0-alpha.9 + ## [10.0.0-alpha.8](https://github.com/videojs/v10/compare/@videojs/html@10.0.0-alpha.7...@videojs/html@10.0.0-alpha.8) (2026-03-05) diff --git a/packages/html/package.json b/packages/html/package.json index a9a3a41c..1b4cbbc2 100644 --- a/packages/html/package.json +++ b/packages/html/package.json @@ -1,7 +1,7 @@ { "name": "@videojs/html", "type": "module", - "version": "10.0.0-alpha.8", + "version": "10.0.0-alpha.9", "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 48ac03cb..3c9dd927 100644 --- a/packages/icons/CHANGELOG.md +++ b/packages/icons/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [10.0.0-alpha.9](https://github.com/videojs/v10/compare/@videojs/icons@10.0.0-alpha.8...@videojs/icons@10.0.0-alpha.9) (2026-03-06) + + +### Miscellaneous Chores + +* **@videojs/icons:** Synchronize videojs versions + + +### Dependencies + +* The following workspace dependencies were updated + * devDependencies + * @videojs/utils bumped to 10.0.0-alpha.9 + ## [10.0.0-alpha.8](https://github.com/videojs/v10/compare/@videojs/icons@10.0.0-alpha.7...@videojs/icons@10.0.0-alpha.8) (2026-03-05) diff --git a/packages/icons/package.json b/packages/icons/package.json index 27400dec..8fbea776 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-alpha.8", + "version": "10.0.0-alpha.9", "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 e3c4e57f..d38a5a3d 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## [10.0.0-alpha.9](https://github.com/videojs/v10/compare/@videojs/react@10.0.0-alpha.8...@videojs/react@10.0.0-alpha.9) (2026-03-06) + + +### Features + +* add subtitles handling + captions core ([#692](https://github.com/videojs/v10/issues/692)) ([5c11606](https://github.com/videojs/v10/commit/5c116065a91ed04753bb2cb83e72dd6471f75ced)) +* **html:** add alert dialog element ([#741](https://github.com/videojs/v10/issues/741)) ([5fc52aa](https://github.com/videojs/v10/commit/5fc52aa969292a8b8f636b532ac5ff27b082b222)) +* **react:** add alert dialog component ([#739](https://github.com/videojs/v10/issues/739)) ([536c86d](https://github.com/videojs/v10/commit/536c86d9d1b648f4e1b94b7a55b17735cc0ea03c)) +* **react:** add alert dialog to video skin ([#747](https://github.com/videojs/v10/issues/747)) ([5dfc67e](https://github.com/videojs/v10/commit/5dfc67ed02d92512b500c4461898050988e291a8)) + + +### Bug Fixes + +* **ci:** rework bundle size report ([#745](https://github.com/videojs/v10/issues/745)) ([9f456f5](https://github.com/videojs/v10/commit/9f456f572f340f88b7e3e57316dd284e48631f78)) +* destroy hls.js instance on media unmount ([#749](https://github.com/videojs/v10/issues/749)) ([c4e8bbd](https://github.com/videojs/v10/commit/c4e8bbd3a2bcb66027c64faf8de0ec61d22c84fa)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @videojs/core bumped to 10.0.0-alpha.9 + * @videojs/store bumped to 10.0.0-alpha.9 + * @videojs/utils bumped to 10.0.0-alpha.9 + * devDependencies + * @videojs/icons bumped to 10.0.0-alpha.9 + ## [10.0.0-alpha.8](https://github.com/videojs/v10/compare/@videojs/react@10.0.0-alpha.7...@videojs/react@10.0.0-alpha.8) (2026-03-05) diff --git a/packages/react/package.json b/packages/react/package.json index 103e4d43..634b134b 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,7 +1,7 @@ { "name": "@videojs/react", "type": "module", - "version": "10.0.0-alpha.8", + "version": "10.0.0-alpha.9", "description": "React library for building media players", "license": "Apache-2.0", "repository": { diff --git a/packages/store/CHANGELOG.md b/packages/store/CHANGELOG.md index 3776ef0e..25f26f21 100644 --- a/packages/store/CHANGELOG.md +++ b/packages/store/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [10.0.0-alpha.9](https://github.com/videojs/v10/compare/@videojs/store@10.0.0-alpha.8...@videojs/store@10.0.0-alpha.9) (2026-03-06) + + +### Miscellaneous Chores + +* **@videojs/store:** Synchronize videojs versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @videojs/utils bumped to 10.0.0-alpha.9 + * devDependencies + * @videojs/element bumped to 10.0.0-alpha.9 + * peerDependencies + * @videojs/element bumped to 10.0.0-alpha.9 + ## [10.0.0-alpha.8](https://github.com/videojs/v10/compare/@videojs/store@10.0.0-alpha.7...@videojs/store@10.0.0-alpha.8) (2026-03-05) diff --git a/packages/store/package.json b/packages/store/package.json index 2a143490..1ee1dbe3 100644 --- a/packages/store/package.json +++ b/packages/store/package.json @@ -1,7 +1,7 @@ { "name": "@videojs/store", "type": "module", - "version": "10.0.0-alpha.8", + "version": "10.0.0-alpha.9", "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 5772142f..4f3e20d3 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [10.0.0-alpha.9](https://github.com/videojs/v10/compare/@videojs/utils@10.0.0-alpha.8...@videojs/utils@10.0.0-alpha.9) (2026-03-06) + + +### Features + +* add subtitles handling + captions core ([#692](https://github.com/videojs/v10/issues/692)) ([5c11606](https://github.com/videojs/v10/commit/5c116065a91ed04753bb2cb83e72dd6471f75ced)) + + +### Bug Fixes + +* textTrackList and optimize ([#760](https://github.com/videojs/v10/issues/760)) ([04e98f4](https://github.com/videojs/v10/commit/04e98f4007dcc5957ff4b646482036da49e1efd4)) + ## [10.0.0-alpha.8](https://github.com/videojs/v10/compare/@videojs/utils@10.0.0-alpha.7...@videojs/utils@10.0.0-alpha.8) (2026-03-05) diff --git a/packages/utils/package.json b/packages/utils/package.json index 7c8563dc..94bfee40 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,7 +1,7 @@ { "name": "@videojs/utils", "type": "module", - "version": "10.0.0-alpha.8", + "version": "10.0.0-alpha.9", "description": "Utility functions and helpers for Video.js", "license": "Apache-2.0", "repository": {