Skip to content

Commit a0c5629

Browse files
committed
Mark version 5.30.0
1 parent 3d2723f commit a0c5629

File tree

7 files changed

+50
-5
lines changed

7 files changed

+50
-5
lines changed

AUTHORS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ Anthony Grimes
6868
Anton Kovalyov
6969
Apollo Zhu
7070
AQNOUCH Mohammed
71+
Aram Shatakhtsyan
7172
areos
7273
Arnab Bose
7374
Arsène von Wyss
@@ -155,6 +156,7 @@ Daniel Kesler
155156
Daniel KJ
156157
Daniel Neel
157158
Daniel Parnell
159+
Daniel Thwaites
158160
Danila Malyutin
159161
Danny Yoo
160162
darealshinji
@@ -213,7 +215,9 @@ ForbesLindesay
213215
Forbes Lindesay
214216
Ford_Lawnmower
215217
Forrest Oliphant
218+
Franco Catena
216219
Frank Wiegand
220+
Fredrik Borg
217221
Gabriel Gheorghian
218222
Gabriel Horner
219223
Gabriel Nahmias
@@ -255,6 +259,7 @@ hitsthings
255259
Hocdoc
256260
Hugues Malphettes
257261
Ian Beck
262+
Ian Davies
258263
Ian Dickinson
259264
Ian Wehrman
260265
Ian Wetherbee
@@ -376,6 +381,7 @@ LloydMilligan
376381
LM
377382
lochel
378383
Lorenzo Stoakes
384+
Louis Mauchet
379385
Luca Fabbri
380386
Luciano Longo
381387
Lu Fangjian
@@ -660,6 +666,7 @@ Weiyan Shao
660666
wenli
661667
Wes Cossick
662668
Wesley Wiser
669+
Weston Ruter
663670
Will Binns-Smith
664671
Will Dean
665672
William Jamieson

CHANGELOG.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## 5.30.0 (2017-09-20)
2+
3+
### Bug fixes
4+
5+
Fixed a number of issues with drawing right-to-left selections and mouse selection in bidirectional text.
6+
7+
[search addon](http://codemirror.net/demo/search/): Fix crash when restarting search after doing empty search.
8+
9+
[mark-selection addon](http://cm/doc/manual.html#addon_mark-selection): Fix off-by-one bug.
10+
11+
[tern addon](http://codemirror.net/demo/tern.html): Fix bad request made when editing at the bottom of a large document.
12+
13+
[javascript mode](http://codemirror.net/mode/javascript/): Improve parsing in a number of corner cases.
14+
15+
[markdown mode](http://codemirror.net/mode/markdown/): Fix crash when a sub-mode doesn't support indentation, allow uppercase X in task lists.
16+
17+
[gfm mode](http://codemirror.net/mode/gfm/): Don't highlight SHA1 'hashes' without numbers to avoid false positives.
18+
19+
[soy mode](http://codemirror.net/mode/soy/): Support injected data and `@param` in comments.
20+
21+
### New features
22+
23+
[simple mode addon](http://codemirror.net/demo/simplemode.html): Allow groups in regexps when `token` isn't an array.
24+
125
## 5.29.0 (2017-08-24)
226

327
### Bug fixes
@@ -54,7 +78,7 @@ Fix crash when using mode lookahead.
5478

5579
### Bug fixes
5680

57-
Fix crash in the [simple mode](http://codemirror.net/demo/simplemode.html) addon.
81+
Fix crash in the [simple mode](http://codemirror.net/demo/simplemode.html)< addon.
5882

5983
## 5.27.0 (2017-06-22)
6084

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.29.1</span>
72+
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.30.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">20-09-2017: <a href="http://codemirror.net/codemirror-5.30.0.zip">Version 5.30.0</a>:</p>
34+
35+
<ul class="rel-note">
36+
<li>Fixed a number of issues with drawing right-to-left selections and mouse selection in bidirectional text.</li>
37+
<li><a href="http://codemirror.net/demo/search/">search addon</a>: Fix crash when restarting search after doing empty search.</li>
38+
<li><a href="http://cm/doc/manual.html#addon_mark-selection">mark-selection addon</a>: Fix off-by-one bug.</li>
39+
<li><a href="http://codemirror.net/demo/tern.html">tern addon</a>: Fix bad request made when editing at the bottom of a large document.</li>
40+
<li><a href="http://codemirror.net/mode/javascript/">javascript mode</a>: Improve parsing in a number of corner cases.</li>
41+
<li><a href="http://codemirror.net/mode/markdown/">markdown mode</a>: Fix crash when a sub-mode doesn't support indentation, allow uppercase X in task lists.</li>
42+
<li><a href="http://codemirror.net/mode/gfm/">gfm mode</a>: Don't highlight SHA1 'hashes' without numbers to avoid false positives.</li>
43+
<li><a href="http://codemirror.net/mode/soy/">soy mode</a>: Support injected data and <code>@param</code> in comments.</li>
44+
<li><a href="http://codemirror.net/demo/simplemode.html">simple mode addon</a>: Allow groups in regexps when <code>token</code> isn't an array.</li>
45+
</ul>
46+
3347
<p class="rel">24-08-2017: <a href="http://codemirror.net/codemirror-5.29.0.zip">Version 5.29.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.29.0</a>.<br>
99+
Get the current version: <a href="http://codemirror.net/codemirror.zip">5.30.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.29.1",
3+
"version": "5.30.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.29.1"
69+
CodeMirror.version = "5.30.0"

0 commit comments

Comments
 (0)