Prepare for `0.22.3`

pull/2455/head
Alexandru Dima 4 years ago
parent 4d5d53889d
commit cf629b9522
No known key found for this signature in database
GPG Key ID: 6E58D7B045760DA0

@ -1,5 +1,9 @@
# Monaco Editor Changelog # Monaco Editor Changelog
## [0.22.3] (01.02.2021)
Fixes a regression where symbol icons used in suggestions or quick outline were missing colors (see https://github.com/microsoft/monaco-editor/issues/2329).
## [0.22.2] (01.02.2021) ## [0.22.2] (01.02.2021)
Fixes a regression where under certain webpack configurations `process.nextTick` could be used without explicitly checking for it being defined (see https://github.com/microsoft/monaco-editor/issues/2328). Fixes a regression where under certain webpack configurations `process.nextTick` could be used without explicitly checking for it being defined (see https://github.com/microsoft/monaco-editor/issues/2328).

6
package-lock.json generated

@ -2439,9 +2439,9 @@
"dev": true "dev": true
}, },
"monaco-editor-core": { "monaco-editor-core": {
"version": "0.22.2", "version": "0.22.3",
"resolved": "https://registry.npmjs.org/monaco-editor-core/-/monaco-editor-core-0.22.2.tgz", "resolved": "https://registry.npmjs.org/monaco-editor-core/-/monaco-editor-core-0.22.3.tgz",
"integrity": "sha512-poUulEkyYQJ1sBKpot+zhBYABCLInH6MdFfHoZ9Lekg+ITbpWTyQ45jRfPvqP2O8olm7sZmH1Zl6o7P5FRyo4Q==", "integrity": "sha512-QUA8fbVz769QBR5Xp8vKJngJM35PRvMuqDjVSsM5IJfWwwVEsQAKu/8SUD3jcEHfnE4YgQfeLktapBwJvWntgw==",
"dev": true "dev": true
}, },
"monaco-html": { "monaco-html": {

@ -23,7 +23,7 @@
"gulp": "^4.0.2", "gulp": "^4.0.2",
"gulp-typedoc": "^2.2.5", "gulp-typedoc": "^2.2.5",
"monaco-css": "3.2.0", "monaco-css": "3.2.0",
"monaco-editor-core": "0.22.2", "monaco-editor-core": "0.22.3",
"monaco-html": "3.2.0", "monaco-html": "3.2.0",
"monaco-json": "3.3.0", "monaco-json": "3.3.0",
"monaco-languages": "2.2.0", "monaco-languages": "2.2.0",

Loading…
Cancel
Save