Skip to content

Commit 1bf82e3

Browse files
committed
Mark version 5.42.2
1 parent 0612ed0 commit 1bf82e3

File tree

7 files changed

+36
-4
lines changed

7 files changed

+36
-4
lines changed

AUTHORS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ Christopher Brown
151151
Christopher Kramer
152152
Christopher Mitchell
153153
Christopher Pfohl
154+
Christopher Wallis
154155
Chunliang Lyu
155156
ciaranj
156157
CodeAnimal
@@ -244,6 +245,7 @@ Ford_Lawnmower
244245
Forrest Oliphant
245246
Franco Catena
246247
Frank Wiegand
248+
fraxx001
247249
Fredrik Borg
248250
Gabriel Gheorghian
249251
Gabriel Horner
@@ -258,6 +260,7 @@ George Stephanis
258260
geowarin
259261
Gerard Braad
260262
Gergely Hegykozi
263+
Germain Chazot
261264
Giovanni Calò
262265
Glebov Boris
263266
Glenn Jorde
@@ -330,6 +333,7 @@ Jared Jacobs
330333
Jason
331334
Jason Barnabe
332335
Jason Grout
336+
Jason Heeris
333337
Jason Johnston
334338
Jason San Jose
335339
Jason Siefken
@@ -411,6 +415,7 @@ kubelsmieci
411415
KwanEsq
412416
Kyle Kelley
413417
KyleMcNutt
418+
LaKing
414419
Lanfei
415420
Lanny
416421
laobubu
@@ -767,6 +772,7 @@ Wu Cheng-Han
767772
Xavier Mendez
768773
Yassin N. Hassan
769774
YNH Webdev
775+
yoongu
770776
Yunchi Luo
771777
Yuvi Panda
772778
Yvonnick Esnault

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## 5.42.2 (2018-12-21)
2+
3+
### Bug fixes
4+
5+
Fix problem where canceling a change via the `"beforeChange"` event could corrupt the textarea input.
6+
7+
Fix issues that sometimes caused the context menu hack to fail, or even leave visual artifacts on IE.
8+
9+
[vim bindings](https://codemirror.net/demo/vim.html): Make it possible to select text between angle brackets.
10+
11+
[css mode](https://codemirror.net/mode/css/): Fix tokenizing of CSS variables.
12+
13+
[python mode](https://codemirror.net/mode/python/): Fix another bug in tokenizing of format strings.
14+
15+
[soy mode](https://codemirror.net/mode/soy/): More accurate highlighting.
16+
117
## 5.42.0 (2018-11-20)
218

319
### Bug fixes

doc/manual.html

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

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

doc/releases.html

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

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

33+
<p class="rel">21-12-2018: <a href="https://codemirror.net/codemirror-5.42.2.zip">Version 5.42.2</a>:</p>
34+
35+
<ul class="rel-note">
36+
<li>Fix problem where canceling a change via the <code>&quot;beforeChange&quot;</code> event could corrupt the textarea input.</li>
37+
<li>Fix issues that sometimes caused the context menu hack to fail, or even leave visual artifacts on IE.</li>
38+
<li><a href="https://codemirror.net/demo/vim.html">vim bindings</a>: Make it possible to select text between angle brackets.</li>
39+
<li><a href="https://codemirror.net/mode/css/">css mode</a>: Fix tokenizing of CSS variables.</li>
40+
<li><a href="https://codemirror.net/mode/python/">python mode</a>: Fix another bug in tokenizing of format strings.</li>
41+
<li><a href="https://codemirror.net/mode/soy/">soy mode</a>: More accurate highlighting.</li>
42+
</ul>
3343

3444
<p class="rel">20-11-2018: <a href="https://codemirror.net/codemirror-5.42.0.zip">Version 5.42.0</a>:</p>
3545

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.42.0</a>.<br>
102+
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.42.2</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.42.1",
3+
"version": "5.42.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.42.1"
69+
CodeMirror.version = "5.42.2"

0 commit comments

Comments
 (0)