Commit e84384b4 for codemirror.net
commit e84384b4210bc35300994de07c6333666f2a5c9e
Author: Marijn Haverbeke <marijn@haverbeke.berlin>
Date: Mon Nov 20 10:57:37 2023 +0100
Mark version 5.65.16
diff --git a/AUTHORS b/AUTHORS
index 3dd26e0f..c38f088f 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -301,6 +301,7 @@ fraxx001
Fredrik Borg
FUJI Goro (gfx)
fzipp
+Gabriela Gutierrez
Gabriel Gheorghian
Gabriel Horner
Gabriel Nahmias
@@ -718,6 +719,7 @@ Panupong Pasupat
paris
Paris
Paris Kasidiaris
+Parker Lougheed
Patil Arpith
Patrick Kettner
Patrick Stoica
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 31c90437..6ba18d2c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,13 @@
+## 5.65.16 (2023-11-20)
+
+### Bug fixes
+
+Fix focus tracking in shadow DOM.
+
+[go mode](https://codemirror.net/5/mode/go/): Allow underscores in numbers.
+
+[jsx mode](https://codemirror.net/5/mode/jsx/index.html): Support TS generics marked by trailing comma.
+
## 5.65.15 (2023-08-29)
### Bug fixes
diff --git a/doc/manual.html b/doc/manual.html
index 7496ff27..2a915729 100644
--- a/doc/manual.html
+++ b/doc/manual.html
@@ -70,7 +70,7 @@
<section class=first id=overview>
<h2 style="position: relative">
User manual and reference guide
- <span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.65.15</span>
+ <span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.65.16</span>
</h2>
<p>CodeMirror is a code-editor component that can be embedded in
diff --git a/doc/releases.html b/doc/releases.html
index 5d94bad1..9777ec70 100644
--- a/doc/releases.html
+++ b/doc/releases.html
@@ -34,6 +34,14 @@
<h2>Version 5.x</h2>
+ <p class="rel">20-11-2023: <a href="https://codemirror.net/5/codemirror-5.65.16.zip">Version 5.65.16</a>:</p>
+
+ <ul class="rel-note">
+ <li>Fix focus tracking in shadow DOM.</li>
+ <li><a href="https://codemirror.net/5/mode/go/">go mode</a>: Allow underscores in numbers.</li>
+ <li><a href="https://codemirror.net/5/mode/jsx/index.html">jsx mode</a>: Support TS generics marked by trailing comma.</li>
+ </ul>
+
<p class="rel">29-08-2023: <a href="https://codemirror.net/5/codemirror-5.65.15.zip">Version 5.65.15</a>:</p>
<ul class="rel-note">
diff --git a/index.html b/index.html
index 319adcba..28c0918d 100644
--- a/index.html
+++ b/index.html
@@ -92,7 +92,7 @@
</script>
<div class=actions>
- Get the current version: <a href="https://codemirror.net/5/codemirror.zip">5.65.15</a>.<br>
+ Get the current version: <a href="https://codemirror.net/5/codemirror.zip">5.65.16</a>.<br>
You can see the <a href="https://github.com/codemirror/codemirror5" title="GitHub repository">code</a>,<br>
read the <a href="doc/releases.html">release notes</a>,<br>
or study the <a href="doc/manual.html">user manual</a>.
diff --git a/package.json b/package.json
index eb0c44cf..2c618b4d 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "codemirror",
- "version": "5.65.15",
+ "version": "5.65.16",
"main": "lib/codemirror.js",
"style": "lib/codemirror.css",
"author": {
diff --git a/src/edit/main.js b/src/edit/main.js
index f69663b6..650d09bd 100644
--- a/src/edit/main.js
+++ b/src/edit/main.js
@@ -66,4 +66,4 @@ import { addLegacyProps } from "./legacy.js"
addLegacyProps(CodeMirror)
-CodeMirror.version = "5.65.15"
+CodeMirror.version = "5.65.16"