Skip to content

2.21.0

Compare
Choose a tag to compare
@monaco-release-dt-bot monaco-release-dt-bot released this 12 Mar 14:23
· 344 commits to main since this release
8bbf8ae

✨ New features

  • Settings: The insertAfter parameter now supports references, hard-coded IDs, and the magic values front and back to insert an object at the very front or back of the list.
    type:
      settings:
        schemaId: app:my-settings-schema
        scope: environment
        insertAfter: `front` # or `back` or a hard-coded ID 
  • File parameter: While the content is still escaped by default so that it is easy to use in JSON strings, the behavior can now be disabled by setting the escape flag to false. This makes it possible to place common snippets of JSON in separate files. #1734
    ... # rest of the config
    parameters:
      my_content:
        type: file
        path: my-file-to-include.json 
        escape: false # default 'true'

🐛Bug fixes

  • Memory statistics are now only attached to the support archive if the feature flag MONACO_LOG_MEM_STATS is enabled. #1752
  • File parameter: We're now printing an error if references are used without defining them. #1760
  • File parameter: We're now allowing relative paths. #1756
  • Compound parameter: We're now printing an error if a parameter is referenced that has not been defined. #1761

Full changelog: v2.20.0...v2.21.0