mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 16:15:41 +01:00
Update CHANGELOG and dependencies
This commit is contained in:
parent
c6192de715
commit
2d54688825
5 changed files with 60 additions and 18 deletions
42
CHANGELOG.md
42
CHANGELOG.md
|
|
@ -1,5 +1,47 @@
|
||||||
# Monaco Editor Change log
|
# Monaco Editor Change log
|
||||||
|
|
||||||
|
## [0.11.0] (14.03.2018)
|
||||||
|
|
||||||
|
### New & Noteworthy
|
||||||
|
* **ESM distribution** (compatible with e.g. webpack).
|
||||||
|
* New interval tree decorations implementation.
|
||||||
|
* New piece tree text buffer implementation.
|
||||||
|
* The minimap can be placed to the left.
|
||||||
|
* Line numbers can be displayed in an interval.
|
||||||
|
* The cursor width can be customized.
|
||||||
|
* Smooth scrolling can be turned on.
|
||||||
|
* Color decorators and color picker via `DocumentColorProvider`.
|
||||||
|
|
||||||
|
### Breaking changes
|
||||||
|
* Replaced `MarkedString` with `IMarkdownString`. Source code snippets can be expressed using the GH markdown syntax.
|
||||||
|
|
||||||
|
### API changes
|
||||||
|
* Merged `IModel`, `IReadOnlyModel`, `IEditableTextModel`, `ITextModelWithMarkers`, `ITokenizedModel`, `ITextModelWithDecorations` to `ITextModel`. A type alias for `IModel` is defined for compatibility.
|
||||||
|
* Merged `ICommonCodeEditor` and `ICodeEditor` to `ICodeEditor`.
|
||||||
|
* Merged `ICommonDiffEditor` and `IDiffEditor` to `IDiffEditor`.
|
||||||
|
* `CompletionItem.documentation`, `ParameterInformation.documentation` and `SignatureInformation.documentation` can now be an `IMarkdownString`.
|
||||||
|
* Added `CompetionItem.command`, `CompletionItem.commitCharacters` and `CompletionItem.additionalTextEdits`.
|
||||||
|
* Added language configuration `folding` which can define
|
||||||
|
|
||||||
|
### Thank you
|
||||||
|
* [Remy Suen @rcjsuen](https://github.com/rcjsuen):
|
||||||
|
* Fix a small typo in README.md [PR monaco-typescript#18](https://github.com/Microsoft/monaco-typescript/pull/18)
|
||||||
|
* Remove unused IDisposable array [PR monaco-typescript#19](https://github.com/Microsoft/monaco-typescript/pull/19)
|
||||||
|
* Add HEALTHCHECK as a Dockerfile keyword [PR monaco-languages#29](https://github.com/Microsoft/monaco-languages/pull/29)
|
||||||
|
* Add ARG as a Dockerfile keyword [PR monaco-languages#30](https://github.com/Microsoft/monaco-languages/pull/30)
|
||||||
|
* [Can Abacigil @abacigil](https://github.com/abacigil): MySQL, Postgres, Redshift and Redis Language Support [PR monaco-languages#26](https://github.com/Microsoft/monaco-languages/pull/26)
|
||||||
|
* [Matthias Kadenbach @mattes](https://github.com/mattes): Support Content-Security-Policy syntax highlighting [PR monaco-languages#27](https://github.com/Microsoft/monaco-languages/pull/27)
|
||||||
|
* [e.vakili @evakili](https://github.com/evakili): Whitespaces after # are allowed in C++ preprocessor statements [PR monaco-languages#28](https://github.com/Microsoft/monaco-languages/pull/28)
|
||||||
|
* [Pankaj Kumar Gautam @PAPERPANKS](https://github.com/PAPERPANKS): adding microsoft logo to footer [PR monaco-editor#577](https://github.com/Microsoft/monaco-editor/pull/577)
|
||||||
|
* [Dominik Moritz @domoritz](https://github.com/domoritz): Fix code in changelog [PR monaco-editor#582](https://github.com/Microsoft/monaco-editor/pull/582)
|
||||||
|
* [ItsPugle @ItsPugle](https://github.com/ItsPugle): Updating the footer to reflect change of year [PR monaco-editor#707](https://github.com/Microsoft/monaco-editor/pull/707)
|
||||||
|
* [Michael Seifert @MSeifert04](https://github.com/MSeifert04): Add linebreak for if [PR monaco-editor#726](https://github.com/Microsoft/monaco-editor/pull/726)
|
||||||
|
* [Andrew Palm @apalm](https://github.com/apalm): Fix 'Configure JSON defaults' sample [PR monaco-editor#731](https://github.com/Microsoft/monaco-editor/pull/731)
|
||||||
|
* [Niklas Mollenhauer @nikeee](https://github.com/nikeee): Fix line number API usage [PR monaco-editor#740](https://github.com/Microsoft/monaco-editor/pull/740)
|
||||||
|
* [Andre @anc](https://github.com/anc): More realistic terminal shell [PR monaco-editor#742](https://github.com/Microsoft/monaco-editor/pull/742)
|
||||||
|
* to the many others that have contributed PRs to [vscode](https://github.com/Microsoft/vscode) which have also made their way into the monaco-editor.
|
||||||
|
|
||||||
|
|
||||||
## [0.10.1] (16.10.2017)
|
## [0.10.1] (16.10.2017)
|
||||||
- Fixes [issue #601](https://github.com/Microsoft/monaco-editor/issues/601): window.opener should be set to null to protect against malicious code
|
- Fixes [issue #601](https://github.com/Microsoft/monaco-editor/issues/601): window.opener should be set to null to protect against malicious code
|
||||||
|
|
||||||
|
|
|
||||||
4
monaco.d.ts
vendored
4
monaco.d.ts
vendored
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------
|
/*!-----------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Type definitions for monaco-editor v0.10.1
|
* Type definitions for monaco-editor v0.11.0
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
*-----------------------------------------------------------*/
|
*-----------------------------------------------------------*/
|
||||||
/*---------------------------------------------------------------------------------------------
|
/*---------------------------------------------------------------------------------------------
|
||||||
|
|
@ -2782,7 +2782,7 @@ declare namespace monaco {
|
||||||
lightbulb?: IEditorLightbulbOptions;
|
lightbulb?: IEditorLightbulbOptions;
|
||||||
/**
|
/**
|
||||||
* Enable code folding
|
* Enable code folding
|
||||||
* Defaults to true in vscode and to false in monaco-editor.
|
* Defaults to true.
|
||||||
*/
|
*/
|
||||||
folding?: boolean;
|
folding?: boolean;
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
20
package-lock.json
generated
20
package-lock.json
generated
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "monaco-editor",
|
"name": "monaco-editor",
|
||||||
"version": "0.10.1",
|
"version": "0.11.0",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
@ -2377,9 +2377,9 @@
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"monaco-editor-core": {
|
"monaco-editor-core": {
|
||||||
"version": "0.11.4",
|
"version": "0.11.5",
|
||||||
"resolved": "https://registry.npmjs.org/monaco-editor-core/-/monaco-editor-core-0.11.4.tgz",
|
"resolved": "https://registry.npmjs.org/monaco-editor-core/-/monaco-editor-core-0.11.5.tgz",
|
||||||
"integrity": "sha512-9kGuoLy55omwhQ2+HeLDbykc8rwaTaj8WEBGR8YNZ3SyMTofU6i6W3GyAz65etJ6blCGk8s0RsCJNm2JcWRRcA==",
|
"integrity": "sha512-zje/QhdYlhJvsLCHzQN2gqybJbgtSK5k/Sssmi2x+OQv7pUU65QMNshXgY7H2jd/o4B+glCD3OvrGubsK1H5JQ==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"monaco-html": {
|
"monaco-html": {
|
||||||
|
|
@ -2395,15 +2395,15 @@
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"monaco-languages": {
|
"monaco-languages": {
|
||||||
"version": "1.0.2",
|
"version": "1.0.4",
|
||||||
"resolved": "https://registry.npmjs.org/monaco-languages/-/monaco-languages-1.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/monaco-languages/-/monaco-languages-1.0.4.tgz",
|
||||||
"integrity": "sha512-xQEdlbw7nEQoopkPwQTHx3EFPflTrYOqxhY4gGFunbnjY5pIsqROH5/THALSYf3ZWXAZ3vlMxp/lS4eegTdowA==",
|
"integrity": "sha512-Msjb/6EbMMvyvUT587cMg59sCIQnJTNoY8NaAyb/E5uIvi82LIcMfmZRHyChFAm+mlBVKSvvHoWoOZdP5NP9DA==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"monaco-typescript": {
|
"monaco-typescript": {
|
||||||
"version": "3.0.0",
|
"version": "3.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/monaco-typescript/-/monaco-typescript-3.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/monaco-typescript/-/monaco-typescript-3.0.1.tgz",
|
||||||
"integrity": "sha512-eqxb5wG/HtL+Y/Taedh4RzxyaXDJc2YXOizgpr4X+KRHhg+mKOkcJ5QglHs/yQrVisY1CKsF/A66hTnVOaxDbg==",
|
"integrity": "sha512-932bSXvUaaF9yUu+MNjljxVwUV4izRDb4XOoqKDWDYrXi9sCmBSsaqEiUjq/bxSOjHGXL3Zrf81VS8y8LSUdoA==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"ms": {
|
"ms": {
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "monaco-editor",
|
"name": "monaco-editor",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.10.1",
|
"version": "0.11.0",
|
||||||
"description": "A browser based code editor",
|
"description": "A browser based code editor",
|
||||||
"author": "Microsoft Corporation",
|
"author": "Microsoft Corporation",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|
@ -23,11 +23,11 @@
|
||||||
"gulp-typedoc": "^2.0.0",
|
"gulp-typedoc": "^2.0.0",
|
||||||
"http-server": "^0.11.1",
|
"http-server": "^0.11.1",
|
||||||
"monaco-css": "2.0.1",
|
"monaco-css": "2.0.1",
|
||||||
"monaco-editor-core": "0.11.4",
|
"monaco-editor-core": "0.11.5",
|
||||||
"monaco-html": "2.0.2",
|
"monaco-html": "2.0.2",
|
||||||
"monaco-json": "2.0.1",
|
"monaco-json": "2.0.1",
|
||||||
"monaco-languages": "1.0.2",
|
"monaco-languages": "1.0.4",
|
||||||
"monaco-typescript": "3.0.0",
|
"monaco-typescript": "3.0.1",
|
||||||
"rimraf": "^2.5.2",
|
"rimraf": "^2.5.2",
|
||||||
"typedoc": "^0.8.0",
|
"typedoc": "^0.8.0",
|
||||||
"typescript": "^2.7.2",
|
"typescript": "^2.7.2",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------
|
/*!-----------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Type definitions for monaco-editor v0.10.1
|
* Type definitions for monaco-editor v0.11.0
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
*-----------------------------------------------------------*/
|
*-----------------------------------------------------------*/
|
||||||
/*---------------------------------------------------------------------------------------------
|
/*---------------------------------------------------------------------------------------------
|
||||||
|
|
@ -2782,7 +2782,7 @@ declare namespace monaco {
|
||||||
lightbulb?: IEditorLightbulbOptions;
|
lightbulb?: IEditorLightbulbOptions;
|
||||||
/**
|
/**
|
||||||
* Enable code folding
|
* Enable code folding
|
||||||
* Defaults to true in vscode and to false in monaco-editor.
|
* Defaults to true.
|
||||||
*/
|
*/
|
||||||
folding?: boolean;
|
folding?: boolean;
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue