You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by an...@apache.org on 2019/10/21 13:45:35 UTC

[syncope] branch 2_1_X updated (2440eb8 -> 9e6417f)

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

andreapatricelli pushed a change to branch 2_1_X
in repository https://gitbox.apache.org/repos/asf/syncope.git.


    from 2440eb8  Upgrading Swagger UI and modernizer-maven-plugin
     new 7bea0fb  chnaged transaction isolation default value for JBoss persistence configuration
     new 9e6417f  upgrading HikariCP

The 2 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:
 fit/core-reference/src/main/resources/jboss/domains/MasterDomain.xml | 4 +---
 fit/core-reference/src/main/resources/jboss/domains/TwoDomain.xml    | 4 +---
 pom.xml                                                              | 2 +-
 3 files changed, 3 insertions(+), 7 deletions(-)


[syncope] 01/02: chnaged transaction isolation default value for JBoss persistence configuration

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

andreapatricelli pushed a commit to branch 2_1_X
in repository https://gitbox.apache.org/repos/asf/syncope.git

commit 7bea0fb9267c493c2fe15a248b254b5e9ebb1549
Author: Andrea Patricelli <an...@apache.org>
AuthorDate: Mon Oct 21 15:44:33 2019 +0200

    chnaged transaction isolation default value for JBoss persistence configuration
---
 fit/core-reference/src/main/resources/jboss/domains/MasterDomain.xml | 4 +---
 fit/core-reference/src/main/resources/jboss/domains/TwoDomain.xml    | 4 +---
 2 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/fit/core-reference/src/main/resources/jboss/domains/MasterDomain.xml b/fit/core-reference/src/main/resources/jboss/domains/MasterDomain.xml
index 86d9ba4..004e2b4 100644
--- a/fit/core-reference/src/main/resources/jboss/domains/MasterDomain.xml
+++ b/fit/core-reference/src/main/resources/jboss/domains/MasterDomain.xml
@@ -54,9 +54,7 @@ under the License.
     <property name="username" value="${Master.username}"/>
     <property name="password" value="${Master.password}"/>
     <!-- connection pool configuration - transaction isolation, default READ_COMMITTED (see SYNCOPE-202) -->
-    <property name="transactionIsolation">
-      <util:constant static-field="${Master.pool.transactionIsolation:java.sql.Connection.TRANSACTION_READ_COMMITTED}"/>
-    </property>
+    <property name="transactionIsolation" value="${Master.pool.transactionIsolation:TRANSACTION_READ_COMMITTED}"/>
     <!-- connection pool configuration - default values taken from HikariConfig default values -->
     <property name="maximumPoolSize" value="${Master.pool.maxActive:8}"/>
     <property name="minimumIdle" value="${Master.pool.minIdle:0}"/>
diff --git a/fit/core-reference/src/main/resources/jboss/domains/TwoDomain.xml b/fit/core-reference/src/main/resources/jboss/domains/TwoDomain.xml
index f883838..202a042 100644
--- a/fit/core-reference/src/main/resources/jboss/domains/TwoDomain.xml
+++ b/fit/core-reference/src/main/resources/jboss/domains/TwoDomain.xml
@@ -54,9 +54,7 @@ under the License.
     <property name="username" value="${Two.username}"/>
     <property name="password" value="${Two.password}"/>
     <!-- connection pool configuration - transaction isolation, default READ_COMMITTED (see SYNCOPE-202) -->
-    <property name="transactionIsolation">
-      <util:constant static-field="${Two.pool.transactionIsolation:java.sql.Connection.TRANSACTION_READ_COMMITTED}"/>
-    </property>
+    <property name="transactionIsolation" value="${Two.pool.transactionIsolation:TRANSACTION_READ_COMMITTED}"/>
     <!-- connection pool configuration - default values taken from HikariConfig default values -->
     <property name="maximumPoolSize" value="${Two.pool.maxActive:8}"/>
     <property name="minimumIdle" value="${Two.pool.minIdle:0}"/>


[syncope] 02/02: upgrading HikariCP

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

andreapatricelli pushed a commit to branch 2_1_X
in repository https://gitbox.apache.org/repos/asf/syncope.git

commit 9e6417ff3859d39e0c193056e19e9375d7967c43
Author: Andrea Patricelli <an...@apache.org>
AuthorDate: Mon Oct 21 15:45:12 2019 +0200

    upgrading HikariCP
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index c83e4e2..5646b97 100644
--- a/pom.xml
+++ b/pom.xml
@@ -407,7 +407,7 @@ under the License.
     <spring-security.version>5.1.6.RELEASE</spring-security.version>
 
     <openjpa.version>3.1.0</openjpa.version>
-    <hikaricp.version>3.4.0</hikaricp.version>
+    <hikaricp.version>3.4.1</hikaricp.version>
     <hibernate-validator.version>6.0.17.Final</hibernate-validator.version>
 
     <jasypt.version>1.9.3</jasypt.version>