From b7c396a12372b32a19d976fa82593bee835c5d3f Mon Sep 17 00:00:00 2001 From: Stephen Curran Date: Mon, 3 Apr 2023 14:56:17 -0700 Subject: [PATCH 1/2] 0.8.1-rc2 Signed-off-by: Stephen Curran --- CHANGELOG.md | 12 ++++++++---- aries_cloudagent/core/tests/test_conductor.py | 2 +- aries_cloudagent/version.py | 2 +- open-api/openapi.json | 2 +- 4 files changed, 11 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ac4aa736d7..68aed7d406 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,19 +1,22 @@ -# 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) @@ -21,6 +24,7 @@ least) deployments of ACA-Py as a mediator. The important update is Pull Request - 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 [\#2197](https://github.com/hyperledger/aries-cloudagent-python/pull/2194) [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) diff --git a/aries_cloudagent/core/tests/test_conductor.py b/aries_cloudagent/core/tests/test_conductor.py index 73f337d85d..0ed44f8b53 100644 --- a/aries_cloudagent/core/tests/test_conductor.py +++ b/aries_cloudagent/core/tests/test_conductor.py @@ -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, diff --git a/aries_cloudagent/version.py b/aries_cloudagent/version.py index 26775b065d..c2eca1272c 100644 --- a/aries_cloudagent/version.py +++ b/aries_cloudagent/version.py @@ -1,4 +1,4 @@ """Library version information.""" -__version__ = "0.8.1-rc1" +__version__ = "0.8.1-rc2" RECORD_TYPE_ACAPY_VERSION = "acapy_version" diff --git a/open-api/openapi.json b/open-api/openapi.json index 07266ce22b..696904f732 100644 --- a/open-api/openapi.json +++ b/open-api/openapi.json @@ -1,7 +1,7 @@ { "swagger" : "2.0", "info" : { - "version" : "v0.8.1-rc1", + "version" : "v0.8.1-rc2", "title" : "Aries Cloud Agent" }, "tags" : [ { From 2a349b41f3de16697bc2ec59c050542d34a28ea9 Mon Sep 17 00:00:00 2001 From: Stephen Curran Date: Mon, 3 Apr 2023 14:57:38 -0700 Subject: [PATCH 2/2] Update PR number in changelog Signed-off-by: Stephen Curran --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 68aed7d406..d34bc274c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,7 +24,7 @@ ACA-Py be included before the final 0.8.1 release is tagged. - 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 [\#2197](https://github.com/hyperledger/aries-cloudagent-python/pull/2194) [swcurran](https://github.com/swcurran) + - 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)