Parcourir la source

Update CHANGELOG and dependencies

Alex Dima il y a 7 ans
Parent
commit
2d54688825
5 fichiers modifiés avec 60 ajouts et 18 suppressions
  1. 42 0
      CHANGELOG.md
  2. 2 2
      monaco.d.ts
  3. 10 10
      package-lock.json
  4. 4 4
      package.json
  5. 2 2
      website/playground/monaco.d.ts.txt

+ 42 - 0
CHANGELOG.md

@@ -1,5 +1,47 @@
 # 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)
  - Fixes [issue #601](https://github.com/Microsoft/monaco-editor/issues/601): window.opener should be set to null to protect against malicious code
 

+ 2 - 2
monaco.d.ts

@@ -1,6 +1,6 @@
 /*!-----------------------------------------------------------
  * 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
 *-----------------------------------------------------------*/
 /*---------------------------------------------------------------------------------------------
@@ -2782,7 +2782,7 @@ declare namespace monaco {
             lightbulb?: IEditorLightbulbOptions;
             /**
              * Enable code folding
-             * Defaults to true in vscode and to false in monaco-editor.
+             * Defaults to true.
              */
             folding?: boolean;
             /**

+ 10 - 10
package-lock.json

@@ -1,6 +1,6 @@
 {
   "name": "monaco-editor",
-  "version": "0.10.1",
+  "version": "0.11.0",
   "lockfileVersion": 1,
   "requires": true,
   "dependencies": {
@@ -2377,9 +2377,9 @@
       "dev": true
     },
     "monaco-editor-core": {
-      "version": "0.11.4",
-      "resolved": "https://registry.npmjs.org/monaco-editor-core/-/monaco-editor-core-0.11.4.tgz",
-      "integrity": "sha512-9kGuoLy55omwhQ2+HeLDbykc8rwaTaj8WEBGR8YNZ3SyMTofU6i6W3GyAz65etJ6blCGk8s0RsCJNm2JcWRRcA==",
+      "version": "0.11.5",
+      "resolved": "https://registry.npmjs.org/monaco-editor-core/-/monaco-editor-core-0.11.5.tgz",
+      "integrity": "sha512-zje/QhdYlhJvsLCHzQN2gqybJbgtSK5k/Sssmi2x+OQv7pUU65QMNshXgY7H2jd/o4B+glCD3OvrGubsK1H5JQ==",
       "dev": true
     },
     "monaco-html": {
@@ -2395,15 +2395,15 @@
       "dev": true
     },
     "monaco-languages": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/monaco-languages/-/monaco-languages-1.0.2.tgz",
-      "integrity": "sha512-xQEdlbw7nEQoopkPwQTHx3EFPflTrYOqxhY4gGFunbnjY5pIsqROH5/THALSYf3ZWXAZ3vlMxp/lS4eegTdowA==",
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/monaco-languages/-/monaco-languages-1.0.4.tgz",
+      "integrity": "sha512-Msjb/6EbMMvyvUT587cMg59sCIQnJTNoY8NaAyb/E5uIvi82LIcMfmZRHyChFAm+mlBVKSvvHoWoOZdP5NP9DA==",
       "dev": true
     },
     "monaco-typescript": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/monaco-typescript/-/monaco-typescript-3.0.0.tgz",
-      "integrity": "sha512-eqxb5wG/HtL+Y/Taedh4RzxyaXDJc2YXOizgpr4X+KRHhg+mKOkcJ5QglHs/yQrVisY1CKsF/A66hTnVOaxDbg==",
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/monaco-typescript/-/monaco-typescript-3.0.1.tgz",
+      "integrity": "sha512-932bSXvUaaF9yUu+MNjljxVwUV4izRDb4XOoqKDWDYrXi9sCmBSsaqEiUjq/bxSOjHGXL3Zrf81VS8y8LSUdoA==",
       "dev": true
     },
     "ms": {

+ 4 - 4
package.json

@@ -1,7 +1,7 @@
 {
   "name": "monaco-editor",
   "private": true,
-  "version": "0.10.1",
+  "version": "0.11.0",
   "description": "A browser based code editor",
   "author": "Microsoft Corporation",
   "license": "MIT",
@@ -23,11 +23,11 @@
     "gulp-typedoc": "^2.0.0",
     "http-server": "^0.11.1",
     "monaco-css": "2.0.1",
-    "monaco-editor-core": "0.11.4",
+    "monaco-editor-core": "0.11.5",
     "monaco-html": "2.0.2",
     "monaco-json": "2.0.1",
-    "monaco-languages": "1.0.2",
-    "monaco-typescript": "3.0.0",
+    "monaco-languages": "1.0.4",
+    "monaco-typescript": "3.0.1",
     "rimraf": "^2.5.2",
     "typedoc": "^0.8.0",
     "typescript": "^2.7.2",

+ 2 - 2
website/playground/monaco.d.ts.txt

@@ -1,6 +1,6 @@
 /*!-----------------------------------------------------------
  * 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
 *-----------------------------------------------------------*/
 /*---------------------------------------------------------------------------------------------
@@ -2782,7 +2782,7 @@ declare namespace monaco {
             lightbulb?: IEditorLightbulbOptions;
             /**
              * Enable code folding
-             * Defaults to true in vscode and to false in monaco-editor.
+             * Defaults to true.
              */
             folding?: boolean;
             /**