This repository has been archived by the owner on Aug 8, 2023. It is now read-only.
2.22.0
- ✨ Added caption support to code cards - Kevin Ansfield
- ✨ Added language selection to code cards (#1180) - Kevin Ansfield
- ✨ Added parsing of html cards when converting HTML via the v2 Admin API - Kevin Ansfield
- ✨ Added caption and language extraction for code blocks when converting HTML via API - Kevin Ansfield
- 🎨 Allowed protocol overwrite for canonical URLs (#10729) - Aileen Nowak
- 🐛 Fixed password submission for private blogging - Fabien O'Carroll
- 🐛 Fixed post scheduling on restart (#10726) - Katharina Irrgang
- 🐛 Fixed Twitter card having wrong property when no feature image provided - Aileen Nowak
- 🐛 Fixed postinstall script when running on Windows - Fabien O'Carroll
- 🐛 Fixed meta schema for 'page' context in dynamic routing - Nazar Gargol
- 🐛 Fixed 404 in collection index page if using data.slug - Nazar Gargol
Casper (the default theme) has been upgraded to 2.10.0:
- ✨ Added support for code cards with captions (#575) - Kevin Ansfield
You can see the full change log for the details of every change included in this release.
Note on captioned code card support in themes:
Non-captioned code cards will continue to render as before:
<pre><code>....</code></pre>
Captioned code cards will be rendered inside a <figure>
element and may require changes to theme styles for full support:
<figure class="kg-card kg-code-card">
<pre><code>...</code></pre>
<figcaption>...<figcaption>
</figure>
For an example of required styling changes see this PR on Casper