Skip to content

Commit 48487ee

Browse files
committed
Mark version 5.59.2
1 parent 8852916 commit 48487ee

File tree

7 files changed

+28
-4
lines changed

7 files changed

+28
-4
lines changed

AUTHORS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ Alexandre Bique
3636
Alex Churchill
3737
alexey-k
3838
Alex Piggott
39+
Alf Eaton
3940
Aliaksei Chapyzhenka
4041
Allen Sarkisyan
4142
Ami Fischman
@@ -510,6 +511,7 @@ Lucas Buchala
510511
Luciano Longo
511512
Luciano Santana
512513
Lu Fangjian
514+
Łukasz Wielgus
513515
Luke Browning
514516
Luke Granger-Brown
515517
Luke Stagner
@@ -832,6 +834,7 @@ Thaddee Tyl
832834
thanasis
833835
TheHowl
834836
themrmax
837+
Thiemo Kreuz
835838
think
836839
Thomas Brouard
837840
Thomas Dvornik

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 5.59.2 (2021-01-20)
2+
3+
### Bug fixes
4+
5+
Don't try to scroll the selection into view in `readonly: "nocursor"` mode.
6+
7+
[closebrackets addon](https://codemirror.net/doc/manual.html#addon_closebrackets): Fix a regression in the behavior of pressing enter between brackets.
8+
9+
[javascript mode](https://codemirror.net/mode/javascript/): Fix an infinite loop on specific syntax errors in object types.
10+
11+
various modes: Fix inefficient RegExp matching.
12+
113
## 5.59.1 (2020-12-31)
214

315
### 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.59.1</span>
73+
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.59.2</span>
7474
</h2>
7575

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

doc/releases.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,15 @@ <h2>Release notes and version history</h2>
3030

3131
<h2>Version 5.x</h2>
3232

33+
<p class="rel">20-01-2021: <a href="https://codemirror.net/codemirror-5.59.2.zip">Version 5.59.2</a>:</p>
34+
35+
<ul class="rel-note">
36+
<li>Don’t try to scroll the selection into view in <code>readonly: "nocursor"</code> mode.</li>
37+
<li><a href="https://codemirror.net/doc/manual.html#addon_closebrackets">closebrackets addon</a>: Fix a regression in the behavior of pressing enter between brackets.</li>
38+
<li><a href="https://codemirror.net/mode/javascript/">javascript mode</a>: Fix an infinite loop on specific syntax errors in object types.</li>
39+
<li>various modes: Fix inefficient RegExp matching.</li>
40+
</ul>
41+
3342
<p class="rel">31-12-2020: <a href="https://codemirror.net/codemirror-5.59.1.zip">Version 5.59.1</a>:</p>
3443

3544
<ul class="rel-note">

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ <h2>This is CodeMirror</h2>
102102
</div>
103103
</div>
104104
<div class=actionsleft>
105-
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.59.1</a>.<br>
105+
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.59.2</a>.<br>
106106
You can see the <a href="https://github.com/codemirror/codemirror" title="GitHub repository">code</a>,<br>
107107
read the <a href="doc/releases.html">release notes</a>,<br>
108108
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.59.1",
3+
"version": "5.59.2",
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.59.1"
69+
CodeMirror.version = "5.59.2"

0 commit comments

Comments
 (0)