Skip to content

Commit

Permalink
Merge pull request #2198 from swcurran/0.8.1-rc2
Browse files Browse the repository at this point in the history
0.8.1-rc2
  • Loading branch information
swcurran authored Apr 4, 2023
2 parents e89e3fd + 2a349b4 commit 0b61c98
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
12 changes: 8 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,30 @@
# 0.8.1-rc1
# 0.8.1-rc2

## March 31, 2023
## April 3, 2023

An urgent update to Release 0.8.1 to address an inability to execute the
`upgrade` command. The `upgrade` command is needed for Pull Request [\#2116] -
"UPGRADE: Fix multi-use invitation performance", which is necessary for (at
least) deployments of ACA-Py as a mediator. The important update is Pull Request
[\#2185] (listed below).
least) deployments of ACA-Py as a mediator. The important updates are Pull
Requests [\#2185] and [\#2196] (listed below). Documentation on upgrades in
ACA-Py be included before the final 0.8.1 release is tagged.

[\#2116]: https://github.com/hyperledger/aries-cloudagent-python/pull/2116
[\#2185]: https://github.com/hyperledger/aries-cloudagent-python/pull/2185
[\#2196]: https://github.com/hyperledger/aries-cloudagent-python/pull/2196

### Categorized List of Pull Requests

- Fixes for the `upgrade` Command
- Fix: Indy WalletAlreadyOpenedError during upgrade process [\#2196](https://github.com/hyperledger/aries-cloudagent-python/pull/2196) [shaangill025](https://github.com/shaangill025)
- Fix: Resolve Upgrade Config file in Container [\#2193](https://github.com/hyperledger/aries-cloudagent-python/pull/2193) [shaangill025](https://github.com/shaangill025)
- Update and automate ACA-Py upgrade process [\#2185](https://github.com/hyperledger/aries-cloudagent-python/pull/2185) [shaangill025](https://github.com/shaangill025)
- Adds the upgrade command YML file to the PyPi Release [\#2179](https://github.com/hyperledger/aries-cloudagent-python/pull/2179) [swcurran](https://github.com/swcurran)
- Test and Documentation
- Create UnitTests.md [\#2183](https://github.com/hyperledger/aries-cloudagent-python/pull/2183) [swcurran](https://github.com/swcurran)
- Add link to recorded session about the ACA-Py Integration tests [\#2184](https://github.com/hyperledger/aries-cloudagent-python/pull/2184) [swcurran](https://github.com/swcurran)
- Release management pull requests
- 0.8.1-rc2 [\#2198](https://github.com/hyperledger/aries-cloudagent-python/pull/2198) [swcurran](https://github.com/swcurran)
- 0.8.1-rc1 [\#2194](https://github.com/hyperledger/aries-cloudagent-python/pull/2194) [swcurran](https://github.com/swcurran)
- 0.8.1-rc0 [\#2190](https://github.com/hyperledger/aries-cloudagent-python/pull/2190) [swcurran](https://github.com/swcurran)

Expand Down
2 changes: 1 addition & 1 deletion aries_cloudagent/core/tests/test_conductor.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ async def test_startup_version_record_exists(self):
test_module,
"get_upgrade_version_list",
async_mock.MagicMock(
return_value=["v0.7.4", "0.7.5", "v0.8.0-rc1", "v8.0.0", "v0.8.1-rc1"]
return_value=["v0.7.4", "0.7.5", "v0.8.0-rc1", "v8.0.0", "v0.8.1-rc2"]
),
), async_mock.patch.object(
test_module,
Expand Down
2 changes: 1 addition & 1 deletion aries_cloudagent/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Library version information."""

__version__ = "0.8.1-rc1"
__version__ = "0.8.1-rc2"
RECORD_TYPE_ACAPY_VERSION = "acapy_version"
2 changes: 1 addition & 1 deletion open-api/openapi.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"swagger" : "2.0",
"info" : {
"version" : "v0.8.1-rc1",
"version" : "v0.8.1-rc2",
"title" : "Aries Cloud Agent"
},
"tags" : [ {
Expand Down

0 comments on commit 0b61c98

Please sign in to comment.