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

[syncope] branch 2_0_X updated (04ad6f6 -> 2925604)

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

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


    from 04ad6f6  Upgrading Jackson
     new abbfa11  Switching to official postgresql image
     new 2925604  Upgrading JDBC drivers

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:
 .../docker-compose/docker-compose-postgresql.yml         | 16 ++++++----------
 pom.xml                                                  |  4 ++--
 2 files changed, 8 insertions(+), 12 deletions(-)


[syncope] 02/02: Upgrading JDBC drivers

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

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

commit 2925604769691bf8d2d4bb5732dda713b5bbcbef
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Mon Sep 2 11:55:30 2019 +0200

    Upgrading JDBC drivers
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 9f1f7ba..a1a5b07 100644
--- a/pom.xml
+++ b/pom.xml
@@ -528,8 +528,8 @@ under the License.
     <nodejs.version>v8.11.4</nodejs.version>    
     <protractor.version>5.4.0</protractor.version>    
 
-    <jdbc.postgresql.version>42.2.5</jdbc.postgresql.version>
-    <jdbc.mysql.version>5.1.47</jdbc.mysql.version>
+    <jdbc.postgresql.version>42.2.6</jdbc.postgresql.version>
+    <jdbc.mysql.version>5.1.48</jdbc.mysql.version>
     <jdbc.mariadb.version>2.2.6</jdbc.mariadb.version>
     <jdbc.mssql.version>6.4.0.jre</jdbc.mssql.version>
 


[syncope] 01/02: Switching to official postgresql image

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

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

commit abbfa110f46b5d0634320bfb923ed3721208804c
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Mon Sep 2 11:53:17 2019 +0200

    Switching to official postgresql image
---
 .../docker-compose/docker-compose-postgresql.yml         | 16 ++++++----------
 1 file changed, 6 insertions(+), 10 deletions(-)

diff --git a/docker/src/main/resources/docker-compose/docker-compose-postgresql.yml b/docker/src/main/resources/docker-compose/docker-compose-postgresql.yml
index 1bb5495..9099864 100644
--- a/docker/src/main/resources/docker-compose/docker-compose-postgresql.yml
+++ b/docker/src/main/resources/docker-compose/docker-compose-postgresql.yml
@@ -21,18 +21,14 @@ version: '3.3'
 
 services:
    db:
-     image: crunchydata/crunchy-postgres:centos7-10.5-2.1.0
+     image: postgres:10.10
      restart: always
      environment:
-       PG_ROOT_PASSWORD: postgres
-       PG_MODE: primary
-       PG_PRIMARY_USER: postgres
-       PG_PRIMARY_PASSWORD: postgres
-       PG_PRIMARY_HOST: localhost
-       PG_PRIMARY_PORT: 5432
-       PG_DATABASE: syncope
-       PG_USER: syncope
-       PG_PASSWORD: syncope
+       POSTGRES_DB: syncope
+       POSTGRES_USER: syncope
+       POSTGRES_PASSWORD: syncope
+     ports:
+       - "5432:5432"
 
    syncope:
      depends_on: