Skip to content

Commit

Permalink
Merge branch 'main' into refactor/manual-module-registration
Browse files Browse the repository at this point in the history
  • Loading branch information
TimoGlastra authored Jun 25, 2022
2 parents 87e9b2b + 1366416 commit 03196e9
Show file tree
Hide file tree
Showing 9 changed files with 305 additions and 12 deletions.
135 changes: 135 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"packages": ["packages/*"],
"version": "0.1.0",
"version": "0.2.0",
"useWorkspaces": true,
"npmClient": "yarn",
"command": {
Expand Down
131 changes: 131 additions & 0 deletions packages/core/CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@aries-framework/core",
"main": "build/index",
"types": "build/index",
"version": "0.1.0",
"version": "0.2.0",
"files": [
"build"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,7 @@ export type FindCredentialMessageReturn<CSs extends CredentialService[]> = Retur
/**
* Get the supported protocol versions based on the provided credential services.
*/
export type ProtocolVersionType<
CFs extends CredentialFormat[],
CSs extends CredentialService<CFs>[]
> = CSs[number]['version']
export type ProtocolVersionType<CSs extends CredentialService[]> = CSs[number]['version']

/**
* Get the service map for usage in the credentials module. Will return a type mapping of protocol version to service.
Expand Down Expand Up @@ -51,7 +48,7 @@ export interface ProposeCredentialOptions<
CSs extends CredentialService[] = CredentialService[]
> extends BaseOptions {
connectionId: string
protocolVersion: ProtocolVersionType<CFs, CSs>
protocolVersion: ProtocolVersionType<CSs>
credentialFormats: CredentialFormatPayload<CFs, 'createProposal'>
}

Expand Down Expand Up @@ -80,7 +77,7 @@ export interface CreateOfferOptions<
CFs extends CredentialFormat[] = CredentialFormat[],
CSs extends CredentialService[] = CredentialService[]
> extends BaseOptions {
protocolVersion: ProtocolVersionType<CFs, CSs>
protocolVersion: ProtocolVersionType<CSs>
credentialFormats: CredentialFormatPayload<CFs, 'createOffer'>
}

Expand Down
13 changes: 13 additions & 0 deletions packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.2.0](https://github.com/hyperledger/aries-framework-javascript/compare/v0.1.0...v0.2.0) (2022-06-24)

### Bug Fixes

- close session early if no return route ([#715](https://github.com/hyperledger/aries-framework-javascript/issues/715)) ([2e65408](https://github.com/hyperledger/aries-framework-javascript/commit/2e6540806f2d67bef16004f6e8398c5bf7a05bcf))
- **node:** allow to import node package without postgres ([#757](https://github.com/hyperledger/aries-framework-javascript/issues/757)) ([59e1058](https://github.com/hyperledger/aries-framework-javascript/commit/59e10589acee987fb46f9cbaa3583ba8dcd70b87))
- **node:** only send 500 if no headers sent yet ([#857](https://github.com/hyperledger/aries-framework-javascript/issues/857)) ([4be8f82](https://github.com/hyperledger/aries-framework-javascript/commit/4be8f82c214f99538eaa0fd0aac5a8f7a6e1dd6b))

### Features

- **core:** add support for postgres wallet type ([#699](https://github.com/hyperledger/aries-framework-javascript/issues/699)) ([83ff0f3](https://github.com/hyperledger/aries-framework-javascript/commit/83ff0f36401cbf6e95c0a1ceb9fa921a82dc6830))
- indy revocation (prover & verifier) ([#592](https://github.com/hyperledger/aries-framework-javascript/issues/592)) ([fb19ff5](https://github.com/hyperledger/aries-framework-javascript/commit/fb19ff555b7c10c9409450dcd7d385b1eddf41ac))

# 0.1.0 (2021-12-23)

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions packages/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@aries-framework/node",
"main": "build/index",
"types": "build/index",
"version": "0.1.0",
"version": "0.2.0",
"files": [
"build",
"bin"
Expand All @@ -28,7 +28,7 @@
"test": "jest"
},
"dependencies": {
"@aries-framework/core": "0.1.0",
"@aries-framework/core": "0.2.0",
"express": "^4.17.1",
"ffi-napi": "^4.0.3",
"indy-sdk": "^1.16.0-dev-1636",
Expand Down
17 changes: 17 additions & 0 deletions packages/react-native/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.2.0](https://github.com/hyperledger/aries-framework-javascript/compare/v0.1.0...v0.2.0) (2022-06-24)

- chore!: update indy-sdk-react-native version to 0.2.0 (#754) ([4146778](https://github.com/hyperledger/aries-framework-javascript/commit/414677828be7f6c08fa02905d60d6555dc4dd438)), closes [#754](https://github.com/hyperledger/aries-framework-javascript/issues/754)

### Features

- add generic did resolver ([#554](https://github.com/hyperledger/aries-framework-javascript/issues/554)) ([8e03f35](https://github.com/hyperledger/aries-framework-javascript/commit/8e03f35f8e1cd02dac4df02d1f80f2c5a921dfef))
- add update assistant for storage migrations ([#690](https://github.com/hyperledger/aries-framework-javascript/issues/690)) ([c9bff93](https://github.com/hyperledger/aries-framework-javascript/commit/c9bff93cfac43c4ae2cbcad1f96c1a74cde39602))
- delete credential from wallet ([#691](https://github.com/hyperledger/aries-framework-javascript/issues/691)) ([abec3a2](https://github.com/hyperledger/aries-framework-javascript/commit/abec3a2c95815d1c54b22a6370222f024eefb060))
- indy revocation (prover & verifier) ([#592](https://github.com/hyperledger/aries-framework-javascript/issues/592)) ([fb19ff5](https://github.com/hyperledger/aries-framework-javascript/commit/fb19ff555b7c10c9409450dcd7d385b1eddf41ac))
- ledger connections happen on agent init in background ([#580](https://github.com/hyperledger/aries-framework-javascript/issues/580)) ([61695ce](https://github.com/hyperledger/aries-framework-javascript/commit/61695ce7737ffef363b60e341ae5b0e67e0e2c90))
- support wallet key rotation ([#672](https://github.com/hyperledger/aries-framework-javascript/issues/672)) ([5cd1598](https://github.com/hyperledger/aries-framework-javascript/commit/5cd1598b496a832c82f35a363fabe8f408abd439))

### BREAKING CHANGES

- indy-sdk-react-native has been updated to 0.2.0. The new version now depends on libindy version 1.16 and requires you to update the binaries in your react-native application. See the [indy-sdk-react-native](https://github.com/hyperledger/indy-sdk-react-native) repository for instructions on how to get the latest binaries for both iOS and Android.

# 0.1.0 (2021-12-23)

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions packages/react-native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@aries-framework/react-native",
"main": "build/index",
"types": "build/index",
"version": "0.1.0",
"version": "0.2.0",
"files": [
"build"
],
Expand All @@ -24,7 +24,7 @@
"test": "jest"
},
"dependencies": {
"@aries-framework/core": "0.1.0",
"@aries-framework/core": "0.2.0",
"@azure/core-asynciterator-polyfill": "^1.0.0",
"events": "^3.3.0"
},
Expand Down

0 comments on commit 03196e9

Please sign in to comment.