Skip to content

v7.7.1

Choose a tag to compare

@JoernBerkefeld JoernBerkefeld released this 20 Feb 18:02
· 778 commits to main since this release

Bugfixes

Chores

Full Changelog: v7.7.0...v7.7.1

Details

Advanced Configuration

Validation rules

You can define validation rules for retrieve, buildDefinition and deploy.

Possible rule settings are:

  • not set, which implicitly turns off the rule
  • "off" explicitly turns off the rule
  • "warn" shows a log message of type warning
  • "error" shows a log message of type error AND blocks further execution
    • for retrieve that prevents download
    • for buildDefintion (and build) that prevents the creation of the corresponding file in the deploy folder
    • for deploy this will prevent deployment.
  • "fix" can either lead to skipping the component or to updating parts of the metadata (JSON) - that depends on the rule's algorithm. If fixing means skipping then the outcome is the same as with "error", except that no error code is returned by mcdev which can be relevant if you execute mcdev as part of a CI/CD pipeline where an error code signals a problem.