Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Try out 0.9.0rc #729

Merged
merged 3 commits into from
Jul 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
649 changes: 352 additions & 297 deletions plugins/basicmessage_storage/poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion plugins/basicmessage_storage/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Jason Sherman <[email protected]>"]

[tool.poetry.dependencies]
python = "^3.9"
aries-cloudagent = { version = "0.8.2" }
aries-cloudagent = { version = "0.9.0rc0" }

[tool.poetry.dev-dependencies]
flake8 = "^5.0.4"
Expand Down
951 changes: 503 additions & 448 deletions plugins/connection_update/poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion plugins/connection_update/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ packages = [{include = "connection_update"}]

[tool.poetry.dependencies]
python = "^3.9"
aries-cloudagent = { version = "0.8.2" }
aries-cloudagent = { version = "0.9.0rc0" }

[tool.poetry.dev-dependencies]
flake8 = "^5.0.4"
Expand Down
4 changes: 2 additions & 2 deletions plugins/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.8.3-pre as base
FROM ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.9.0-rc0 as base

# Install and Configure Poetry
USER root
Expand Down Expand Up @@ -27,7 +27,7 @@ RUN poetry install --no-dev
RUN ln -s $(poetry env info -p)/lib/python3.6/site-packages site-packages


FROM ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.8.3-pre
FROM ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.9.0-rc0
COPY --from=base --chown=aries:aries /home/aries/.venv /home/aries/.venv
ENV PATH="/home/aries/.venv/bin:$PATH"

Expand Down
951 changes: 503 additions & 448 deletions plugins/multitenant_provider/poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions plugins/multitenant_provider/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ packages = [{include = "multitenant_provider"}]

[tool.poetry.dependencies]
python = "^3.9"
aries-cloudagent = { version = "0.8.2" }
aries-cloudagent = { version = "0.9.0rc0" }
python-dateutil = "^2.8.2"
bcrypt = "^4.0.1"
mergedeep = "^1.3.4"
aries-askar = "^0.2.9"
typing-extensions = "4.0.0"
indy-vdr = "^0.3.4"
indy-credx = "^0.3.3"
indy-credx = "^1.0.0"
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great! Thanks for finding this to be the issue @esune 🎈


[tool.poetry.dev-dependencies]
black = "^22.6.0"
Expand Down
2 changes: 1 addition & 1 deletion plugins/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ readme = "README.md"

[tool.poetry.dependencies]
python = "^3.9"
aries-cloudagent = { version = "0.8.2" }
aries-cloudagent = { version = "0.9.0rc0" }
python-dateutil = "^2.8.2"
typing-extensions = "4.0.0"
basicmessage_storage = {path = "./basicmessage_storage", develop = true}
Expand Down
951 changes: 503 additions & 448 deletions plugins/traction_innkeeper/poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion plugins/traction_innkeeper/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ packages = [{include = "traction_innkeeper"}]

[tool.poetry.dependencies]
python = "^3.9"
aries-cloudagent = { version = "0.8.2" }
aries-cloudagent = { version = "0.9.0rc0" }
python-dateutil = "^2.8.2"
bcrypt = "^4.0.1"
mergedeep = "^1.3.4"
Expand Down
2 changes: 1 addition & 1 deletion scripts/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ services:
- host.docker.internal:host-gateway

endorser-agent:
image: ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.8.3-pre
image: ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.9.0-rc0
depends_on:
endorser-db:
condition: service_healthy
Expand Down
2 changes: 1 addition & 1 deletion services/tenant-ui/config/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"showDeveloper": true,
"showInnkeeperReservationPassword": true,
"showInnkeeperAdminLogin": true,
"showOIDCReservationLogin": true,
"showOIDCReservationLogin": false,
"oidc": {
"active": false,
"authority": "https://dev.loginproxy.gov.bc.ca/auth/realms/digitaltrust-nrm",
Expand Down
Loading