You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by ar...@apache.org on 2022/12/28 16:13:51 UTC

[fineract] branch develop updated (c260b045b -> 33610f52e)

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

arnold pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git


    from c260b045b FINERACT-1818-Additions-to-LoanAccount-Avro-data
     new 0b9c591bf chore(deps): update postgres docker tag to v15
     new 33610f52e Added GRANT ALL to public schema for GH Actions build

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:
 .github/workflows/build-postgresql.yml   | 2 +-
 docker-compose-postgresql.yml            | 2 +-
 fineract-db/docker/postgresql/01-init.sh | 4 ++++
 3 files changed, 6 insertions(+), 2 deletions(-)


[fineract] 02/02: Added GRANT ALL to public schema for GH Actions build

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

arnold pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git

commit 33610f52e3aeda0a7ba7533924ef81ca22d48eb1
Author: Arnold Galovics <ga...@gmail.com>
AuthorDate: Wed Dec 28 16:07:49 2022 +0100

    Added GRANT ALL to public schema for GH Actions build
---
 fineract-db/docker/postgresql/01-init.sh | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/fineract-db/docker/postgresql/01-init.sh b/fineract-db/docker/postgresql/01-init.sh
index 7a8fd4904..bc627a538 100755
--- a/fineract-db/docker/postgresql/01-init.sh
+++ b/fineract-db/docker/postgresql/01-init.sh
@@ -26,4 +26,8 @@ psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-E
   CREATE DATABASE $FINERACT_TENANT_DEFAULT_DB_NAME;
   GRANT ALL PRIVILEGES ON DATABASE $FINERACT_TENANTS_DB_NAME TO $FINERACT_DB_USER;
   GRANT ALL PRIVILEGES ON DATABASE $FINERACT_TENANT_DEFAULT_DB_NAME TO $FINERACT_DB_USER;
+  \c $FINERACT_TENANTS_DB_NAME
+  GRANT ALL ON SCHEMA public TO $FINERACT_DB_USER;
+  \c $FINERACT_TENANT_DEFAULT_DB_NAME
+  GRANT ALL ON SCHEMA public TO $FINERACT_DB_USER;
 EOSQL
\ No newline at end of file


[fineract] 01/02: chore(deps): update postgres docker tag to v15

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

arnold pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git

commit 0b9c591bf06fc13c11c303116a21a8f63113b5c3
Author: Renovate <bo...@renovateapp.com>
AuthorDate: Mon Dec 26 02:10:29 2022 +0000

    chore(deps): update postgres docker tag to v15
---
 .github/workflows/build-postgresql.yml | 2 +-
 docker-compose-postgresql.yml          | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/build-postgresql.yml b/.github/workflows/build-postgresql.yml
index 96264cfdb..fdb883729 100644
--- a/.github/workflows/build-postgresql.yml
+++ b/.github/workflows/build-postgresql.yml
@@ -10,7 +10,7 @@ jobs:
 
     services:
         postgresql:
-            image: postgres:13.9
+            image: postgres:15.1
             ports:
                 - 5432:5432
             env:
diff --git a/docker-compose-postgresql.yml b/docker-compose-postgresql.yml
index 02b2f99c9..8ae925f34 100644
--- a/docker-compose-postgresql.yml
+++ b/docker-compose-postgresql.yml
@@ -21,7 +21,7 @@ version: '3.7'
 services:
   # Backend service
   fineractpostgresql:
-    image: postgres:14.6
+    image: postgres:15.1
     volumes:
       - ./fineract-db/docker/postgresql:/docker-entrypoint-initdb.d/:Z,ro
     restart: always