Skip to content

Commit e84384b

Browse files
committed
Mark version 5.65.16
1 parent 676fc52 commit e84384b

File tree

7 files changed

+24
-4
lines changed

7 files changed

+24
-4
lines changed

AUTHORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,7 @@ fraxx001
301301
Fredrik Borg
302302
FUJI Goro (gfx)
303303
fzipp
304+
Gabriela Gutierrez
304305
Gabriel Gheorghian
305306
Gabriel Horner
306307
Gabriel Nahmias
@@ -718,6 +719,7 @@ Panupong Pasupat
718719
paris
719720
Paris
720721
Paris Kasidiaris
722+
Parker Lougheed
721723
Patil Arpith
722724
Patrick Kettner
723725
Patrick Stoica

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 5.65.16 (2023-11-20)
2+
3+
### Bug fixes
4+
5+
Fix focus tracking in shadow DOM.
6+
7+
[go mode](https://codemirror.net/5/mode/go/): Allow underscores in numbers.
8+
9+
[jsx mode](https://codemirror.net/5/mode/jsx/index.html): Support TS generics marked by trailing comma.
10+
111
## 5.65.15 (2023-08-29)
212

313
### Bug fixes

doc/manual.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
<section class=first id=overview>
7171
<h2 style="position: relative">
7272
User manual and reference guide
73-
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.65.15</span>
73+
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.65.16</span>
7474
</h2>
7575

7676
<p>CodeMirror is a code-editor component that can be embedded in

doc/releases.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@ <h2>Version 6.x</h2>
3434

3535
<h2>Version 5.x</h2>
3636

37+
<p class="rel">20-11-2023: <a href="https://codemirror.net/5/codemirror-5.65.16.zip">Version 5.65.16</a>:</p>
38+
39+
<ul class="rel-note">
40+
<li>Fix focus tracking in shadow DOM.</li>
41+
<li><a href="https://codemirror.net/5/mode/go/">go mode</a>: Allow underscores in numbers.</li>
42+
<li><a href="https://codemirror.net/5/mode/jsx/index.html">jsx mode</a>: Support TS generics marked by trailing comma.</li>
43+
</ul>
44+
3745
<p class="rel">29-08-2023: <a href="https://codemirror.net/5/codemirror-5.65.15.zip">Version 5.65.15</a>:</p>
3846

3947
<ul class="rel-note">

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ <h2>This is CodeMirror</h2>
9292
</script>
9393

9494
<div class=actions>
95-
Get the current version: <a href="https://codemirror.net/5/codemirror.zip">5.65.15</a>.<br>
95+
Get the current version: <a href="https://codemirror.net/5/codemirror.zip">5.65.16</a>.<br>
9696
You can see the <a href="https://github.com/codemirror/codemirror5" title="GitHub repository">code</a>,<br>
9797
read the <a href="doc/releases.html">release notes</a>,<br>
9898
or study the <a href="doc/manual.html">user manual</a>.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codemirror",
3-
"version": "5.65.15",
3+
"version": "5.65.16",
44
"main": "lib/codemirror.js",
55
"style": "lib/codemirror.css",
66
"author": {

src/edit/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,4 @@ import { addLegacyProps } from "./legacy.js"
6666

6767
addLegacyProps(CodeMirror)
6868

69-
CodeMirror.version = "5.65.15"
69+
CodeMirror.version = "5.65.16"

0 commit comments

Comments
 (0)