Skip to content

Commit

Permalink
Merge pull request #3268 from swcurran/1.0.1rc1
Browse files Browse the repository at this point in the history
1.0.1rc1
  • Loading branch information
swcurran authored Oct 1, 2024
2 parents f082a95 + 55cc969 commit db5ead3
Show file tree
Hide file tree
Showing 11 changed files with 501 additions and 14 deletions.
20 changes: 14 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Aries Cloud Agent Python Changelog

## 1.0.1rc0
## 1.0.1rc1

### September 25, 2024
### October 1, 2024

Release 1.0.1 _might_ be the last release of ACA-Py from the Hyperledger
organization before the repository moves to the [OpenWallet Foundation] (OWF). As
Expand All @@ -17,9 +17,12 @@ For details on what this means for ACA-Py users, including steps for updating de
[GitHub Issue #3250]: https://github.com/hyperledger/aries-cloudagent-python/issues/3250

The release contains mostly internal clean ups, technical debt elimination, and
a revision to the integration testing approach, incorporating the [Aries Agent Test Harness] tests in the ACA-Py continuous integration testing process.
a revision to the integration testing approach, incorporating the [Aries Agent Test Harness] tests in the ACA-Py continuous integration testing process. There are substantial enhancements in the
management of keys and their use with [VC-DI] proofs, and web-based DID methods like
`did:web`. See the `Wallet and Key Handling` updates in the categorized PR list below.

[Aries Agent Test Harness]: https://github.com/hyperledger/aries-agent-test-harness
[VC-DI]: https://www.w3.org/TR/vc-data-integrity/

There are several important **[deprecation notices](#deprecation-notices)**
in this release in preparation for the next ACA-Py release. Please review these notifications carefully!
Expand Down Expand Up @@ -55,13 +58,15 @@ list of those PRs.
[RFC 0453 Issue Credential v2.0]: https://hyperledger.github.io/aries-rfcs/latest/aip2/0453-issue-credential-v2/
[RFC 0454 Present Proof v2.0]: https://hyperledger.github.io/aries-rfcs/latest/aip2/0454-present-proof-v2/

### 1.0.1rc0 Breaking Changes
### 1.0.1rc1 Breaking Changes

There are no breaking changes in ACA-Py Release 1.0.1.

#### 1.0.1rc0 Categorized List of Pull Requests
#### 1.0.1rc1 Categorized List of Pull Requests

- Wallet and Key Handling Updates
- Data integrity routes [\#3261](https://github.com/hyperledger/aries-cloudagent-python/pull/3261) [PatStLouis](https://github.com/PatStLouis)
- [BUG] Handle get key operation when no tag has been set [\#3256](https://github.com/hyperledger/aries-cloudagent-python/pull/3256) [PatStLouis](https://github.com/PatStLouis)
- Feature multikey management [\#3246](https://github.com/hyperledger/aries-cloudagent-python/pull/3246) [PatStLouis](https://github.com/PatStLouis)
- chore: delete unused keypair storage manager [\#3245](https://github.com/hyperledger/aries-cloudagent-python/pull/3245) [dbluhm](https://github.com/dbluhm)

Expand All @@ -85,6 +90,8 @@ There are no breaking changes in ACA-Py Release 1.0.1.
- Change integration testing [\#3194](https://github.com/hyperledger/aries-cloudagent-python/pull/3194) [jamshale](https://github.com/jamshale)

- Dependencies and Internal Fixes/Updates:
- Adjust sonarcloud and integration test workflows [\#3259](https://github.com/hyperledger/aries-cloudagent-python/pull/3259) [jamshale](https://github.com/jamshale)
- fix: enable refreshing did endpoint using mediator info [\#3260](https://github.com/hyperledger/aries-cloudagent-python/pull/3260) [dbluhm](https://github.com/dbluhm)
- Removing padding from url invitations [\#3238](https://github.com/hyperledger/aries-cloudagent-python/pull/3238) [jamshale](https://github.com/jamshale)
- Ensure that DAP_PORT is always an int [\#3241](https://github.com/hyperledger/aries-cloudagent-python/pull/3241) [Gavinok](https://github.com/Gavinok)
- Fix logic to send verbose webhooks [\#3193](https://github.com/hyperledger/aries-cloudagent-python/pull/3193) [ianco](https://github.com/ianco)
Expand All @@ -94,10 +101,11 @@ There are no breaking changes in ACA-Py Release 1.0.1.
- [ POST v1.0.0 ] Adjust message queue error handling [\#3170](https://github.com/hyperledger/aries-cloudagent-python/pull/3170) [jamshale](https://github.com/jamshale)

- Release management pull requests:
- 1.0.1rc1 [\#3268](https://github.com/hyperledger/aries-cloudagent-python/pull/3268) [swcurran](https://github.com/swcurran)
- 1.0.1rc0 [\#3254](https://github.com/hyperledger/aries-cloudagent-python/pull/3254) [swcurran](https://github.com/swcurran)

- Dependabot PRs
- [Link to list of Dependabot PRs in this release](https://github.com/hyperledger/aries-cloudagent-python/pulls?q=is%3Apr+is%3Amerged+merged%3A2024-08-15..2024-09-25+author%3Aapp%2Fdependabot+)
- [Link to list of Dependabot PRs in this release](https://github.com/hyperledger/aries-cloudagent-python/pulls?q=is%3Apr+is%3Amerged+merged%3A2024-08-15..2024-10-01+author%3Aapp%2Fdependabot+)

## 1.0.0

Expand Down
4 changes: 2 additions & 2 deletions Managing-ACA-Py-Doc-Site.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ and mkdocs configuration.

When the GitHub Action fires, it runs a container that carries out the following steps:

- Checks out the triggering branch, either `main` or `docs-v<version>` (e.g `docs-v1.0.1rc0`).
- Checks out the triggering branch, either `main` or `docs-v<version>` (e.g `docs-v1.0.1rc1`).
- Runs the script [scripts/prepmkdocs.sh], which moves and updates some of the
markdown files so that they fit into the generated site. See the comments in
the scripts for details about the copying and editing done via the script. In
Expand Down Expand Up @@ -97,7 +97,7 @@ To delete the documentation version, do the following:
- Check your `git status` and make sure there are no changes in the branch --
e.g., new files that shouldn't be added to the `gh-pages` branch. If there are
any -- delete the files so they are not added.
- Remove the folder for the RC. For example `rm -rf 1.0.1rc0`
- Remove the folder for the RC. For example `rm -rf 1.0.1rc1`
- Edit the `versions.json` file and remove the reference to the RC release in
the file.
- Push the changes via a PR to the ACA-Py `gh-pages` branch (don't PR them into
Expand Down
4 changes: 2 additions & 2 deletions PUBLISHING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ a major, minor or patch release, per [semver](https://semver.org/) rules.

Once ready to do a release, create a local branch that includes the following updates:

1. Create a local PR branch from an updated `main` branch, e.g. "1.0.1rc0".
1. Create a local PR branch from an updated `main` branch, e.g. "1.0.1rc1".

2. See if there are any Document Site `mkdocs` changes needed. Run the script
`./scripts/prepmkdocs.sh; mkdocs`. Watch the log, noting particularly if
Expand Down Expand Up @@ -139,7 +139,7 @@ Include a PR for this soon-to-be PR. You can guess at the number of the PR by us
[publish-indy.yml]: https://github.com/hyperledger/aries-cloudagent-python/blob/main/.github/workflows/publish-indy.yml

12. When a new release is tagged, create a new branch at the same commit with
the branch name in the format `docs-v<version>`, for example, `docs-v1.0.1rc0`.
the branch name in the format `docs-v<version>`, for example, `docs-v1.0.1rc1`.
The creation of the branch triggers the execution of the [publish-docs]
GitHub Action which generates the documentation for the new release,
publishing it at [https://aca-py.org]. The GitHub Action also executes when
Expand Down
2 changes: 1 addition & 1 deletion docs/features/SupportedRFCs.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ACA-Py or the repository `main` branch. Reminders (and PRs!) to update this page
welcome! If you have any questions, please contact us on the #aries channel on
[Hyperledger Discord](https://discord.gg/hyperledger) or through an issue in this repo.

**Last Update**: 2024-09-25, Release 1.0.1rc0
**Last Update**: 2024-10-01, Release 1.0.1rc1

> The checklist version of this document was created as a joint effort
> between [Northern Block](https://northernblock.io/), [Animo Solutions](https://animo.id/) and the Ontario government, on behalf of the Ontario government.
Expand Down
18 changes: 18 additions & 0 deletions docs/generated/aries_cloudagent.vc.data_integrity.cryptosuites.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
aries\_cloudagent.vc.data\_integrity.cryptosuites package
=========================================================

.. automodule:: aries_cloudagent.vc.data_integrity.cryptosuites
:members:
:undoc-members:
:show-inheritance:

Submodules
----------

aries\_cloudagent.vc.data\_integrity.cryptosuites.eddsa\_jcs\_2022 module
-------------------------------------------------------------------------

.. automodule:: aries_cloudagent.vc.data_integrity.cryptosuites.eddsa_jcs_2022
:members:
:undoc-members:
:show-inheritance:
34 changes: 34 additions & 0 deletions docs/generated/aries_cloudagent.vc.data_integrity.models.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
aries\_cloudagent.vc.data\_integrity.models package
===================================================

.. automodule:: aries_cloudagent.vc.data_integrity.models
:members:
:undoc-members:
:show-inheritance:

Submodules
----------

aries\_cloudagent.vc.data\_integrity.models.options module
----------------------------------------------------------

.. automodule:: aries_cloudagent.vc.data_integrity.models.options
:members:
:undoc-members:
:show-inheritance:

aries\_cloudagent.vc.data\_integrity.models.proof module
--------------------------------------------------------

.. automodule:: aries_cloudagent.vc.data_integrity.models.proof
:members:
:undoc-members:
:show-inheritance:

aries\_cloudagent.vc.data\_integrity.models.verification\_response module
-------------------------------------------------------------------------

.. automodule:: aries_cloudagent.vc.data_integrity.models.verification_response
:members:
:undoc-members:
:show-inheritance:
43 changes: 43 additions & 0 deletions docs/generated/aries_cloudagent.vc.data_integrity.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
aries\_cloudagent.vc.data\_integrity package
============================================

.. automodule:: aries_cloudagent.vc.data_integrity
:members:
:undoc-members:
:show-inheritance:

Subpackages
-----------

.. toctree::
:maxdepth: 4

aries_cloudagent.vc.data_integrity.cryptosuites
aries_cloudagent.vc.data_integrity.models

Submodules
----------

aries\_cloudagent.vc.data\_integrity.errors module
--------------------------------------------------

.. automodule:: aries_cloudagent.vc.data_integrity.errors
:members:
:undoc-members:
:show-inheritance:

aries\_cloudagent.vc.data\_integrity.manager module
---------------------------------------------------

.. automodule:: aries_cloudagent.vc.data_integrity.manager
:members:
:undoc-members:
:show-inheritance:

aries\_cloudagent.vc.data\_integrity.routes module
--------------------------------------------------

.. automodule:: aries_cloudagent.vc.data_integrity.routes
:members:
:undoc-members:
:show-inheritance:
1 change: 1 addition & 0 deletions docs/generated/aries_cloudagent.vc.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Subpackages
.. toctree::
:maxdepth: 4

aries_cloudagent.vc.data_integrity
aries_cloudagent.vc.ld_proofs
aries_cloudagent.vc.vc_di
aries_cloudagent.vc.vc_ld
Expand Down
Loading

0 comments on commit db5ead3

Please sign in to comment.