Skip to content

v3.15.0

Compare
Choose a tag to compare
@mttrbrts mttrbrts released this 15 Nov 13:02
· 18 commits to main since this release
22b445a

What's Changed

decorate Command

Users can now pass a list of model files, decorator files, and vocabulary files to generate decorated models. Additionally, the command supports an optional parameter to specify the output path for the decorated models.
Usage:

$ concerto decorate --models <model_files> \
--decorators <decorator_files> \
--vocabularies <vocabulary_files> \
[--output <output_path>]

extract-decorators Command

We have introduced the extract-decorator command to facilitate the extraction of decorators and vocabularies from existing models. Users can specify a list of model files and choose whether to remove the extracted decorators and vocabularies from the source models. The command also supports an optional parameter to set the output path for the extracted decorators and vocabularies.
Usage:

$ concerto extract-decorators --models <model_files> \
[--locale <locale_string>] \
[--output <output_path>] \
[--removeDecoratorsFromSource]

Changelog

  • fix(readme): Updated readme to support single source for documentation by @muskanbararia in #42
  • chore(actions): publish v3.14.0 to npm by @github-actions in #40
  • feat(apply): added cli support for decorators and vocab by @muskanbararia in #37
  • feat(decorator): Added support for extracting decorators from model files by @muskanbararia in #44

New Contributors

Full Changelog: v3.14.0...v3.15.0