Skip to content

Release 2.0.9

Choose a tag to compare

@pun-ky pun-ky released this 08 Oct 08:38
· 3533 commits to master since this release

What's new:

  • #69 wildcard pattern instead of 'startsWith' as method for determining VLT skipped properties (more control).

Upgrade notes:

Please update configuration properties:

aem {
   vaultSkipProperties = [
            "jcr:uuid",
            "cq:lastModified", // previously applied to 'cq:lastModified' and 'cq:lastModifiedBy' (startsWith)
            "cq:lastReplicat" // previously applied to 'cq:lastReplicated' and 'cq:lastReplicatedBy' (startsWith)
   ]
}

to

aem {
   vaultSkipProperties = [
            "jcr:uuid", // remains same
            "cq:lastModified*", // now wildcard needed in the end
            "cq:lastReplicat*" // now wildcard needed in the end
   ]
}