Skip to content

Commit 3330120

Browse files
committed
Mark version 5.35.0
1 parent aab9d71 commit 3330120

File tree

7 files changed

+57
-4
lines changed

7 files changed

+57
-4
lines changed

AUTHORS

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ borawjm
109109
Brad Metcalf
110110
Brandon Frohs
111111
Brandon Wamboldt
112+
Bret Little
112113
Brett Zamir
113114
Brian Grinstead
114115
Brian Sletten
@@ -269,6 +270,7 @@ Hugues Malphettes
269270
Ian Beck
270271
Ian Davies
271272
Ian Dickinson
273+
Ian Rose
272274
Ian Wehrman
273275
Ian Wetherbee
274276
Ice White
@@ -390,6 +392,7 @@ Leonya Khachaturov
390392
Liam Newman
391393
Libo Cannici
392394
Lior Goldberg
395+
Lior Shub
393396
LloydMilligan
394397
LM
395398
lochel
@@ -455,6 +458,7 @@ mbarkhau
455458
McBrainy
456459
mce2
457460
melpon
461+
meshuamam
458462
Metatheos
459463
Micah Dubinko
460464
Michael
@@ -466,6 +470,7 @@ Michael Walker
466470
Michael Zhou
467471
Michal Čihař
468472
Michal Dorner
473+
Michal Kapiczynski
469474
Mighty Guava
470475
Miguel Castillo
471476
mihailik
@@ -500,6 +505,7 @@ nguillaumin
500505
Ng Zhi An
501506
Nicholas Bollweg
502507
Nicholas Bollweg (Nick)
508+
NickKolok
503509
Nick Kreeger
504510
Nick Small
505511
Nicolas Kick
@@ -552,6 +558,7 @@ Pontus Melke
552558
prasanthj
553559
Prasanth J
554560
Prayag Verma
561+
Prendota
555562
Qiang Li
556563
Radek Piórkowski
557564
Rahul
@@ -674,12 +681,14 @@ Tom Klancer
674681
Tom MacWright
675682
Tony Jian
676683
tophf
684+
totalamd
677685
Travis Heppe
678686
Triangle717
679687
Tristan Tarrant
680688
TSUYUSATO Kitsune
681689
twifkak
682690
Tyler Long
691+
Vaibhav Sagar
683692
VapidWorx
684693
Vestimir Markov
685694
vf

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
## 5.35.0 (2018-02-20)
2+
3+
### Bug fixes
4+
5+
Fix problem where selection undo might change read-only documents.
6+
7+
Fix crash when calling `addLineWidget` on a document that has no attached editor.
8+
9+
[searchcursor addon](http://codemirror.net/doc/manual.html#addon_searchcursor): Fix behavior of `^` in multiline regexp mode.
10+
11+
[match-highlighter addon](http://codemirror.net/doc/manual.html#addon_match-highlighter): Fix problem with matching words that have regexp special syntax in them.
12+
13+
[sublime bindings](http://codemirror.net/demo/sublime.html): Fix `addCursorToSelection` for short lines.
14+
15+
[javascript mode](http://codemirror.net/mode/javascript/): Support TypeScript intersection types, dynamic `import`.
16+
17+
[stex mode](http://codemirror.net/mode/stex/): Fix parsing of `\(` `\)` delimiters, recognize more atom arguments.
18+
19+
[haskell mode](http://codemirror.net/mode/haskell/): Highlight more builtins, support `<*` and `*>`.
20+
21+
[sql mode](http://codemirror.net/mode/sql/): Make it possible to disable backslash escapes in strings for dialects that don't have them, do this for MS SQL.
22+
23+
[dockerfile mode](http://codemirror.net/mode/dockerfile/): Highlight strings and ports, recognize more instructions.
24+
25+
### New features
26+
27+
[vim bindings](http://codemirror.net/demo/vim.html): Support alternative delimiters in replace command.
28+
129
## 5.34.0 (2018-01-29)
230

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

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

doc/releases.html

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

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

33+
<p class="rel">20-02-2018: <a href="http://codemirror.net/codemirror-5.35.0.zip">Version 5.35.0</a>:</p>
34+
35+
<ul>
36+
<li>Fix problem where selection undo might change read-only documents.</li>
37+
<li>Fix crash when calling <code>addLineWidget</code> on a document that has no attached editor.</li>
38+
<li><a href="http://codemirror.net/doc/manual.html#addon_searchcursor">searchcursor addon</a>: Fix behavior of <code>^</code> in multiline regexp mode.</li>
39+
<li><a href="http://codemirror.net/doc/manual.html#addon_match-highlighter">match-highlighter addon</a>: Fix problem with matching words that have regexp special syntax in them.</li>
40+
<li><a href="http://codemirror.net/demo/sublime.html">sublime bindings</a>: Fix <code>addCursorToSelection</code> for short lines.</li>
41+
<li><a href="http://codemirror.net/demo/vim.html">vim bindings</a>: Support alternative delimiters in replace command.</li>
42+
<li><a href="http://codemirror.net/mode/javascript/">javascript mode</a>: Support TypeScript intersection types, dynamic <code>import</code>.</li>
43+
<li><a href="http://codemirror.net/mode/stex/">stex mode</a>: Fix parsing of <code>\(</code> <code>\)</code> delimiters, recognize more atom arguments.</li>
44+
<li><a href="http://codemirror.net/mode/haskell/">haskell mode</a>: Highlight more builtins, support <code>&lt;*</code> and <code>*&gt;</code>.</li>
45+
<li><a href="http://codemirror.net/mode/sql/">sql mode</a>: Make it possible to disable backslash escapes in strings for dialects that don't have them, do this for MS SQL.</li>
46+
<li><a href="http://codemirror.net/mode/dockerfile/">dockerfile mode</a>: Highlight strings and ports, recognize more instructions.</li>
47+
</ul>
48+
3349
<p class="rel">29-01-2018: <a href="http://codemirror.net/codemirror-5.34.0.zip">Version 5.34.0</a>:</p>
3450

3551
<ul>

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.34.0</a>.<br>
99+
Get the current version: <a href="http://codemirror.net/codemirror.zip">5.35.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.34.1",
3+
"version": "5.35.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.js"
6666

6767
addLegacyProps(CodeMirror)
6868

69-
CodeMirror.version = "5.34.1"
69+
CodeMirror.version = "5.35.0"

0 commit comments

Comments
 (0)