diff --git a/README.md b/README.md index 68b2a131d2..89cd08e66c 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@

- atala-prism-logo + identus-logo
- Identus Cloud Agent + Cloud Agent

Coverage Status @@ -135,7 +135,7 @@ The `PORT` variable is used to specify the port number for the Cloud Agent to li In real life, you will need to start at least two Cloud Agent instances with different roles. For example, you can start one instance with the `issuer` role and another one with the `holder` role. The `issuer` instance will be used to issue verifiable credentials (VCs) and the `holder` instance will be used to hold VCs. Here is an example of how you can do this: ```bash -PORT=8080 AGENT_VERSION=${AGENT_VERSION} PRISM_NODE_VERSION=2.2.1 \ +PORT=8080 AGENT_VERSION=${AGENT_VERSION} PRISM_NODE_VERSION=2.3.0 \ docker compose \ -p "issuer" \ -f ./infrastructure/shared/docker-compose-demo.yml \ @@ -143,7 +143,7 @@ PORT=8080 AGENT_VERSION=${AGENT_VERSION} PRISM_NODE_VERSION=2.2.1 \ ``` ```bash -PORT=8090 AGENT_VERSION=${AGENT_VERSION} PRISM_NODE_VERSION=2.2.1 \ +PORT=8090 AGENT_VERSION=${AGENT_VERSION} PRISM_NODE_VERSION=2.3.0 \ docker compose \ -p "holder" \ -f ./infrastructure/shared/docker-compose-demo.yml \ diff --git a/docs/images/logos/atala-prism-logo.png b/docs/images/logos/atala-prism-logo.png deleted file mode 100644 index 2c0c4b960c..0000000000 Binary files a/docs/images/logos/atala-prism-logo.png and /dev/null differ diff --git a/docs/images/logos/atala-prism-logo.svg b/docs/images/logos/atala-prism-logo.svg deleted file mode 100644 index 6cd71c6bbd..0000000000 --- a/docs/images/logos/atala-prism-logo.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/images/logos/identus-logo.png b/docs/images/logos/identus-logo.png new file mode 100644 index 0000000000..ba1ca63f78 Binary files /dev/null and b/docs/images/logos/identus-logo.png differ diff --git a/docs/images/logos/identus-logo.svg b/docs/images/logos/identus-logo.svg new file mode 100644 index 0000000000..e0eb8f5c93 --- /dev/null +++ b/docs/images/logos/identus-logo.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/infrastructure/single-tenant-testing-stack/.env b/infrastructure/single-tenant-testing-stack/.env index 4dafa03681..7e727716b8 100644 --- a/infrastructure/single-tenant-testing-stack/.env +++ b/infrastructure/single-tenant-testing-stack/.env @@ -1,3 +1,3 @@ AGENT_VERSION=1.25.0 -PRISM_NODE_VERSION=2.2.1 +PRISM_NODE_VERSION=2.3.0 VAULT_DEV_ROOT_TOKEN_ID=root diff --git a/project/plugins.sbt b/project/plugins.sbt index 5ccae979d2..88e1de218f 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -8,4 +8,4 @@ addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.9") addSbtPlugin("com.thesamet" % "sbt-protoc" % "1.0.6") // In order to import proper version of com.google.protobuf.ByteString we need to add this dependency -libraryDependencies ++= Seq("com.thesamet.scalapb" %% "compilerplugin" % "0.11.13") +libraryDependencies ++= Seq("com.thesamet.scalapb" %% "compilerplugin" % "0.11.15") diff --git a/tests/integration-tests/README.md b/tests/integration-tests/README.md index e18919fc45..2725a970bc 100644 --- a/tests/integration-tests/README.md +++ b/tests/integration-tests/README.md @@ -397,7 +397,7 @@ The following variables must be set before running the tests: * `AGENT_VERSION`: version of the ICA docker image to use. ```shell -TESTS_CONFIG=/configs/basic.conf PRISM_NODE_VERSION=2.2.1 AGENT_VERSION=1.30.1 ./gradlew test +TESTS_CONFIG=/configs/basic.conf PRISM_NODE_VERSION=2.3.0 AGENT_VERSION=1.30.1 ./gradlew test ``` > Please note: there is no need to pass environment variables if you're using already running agents. @@ -414,7 +414,7 @@ To simplify the execution, each configuration file creates a new `gradle` task. It's possible to execute the configuration file as ```shell -PRISM_NODE_VERSION=2.2.1 AGENT_VERSION=1.30.1 ./gradlew test_basic +PRISM_NODE_VERSION=2.3.0 AGENT_VERSION=1.30.1 ./gradlew test_basic ``` Also, it's possible to execute the integration tests to all configurations files. The task is named `regression`, it should take a lot of time to execute. @@ -422,7 +422,7 @@ Also, it's possible to execute the integration tests to all configurations files Note: report is not working due constrains in Serenity BDD reporting system. ```shell -PRISM_NODE_VERSION=2.2.1 AGENT_VERSION=1.30.1 ./gradlew regression +PRISM_NODE_VERSION=2.3.0 AGENT_VERSION=1.30.1 ./gradlew regression ``` ### Running scenarios in IntelliJ IDEA diff --git a/tests/integration-tests/src/test/kotlin/config/services/Agent.kt b/tests/integration-tests/src/test/kotlin/config/services/Agent.kt index 90e02ea215..52e3072e44 100644 --- a/tests/integration-tests/src/test/kotlin/config/services/Agent.kt +++ b/tests/integration-tests/src/test/kotlin/config/services/Agent.kt @@ -54,6 +54,6 @@ data class Agent( File("src/test/resources/containers/agent.yml"), ) .withEnv(env) - .waitingFor("open-enterprise-agent", Wait.forHealthcheck()) + .waitingFor("identus-cloud-agent", Wait.forHealthcheck()) } } diff --git a/tests/integration-tests/src/test/resources/containers/agent.yml b/tests/integration-tests/src/test/resources/containers/agent.yml index 24bf1dad8e..5d3048eea3 100644 --- a/tests/integration-tests/src/test/resources/containers/agent.yml +++ b/tests/integration-tests/src/test/resources/containers/agent.yml @@ -21,7 +21,7 @@ services: # Secret storage - hashicorp # Open Enterprise Agent - open-enterprise-agent: + identus-cloud-agent: image: ghcr.io/hyperledger/identus-cloud-agent:${AGENT_VERSION} environment: PRISM_NODE_HOST: host.docker.internal @@ -64,7 +64,7 @@ services: "CMD", "curl", "-f", - "http://open-enterprise-agent:${AGENT_HTTP_PORT}/_system/health", + "http://identus-cloud-agent:${AGENT_HTTP_PORT}/_system/health", ] interval: 10s timeout: 5s diff --git a/tests/performance-tests/agent-performance-tests-k6/.env b/tests/performance-tests/agent-performance-tests-k6/.env index b899dbc3e1..8b69982988 100644 --- a/tests/performance-tests/agent-performance-tests-k6/.env +++ b/tests/performance-tests/agent-performance-tests-k6/.env @@ -1,3 +1,3 @@ AGENT_VERSION=1.33.0-SNAPSHOT -PRISM_NODE_VERSION=2.2.1 +PRISM_NODE_VERSION=2.3.0 VAULT_DEV_ROOT_TOKEN_ID=root