diff --git a/_data/versions.yml b/_data/versions.yml
index a8f1a5239f..1ded92c132 100644
--- a/_data/versions.yml
+++ b/_data/versions.yml
@@ -1,8 +1,11 @@
- name: "4.6"
- flavor: "dev3"
- release_date: "4 November 2025"
- release_notes: "/article/dev-snapshot-godot-4-6-dev-3/"
+ flavor: "dev4"
+ release_date: "14 November 2025"
+ release_notes: "/article/dev-snapshot-godot-4-6-dev-4/"
releases:
+ - name: "dev3"
+ release_date: "4 November 2025"
+ release_notes: "/article/dev-snapshot-godot-4-6-dev-3/"
- name: "dev2"
release_date: "20 October 2025"
release_notes: "/article/dev-snapshot-godot-4-6-dev-2/"
diff --git a/collections/_article/dev-snapshot-godot-4-6-dev-3.md b/collections/_article/dev-snapshot-godot-4-6-dev-3.md
index 0f64be7d14..6f9017cb86 100644
--- a/collections/_article/dev-snapshot-godot-4-6-dev-3.md
+++ b/collections/_article/dev-snapshot-godot-4-6-dev-3.md
@@ -94,6 +94,7 @@ There are too many exciting changes to list them all here, but here's a curated
- Import: Betsy: Convert RGB to RGBA on the GPU for faster compression ([GH-110060](https://github.com/godotengine/godot/pull/110060)).
- Navigation: Make `NavigationServer` backend engine selectable ([GH-106290](https://github.com/godotengine/godot/pull/106290)).
- Rendering: Add Persistent Buffers utilizing UMA ([GH-111183](https://github.com/godotengine/godot/pull/111183)).
+- Rendering: D3D12: Greatly reduce shader conversion time & fix spec constant bitmasking ([GH-111762](https://github.com/godotengine/godot/pull/111762)).
- Rendering: Implement a very simple SSAO in GLES3 ([GH-109447](https://github.com/godotengine/godot/pull/109447)).
- Rendering: Overhaul and optimize Glow in the mobile renderer ([GH-110077](https://github.com/godotengine/godot/pull/110077)).
- Rendering: Use half float precision buffer for 3D when HDR2D is enabled ([GH-109971](https://github.com/godotengine/godot/pull/109971)).
diff --git a/collections/_article/dev-snapshot-godot-4-6-dev-4.md b/collections/_article/dev-snapshot-godot-4-6-dev-4.md
new file mode 100644
index 0000000000..0546aa83e0
--- /dev/null
+++ b/collections/_article/dev-snapshot-godot-4-6-dev-4.md
@@ -0,0 +1,140 @@
+---
+title: "Dev snapshot: Godot 4.6 dev 4"
+excerpt: Powering through the post-GodotFest blues
+categories: [pre-release]
+author: Thaddeus Crews
+image: /storage/blog/covers/dev-snapshot-godot-4-6-dev-4.jpg
+image_caption_title: House of Necrosis
+image_caption_description: A game by Warkus
+date: 2025-11-14 12:00:00
+---
+
+With [GodotFest](https://godotfest.com/) now behind us, it's only natural that some users would be left with a sense of longing. Well we have just the thing: our most recent Godot 4.6 development snapshot! It's not even been two weeks since the last one, but we couldn't just leave y'all hanging for more Godot content. As always, these snapshots feature big changes, meaning they're likely accompanied by big regressions and bugs; get those tests and reports in as early as possible to ensure an expedient release cycle!
+
+Please consider [supporting the project financially](#support), if you are able. Godot is maintained by the efforts of volunteers and a small team of paid contributors. Your donations go towards sponsoring their work and ensuring they can dedicate their undivided attention to the needs of the project.
+
+[Jump to the **Downloads** section](#downloads), and give it a spin right now, or continue reading to learn more about improvements in this release. You can also try the [**Web editor**](https://editor.godotengine.org/releases/4.6.dev3/), the [**XR editor**](https://www.meta.com/s/3yJ7i8kop), or the [**Android editor**](https://play.google.com/store/apps/details?id=org.godotengine.editor.v4) for this release. If you are interested in the latter, please request to join [our testing group](https://groups.google.com/g/godot-testers) to get access to pre-release builds.
+
+---
+
+*The cover illustration is from* [**House of Necrosis**](https://store.steampowered.com/app/2005870/House_of_Necrosis/?curator_clanid=41324400), *a turn-based, horror PRG where you must survive the horrors of a mansion that changes every time it's entered. You can get the game or try the demo on [Steam](https://store.steampowered.com/app/2005870/House_of_Necrosis/?curator_clanid=41324400), and follow the developer on [YouTube](https://www.youtube.com/@Warrrkus), [Bluesky](https://bsky.app/profile/mycard.utustudios.com), or [itch.io](https://warrrkus.itch.io/).*
+
+## Highlights
+
+### Animation: Add `SkeletonModifier3D` IKs as `IKModifier3D`
+
+For those that aren't already aware, `SkeletonModificationStack3D` was removed in the transition from 3.x to 4.0, as it was deemed wildly unstable and unsalvageable. Since then, [Tokage](https://github.com/TokageItLab) has been on a journey to reincorporate the functionality such that it lives up to the standards the rest of the engine aims for. This started early last year with the incorporation of `SkeletonModifier3D` ([GH-87888](https://github.com/godotengine/godot/pull/87888)), which restored the majority of baseline functionality. However, there was one area which didn't make the transiton: IKs.
+
+The process of supporting IKs proved to be far more involved, as it too needed to be incorporated in a way that matched the engine's standards and expectations. Consequently, that meant a solution that naturally expands off our `Node` paradigm; a tall order for how many use-cases and scenarios one must consider and account for when dealing with IKs. This resulted in `SkeletonModifier3D` receiving **8 new subclasses**, which are as follows:
+
+- [`IKModifier3D`](https://docs.godotengine.org/en/latest/classes/class_ikmodifier3d.html)
+ - [`ChainIK3D`](https://docs.godotengine.org/en/latest/classes/class_chainik3d.html)
+ - [`IterateIK3D`](https://docs.godotengine.org/en/latest/classes/class_iterateik3d.html)
+ - [`CCDIK3D`](https://docs.godotengine.org/en/latest/classes/class_ccdik3d.html#class-ccdik3d)
+ - [`FABRIK3D`](https://docs.godotengine.org/en/latest/classes/class_fabrik3d.html#class-fabrik3d)
+ - [`JacobianIK3D`](https://docs.godotengine.org/en/latest/classes/class_jacobianik3d.html#class-jacobianik3d)
+ - [`SplineIK3D`](https://docs.godotengine.org/en/latest/classes/class_splineik3d.html#class-splineik3d)
+- [`TwoBoneIK3D`](https://docs.godotengine.org/en/latest/classes/class_twoboneik3d.html#class-twoboneik3d)
+
+Attempting to go over all of these is well beyond the scope of this blog post, so readers wanting more information should check out the pull request for more details. Instead, we'll show off one of the bugfixes to this new system in ([GH-112573](https://github.com/godotengine/godot/pull/112573)), as it provides an easily digestable visualization of that this system is capable of.
+
+#### Before
+
+
+
+#### After
+
+
+
+### Project manager: Various improvements
+
+The editor recieved a **lot** of love this development snapshot, with many features well worth a look in the curated highlights. However, for this blog post, we'll be focusing on an oft-overlooked element of our editor: the project manager. While technically separate from the editor in the traditional sense, it's editor-exclusive functionality which exists to launch project editors, so they're invariably intertwined. With the project manager getting an uncharacteristic amount of attention this cycle, here's a quick lightning-round of changes:
+
+[Rindbee](https://github.com/Rindbee) is starting things off with an improved UI navigation ([GH-101129](https://github.com/godotengine/godot/pull/101129)). The previous implementation clashed with our recent AccessKit integration, as it didn't lend itself to keyboard navigation. Now a newly procided focus style makes navigation easier than ever:
+
+
+
+Next is [Malcolm Anderson](https://github.com/Meorge), who implemented functionality for opening the project in the file explorer as a "Show in File Manager" button ([GH-111624](https://github.com/godotengine/godot/pull/111624)). Unfortunately, while a highly-requested feature, it proved to be too cluttered and was slated for a revert. Not being one to throw out the baby with the bathwater, [Tomasz Chabora](https://github.com/KoBeWi) saved the functionality by reimplementing it in the form of a newly-added right-click menu:
+
+
+
+Speaking of Tomasz, he's here to round things off with yet another highly-requested feature: the ability to modify editor settings within the project manager ([GH-82212](https://github.com/godotengine/godot/pull/82212)). Now opening a project just to make general adjustments is no longer necessary, as it can all be handled in the much more lightweight context of the project manager:
+
+
+
+### Buildsystem: Support dedicated profilers
+
+
This is unapologetically super-nerd territory, and strictly targeting those who already know what this is talking about. Everyone else, feel free to jump to the curated highlights instead.
+