diff --git a/CHANGELOG.md b/CHANGELOG.md index feb7c5e9cf..8e9a95e6d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,30 @@ # Aries Cloud Agent Python Changelog +## 0.11.3 + +### August 2, 2024 + +A patch release to add a fix that ensures that sufficient webhook information is sent to an ACA-Py controller that is executing the [AIP 2.0 Present Proof 2.0 Protocol]. + +[AIP 2.0 Present Proof 2.0 Protocol]: https://hyperledger.github.io/aries-rfcs/latest/aip2/0454-present-proof-v2/ + +### 0.11.3 Breaking Changes + +There are no breaking changes in this release. + +#### 0.11.3 Categorized List of Pull Requests + +- Dependency update and release PR + - [ PATCH ] 0.11.x with PR 3081 terse webhooks [\#3142](https://github.com/hyperledger/aries-cloudagent-python/pull/3142) [jamshale](https://github.com/jamshale) +- Release management pull requests + - 0.11.3 [\#3144](https://github.com/hyperledger/aries-cloudagent-python/pull/3144) [swcurran](https://github.com/swcurran) +- PRs cherry-picked into [\#3142](https://github.com/hyperledger/aries-cloudagent-python/pull/3142) from the `main` branch: + - Add by_format to terse webhook for presentations [\#3081](https://github.com/hyperledger/aries-cloudagent-python/pull/3081) [ianco](https://github.com/ianco) + ## 0.11.2 +### July 25, 2024 + A patch release to add the verification of a linkage between an inbound message and its associated connection (if any) before processing the message. ### 0.11.2 Breaking Changes @@ -19,6 +42,8 @@ There are no breaking changes in this release. ## 0.11.1 +### May 7, 2024 + A patch release to update the `aiohttp` library such that a reported serious vulnerability is addressed such that a crafted payload delivered to `aiohttp` can put it in an infinite loop, which can be used for a low cost denial of diff --git a/PUBLISHING.md b/PUBLISHING.md index def0fe020e..5033390503 100644 --- a/PUBLISHING.md +++ b/PUBLISHING.md @@ -22,8 +22,8 @@ Once ready to do a release, create a local branch that includes the following up - Use a command like the following, adjusting the tag parameters as appropriate. `docker run -it --rm -v "$(pwd)":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator --user hyperledger - --project aries-cloudagent-python --output 0.11.2.md --since-tag 0.11.0 - --future-release 0.11.2 --release-branch main --token ` + --project aries-cloudagent-python --output 0.11.3.md --since-tag 0.11.0 + --future-release 0.11.3 --release-branch main --token ` - In the generated file, use only the PR list -- we don't include the list of closed issues in the Change Log. diff --git a/docs/requirements.txt b/docs/requirements.txt index 08cf22af4b..87124ff7ab 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,4 +1,4 @@ # Defining the exact versions for ReadTheDocs that will make sure things don't break -sphinx==4.2.0 -sphinx_rtd_theme==1.0.0 -readthedocs-sphinx-search==0.1.1 \ No newline at end of file +sphinx==5.3.0 +sphinx_rtd_theme==1.3.0 +readthedocs-sphinx-search==0.3.2 \ No newline at end of file diff --git a/open-api/openapi.json b/open-api/openapi.json index 6760754d27..f46bda24d9 100644 --- a/open-api/openapi.json +++ b/open-api/openapi.json @@ -2,7 +2,7 @@ "openapi" : "3.0.1", "info" : { "title" : "Aries Cloud Agent", - "version" : "v0.11.2" + "version" : "v0.11.3" }, "servers" : [ { "url" : "/" diff --git a/open-api/swagger.json b/open-api/swagger.json index d3719a86e0..bdb926a010 100644 --- a/open-api/swagger.json +++ b/open-api/swagger.json @@ -1,7 +1,7 @@ { "swagger" : "2.0", "info" : { - "version" : "v0.11.2", + "version" : "v0.11.3", "title" : "Aries Cloud Agent" }, "tags" : [ { diff --git a/pyproject.toml b/pyproject.toml index 22e0879715..1dd226ce1a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aries_cloudagent" -version = "0.11.2" +version = "0.11.3" description = "Hyperledger Aries Cloud Agent Python (ACA-Py) is a foundation for building decentralized identity applications and services running in non-mobile environments. " authors = ["Hyperledger Aries "] license = "Apache-2.0"