diff --git a/CHANGELOG.md b/CHANGELOG.md index 9747d2d2c8..5f6b56916f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ -# 0.8.2-rc1 +# 0.8.2-rc2 -## June 26, 2023 +## June 28, 2023 Release 0.8.2 contains a number of minor fixes and updates to ACA-Py, including the correction of a regression in Release 0.8.0 related to the use of plugins @@ -8,11 +8,15 @@ the correction of a regression in Release 0.8.0 related to the use of plugins development environment to collect detailed performance information about what is going in within ACA-Py. -For those using plugins, RC1 includes PR [\#2255](https://github.com/hyperledger/aries-cloudagent-python/pull/2255) to fix a backwards compatibility break in -the loading of plugins that was inadvertently introduced in 0.8.1. +An important new feature in this release is the ability to set some instance +configuration settings at the tenant level of a multi-tenant deployment. See PR +[\#2233]. There are no breaking changes in this release. +[\#2255]: https://github.com/hyperledger/aries-cloudagent-python/pull/2255 +[\#2233]: https://github.com/hyperledger/aries-cloudagent-python/pull/2233 + ### Categorized List of Pull Requests - Connections Fixes/Updates @@ -24,6 +28,7 @@ There are no breaking changes in this release. - Credential Exchange (Issue, Present) Updates - Pass document loader to jsonld.expand [\#2175](https://github.com/hyperledger/aries-cloudagent-python/pull/2175) [andrewwhitehead](https://github.com/andrewwhitehead) - Multi-tenancy fixes/updates + - Allow Configuration Settings on a per-tenant basis [\#2233](https://github.com/hyperledger/aries-cloudagent-python/pull/2233) [shaangill025](https://github.com/shaangill025) - stand up multiple agents (single and multi) for local development and testing [\#2230](https://github.com/hyperledger/aries-cloudagent-python/pull/2230) [usingtechnology](https://github.com/usingtechnology) - Multi-tenant self-managed mediation verkey lookup [\#2232](https://github.com/hyperledger/aries-cloudagent-python/pull/2232) [usingtechnology](https://github.com/usingtechnology) - fix: route multitenant connectionless oob invitation [\#2243](https://github.com/hyperledger/aries-cloudagent-python/pull/2243) [TimoGlastra](https://github.com/TimoGlastra) @@ -49,6 +54,8 @@ There are no breaking changes in this release. - Message Tracing/Timing Updates - Add updated ELK stack for demos. [\#2236](https://github.com/hyperledger/aries-cloudagent-python/pull/2236) [usingtechnology](https://github.com/usingtechnology) - Release management pull requests + - 0.8.2-rc2 [\#2284](https://github.com/hyperledger/aries-cloudagent-python/pull/2284 + ) [swcurran](https://github.com/swcurran) - 0.8.2-rc1 [\#2282](https://github.com/hyperledger/aries-cloudagent-python/pull/2282) [swcurran](https://github.com/swcurran) - 0.8.2-rc0 [\#2260](https://github.com/hyperledger/aries-cloudagent-python/pull/2260) [swcurran](https://github.com/swcurran) diff --git a/aries_cloudagent/version.py b/aries_cloudagent/version.py index 02cd553e5e..9de01f1cbf 100644 --- a/aries_cloudagent/version.py +++ b/aries_cloudagent/version.py @@ -1,4 +1,4 @@ """Library version information.""" -__version__ = "0.8.2-rc1" +__version__ = "0.8.2-rc2" RECORD_TYPE_ACAPY_VERSION = "acapy_version" diff --git a/docs/generated/aries_cloudagent.rst b/docs/generated/aries_cloudagent.rst index ef01b45059..4e431df88e 100644 --- a/docs/generated/aries_cloudagent.rst +++ b/docs/generated/aries_cloudagent.rst @@ -28,6 +28,7 @@ Subpackages aries_cloudagent.protocols aries_cloudagent.resolver aries_cloudagent.revocation + aries_cloudagent.settings aries_cloudagent.storage aries_cloudagent.tails aries_cloudagent.transport diff --git a/docs/generated/aries_cloudagent.settings.rst b/docs/generated/aries_cloudagent.settings.rst new file mode 100644 index 0000000000..fff50e5c48 --- /dev/null +++ b/docs/generated/aries_cloudagent.settings.rst @@ -0,0 +1,18 @@ +aries\_cloudagent.settings package +================================== + +.. automodule:: aries_cloudagent.settings + :members: + :undoc-members: + :show-inheritance: + +Submodules +---------- + +aries\_cloudagent.settings.routes module +---------------------------------------- + +.. automodule:: aries_cloudagent.settings.routes + :members: + :undoc-members: + :show-inheritance: diff --git a/open-api/openapi.json b/open-api/openapi.json index b27af39ad6..0b1734b955 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.8.2-rc1" + "version" : "v0.8.2-rc2" }, "servers" : [ { "url" : "/" diff --git a/open-api/swagger.json b/open-api/swagger.json index a0f84c7ed3..2e2e230f07 100644 --- a/open-api/swagger.json +++ b/open-api/swagger.json @@ -1,7 +1,7 @@ { "swagger" : "2.0", "info" : { - "version" : "v0.8.2-rc1", + "version" : "v0.8.2-rc2", "title" : "Aries Cloud Agent" }, "tags" : [ {