Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency monaco-editor to v0.18.1 #40

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented May 11, 2018

This PR contains the following updates:

Package Type Update Change
monaco-editor dependencies minor 0.12.0 -> 0.18.1
monaco-editor devDependencies minor 0.12.0 -> 0.18.1

Release Notes

Microsoft/monaco-editor

v0.18.1

Compare Source

  • 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:

Contributions to monaco-json:

Contributions to monaco-languages:

Contributions to monaco-typescript:

v0.18.0

Compare Source

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 of ICodeLensSymbol[].
  • DocumentSymbol has a new property tags to support more types.
  • View Zone id is now string instead of number.
Thank you

Contributions to monaco-json:

v0.17.1

Compare Source

  • Update monaco-typescript to TypeScript 3.5.0.

v0.17.0

Compare Source

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 return ILinksList instead of ILink[].
  • IEditorOptions.iconsInSuggestions and EditorContribOptions.iconsInSuggestions are now replaced by EditorContribOptions.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:

v0.16.2

Compare Source

v0.16.1

Compare Source

  • Fixes issue with context menu (#​1357)

v0.16.0

Compare Source

New & Noteworthy
  • Added built-in support for AMD cross-domain web worker loading.
  • Added API to remeasure fonts (monaco.editor.remeasureFonts) in case custom fonts are used and the editor is painted at a time when the fonts are not finished loading.
  • Various editor improvements, such as an option to renderFinalNewline, or to have a cursorSmoothCaretAnimation
  • Colorization support for Tcl, Pascal, Kotlin and GraphQL.
Breaking changes
  • We are no longer shipping WinJS.Promise, but we are shipping with a Promise shim (for IE11).
  • CompletionItem.range is now mandatory. Most times, you can use model.getWordUntilPosition() to get a good range.
  • DefinitionLink has been renamed to LocationLink and a couple of its fields have also been renamed.
Thank you

Contributions to monaco-editor:

Contributions to monaco-languages:

Contributions to monaco-typescript:

v0.15.6

Compare Source

  • Fixes issue with context menu (#​1199)

v0.15.5

Compare Source

  • Re-remove cast to any from our code base to allow for tree shaking to not shake useful code (#​1013)

v0.15.4

Compare Source

v0.15.3

Compare Source

  • Remove cast to any from our code base to allow for tree shaking to not shake useful code (#​1013)

v0.15.2

Compare Source

  • Fixes usage of marked to allow for packaging with rollup (#​1183)

v0.15.1

Compare Source

  • Fixes the /esm/ distribution (#​1178)

v0.15.0

Compare Source

New & Noteworthy
  • Improved typings in monaco.d.ts to better reflect null types.
Breaking changes
  • We are slowly migrating our code-base away from WinJS promises, so the exposed monaco.Promise API has been reduced to indicate that. We are setting up a Promise polyfill to cover browsers which do not have a native Promise implementation yet (i.e. IE11).
  • CompletionItemProvider.provideCompletionItems and CompletionItemProvider.resolveCompletionItem have been modified to better reflect the API of VS Code. Both arguments and return type have changed.
  • SignatureHelpProvider.provideSignatureHelp now receives an extra argument for the context.
  • Various new editor options or tweaks to existing ones: parameterHints, autoClosingBrackets, autoClosingQuotes, autoSurround, copyWithSyntaxHighlighting, tabCompletion.
Thank you

Contributions to monaco-editor:

Contributions to monaco-languages:

Contributions to monaco-typescript:

Contributions to monaco-json:

Contributions to monaco-css:

v0.14.3

Compare Source

  • Fixes TypeScript/JavaScript coloring of regular expressions #​1009

v0.14.2

Compare Source

v0.14.1

Compare Source

v0.14.0

Compare Source

New & Noteworthy
  • Using tree-shaking to reduce the amount of shipped code.
  • TypeScript and JavaScript coloring is now done with Monarch.
  • typescriptServices is no longer loaded on the UI thread, this helps with webpack's bundle output size.
  • Added coloring for: apex, azcli, clojure, powerquery, rust, scheme and shell.
  • Added sub-word navigation commands.
  • Added font zoom commands.
  • Syntax highlighting for deleted lines in inline diff editor.
  • Highlighted indent guide.
  • Column selection using middle mouse button.
  • Added editor options: scrollBeyondLastColumn, hover, suggest, highlightActiveIndentGuide, showUnused.
  • Added setTokensProvider with EncodedTokensProvider.
  • Added monaco.languages.getEncodedLanguageId to get the numeric language id.
  • DefinitionProvider.provideDefinition, ImplementationProvider.provideImplementation, TypeDefinitionProvider.provideTypeDefinition can now return a DefinitionLink.
Breaking Changes
  • Removed no longer used Severity.
  • Renamed IEditor.isFocused to IEditor.hasTextFocus.
  • Renamed ICodeEditor.onDidFocusEditor to ICodeEditor.onDidFocusEditorWidget.
  • Renamed ICodeEditor.onDidBlurEditor to ICodeEditor.onDidBlurEditorWidget.
  • DocumentSymbolProvider.provideDocumentSymbols must now return DocumentSymbol[].
Thank you

Contributions to monaco-editor:

Contributions to monaco-typescript:

Contributions to monaco-languages:

v0.13.1

Compare Source

  • Fixes issue #​871: TypeScript import error after mocaco-editor upgraded from 0.12 to 0.13

v0.13.0

Compare Source

New & Noteworthy
  • New folding provider registerFoldingRangeProvider.
  • You can now specifies the stack order of a decoration by setting IModelDecorationOptions.zIndex. A decoration with greater stack order is always in front of a decoration with a lower stack order.
  • You can now tell Monaco if there is an inlineClassName which affects letter spacing. the stack order of a decoration by setting IModelDecorationOptions.inlineClassNameAffectsLetterSpacing.
  • Get the text length for a certain line on text model (ITextModel.getLineLength(lineNumber: number))
  • New option codeActionsOnSave, controls whether code action kinds will be run on save.
  • New option codeActionsOnSaveTimeout, controls timeout for running code actions on save.
  • New option multiCursorMergeOverlapping, controls if overlapping selections should be merged. Default to true.
Breaking Change
  • Removed ICodeEditor.getCenteredRangeInViewport.
  • RenameProvider.resolveRenameLocation now returns RenameLocation instead of IRange.
Thank you

Renovate configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Whenever PR becomes conflicted, or if you modify the PR title to begin with "rebase!".

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

Newsflash: Renovate has joined WhiteSource, and is now free for all use. Learn more or view updated terms and privacy policies.

@renovate renovate bot force-pushed the renovate/monaco-editor-0.x branch from 23674a0 to e25cff6 Compare May 15, 2018 09:27
@renovate renovate bot changed the title Update dependency monaco-editor to v0.13.0 Update dependency monaco-editor to v0.13.1 May 15, 2018
@renovate renovate bot force-pushed the renovate/monaco-editor-0.x branch from e25cff6 to 4969249 Compare August 10, 2018 16:15
@renovate renovate bot changed the title Update dependency monaco-editor to v0.13.1 Update dependency monaco-editor to v0.14.0 Aug 10, 2018
@renovate renovate bot force-pushed the renovate/monaco-editor-0.x branch from 4969249 to ef8aaac Compare August 10, 2018 19:21
@renovate renovate bot changed the title Update dependency monaco-editor to v0.14.0 Update dependency monaco-editor to v0.14.1 Aug 10, 2018
@renovate renovate bot force-pushed the renovate/monaco-editor-0.x branch from ef8aaac to 6ce4a33 Compare August 10, 2018 22:34
@renovate renovate bot changed the title Update dependency monaco-editor to v0.14.1 Update dependency monaco-editor to v0.14.2 Aug 10, 2018
@renovate renovate bot force-pushed the renovate/monaco-editor-0.x branch from 6ce4a33 to 722f8fc Compare August 17, 2018 08:36
@renovate renovate bot changed the title Update dependency monaco-editor to v0.14.2 Update dependency monaco-editor to v0.14.3 Aug 17, 2018
@renovate renovate bot force-pushed the renovate/monaco-editor-0.x branch from 722f8fc to a84a52e Compare November 12, 2018 18:07
@renovate renovate bot changed the title Update dependency monaco-editor to v0.14.3 Update dependency monaco-editor to v0.15.0 Nov 12, 2018
@renovate renovate bot force-pushed the renovate/monaco-editor-0.x branch from a84a52e to a3f796b Compare November 13, 2018 13:43
@renovate renovate bot changed the title Update dependency monaco-editor to v0.15.0 Update dependency monaco-editor to v0.15.1 Nov 13, 2018
@renovate renovate bot force-pushed the renovate/monaco-editor-0.x branch from a3f796b to ac6ad71 Compare November 14, 2018 10:45
@renovate renovate bot changed the title Update dependency monaco-editor to v0.15.1 Update dependency monaco-editor to v0.15.2 Nov 14, 2018
@renovate renovate bot force-pushed the renovate/monaco-editor-0.x branch from ac6ad71 to 648afd1 Compare November 15, 2018 09:12
@renovate renovate bot changed the title Update dependency monaco-editor to v0.15.2 Update dependency monaco-editor to v0.15.3 Nov 15, 2018
@renovate renovate bot force-pushed the renovate/monaco-editor-0.x branch from 648afd1 to 628a6a6 Compare November 15, 2018 14:57
@renovate renovate bot changed the title Update dependency monaco-editor to v0.15.3 Update dependency monaco-editor to v0.15.4 Nov 15, 2018
@renovate renovate bot force-pushed the renovate/monaco-editor-0.x branch from 628a6a6 to 74f498d Compare November 16, 2018 22:32
@renovate renovate bot changed the title Update dependency monaco-editor to v0.15.4 Update dependency monaco-editor to v0.15.5 Nov 16, 2018
@renovate renovate bot force-pushed the renovate/monaco-editor-0.x branch from 74f498d to c98e5d8 Compare November 23, 2018 11:24
@renovate renovate bot changed the title Update dependency monaco-editor to v0.15.5 Update dependency monaco-editor to v0.15.6 Nov 23, 2018
@renovate renovate bot force-pushed the renovate/monaco-editor-0.x branch from c98e5d8 to 9916d7e Compare March 5, 2019 15:42
@renovate renovate bot changed the title Update dependency monaco-editor to v0.15.6 Update dependency monaco-editor to v0.16.0 Mar 5, 2019
@renovate renovate bot force-pushed the renovate/monaco-editor-0.x branch from 9916d7e to 3587446 Compare March 14, 2019 22:07
@renovate renovate bot changed the title Update dependency monaco-editor to v0.16.0 Update dependency monaco-editor to v0.16.1 Mar 14, 2019
@renovate renovate bot changed the title Update dependency monaco-editor to v0.16.1 Update dependency monaco-editor to v0.16.2 Mar 19, 2019
@renovate renovate bot force-pushed the renovate/monaco-editor-0.x branch from 3587446 to 030361a Compare March 19, 2019 14:25
@renovate renovate bot force-pushed the renovate/monaco-editor-0.x branch from 030361a to 04b55fe Compare May 12, 2019 10:49
@renovate renovate bot changed the title Update dependency monaco-editor to v0.16.2 Update dependency monaco-editor to v0.17.0 May 12, 2019
@renovate renovate bot force-pushed the renovate/monaco-editor-0.x branch from 04b55fe to 22b7c1a Compare July 13, 2019 14:55
@renovate renovate bot changed the title Update dependency monaco-editor to v0.17.0 Update dependency monaco-editor to v0.17.1 Jul 13, 2019
@renovate renovate bot force-pushed the renovate/monaco-editor-0.x branch from 22b7c1a to 7e514bc Compare September 4, 2019 19:53
@renovate renovate bot changed the title Update dependency monaco-editor to v0.17.1 Update dependency monaco-editor to v0.18.0 Sep 4, 2019
@renovate renovate bot force-pushed the renovate/monaco-editor-0.x branch from 7e514bc to 6bdc8a4 Compare October 4, 2019 23:59
@renovate renovate bot changed the title Update dependency monaco-editor to v0.18.0 Update dependency monaco-editor to v0.18.1 Oct 4, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant