Skip to content

Commit

Permalink
Merge pull request #2284 from swcurran/0.8.2-rc2
Browse files Browse the repository at this point in the history
0.8.2-rc2
  • Loading branch information
swcurran authored Jun 28, 2023
2 parents e63a5b7 + 9760925 commit 548fb25
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 7 deletions.
15 changes: 11 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
# 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
(see [\#2255]). Highlights include making it easier to use tracing in a
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
Expand All @@ -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)
Expand All @@ -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)

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.2-rc1"
__version__ = "0.8.2-rc2"
RECORD_TYPE_ACAPY_VERSION = "acapy_version"
1 change: 1 addition & 0 deletions docs/generated/aries_cloudagent.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
18 changes: 18 additions & 0 deletions docs/generated/aries_cloudagent.settings.rst
Original file line number Diff line number Diff line change
@@ -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:
2 changes: 1 addition & 1 deletion open-api/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -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" : "/"
Expand Down
2 changes: 1 addition & 1 deletion open-api/swagger.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"swagger" : "2.0",
"info" : {
"version" : "v0.8.2-rc1",
"version" : "v0.8.2-rc2",
"title" : "Aries Cloud Agent"
},
"tags" : [ {
Expand Down

0 comments on commit 548fb25

Please sign in to comment.