diff --git a/CHANGELOG.md b/CHANGELOG.md index 1631b9307c..feb7c5e9cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Aries Cloud Agent Python Changelog +## 0.11.2 + +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 + +There are no breaking changes in this release. + +#### 0.11.2 Categorized List of Pull Requests + +- Dependency update and release PR + - Apply security patch 0.11.x [\#3120](https://github.com/hyperledger/aries-cloudagent-python/pull/3120) [jamshale](https://github.com/jamshale) +- Release management pull requests + - 0.11.2 [\#3122](https://github.com/hyperledger/aries-cloudagent-python/pull/3122) [swcurran](https://github.com/swcurran) +- PRs cherry-picked into [\#3120](https://github.com/hyperledger/aries-cloudagent-python/pull/3120) from the `main` branch: + - Check connection is ready in all connection required handlers [\#3095](https://github.com/hyperledger/aries-cloudagent-python/pull/3095) [jamshale](https://github.com/jamshale) + ## 0.11.1 A patch release to update the `aiohttp` library such that a reported serious diff --git a/PUBLISHING.md b/PUBLISHING.md index de12ebef2b..def0fe020e 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.1.md --since-tag 0.11.0 - --future-release 0.11.1rc2 --release-branch main --token ` + --project aries-cloudagent-python --output 0.11.2.md --since-tag 0.11.0 + --future-release 0.11.2 --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/open-api/openapi.json b/open-api/openapi.json index 0090b01ade..6760754d27 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.1" + "version" : "v0.11.2" }, "servers" : [ { "url" : "/" diff --git a/open-api/swagger.json b/open-api/swagger.json index 1865ca15ed..d3719a86e0 100644 --- a/open-api/swagger.json +++ b/open-api/swagger.json @@ -1,7 +1,7 @@ { "swagger" : "2.0", "info" : { - "version" : "v0.11.1", + "version" : "v0.11.2", "title" : "Aries Cloud Agent" }, "tags" : [ { diff --git a/pyproject.toml b/pyproject.toml index b1ccdcc993..22e0879715 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aries_cloudagent" -version = "0.11.1" +version = "0.11.2" 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"