Skip to content

Releases: remcohaszing/monaco-yaml

v5.1.1

19 Jan 11:07
v5.1.1
df07acc
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v5.1.0...v5.1.1

v5.1.0

06 Sep 18:19
v5.1.0
94b22e1
Compare
Choose a tag to compare
  • Support smart code folding.
  • Properly convert code action context.

v5.0.0

27 Aug 14:21
v5.0.0
9aa735d
Compare
Choose a tag to compare

Breaking changes

In order to support Monaco editor coming from different sources, it must now be passed to monaco-yaml. The opportinity of a breaking change was also used to rename the export.

- import { setDiagnosticsOptions } from 'monaco-yaml';
+ import * as monaco from 'monaco-editor'
+ import { configureMonacoYaml } from 'monaco-yaml'

  // Configure monaco-yaml first
- setDiagnosticsOptions({
+ const monacoYaml = configureMonacoYaml(monaco, {
    // …
  })

  // Reconfigure monaco-yaml later

- setDiagnosticsOptions({
+ monacoYaml.update({
    // …
  })

v4.0.4

17 Feb 09:29
v4.0.4
d67d0ac
Compare
Choose a tag to compare
  • Add back support for Monaco Editor 0.30 to 0.33.
  • Enable TypeScript strict mode. This handles various cases where a value could be null or undefined.

v4.0.3

26 Jan 17:02
v4.0.3
58a5a94
Compare
Choose a tag to compare
  • Update to yaml-language-server 1.11.0. (Changelog)
  • Support Monaco 0.34.0.

v4.0.2

20 Sep 15:05
v4.0.2
3d89604
Compare
Choose a tag to compare
  • Fix automatic publishing.

v4.0.1

20 Sep 14:52
v4.0.1
997aae3
Compare
Choose a tag to compare

Changed

  • Update yaml-language-server to 1.10.0.

v4.0.0

22 Jun 13:55
v4.0.0
394b00b
Compare
Choose a tag to compare

Changed

  • Update yaml-language-server to 1.8.0

For more changes, see the alpha prereleases.

v4.0.0-alpha.3

05 May 14:26
v4.0.0-alpha.3
8378b9a
Compare
Choose a tag to compare
v4.0.0-alpha.3 Pre-release
Pre-release

Changed

  • Update to yaml-language-server 1.7.0
  • Update Prettier to allow caret version ranges
  • Externalize monaco-marker-data-provider

Added

  • Export yamlDefaults
  • Added tests

Fixed

  • Fix resolving location links

Special thanks to @domsew and @JounQin

v4.0.0-alpha.2

10 Apr 19:49
v4.0.0-alpha.2
fda42fe
Compare
Choose a tag to compare
v4.0.0-alpha.2 Pre-release
Pre-release

Changed

  • Update to yaml-language-server 1.6.0
  • The module type has been set to module in package.json.

Added

  • Quick fix for removing unused anchors.

Removed

  • monaco-yaml no longer uses the monaco.languages.yaml namespace.