Skip to content

Commit c901828

Browse files
authored
Merge pull request #3144 from swcurran/0.11.3
0.11.3
2 parents 906a434 + 5418d70 commit c901828

File tree

6 files changed

+33
-8
lines changed

6 files changed

+33
-8
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,30 @@
11
# Aries Cloud Agent Python Changelog
22

3+
## 0.11.3
4+
5+
### August 2, 2024
6+
7+
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].
8+
9+
[AIP 2.0 Present Proof 2.0 Protocol]: https://hyperledger.github.io/aries-rfcs/latest/aip2/0454-present-proof-v2/
10+
11+
### 0.11.3 Breaking Changes
12+
13+
There are no breaking changes in this release.
14+
15+
#### 0.11.3 Categorized List of Pull Requests
16+
17+
- Dependency update and release PR
18+
- [ PATCH ] 0.11.x with PR 3081 terse webhooks [\#3142](https://github.com/hyperledger/aries-cloudagent-python/pull/3142) [jamshale](https://github.com/jamshale)
19+
- Release management pull requests
20+
- 0.11.3 [\#3144](https://github.com/hyperledger/aries-cloudagent-python/pull/3144) [swcurran](https://github.com/swcurran)
21+
- PRs cherry-picked into [\#3142](https://github.com/hyperledger/aries-cloudagent-python/pull/3142) from the `main` branch:
22+
- Add by_format to terse webhook for presentations [\#3081](https://github.com/hyperledger/aries-cloudagent-python/pull/3081) [ianco](https://github.com/ianco)
23+
324
## 0.11.2
425

26+
### July 25, 2024
27+
528
A patch release to add the verification of a linkage between an inbound message and its associated connection (if any) before processing the message.
629

730
### 0.11.2 Breaking Changes
@@ -19,6 +42,8 @@ There are no breaking changes in this release.
1942

2043
## 0.11.1
2144

45+
### May 7, 2024
46+
2247
A patch release to update the `aiohttp` library such that a reported serious
2348
vulnerability is addressed such that a crafted payload delivered to `aiohttp`
2449
can put it in an infinite loop, which can be used for a low cost denial of

PUBLISHING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ Once ready to do a release, create a local branch that includes the following up
2222
- Use a command like the following, adjusting the tag parameters as
2323
appropriate. `docker run -it --rm -v "$(pwd)":/usr/local/src/your-app
2424
githubchangeloggenerator/github-changelog-generator --user hyperledger
25-
--project aries-cloudagent-python --output 0.11.2.md --since-tag 0.11.0
26-
--future-release 0.11.2 --release-branch main --token <your-token>`
25+
--project aries-cloudagent-python --output 0.11.3.md --since-tag 0.11.0
26+
--future-release 0.11.3 --release-branch main --token <your-token>`
2727
- In the generated file, use only the PR list -- we don't include the list of
2828
closed issues in the Change Log.
2929

docs/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Defining the exact versions for ReadTheDocs that will make sure things don't break
2-
sphinx==4.2.0
3-
sphinx_rtd_theme==1.0.0
4-
readthedocs-sphinx-search==0.1.1
2+
sphinx==5.3.0
3+
sphinx_rtd_theme==1.3.0
4+
readthedocs-sphinx-search==0.3.2

open-api/openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"openapi" : "3.0.1",
33
"info" : {
44
"title" : "Aries Cloud Agent",
5-
"version" : "v0.11.2"
5+
"version" : "v0.11.3"
66
},
77
"servers" : [ {
88
"url" : "/"

open-api/swagger.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"swagger" : "2.0",
33
"info" : {
4-
"version" : "v0.11.2",
4+
"version" : "v0.11.3",
55
"title" : "Aries Cloud Agent"
66
},
77
"tags" : [ {

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "aries_cloudagent"
3-
version = "0.11.2"
3+
version = "0.11.3"
44
description = "Hyperledger Aries Cloud Agent Python (ACA-Py) is a foundation for building decentralized identity applications and services running in non-mobile environments. "
55
authors = ["Hyperledger Aries <aries@lists.hyperledger.org>"]
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)