Skip to content

Releases: remcohaszing/monaco-yaml

v5.2.1

07 Jul 12:14
v5.2.1
b4f8f05
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v5.2.0...v5.2.1

v5.2.0

07 Jun 19:27
v5.2.0
9c511bd
Compare
Choose a tag to compare

Full Changelog: v5.1.1...v5.2.0

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.