All Versions
70
Latest Version
Avg Release Cycle
36 days
Latest Release
-
Changelog History
Page 4
Changelog History
Page 4
-
v0.19.3 Changes
January 14, 2020- brings back a way to get resolved editor options - #1734
Thank you
Contributions to
monaco-editor
:- Brijesh Bittu (@brijeshb42): Playground: Add keyboard shortcut to run playground code PR #1756
Contributions to
monaco-languages
:- Rikki Schulte (@acao): add tokenizer for graphql language variables PR #78
-
v0.19.2 Changes
January 06, 2020- ๐ fixes issue with default value of
autoIndent
- #1726
- ๐ fixes issue with default value of
-
v0.19.1 Changes
January 06, 2020- ๐ fixes issue with .d.ts file in the ESM distribution - #1729
- โ adds types for global editor options (such as
wordBasedSuggestions
) - #1746 - โ adds support for reStructuredText.
Thank you
Contributions to
monaco-editor
:Contributions to
monaco-languages
:- ๐ Changwon Choe (@qwefgh90): add support for reStructuredText PR #77
-
v0.19.0 Changes
December 20, 2019๐ New & Noteworthy
- ๐ It is now possible to pass in a
dimension
in the editor construction options in order to avoid a synchronous layout. - There is new API to provide semantic tokens.
- ๐ New options:
multiCursorPaste
: define how to distribute paste in case of multi-cursormatchBrackets
: control if enclosing brackets should be highlighted
- ๐ Fixes for tokenization in: TypeScript, JavaScript, Handlebars, Kotlin and VB.
๐ฅ Breaking changes
getConfiguration()
is replaced bygetRawOptions()
, which returns the passed in editor options.- โ Starting with this version, the Monaco Editor no longer supports IE 11. The last version that was tested in IE 11 is 0.18.1.
Thank you
Contributions to
monaco-editor
:- Lars Hvam (@larshp)
- ๐ Remy Suen (@rcjsuen): Add CompletionItem with snippet support to the example PR #1703
๐ Contributions to
monaco-editor-webpack-plugin
:- ๐ Dominik Moritz (@domoritz): Bump to 0.16 PR #62
- Mike Greiling (@mikegreiling): Fix webpack_public_path within getWorkerUrl method PR #63
- ๐ Roman Krasiuk (@rkrasiuk): Bump to 0.17.0 and Add graphql support PR #67
- ๐ Niklas Mollenhauer (@nikeee): Add loader-utils and make @types/webpack a dev dependency PR #74
- James Diefenderfer (@jimmydief)
Contributions to
monaco-languages
:- ๐ Maksym Bykovskyy (@mbykovskyy): Adds cameligo language support PR #75
- Steven Degutis (@sdegutis): Adds Markdown Table syntax highlighting PR #73
- Sergey Romanov (@Serhioromano): Improvements to ST language PR #76
- ๐ Sebastian Pahnke (@spahnke): [JS/TS] Add support for the nullish-coalesce operator PR #74
Contributions to
monaco-typescript
:- Denys Vuika (@DenysVuika): register multiple extra libs at once PR #24
- Elizabeth Craig (@ecraig12345)
- โก๏ธ @katis: Update TypeScript to 3.7.2 PR #51
- ๐ Tamas Kiss (@kisstkondoros): Add documentation to signature help PR #52
- Lars Hvam (@larshp): fix typo PR #45
- Sebastian Pahnke (@spahnke)
- Provide related information to diagnostics PR #48
- Alessandro Fragnani (@alefragnani): Add Pascal samples PR #1358
- ๐ It is now possible to pass in a
-
v0.18.1 Changes
September 19, 2019- ๐ fixes 2 issues with the ESM distribution - #1572 and #1574
- ๐ fixes very slow scrolling in Firefox - #1575
- ๐ new syntax highlighting for: pascaligo, ABAP, Sophia ML, Twig and MIPS.
Thank you
Contributions to
monaco-editor
:- Alessandro Fragnani (@alefragnani): Add Pascal samples PR #1358
- Daniel Wang (@datou0412): Add koltin sample for website PR #1351
- โก๏ธ Ehsan (@ehsan-mohammadi): Updated html sample code PR #1387
- ๐ Jonas Fonseca (@jonas): CHANGELOG: Fix year for releases made in 2019 PR #1388
- Milen Radkov (@mradkov): Add Sophia ML example PR #1543
- Sergey Romanov (@Serhioromano): Structured text example PR #1552
- zhnlviing (@zhanghongnian): fix demo: completion provider example PR #1537
Contributions to
monaco-json
:Contributions to
monaco-languages
:- ๐ Brice Aldrich (@DefinitelyNotAGoat): pascaligo: adding pascaligo language support PR #69
- Salam Elbilig (@finalfantasia): [clojure] treat comma as whitespace PR #63
- Alf Eaton (@hubgit): [xml] Add OPF and XSL file extensions PR #64
- Lars Hvam (@larshp)
- Milen Radkov (@mradkov)
- ๐ Marco Petersen (@ocrampete16): Add support for the Twig template language PR #71
- ๐ Progyan Bhattacharya (@Progyan1997): [Feat] MIPS: Support for Syntax Highlight and Basic Colorization PR #65
- โก๏ธ Sergey Romanov (@Serhioromano): [ST] Some updated for Structured Text Language support PR #66
- ๐ Sebastian Pahnke (@spahnke): [JS/TS] Add support for BigInt PR #62
Contributions to
monaco-typescript
:- โก๏ธ Andre Wachsmuth (@blutorange): Fix microsoft/monaco-editor#1576 update dependency to core PR #41
- Javey (@Javey): Make it can be compressed by uglify-js PR #34
- Sebastian Pahnke (@spahnke): Add a rename provider PR #39
- @ulrichb: Expose TypeScript version via
monaco.languages.typescript.typeScriptVersion
PR #31
-
v0.18.0 Changes
September 04, 2019๐ New & Noteworthy
- Minimap enhancement
- Selections and find results are now rendered in the minimap.
- Model decorations now support
IModelDecorationOptions.minimap
, once set the decoration will be rendered in the minimap
- ๐ New editor options
autoClosingOvertype
: it controls whether the editor allows typing over closing quotes or brackets.cursorSurroundingLines
: it controls how many visible lines to display around the cursor while moving the cursor towards beginning or end of a file.renderWhitespace: "selection"
: the editor can render whitespaces only in selection.
API changes
DeclarationProvider
: The declaration provider interface defines the contract between extensions and the go to declaration feature.- ๐
SelectionRangeProvider
Provide smart selection ranges for the given positions, see VS Code issue. - CodeLensProvider should now return
CodeLensList
instead ofICodeLensSymbol[]
. - ๐
DocumentSymbol
has a new propertytags
to support more types. - View Zone id is now
string
instead ofnumber
.
Thank you
Contributions to
monaco-json
:- ิะตั @wesinator: Add .har extension #9
- Minimap enhancement
-
v0.17.1 Changes
June 24, 2019- โก๏ธ Update monaco-typescript to TypeScript 3.5.0.
-
v0.17.0 Changes
May 05, 2019๐ New & Noteworthy
- ๐ Localization support is brought back for AMD bundle. We lost the localization support when VS Code moved to the localization system but now AMD bundles ships the same localized strings VS Code localization extensions ship. For more details, please read Monaco#822 and related VS Code upstream issue
LinkProvider.ProvideLinks
should now returnILinksList
instead ofILink[]
.IEditorOptions.iconsInSuggestions
andEditorContribOptions.iconsInSuggestions
are now replaced byEditorContribOptions.suggest.showIcons
.- We introduced
EditorContribOptions.suggest.maxVisibleSuggestions
to control maximum suggestions to show in suggestions widget. EditorContribOptions.suggest.filteredTypes
is now introduced to allow suggestions to be filtered by the user. For more details, please read vscode#45039.
Thank You
Contributions to
monaco-editor
:- ๐ Jonas Fonseca @jonas: Fix year for releases made in 2019 PR #1388
-
v0.16.2 Changes
March 19, 2019- ๐ Fixes for HTML and JSON (https://github.com/Microsoft/monaco-editor/issues/1367, https://github.com/Microsoft/monaco-editor/issues/1254)
-
v0.16.1 Changes
- ๐ Fixes issue with context menu (https://github.com/Microsoft/monaco-editor/issues/1357)