You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2017/11/07 09:19:11 UTC

[sling-org-apache-sling-caconfig-api] annotated tag org.apache.sling.caconfig.api-1.1.0 created (now 48a9e77)

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

rombert pushed a change to annotated tag org.apache.sling.caconfig.api-1.1.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-caconfig-api.git.


      at 48a9e77  (tag)
 tagging 73f51281b7325505bd86fd9e032e2ed1530ca301 (commit)
      by Stefan Seifert
      on Tue Dec 13 11:27:34 2016 +0000

- Log -----------------------------------------------------------------
org.apache.sling.caconfig.api-1.1.0
-----------------------------------------------------------------------

This annotated tag includes the following new commits:

     new fd452cb  SLING-5886 : Add draft api
     new 77b18cf  SLING-5886 : Refactor packages and update javadocs
     new 677765a  SLING-5886 : Add dummy implementation
     new c669426  SLING-5886 : Remove SPI for now
     new fc3ecc6  SLING-5886 : Merge in confmgr implementation
     new 42b0031  SLING-5886 : Use converter service
     new a8cae31  SLING-5886 : Clarify API and implement accordingly
     new d0566e8  update to parent 28
     new 4826c70  SLING-5886 unify package names - always use "contextaware.config" in package name e.g. do not use org.apache.sling.contextaware.resource as package name for "ConfigurationResourceResolver" because it also has "configration" in it's name unify sling API dependency version
     new 239aa27  SLING-5886 rename folder to contextaware-config to keep it in line with package name contextaware.config update poms
     new e24c5b8  SLING-5886 use consistent wording for "Context-Aware Configuration"
     new a736f2d  SLING-5886 make sure config converstion to class never returns null. allow throwing of ConversionException as it cannot be suppressed currently completely anyway
     new 27b75fa  SLING-5982 implement support for nested configuration classes, and use native valuemap support for type conversion
     new e6edc8a  SLING-6016 split up annotation class/valuemap/adaptable usecases into separate methods and make return value handling consistent
     new c26f9d4  SLING-6024 Context-Aware Config: Introduce "bucket name" parameter in ConfigurationResourceResolver
     new 96d253b  SLING-6029 default folder name to /conf rename the sling:config property name to sling:config-ref
     new a45b1ea  SLING-6025 Context-Aware Config: Provide configuration parameter metadata
     new 69f4d50  SLING-5886 rename to "context-aware" config
     new 743a808  SLING-6023 Summary: Context-Aware Config: Add pluggable context paths strategies SLING-6026 Summary: Context-Aware Config: Pluggable configuration persistence
     new bc14a47  update to released versions
     new bf5306b  SLING-6057 Context-Aware Config: Separate Maven Project for SPI
     new f5dd0f0  SLING-6157 Context-Aware Config: Change java package name to o.a.s.caconfig
     new d36e6d0  [maven-release-plugin] prepare release org.apache.sling.caconfig.api-1.0.0
     new 0073686  [maven-release-plugin] prepare for next development iteration
     new 7200adc  update to parent 29
     new c83b30b  SLING-6333 Context-Aware Config: Allow to mark Config Annotation Classes as "Collections"
     new c031eb4  SLING-6374 Context-Aware Config: Allow to control property order in annotation classes
     new 7ed79bb  [maven-release-plugin] prepare release org.apache.sling.caconfig.api-1.1.0
     new 73f5128  [maven-release-plugin] copy for tag org.apache.sling.caconfig.api-1.1.0

The 29 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.


-- 
To stop receiving notification emails like this one, please contact
['"commits@sling.apache.org" <co...@sling.apache.org>'].

[sling-org-apache-sling-caconfig-api] 03/06: SLING-6333 Context-Aware Config: Allow to mark Config Annotation Classes as "Collections"

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

rombert pushed a commit to annotated tag org.apache.sling.caconfig.api-1.1.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-caconfig-api.git

commit c83b30ba574b63a228354d86bc7aec7ec7b0dd8e
Author: Stefan Seifert <ss...@apache.org>
AuthorDate: Fri Nov 25 20:16:25 2016 +0000

    SLING-6333 Context-Aware Config: Allow to mark Config Annotation Classes as "Collections"
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/contextaware-config/api@1771375 13f79535-47bb-0310-9956-ffa450edef68
---
 .../java/org/apache/sling/caconfig/annotation/Configuration.java     | 5 +++++
 src/main/java/org/apache/sling/caconfig/annotation/package-info.java | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/sling/caconfig/annotation/Configuration.java b/src/main/java/org/apache/sling/caconfig/annotation/Configuration.java
index 973164d..c5aa8f8 100644
--- a/src/main/java/org/apache/sling/caconfig/annotation/Configuration.java
+++ b/src/main/java/org/apache/sling/caconfig/annotation/Configuration.java
@@ -50,4 +50,9 @@ public @interface Configuration {
      */
     String[] property() default {};
     
+    /**
+     * @return Indicates that this definition should be used for configuration collections.
+     */
+    boolean collection() default false;
+
 }
diff --git a/src/main/java/org/apache/sling/caconfig/annotation/package-info.java b/src/main/java/org/apache/sling/caconfig/annotation/package-info.java
index 070a497..d4ef2b2 100644
--- a/src/main/java/org/apache/sling/caconfig/annotation/package-info.java
+++ b/src/main/java/org/apache/sling/caconfig/annotation/package-info.java
@@ -19,5 +19,5 @@
 /**
  * Annotations for context-aware configurations.
  */
-@org.osgi.annotation.versioning.Version("1.0.0")
+@org.osgi.annotation.versioning.Version("1.1.0")
 package org.apache.sling.caconfig.annotation;

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.

[sling-org-apache-sling-caconfig-api] 01/06: [maven-release-plugin] prepare for next development iteration

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

rombert pushed a commit to annotated tag org.apache.sling.caconfig.api-1.1.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-caconfig-api.git

commit 0073686c1106b0a165afd6fc783d0e08fae9d0e9
Author: Stefan Seifert <ss...@apache.org>
AuthorDate: Fri Oct 14 22:18:38 2016 +0000

    [maven-release-plugin] prepare for next development iteration
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/contextaware-config/api@1764981 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/pom.xml b/pom.xml
index 4b08c6d..1632cb7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -29,14 +29,14 @@
     
     <artifactId>org.apache.sling.caconfig.api</artifactId>
     <packaging>bundle</packaging>
-    <version>1.0.0</version>
+    <version>1.0.1-SNAPSHOT</version>
     <name>Apache Sling Context-Aware Configuration API</name>
     <description>Apache Sling Context-Aware Configuration API</description>
 
     <scm>
-        <connection>scm:svn:http://svn.apache.org/repos/asf/sling/tags/org.apache.sling.caconfig.api-1.0.0</connection>
-        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/tags/org.apache.sling.caconfig.api-1.0.0</developerConnection>
-        <url>http://svn.apache.org/viewvc/sling/tags/org.apache.sling.caconfig.api-1.0.0</url>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/contextaware-config/api</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/contextaware-config/api</developerConnection>
+        <url>http://svn.apache.org/viewvc/sling/trunk/contrib/extensions/contextaware-config/api</url>
     </scm>
     
     <build>

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.

[sling-org-apache-sling-caconfig-api] 04/06: SLING-6374 Context-Aware Config: Allow to control property order in annotation classes

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

rombert pushed a commit to annotated tag org.apache.sling.caconfig.api-1.1.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-caconfig-api.git

commit c031eb444c220c810f31cf84acd5ec2848487789
Author: Stefan Seifert <ss...@apache.org>
AuthorDate: Wed Dec 7 21:36:09 2016 +0000

    SLING-6374 Context-Aware Config: Allow to control property order in annotation classes
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/contextaware-config/api@1773149 13f79535-47bb-0310-9956-ffa450edef68
---
 src/main/java/org/apache/sling/caconfig/annotation/Property.java | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/main/java/org/apache/sling/caconfig/annotation/Property.java b/src/main/java/org/apache/sling/caconfig/annotation/Property.java
index 752d171..579c751 100644
--- a/src/main/java/org/apache/sling/caconfig/annotation/Property.java
+++ b/src/main/java/org/apache/sling/caconfig/annotation/Property.java
@@ -45,4 +45,9 @@ public @interface Property {
      */
     String[] property() default {};
     
+    /**
+     * @return Number to control property order in configuration editor.
+     */
+    int order() default 0;
+    
 }

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.

[sling-org-apache-sling-caconfig-api] 06/06: [maven-release-plugin] copy for tag org.apache.sling.caconfig.api-1.1.0

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

rombert pushed a commit to annotated tag org.apache.sling.caconfig.api-1.1.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-caconfig-api.git

commit 73f51281b7325505bd86fd9e032e2ed1530ca301
Author: Stefan Seifert <ss...@apache.org>
AuthorDate: Tue Dec 13 11:27:34 2016 +0000

    [maven-release-plugin] copy for tag org.apache.sling.caconfig.api-1.1.0
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/tags/org.apache.sling.caconfig.api-1.1.0@1773948 13f79535-47bb-0310-9956-ffa450edef68

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.

[sling-org-apache-sling-caconfig-api] 02/06: update to parent 29

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

rombert pushed a commit to annotated tag org.apache.sling.caconfig.api-1.1.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-caconfig-api.git

commit 7200adc1d2bfa6d101e8be3adbaa0abbb247da8a
Author: Stefan Seifert <ss...@apache.org>
AuthorDate: Tue Nov 1 20:45:06 2016 +0000

    update to parent 29
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/contextaware-config/api@1767570 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 1632cb7..e0186af 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.sling</groupId>
         <artifactId>sling</artifactId>
-        <version>28</version>
+        <version>29</version>
         <relativePath />
     </parent>
     

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.

[sling-org-apache-sling-caconfig-api] 05/06: [maven-release-plugin] prepare release org.apache.sling.caconfig.api-1.1.0

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

rombert pushed a commit to annotated tag org.apache.sling.caconfig.api-1.1.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-caconfig-api.git

commit 7ed79bb79761c445e18fbb6feabdc324cce0ce0f
Author: Stefan Seifert <ss...@apache.org>
AuthorDate: Tue Dec 13 11:27:21 2016 +0000

    [maven-release-plugin] prepare release org.apache.sling.caconfig.api-1.1.0
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/contextaware-config/api@1773947 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/pom.xml b/pom.xml
index e0186af..1d4c5ad 100644
--- a/pom.xml
+++ b/pom.xml
@@ -29,14 +29,14 @@
     
     <artifactId>org.apache.sling.caconfig.api</artifactId>
     <packaging>bundle</packaging>
-    <version>1.0.1-SNAPSHOT</version>
+    <version>1.1.0</version>
     <name>Apache Sling Context-Aware Configuration API</name>
     <description>Apache Sling Context-Aware Configuration API</description>
 
     <scm>
-        <connection>scm:svn:http://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/contextaware-config/api</connection>
-        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/trunk/contrib/extensions/contextaware-config/api</developerConnection>
-        <url>http://svn.apache.org/viewvc/sling/trunk/contrib/extensions/contextaware-config/api</url>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/sling/tags/org.apache.sling.caconfig.api-1.1.0</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/tags/org.apache.sling.caconfig.api-1.1.0</developerConnection>
+        <url>http://svn.apache.org/viewvc/sling/tags/org.apache.sling.caconfig.api-1.1.0</url>
     </scm>
     
     <build>

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.