Skip to content

Commit

Permalink
Merge branch 'develop' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanseifert committed Nov 10, 2021
2 parents 4750db4 + cb6c99b commit 65b4b5e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@
xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 http://maven.apache.org/plugins/maven-changes-plugin/xsd/changes-1.0.0.xsd">
<body>

<release version="1.8.8" date="2021-11-10">
<action type="update" dev="cnagel" issue="WCON-86">
Do not generate warnings for not allowed postfixes.
</action>
</release>

<release version="1.8.6" date="2021-08-16">
<action type="update" dev="sseifert">
Eliminate usage of Commons Collections 3.
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

<groupId>io.wcm</groupId>
<artifactId>io.wcm.caconfig.extensions</artifactId>
<version>1.8.6</version>
<version>1.8.8</version>
<packaging>jar</packaging>

<name>Context-Aware Configuration Extensions for AEM</name>
Expand All @@ -49,7 +49,7 @@
<site.url.module.prefix>caconfig/extensions</site.url.module.prefix>

<!-- Enable reproducible builds -->
<project.build.outputTimestamp>2021-08-16T10:10:44Z</project.build.outputTimestamp>
<project.build.outputTimestamp>2021-11-10T14:41:17Z</project.build.outputTimestamp>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ private String checkPath(final ContextResource contextResource, final String che
for (String bucketName : bucketNames) {
String notAllowedPostfix = "/" + bucketName;
if (ref != null && ref.endsWith(notAllowedPostfix)) {
log.warn("Ignoring reference to {} from {} - Probably misconfigured as it ends with '{}'",
log.debug("Ignoring reference to {} from {} - Probably misconfigured as it ends with '{}'",
contextResource.getConfigRef(), contextResource.getResource().getPath(), notAllowedPostfix);
ref = null;
}
Expand Down
2 changes: 1 addition & 1 deletion src/site/markdown/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ See [Deploy and configure Context-Aware Configuration in AEM][deploy-configure-c

|Context-Aware Configuration Extensions for AEM version |AEM version supported
|-------------------------------------------------------|----------------------
|1.8.x or higher |AEM 6.4+
|1.8.x or higher |AEM 6.4+, AEMaaCS
|1.7.x |AEM 6.3+
|1.6.x |AEM 6.2+
|1.0.x - 1.5.x |AEM 6.1+
Expand Down

0 comments on commit 65b4b5e

Please sign in to comment.