+This is a relatively minor feature but an example of a neat user experience optimisation,
+[recommended by @aswgxf](https://github.com/BookStackApp/BookStack/issues/4571).
+In the editor, when linking to another item in the system via the selector (commonly via the `Ctrl+Shift+K` shortcut)
+we'll now pre-pill the search box with the text that was selected (if any) in the editor:
+
+TODO - Image, or video? Webm?
+
+### Logical Theme System Error Handling
+
+Within the v23.06 release I made a lot of changes to the location and paths of classes within the BookStack codebase.
+These changes caused many usages of the logical theme system to break, which is expected, but many of those issues were
+not clear to users which lead to unknown errors which many raised support queries for.
+
+To help in such scenarios, extra error handling has been added to help indicate when logical theme system
+code fails to load.
+
+TODO - Image of error handled
+
+This won't catch all error scenarios of code within your `functions.php`, but it should help indicate issues
+in the most common of scenarios upon changes from updates.
+
+### Image Upload Error Handling Improvements
+
+Image uploads are a common source of potential issues for a system like BookStack.
+Various limits and software configurations can lead to images failing to upload.
+Previously in BookStack we didn't always handle these in the best way.
+Failed uploads could respond with vague error messages, while potentially preventing the gallery from loading afterwards.
+
+In this release cycle, I've spent a good while emaulating and testing common cases to better address these common cases.
+Here's an extreme example to demonstrate the new messaging that can appear:
+
+TODO - Image of image manager with failed messages
+
+In particular, the tricky issue to handle here has been handling memory-limit events.
+When these are triggered, the application goes straight into a shutdown-like mode which makes it difficult to catch
+these errors in a typical error handling manner. Instead we have to reserve some extra memory,
+then hook into that shutdown handling event so we can customise the application response with something friendlier.