File tree 7 files changed +39
-4
lines changed
7 files changed +39
-4
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ Abhishek Gahlot
10
10
Adam Ahmed
11
11
Adam King
12
12
Adam Particka
13
+ Adam Wight
13
14
adanlobato
14
15
Adán Lobato
15
16
Aditya Toshniwal
@@ -28,6 +29,7 @@ AlbertHilb
28
29
Alberto González Palomo
29
30
Alberto Pose
30
31
Albert Xing
32
+ Alexander Marks
31
33
Alexander Pavlov
32
34
Alexander Schepanovski
33
35
Alexander Shvets
@@ -265,6 +267,7 @@ Fauntleroy
265
267
fbuchinger
266
268
feizhang365
267
269
Felipe Lalanne
270
+ Felipe S. S. Schneider
268
271
Felix Raab
269
272
ficristo
270
273
Filip Noetzel
@@ -477,6 +480,7 @@ Kim-Anh Tran
477
480
Klaus Silveira
478
481
Koh Zi Han, Cliff
479
482
komakino
483
+ Konstantin Chernenko
480
484
Konstantin Lopuhin
481
485
koops
482
486
Kris Ciccarello
@@ -589,6 +593,7 @@ meshuamam
589
593
Metatheos
590
594
Micah Dubinko
591
595
Michael
596
+ Michael Chirico
592
597
Michael Goderbauer
593
598
Michael Grey
594
599
Michael Kaminsky
@@ -798,6 +803,7 @@ silverwind
798
803
Simon Edwards
799
804
Simon Huber
800
805
sinkuu
806
+ Slava Rozhnev
801
807
snasa
802
808
soliton4
803
809
sonson
Original file line number Diff line number Diff line change
1
+ ## 5.61.0 (2021-04-20)
2
+
3
+ ### Bug fixes
4
+
5
+ Improve support for being in a shadow DOM in contenteditable mode.
6
+
7
+ Prevent line number from being read by screen readers.
8
+
9
+ [ show-hint addon] ( https://codemirror.net/doc/manual.html#addon_show-hint ) : Fix a crash caused by a race condition.
10
+
11
+ [ javascript mode] ( https://codemirror.net/mode/javascript/ ) : Improve scope tracking.
12
+
13
+ ### New features
14
+
15
+ The library now emits an ` "updateGutter" ` event when the gutter width changes.
16
+
17
+ [ emacs bindings] ( https://codemirror.net/demo/emacs.html ) : Provide named commands for all bindings.
18
+
1
19
## 5.60.0 (2021-03-20)
2
20
3
21
### Bug fixes
Original file line number Diff line number Diff line change 70
70
< section class =first id =overview >
71
71
< h2 style ="position: relative ">
72
72
User manual and reference guide
73
- < span style ="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0 "> version 5.60 .0</ span >
73
+ < span style ="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0 "> version 5.61 .0</ span >
74
74
</ h2 >
75
75
76
76
< p > CodeMirror is a code-editor component that can be embedded in
Original file line number Diff line number Diff line change @@ -30,6 +30,17 @@ <h2>Release notes and version history</h2>
30
30
31
31
< h2 > Version 5.x</ h2 >
32
32
33
+ < p class ="rel "> 20-04-2021: < a href ="https://codemirror.net/codemirror-5.61.0.zip "> Version 5.61.0</ a > :</ p >
34
+
35
+ < ul class ="rel-note ">
36
+ < li > The library now emits an < code > "updateGutter"</ code > event when the gutter width changes.</ li >
37
+ < li > < a href ="https://codemirror.net/demo/emacs.html "> emacs bindings</ a > : Provide named commands for all bindings.</ li >
38
+ < li > Improve support for being in a shadow DOM in contenteditable mode.</ li >
39
+ < li > Prevent line number from being read by screen readers.</ li >
40
+ < li > < a href ="https://codemirror.net/doc/manual.html#addon_show-hint "> show-hint addon</ a > : Fix a crash caused by a race condition.</ li >
41
+ < li > < a href ="https://codemirror.net/mode/javascript/ "> javascript mode</ a > : Improve scope tracking.</ li >
42
+ </ ul >
43
+
33
44
< p class ="rel "> 20-03-2021: < a href ="https://codemirror.net/codemirror-5.60.0.zip "> Version 5.60.0</ a > :</ p >
34
45
35
46
< ul class ="rel-note ">
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ <h2>This is CodeMirror</h2>
102
102
</ div >
103
103
</ div >
104
104
< div class =actionsleft >
105
- Get the current version: < a href ="https://codemirror.net/codemirror.zip "> 5.60 .0</ a > .< br >
105
+ Get the current version: < a href ="https://codemirror.net/codemirror.zip "> 5.61 .0</ a > .< br >
106
106
You can see the < a href ="https://github.com/codemirror/codemirror " title ="GitHub repository "> code</ a > ,< br >
107
107
read the < a href ="doc/releases.html "> release notes</ a > ,< br >
108
108
or study the < a href ="doc/manual.html "> user manual</ a > .
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " codemirror" ,
3
- "version" : " 5.60 .0" ,
3
+ "version" : " 5.61 .0" ,
4
4
"main" : " lib/codemirror.js" ,
5
5
"style" : " lib/codemirror.css" ,
6
6
"author" : {
Original file line number Diff line number Diff line change @@ -66,4 +66,4 @@ import { addLegacyProps } from "./legacy.js"
66
66
67
67
addLegacyProps ( CodeMirror )
68
68
69
- CodeMirror . version = "5.60 .0"
69
+ CodeMirror . version = "5.61 .0"
You can’t perform that action at this time.
0 commit comments