Skip to content

Release 2.0.13

Choose a tag to compare

@pun-ky pun-ky released this 05 Dec 06:45
· 3516 commits to master since this release

What's new

  • implemented exclusion paths for VLT skipped properties #85

Now there is ability to exclude some paths while skipping properties when using task aemClean / aemSync.
Since 2.0.13, VLT skip properties default value looks as below:

aem {
    config {
        vaultSkipProperties = [
                "jcr:uuid!**/home/users/*,**/home/groups/*",
                "jcr:lastModified",
                "jcr:created",
                "cq:lastModified*",
                "cq:lastReplicat*",
                "*_x0040_Delete",
                "*_x0040_TypeHint"
        ]
    }
}

After special delimiter ! there could be specified one or many path patterns (ANT style, delimited with ,) in which property shouldn't be removed.

Bug fixes

(none)