You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ss...@apache.org on 2021/12/22 10:43:11 UTC

[sling-org-apache-sling-testing-caconfig-mock-plugin] branch feature/SLING-8849-htl-binding-values-provider-improve-flexibility updated (f0fce20 -> f7c0f22)

This is an automated email from the ASF dual-hosted git repository.

sseifert pushed a change to branch feature/SLING-8849-htl-binding-values-provider-improve-flexibility
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-caconfig-mock-plugin.git.


 discard f0fce20  SLING-8849 register org.apache.sling.caconfig.impl.ConfigurationBindingsResourceDetectionStrategyMultiplexerImpl is available
     new f7c0f22  SLING-8849 register org.apache.sling.caconfig.impl.ConfigurationBindingsResourceDetectionStrategyMultiplexerImpl if available

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (f0fce20)
            \
             N -- N -- N   refs/heads/feature/SLING-8849-htl-binding-values-provider-improve-flexibility (f7c0f22)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:

[sling-org-apache-sling-testing-caconfig-mock-plugin] 01/01: SLING-8849 register org.apache.sling.caconfig.impl.ConfigurationBindingsResourceDetectionStrategyMultiplexerImpl if available

Posted by ss...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

sseifert pushed a commit to branch feature/SLING-8849-htl-binding-values-provider-improve-flexibility
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-caconfig-mock-plugin.git

commit f7c0f227b1ab57f000f9d6b943fd3b350f8443fd
Author: Stefan Seifert <st...@users.noreply.github.com>
AuthorDate: Wed Dec 22 11:30:03 2021 +0100

    SLING-8849 register org.apache.sling.caconfig.impl.ConfigurationBindingsResourceDetectionStrategyMultiplexerImpl if available
---
 .../java/org/apache/sling/testing/mock/caconfig/ContextPlugins.java    | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/main/java/org/apache/sling/testing/mock/caconfig/ContextPlugins.java b/src/main/java/org/apache/sling/testing/mock/caconfig/ContextPlugins.java
index 2888b98..3c73180 100644
--- a/src/main/java/org/apache/sling/testing/mock/caconfig/ContextPlugins.java
+++ b/src/main/java/org/apache/sling/testing/mock/caconfig/ContextPlugins.java
@@ -128,6 +128,9 @@ public final class ContextPlugins {
             registerByClassName(context, "org.apache.sling.caconfig.impl.override.ConfigurationOverrideManager");
         }
 
+        // required for impl 1.6
+        registerByClassName(context, "org.apache.sling.caconfig.impl.ConfigurationBindingsResourceDetectionStrategyMultiplexerImpl");
+
         context.registerInjectActivateService(new ConfigurationResolverImpl());
         context.registerInjectActivateService(new ConfigurationBuilderAdapterFactory());
     }