Skip to content

Commit

Permalink
Merge branch 'main' into ATL-6012-revocation-status-list-approach
Browse files Browse the repository at this point in the history
Signed-off-by: shotexa <[email protected]>
  • Loading branch information
shotexa authored Oct 30, 2023
2 parents e838099 + 5318657 commit af73641
Show file tree
Hide file tree
Showing 78 changed files with 18 additions and 2,145 deletions.
2 changes: 0 additions & 2 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ connect:
- connect/**/*
pollux:
- pollux/**/*
iris:
- iris/**/*
prism-agent:
- prism-agent/**/*
prism-node:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
workflow_dispatch:
inputs:
component-tag:
description: "Tag of a component to trigger the update, e.g. iris-service-v0.5.0"
description: "Tag of a component to trigger the update"
required: true
env:
description: "Environment to trigger update on"
Expand Down
15 changes: 0 additions & 15 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -616,20 +616,6 @@ val prismNodeClient = project
)
)

// ##############
// ### iris ####
// ##############
val irisClient = project
.in(file("iris/client/scala-client"))
.settings(
name := "iris-client",
libraryDependencies ++= Seq(D.scalaPbGrpc, D.scalaPbRuntime),
coverageEnabled := false,
// gRPC settings
Compile / PB.targets := Seq(scalapb.gen() -> (Compile / sourceManaged).value / "scalapb"),
Compile / PB.protoSources := Seq(baseDirectory.value / ".." / ".." / "api" / "grpc")
)

// #####################
// ##### castor ######
// #####################
Expand Down Expand Up @@ -677,7 +663,6 @@ lazy val polluxCore = project
libraryDependencies ++= D_Pollux.coreDependencies
)
.dependsOn(shared)
.dependsOn(irisClient)
.dependsOn(prismAgentWalletAPI)
.dependsOn(polluxVcJWT)
.dependsOn(vc, resolver, agentDidcommx, eventNotification, polluxAnoncreds)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import io.iohk.atala.mercury.protocol.connection.{ConnectionRequest, ConnectionR
import io.iohk.atala.mercury.protocol.invitation.v2.Invitation
import io.iohk.atala.shared.models.{WalletAccessContext, WalletId}
import zio.test.*
import zio.test.Assertion.*
import zio.{Cause, Exit, ZIO, ZLayer}

import java.time.Instant
Expand Down
2 changes: 0 additions & 2 deletions infrastructure/local/update_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ ENV_FILE="${SCRIPT_DIR}/.env"

pip install ${SCRIPT_DIR}/../utils/python/github-helpers > /dev/null 2>&1

IRIS_SERVICE_VERSION=$(github get-latest-package-version --package iris-service --package-type container)
PRISM_AGENT_VERSION=$(github get-latest-package-version --package prism-agent --package-type container)

sed -i.bak "s/IRIS_SERVICE_VERSION=.*/IRIS_SERVICE_VERSION=${IRIS_SERVICE_VERSION}/" ${ENV_FILE} && rm -f ${ENV_FILE}.bak
sed -i.bak "s/PRISM_AGENT_VERSION=.*/PRISM_AGENT_VERSION=${PRISM_AGENT_VERSION}/" ${ENV_FILE} && rm -f ${ENV_FILE}.bak
1 change: 0 additions & 1 deletion infrastructure/multi/.env
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
MERCURY_MEDIATOR_VERSION=0.2.0
IRIS_SERVICE_VERSION=0.1.0
PRISM_AGENT_VERSION=0.6.0
4 changes: 2 additions & 2 deletions infrastructure/shared/docker-compose-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ services:
db:
image: postgres:13
environment:
POSTGRES_MULTIPLE_DATABASES: "castor,pollux,connect,iris,agent,node_db"
POSTGRES_MULTIPLE_DATABASES: "castor,pollux,connect,agent,node_db"
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
volumes:
- pg_data_db:/var/lib/postgresql/data
- ./postgres/init-script.sh:/docker-entrypoint-initdb.d/init-script.sh
- ./postgres/max_conns.sql:/docker-entrypoint-initdb.d/max_conns.sql
healthcheck:
test: ["CMD", "pg_isready", "-U", "postgres", "-d", "iris"]
test: ["CMD", "pg_isready", "-U", "postgres", "-d", "agent"]
interval: 10s
timeout: 5s
retries: 5
Expand Down
6 changes: 2 additions & 4 deletions infrastructure/shared/docker-compose-mt-keycloak.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
db:
image: postgres:13
environment:
POSTGRES_MULTIPLE_DATABASES: "castor,pollux,connect,iris,agent,node_db"
POSTGRES_MULTIPLE_DATABASES: "castor,pollux,connect,agent,node_db"
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
volumes:
Expand All @@ -20,7 +20,7 @@ services:
# ports:
# - "5432:5432"
healthcheck:
test: ["CMD", "pg_isready", "-U", "postgres", "-d", "iris"]
test: ["CMD", "pg_isready", "-U", "postgres", "-d", "agent"]
interval: 10s
timeout: 5s
retries: 5
Expand Down Expand Up @@ -72,8 +72,6 @@ services:
prism-agent:
image: ghcr.io/input-output-hk/prism-agent:${PRISM_AGENT_VERSION}
environment:
IRIS_HOST: iris
IRIS_PORT: 8081
CASTOR_DB_HOST: db
CASTOR_DB_PORT: 5432
CASTOR_DB_NAME: castor
Expand Down
6 changes: 2 additions & 4 deletions infrastructure/shared/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
db:
image: postgres:13
environment:
POSTGRES_MULTIPLE_DATABASES: "castor,pollux,connect,iris,agent,node_db"
POSTGRES_MULTIPLE_DATABASES: "castor,pollux,connect,agent,node_db"
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
volumes:
Expand All @@ -18,7 +18,7 @@ services:
ports:
- "${PG_PORT:-5432}:5432"
healthcheck:
test: ["CMD", "pg_isready", "-U", "postgres", "-d", "iris"]
test: ["CMD", "pg_isready", "-U", "postgres", "-d", "agent"]
interval: 10s
timeout: 5s
retries: 5
Expand Down Expand Up @@ -70,8 +70,6 @@ services:
prism-agent:
image: ghcr.io/input-output-hk/prism-agent:${PRISM_AGENT_VERSION}
environment:
IRIS_HOST: iris
IRIS_PORT: 8081
CASTOR_DB_HOST: db
CASTOR_DB_PORT: 5432
CASTOR_DB_NAME: castor
Expand Down
6 changes: 0 additions & 6 deletions infrastructure/single-tenant-testing-stack/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,6 @@ services:
issuer-oea:
image: ghcr.io/input-output-hk/prism-agent:${PRISM_AGENT_VERSION}
environment:
IRIS_HOST: iris
IRIS_PORT: 8081
CASTOR_DB_HOST: issuer-db
CASTOR_DB_PORT: 5432
CASTOR_DB_NAME: castor
Expand Down Expand Up @@ -152,8 +150,6 @@ services:
verifier-oea:
image: ghcr.io/input-output-hk/prism-agent:${PRISM_AGENT_VERSION}
environment:
IRIS_HOST: iris
IRIS_PORT: 8081
CASTOR_DB_HOST: verifier-db
CASTOR_DB_PORT: 5432
CASTOR_DB_NAME: castor
Expand Down Expand Up @@ -217,8 +213,6 @@ services:
holder-oea:
image: ghcr.io/input-output-hk/prism-agent:${PRISM_AGENT_VERSION}
environment:
IRIS_HOST: iris
IRIS_PORT: 8081
CASTOR_DB_HOST: holder-db
CASTOR_DB_PORT: 5432
CASTOR_DB_NAME: castor
Expand Down
9 changes: 0 additions & 9 deletions iris/api/grpc/README.md

This file was deleted.

96 changes: 0 additions & 96 deletions iris/api/grpc/protocol/did_operations.proto

This file was deleted.

37 changes: 0 additions & 37 deletions iris/api/grpc/protocol/dlt.proto

This file was deleted.

19 changes: 0 additions & 19 deletions iris/api/grpc/protocol/vc_operations.proto

This file was deleted.

59 changes: 0 additions & 59 deletions iris/api/grpc/service.proto

This file was deleted.

Empty file.
Loading

0 comments on commit af73641

Please sign in to comment.