8000 Mark version 5.58.3 · codemirror/codemirror5@a53e860 · GitHub
[go: up one dir, main page]

Skip to content

Commit a53e860

Browse files
committed
Mark version 5.58.3
1 parent 0630b63 commit a53e860

File tree

7 files changed

+30
-4
lines changed

7 files changed

+30
-4
lines changed

AUTHORS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,7 @@ Eric Allam
251251
Eric Bogard
252252
Erik Demaine
253253
Erik Welander
254+
erosman
254255
eustas
255256
Evan Minsk
256257
Fabien Dubosson
@@ -326,6 +327,7 @@ Heanes
326327
Hector Oswaldo Caballero
327328
Hein Htat
328329
Hélio
330+
Hendrik Erz
329331
Hendrik Wallbaum
330332
Henrik Haugbølle
331333
Herculano Campos
@@ -353,6 +355,7 @@ Ilya Zverev
353355
Ingo Richter
354356
Intervue
355357
Irakli Gozalishvili
358+
iteriani
356359
Ivan Kurnosov
357360
Ivoah
358361
Jack Douglas
@@ -517,6 +520,7 @@ Manuel Rego Casasnovas
517520
Marat Dreizin
518521
Marcel Gerber
519522
Marcelo Camargo
523+
Marc Espín
520524
Marco Aurélio
521525
Marco Munizaga
522526
Marcus Bointon
@@ -681,6 +685,7 @@ Peter Flynn
681685
peterkroon
682686
Peter Kroon
683687
Peter László
688+
Phil DeJarnett
684689
Philipp A
685690
Philipp Markovics
686691
Philip Stadermann

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 5.58.3 (2020-11-19)
2+
3+
### Bug fixes
4+
5+
Suppress quick-firing of blur-focus events when dragging and clicking on Internet Explorer.
6+
7+
Fix the `insertAt` option to `addLineWidget` to actually allow the widget to be placed after all widgets for the line.
8+
9+
[soy mode](https://codemirror.net/mode/soy/): Support `@Attribute` and element composition.
10+
11+
[shell mode](https://codemirror.net/mode/shell/): Support heredoc quoting.
12+
113
## 5.58.2 (2020-10-23)
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.58.2</span>
73+
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.58.3</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">19-11-2020: <a href="https://codemirror.net/codemirror-5.58.3.zip">Version 5.58.3</a>:</p>
34+
35+
<ul class="rel-note">
36+
<li>Suppress quick-firing of blur-focus events when dragging and clicking on Internet Explorer.</li>
37+
<li>Fix the <code>insertAt</code> option to <code>addLineWidget</code> to actually allow the widget to be placed after all widgets for the line.</li>
38+
<li><a href="https://codemirror.net/mode/soy/">soy mode</a>: Support <code>@Attribute</code> and element composition.</li>
39+
<li><a href="https://codemirror.net/mode/shell/">shell mode</a>: Support heredoc quoting.</li>
40+
</ul>
41+
3342
<p class="rel">23-10-2020: <a href="https://codemirror.net/codemirror-5.58.2.zip">Version 5.58.2</a>:</p>
3443

3544
<ul class="rel-note">

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ <h2>This is CodeMirror</h2>
9999
</div>
100100
</div>
101101
<div class=actionsleft>
102-
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.58.2</a>.<br>
102+
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.58.3</a>.<br>
103103
You can see the <a href="https://github.com/codemirror/codemirror" title="Github repository">code</a>,<br>
104104
read the <a href="doc/releases.html">release notes</a>,<br>
105105
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.58.2",
3+
"version": "5.58.3",
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.58.2"
69+
CodeMirror.version = "5.58.3"

0 commit comments

Comments
 (0)
0