Mark version 5.61.0

This commit is contained in:
Marijn Haverbeke 2021-04-20 10:18:32 +02:00
parent 97ee575155
commit eac70bb1a3
7 changed files with 39 additions and 4 deletions

View File

@ -10,6 +10,7 @@ Abhishek Gahlot
Adam Ahmed Adam Ahmed
Adam King Adam King
Adam Particka Adam Particka
Adam Wight
adanlobato adanlobato
Adán Lobato Adán Lobato
Aditya Toshniwal Aditya Toshniwal
@ -28,6 +29,7 @@ AlbertHilb
Alberto González Palomo Alberto González Palomo
Alberto Pose Alberto Pose
Albert Xing Albert Xing
Alexander Marks
Alexander Pavlov Alexander Pavlov
Alexander Schepanovski Alexander Schepanovski
Alexander Shvets Alexander Shvets
@ -265,6 +267,7 @@ Fauntleroy
fbuchinger fbuchinger
feizhang365 feizhang365
Felipe Lalanne Felipe Lalanne
Felipe S. S. Schneider
Felix Raab Felix Raab
ficristo ficristo
Filip Noetzel Filip Noetzel
@ -477,6 +480,7 @@ Kim-Anh Tran
Klaus Silveira Klaus Silveira
Koh Zi Han, Cliff Koh Zi Han, Cliff
komakino komakino
Konstantin Chernenko
Konstantin Lopuhin Konstantin Lopuhin
koops koops
Kris Ciccarello Kris Ciccarello
@ -589,6 +593,7 @@ meshuamam
Metatheos Metatheos
Micah Dubinko Micah Dubinko
Michael Michael
Michael Chirico
Michael Goderbauer Michael Goderbauer
Michael Grey Michael Grey
Michael Kaminsky Michael Kaminsky
@ -798,6 +803,7 @@ silverwind
Simon Edwards Simon Edwards
Simon Huber Simon Huber
sinkuu sinkuu
Slava Rozhnev
snasa snasa
soliton4 soliton4
sonson sonson

View File

@ -1,3 +1,21 @@
## 5.61.0 (2021-04-20)
### Bug fixes
Improve support for being in a shadow DOM in contenteditable mode.
Prevent line number from being read by screen readers.
[show-hint addon](https://codemirror.net/doc/manual.html#addon_show-hint): Fix a crash caused by a race condition.
[javascript mode](https://codemirror.net/mode/javascript/): Improve scope tracking.
### New features
The library now emits an `"updateGutter"` event when the gutter width changes.
[emacs bindings](https://codemirror.net/demo/emacs.html): Provide named commands for all bindings.
## 5.60.0 (2021-03-20) ## 5.60.0 (2021-03-20)
### Bug fixes ### Bug fixes

View File

@ -70,7 +70,7 @@
<section class=first id=overview> <section class=first id=overview>
<h2 style="position: relative"> <h2 style="position: relative">
User manual and reference guide User manual and reference guide
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.60.0</span> <span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.61.0</span>
</h2> </h2>
<p>CodeMirror is a code-editor component that can be embedded in <p>CodeMirror is a code-editor component that can be embedded in

View File

@ -30,6 +30,17 @@
<h2>Version 5.x</h2> <h2>Version 5.x</h2>
<p class="rel">20-04-2021: <a href="https://codemirror.net/codemirror-5.61.0.zip">Version 5.61.0</a>:</p>
<ul class="rel-note">
<li>The library now emits an <code>"updateGutter"</code> event when the gutter width changes.</li>
<li><a href="https://codemirror.net/demo/emacs.html">emacs bindings</a>: Provide named commands for all bindings.</li>
<li>Improve support for being in a shadow DOM in contenteditable mode.</li>
<li>Prevent line number from being read by screen readers.</li>
<li><a href="https://codemirror.net/doc/manual.html#addon_show-hint">show-hint addon</a>: Fix a crash caused by a race condition.</li>
<li><a href="https://codemirror.net/mode/javascript/">javascript mode</a>: Improve scope tracking.</li>
</ul>
<p class="rel">20-03-2021: <a href="https://codemirror.net/codemirror-5.60.0.zip">Version 5.60.0</a>:</p> <p class="rel">20-03-2021: <a href="https://codemirror.net/codemirror-5.60.0.zip">Version 5.60.0</a>:</p>
<ul class="rel-note"> <ul class="rel-note">

View File

@ -102,7 +102,7 @@
</div> </div>
</div> </div>
<div class=actionsleft> <div class=actionsleft>
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.60.0</a>.<br> Get the current version: <a href="https://codemirror.net/codemirror.zip">5.61.0</a>.<br>
You can see the <a href="https://github.com/codemirror/codemirror" title="GitHub repository">code</a>,<br> You can see the <a href="https://github.com/codemirror/codemirror" title="GitHub repository">code</a>,<br>
read the <a href="doc/releases.html">release notes</a>,<br> read the <a href="doc/releases.html">release notes</a>,<br>
or study the <a href="doc/manual.html">user manual</a>. or study the <a href="doc/manual.html">user manual</a>.

View File

@ -1,6 +1,6 @@
{ {
"name": "codemirror", "name": "codemirror",
"version": "5.60.0", "version": "5.61.0",
"main": "lib/codemirror.js", "main": "lib/codemirror.js",
"style": "lib/codemirror.css", "style": "lib/codemirror.css",
"author": { "author": {

View File

@ -66,4 +66,4 @@ import { addLegacyProps } from "./legacy.js"
addLegacyProps(CodeMirror) addLegacyProps(CodeMirror)
CodeMirror.version = "5.60.0" CodeMirror.version = "5.61.0"