Skip to content

Commit

Permalink
Merge branch 'dev' into ci/versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-mader committed Nov 19, 2024
2 parents ea1800c + d284e8a commit 6bc7ddd
Show file tree
Hide file tree
Showing 116 changed files with 3,581 additions and 1,302 deletions.
16 changes: 8 additions & 8 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
AGENT__LOG_FORMAT=text
AGENT__EVENT_STORE__TYPE=postgres
AGENT__EVENT_STORE__CONNECTION_STRING="postgresql://demo_user:demo_pass@cqrs-postgres-db:5432/demo"
UNICORE__LOG_FORMAT=text
UNICORE__EVENT_STORE__TYPE=postgres
UNICORE__EVENT_STORE__CONNECTION_STRING="postgresql://demo_user:demo_pass@cqrs-postgres-db:5432/demo"

AGENT__SECRET_MANAGER__STRONGHOLD_PATH="agent_secret_manager/tests/res/test.stronghold"
AGENT__SECRET_MANAGER__STRONGHOLD_PASSWORD="secure_password"
AGENT__SECRET_MANAGER__ISSUER_KEY_ID="9O66nzWqYYy1LmmiOudOlh2SMIaUWoTS"
AGENT__SECRET_MANAGER__ISSUER_DID="did:iota:rms:0x42ad588322e58b3c07aa39e4948d021ee17ecb5747915e9e1f35f028d7ecaf90"
AGENT__SECRET_MANAGER__ISSUER_FRAGMENT="bQKQRzaop7CgEvqVq8UlgLGsdF-R-hnLFkKFZqW2VN0"
UNICORE__SECRET_MANAGER__STRONGHOLD_PATH="agent_secret_manager/tests/res/test.stronghold"
UNICORE__SECRET_MANAGER__STRONGHOLD_PASSWORD="secure_password"
UNICORE__SECRET_MANAGER__ISSUER_EDDSA_KEY_ID="9O66nzWqYYy1LmmiOudOlh2SMIaUWoTS"
UNICORE__SECRET_MANAGER__ISSUER_DID="did:iota:rms:0x42ad588322e58b3c07aa39e4948d021ee17ecb5747915e9e1f35f028d7ecaf90"
UNICORE__SECRET_MANAGER__ISSUER_FRAGMENT="bQKQRzaop7CgEvqVq8UlgLGsdF-R-hnLFkKFZqW2VN0"
2 changes: 2 additions & 0 deletions .github/workflows/build-push-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
name: Build and push Docker image

on:
# TODO: `workflow_dispatch` should be removed once manual docker builds from branches are not needed anymore
workflow_dispatch:
push:
branches: ["dev"]

Expand Down
67 changes: 0 additions & 67 deletions .github/workflows/push.yaml

This file was deleted.

1 change: 0 additions & 1 deletion .pipeline/.gitignore

This file was deleted.

14 changes: 0 additions & 14 deletions .pipeline/README.md

This file was deleted.

47 changes: 0 additions & 47 deletions .pipeline/build.sh

This file was deleted.

24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
### 07-08-2024
- Renamed the display `url` property in the `credential_configurations` in the Configuration to `uri`, e.g.:
```yaml
# agent_application/config.yaml
credential_configurations:
- credential_configuration_id: w3c_vc_credential
format: jwt_vc_json
credential_definition:
type:
- VerifiableCredential
display:
- name: Verifiable Credential
locale: en
logo:
# The property below has been renamed from `url` to `uri`
uri: https://www.impierce.com/external/impierce-logo.png
alt_text: UniCore Logo
```
### 29-07-2024
- Renamed env variable prefix from `AGENT` to `UNICORE`.
- Refactored the environment variables separators from `_` to `__` to support nested configuration values. As an example, `AGENT_LOG_FORMAT` now becomes `UNICORE__LOG_FORMAT`.
- Merged all per-module configuration files into a single `config.yaml` file.

### 24-06-2024
- Reverted the API version to V0, which means that all endpoints previously prefixed with `/v1` are now prefixed with `/v0`.
- Changed `AGENT_APPLICATION_URL` to `AGENT_CONFIG_URL`.
Expand Down
Loading

0 comments on commit 6bc7ddd

Please sign in to comment.