Skip to content

Commit ab868db

Browse files
committed
Mark version 5.29.0
1 parent 91817cc commit ab868db

File tree

7 files changed

+51
-4
lines changed

7 files changed

+51
-4
lines changed

AUTHORS

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ Chris Houseknecht
127127
Chris Lohfink
128128
Chris Morgan
129129
Chris Smith
130+
Christian Gruen
130131
Christian Oyarzun
131132
Christian Petrov
132133
Christopher Brown
@@ -136,6 +137,7 @@ Christopher Pfohl
136137
Chunliang Lyu
137138
ciaranj
138139
CodeAnimal
140+
CodeBitt
139141
coderaiser
140142
Cole R Lawrence
141143
ComFreek
@@ -293,6 +295,7 @@ Jason Siefken
293295
Jaydeep Solanki
294296
Jean Boussier
295297
Jeff Blaisdell
298+
Jeff Hanke
296299
Jeff Jenkins
297300
jeffkenton
298301
Jeff Pickhardt
@@ -314,6 +317,7 @@ John Snelson
314317
John Van Der Loo
315318
Jon Ander Peñalba
316319
Jonas Döbertin
320+
Jonas Helfer
317321
Jonathan Malmaud
318322
Jon Gacnik
319323
jongalloway
@@ -438,6 +442,7 @@ Michael Goderbauer
438442
Michael Grey
439443
Michael Kaminsky
440444
Michael Lehenbauer
445+
Michael Walker
441446
Michael Zhou
442447
Michal Čihař
443448
Michal Dorner
@@ -456,6 +461,7 @@ misfo
456461
mkaminsky11
457462
mloginov
458463
Moritz Schwörer
464+
Moshe Wajnberg
459465
mps
460466
ms
461467
mtaran-google
@@ -518,6 +524,7 @@ Philipp A
518524
Philip Stadermann
519525
Pierre Gerold
520526
Piët Delport
527+
Pieter Ouwerkerk
521528
Pontus Melke
522529
prasanthj
523530
Prasanth J
@@ -558,6 +565,7 @@ sandeepshetty
558565
Sander AKA Redsandro
559566
Sander Verweij
560567
santec
568+
Sarah McAlear and Wenlin Zhang
561569
Sascha Peilicke
562570
satamas
563571
satchmorun
@@ -567,6 +575,7 @@ S. Chris Colbert
567575
SCLINIC\jdecker
568576
Scott Aikin
569577
Scott Goodhew
578+
Sebastian Wilzbach
570579
Sebastian Zaha
571580
Sergey Goder
572581
Sergey Tselovalnikov
@@ -594,6 +603,7 @@ Stas Kobzar
594603
Stefan Borsje
595604
Steffen Beyer
596605
Steffen Bruchmann
606+
Steffen Kowalski
597607
Stephen Lavelle
598608
Steve Champagne
599609
Steve Hoover
@@ -662,6 +672,7 @@ Yassin N. Hassan
662672
YNH Webdev
663673
Yunchi Luo
664674
Yuvi Panda
675+
Yvonnick Esnault
665676
Zac Anger
666677
Zachary Dremann
667678
Zeno Rocha

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
## 5.29.0 (2017-08-24)
2+
3+
### Bug fixes
4+
5+
Fix crash in contentEditable input style when editing near a bookmark.
6+
7+
Make sure change origins are preserved when splitting changes on [read-only marks](http://codemirror.net/doc/manual.html#mark_readOnly).
8+
9+
[javascript mode](http://codemirror.net/mode/javascript/): More support for TypeScript syntax.
10+
11+
[d mode](http://codemirror.net/mode/d/): Support nested comments.
12+
13+
[python mode](http://codemirror.net/mode/python/): Improve tokenizing of operators.
14+
15+
[markdown mode](http://codemirror.net/mode/markdown/): Further improve CommonMark conformance.
16+
17+
[css mode](http://codemirror.net/mode/css/): Don't run comment tokens through the mode's state machine.
18+
19+
[shell mode](http://codemirror.net/mode/shell/): Allow strings to span lines.
20+
21+
[search addon](http://codemirror.net/demo/search/): Fix crash in persistent search when `extraKeys` is null.
22+
123
## 5.28.0 (2017-07-21)
224

325
### 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.28.1</span>
72+
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.29.0</span>
7373
</h2>
7474

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

doc/releases.html

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

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

33+
<p class="rel">24-08-2017: <a href="http://codemirror.net/codemirror-5.29.0.zip">Version 5.29.0</a>:</p>
34+
35+
<ul class="rel-note">
36+
<li>Fix crash in contentEditable input style when editing near a bookmark.</li>
37+
<li>Make sure change origins are preserved when splitting changes on <a href="http://codemirror.net/doc/manual.html#mark_readOnly">read-only marks</a>.</li>
38+
<li><a href="http://codemirror.net/mode/javascript/">javascript mode</a>: More support for TypeScript syntax.</li>
39+
<li><a href="http://codemirror.net/mode/d/">d mode</a>: Support nested comments.</li>
40+
<li><a href="http://codemirror.net/mode/python/">python mode</a>: Improve tokenizing of operators.</li>
41+
<li><a href="http://codemirror.net/mode/markdown/">markdown mode</a>: Further improve CommonMark conformance.</li>
42+
<li><a href="http://codemirror.net/mode/css/">css mode</a>: Don't run comment tokens through the mode's state machine.</li>
43+
<li><a href="http://codemirror.net/mode/shell/">shell mode</a>: Allow strings to span lines.</li>
44+
<li><a href="http://codemirror.net/demo/search/">search addon</a>: Fix crash in persistent search when <code>extraKeys</code> is null.</li>
45+
</ul>
46+
3347
<p class="rel">21-07-2017: <a href="http://codemirror.net/codemirror-5.28.0.zip">Version 5.28.0</a>:</p>
3448

3549
<ul class="rel-note">

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ <h2>This is CodeMirror</h2>
9696
</div>
9797
</div>
9898
<div class=actionsleft>
99-
Get the current version: <a href="http://codemirror.net/codemirror.zip">5.28.0</a>.<br>
99+
Get the current version: <a href="http://codemirror.net/codemirror.zip">5.29.0</a>.<br>
100100
You can see the <a href="https://github.com/codemirror/codemirror" title="Github repository">code</a>,<br>
101101
read the <a href="doc/releases.html">release notes</a>,<br>
102102
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.28.1",
3+
"version": "5.29.0",
44
"main": "lib/codemirror.js",
55
"style": "lib/codemirror.css",
66
"description": "Full-featured in-browser code editor",

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"
6666

6767
addLegacyProps(CodeMirror)
6868

69-
CodeMirror.version = "5.28.1"
69+
CodeMirror.version = "5.29.0"

0 commit comments

Comments
 (0)