Release 2.0.9
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
]
}