2.21.0
·
344 commits
to main
since this release
✨ New features
- Settings: The
insertAfter
parameter now supports references, hard-coded IDs, and the magic valuesfront
andback
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 tofalse
. 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