diff --git a/.release-please-manifest.json b/.release-please-manifest.json
index 51c592b8d9..629cc5730f 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1,3 +1,3 @@
 {
-  ".": "4.12.5"
+  ".": "4.12.6"
 }
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1d5a341197..c500ea24ad 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,29 @@
 # Changelog
 
+## [4.12.6](https://github.com/shaka-project/shaka-player/compare/v4.12.5...v4.12.6) (2025-01-06)
+
+
+### Bug Fixes
+
+* Avoid useless MSE reset when transmuxing muxed content ([#7818](https://github.com/shaka-project/shaka-player/issues/7818)) ([cae99c3](https://github.com/shaka-project/shaka-player/commit/cae99c369efc0aa8e7abe4fd309b7c3e47a52199))
+* **Docs:** Remove info about small/large gaps from manual ([#7762](https://github.com/shaka-project/shaka-player/issues/7762)) ([9e2c508](https://github.com/shaka-project/shaka-player/commit/9e2c5081d5c097178c87d2303da979b3101cc084))
+* Don't ignore the license server in manifest when another key-system has license server in configuration ([#7797](https://github.com/shaka-project/shaka-player/issues/7797)) ([f6f665f](https://github.com/shaka-project/shaka-player/commit/f6f665f78ae9fc095cb49c1c159caed37f01bd47))
+* Fix change timestampOffset on discontinuities when not necessary ([#7823](https://github.com/shaka-project/shaka-player/issues/7823)) ([ea8aff9](https://github.com/shaka-project/shaka-player/commit/ea8aff9d48083ddfb2f613362d8129b30e5b4069))
+* Fix ClearKey license on old CDMs ([#7816](https://github.com/shaka-project/shaka-player/issues/7816)) ([358dc49](https://github.com/shaka-project/shaka-player/commit/358dc49dca9e13eb50ad2a0cb78b9f01e5bd4d71))
+* Fix gaps produced by the transmuxer ([#7822](https://github.com/shaka-project/shaka-player/issues/7822)) ([d3696dd](https://github.com/shaka-project/shaka-player/commit/d3696dd355f65244e8a30b953906cacccecd8b12))
+* Follow the configured playRange for src= ([#7825](https://github.com/shaka-project/shaka-player/issues/7825)) ([70e0e18](https://github.com/shaka-project/shaka-player/commit/70e0e18abb515b3e61d00edece60c991eb0c64d5))
+* **HLS:** Correctly identify webvtt subtitles with cmft extension ([#7791](https://github.com/shaka-project/shaka-player/issues/7791)) ([0305383](https://github.com/shaka-project/shaka-player/commit/0305383eb325bd685b1271fbbc3012443046db9b))
+* **HLS:** Disable audio/video correctly when loading a TS media playlist ([#7815](https://github.com/shaka-project/shaka-player/issues/7815)) ([1cd1ed7](https://github.com/shaka-project/shaka-player/commit/1cd1ed7ce9d1faf4d3186acb6a313f4b988cf80b))
+* **HLS:** Do not use EXT-X-PROGRAM-DATE-TIME on vod when there is only video or audio ([#7802](https://github.com/shaka-project/shaka-player/issues/7802)) ([7a57011](https://github.com/shaka-project/shaka-player/commit/7a570117c020168ed66c2fe1c5e1a33ee1982363))
+* **HLS:** Fix timestamp offset for raw formats when using segments mode ([#7819](https://github.com/shaka-project/shaka-player/issues/7819)) ([3190a0e](https://github.com/shaka-project/shaka-player/commit/3190a0e395139eebf50f2ce88613a71d0adda5c2))
+* **Offline:** Allow storage of MSS streams ([#7799](https://github.com/shaka-project/shaka-player/issues/7799)) ([a7591a0](https://github.com/shaka-project/shaka-player/commit/a7591a0ca069846045a6e5c40998c7cb3d975537))
+* re-open the `MediaSource` if `readyState` is not open when the `init()` method is called. ([#7783](https://github.com/shaka-project/shaka-player/issues/7783)) ([b63466d](https://github.com/shaka-project/shaka-player/commit/b63466d61b532a6aeb8f2b7b0c54c5ae5994b855))
+* Remove useless calls to isTypeSupported ([#7817](https://github.com/shaka-project/shaka-player/issues/7817)) ([220d888](https://github.com/shaka-project/shaka-player/commit/220d88838cb776c7b44a8d2e55e1686bdb199c45))
+* Remove useless deprecation in UITextDisplayer and add some guards in SimpleTextDisplayer ([#7805](https://github.com/shaka-project/shaka-player/issues/7805)) ([5252c8d](https://github.com/shaka-project/shaka-player/commit/5252c8d34d79f5c2e0ffc0e9d0aaf7416be61321))
+* **Transmuxer:** Fix transmuxer with overflow data (video nalus and aac samples) between PES ([#7813](https://github.com/shaka-project/shaka-player/issues/7813)) ([46f2a33](https://github.com/shaka-project/shaka-player/commit/46f2a330d3a716759f5bce2082b1e4cf2d70257f))
+* **UI:** Allow 1x playback rate when default playback rate is not x1 ([#7787](https://github.com/shaka-project/shaka-player/issues/7787)) ([0d43964](https://github.com/shaka-project/shaka-player/commit/0d43964afcac992fcb91fc308463c59562c44bcd))
+* **UI:** Video starts playing automatically when selecting a playback rate ([#7786](https://github.com/shaka-project/shaka-player/issues/7786)) ([33373de](https://github.com/shaka-project/shaka-player/commit/33373de8bfd74a9bbd6178e0f72488411412a88f))
+
 ## [4.12.5](https://github.com/shaka-project/shaka-player/compare/v4.12.4...v4.12.5) (2024-12-12)
 
 
diff --git a/lib/player.js b/lib/player.js
index 3f8fd4ba1b..932f6baed5 100644
--- a/lib/player.js
+++ b/lib/player.js
@@ -8298,7 +8298,7 @@ shaka.Player.TYPICAL_BUFFERING_THRESHOLD_ = 0.5;
  * @export
  */
 // eslint-disable-next-line no-useless-concat, max-len
-shaka.Player.version = 'v4.12.5' + '-uncompiled';  // x-release-please-version
+shaka.Player.version = 'v4.12.6' + '-uncompiled';  // x-release-please-version
 
 // Initialize the deprecation system using the version string we just set
 // on the player.
diff --git a/package-lock.json b/package-lock.json
index 73fafaca9b..ef3b59672f 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
 {
   "name": "shaka-player",
-  "version": "4.12.5",
+  "version": "4.12.6",
   "lockfileVersion": 2,
   "requires": true,
   "packages": {
     "": {
       "name": "shaka-player",
-      "version": "4.12.5",
+      "version": "4.12.6",
       "license": "Apache-2.0",
       "dependencies": {
         "eme-encryption-scheme-polyfill": "^2.1.6"
diff --git a/package.json b/package.json
index b680bc990a..c927e51d00 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
 {
   "name": "shaka-player",
   "description": "DASH/EME video player library",
-  "version": "4.12.5",
+  "version": "4.12.6",
   "homepage": "https://github.com/shaka-project/shaka-player",
   "author": "Google",
   "maintainers": [