Skip to content

Commit

Permalink
chore(release): version 0.6.0
Browse files Browse the repository at this point in the history
Signed-off-by: "github-actions[bot]" <"github-actions[bot]@users.noreply.github.com">
  • Loading branch information
github-actions[bot] committed Jan 30, 2025
1 parent 9cc82a1 commit 804407d
Show file tree
Hide file tree
Showing 43 changed files with 980 additions and 185 deletions.
5 changes: 0 additions & 5 deletions .changeset/big-countries-work.md

This file was deleted.

18 changes: 0 additions & 18 deletions .changeset/eleven-numbers-jam.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/grumpy-avocados-decide.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hip-planes-hunt.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/hungry-ducks-yawn.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/late-shirts-flash.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/loud-ligers-check.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/perfect-islands-grin.md

This file was deleted.

18 changes: 0 additions & 18 deletions .changeset/popular-walls-add.md

This file was deleted.

67 changes: 0 additions & 67 deletions .changeset/purple-donkeys-camp.md

This file was deleted.

20 changes: 0 additions & 20 deletions .changeset/shiny-sheep-appear.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/six-phones-marry.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/stupid-beans-glow.md

This file was deleted.

74 changes: 74 additions & 0 deletions packages/action-menu/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,79 @@
# Changelog

## 0.6.0

### Minor Changes

- 70c849d: update target for tsc compiler to ES2020. Generally this should not have an impact for the supported environments (Node.JS / React Native). However this will have to be tested in React Native
- 897c834: DIDComm has been extracted out of the Core. This means that now all DIDComm related modules (e.g. proofs, credentials) must be explicitly added when creating an `Agent` instance. Therefore, their API will be accesable under `agent.modules.[moduleAPI]` instead of `agent.[moduleAPI]`. Some `Agent` DIDComm-related properties and methods where also moved to the API of a new DIDComm module (e.g. `agent.registerInboundTransport` turned into `agent.modules.didcomm.registerInboundTransport`).

**Example of DIDComm Agent**

Previously:

```ts
const config = {
label: name,
endpoints: ['https://myendpoint'],
walletConfig: {
id: name,
key: name,
},
} satisfies InitConfig

const agent = new Agent({
config,
dependencies: agentDependencies,
modules: {
connections: new ConnectionsModule({
autoAcceptConnections: true,
})
})
this.agent.registerInboundTransport(new HttpInboundTransport({ port }))
this.agent.registerOutboundTransport(new HttpOutboundTransport())

```
Now:
```ts
const config = {
label: name,
walletConfig: {
id: name,
key: name,
},
} satisfies InitConfig

const agent = new Agent({
config,
dependencies: agentDependencies,
modules: {
...getDefaultDidcommModules({ endpoints: ['https://myendpoint'] }),
connections: new ConnectionsModule({
autoAcceptConnections: true,
})
})
agent.modules.didcomm.registerInboundTransport(new HttpInboundTransport({ port }))
agent.modules.didcomm.registerOutboundTransport(new HttpOutboundTransport())
```
### Patch Changes
- 13cd8cb: feat: support node 22
- Updated dependencies [2d10ec3]
- Updated dependencies [13cd8cb]
- Updated dependencies [14673b1]
- Updated dependencies [607659a]
- Updated dependencies [5f08bc6]
- Updated dependencies [2d10ec3]
- Updated dependencies [70c849d]
- Updated dependencies [897c834]
- Updated dependencies [edd2edc]
- Updated dependencies [e80794b]
- @credo-ts/[email protected]
- @credo-ts/[email protected]
## 0.5.13
### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/action-menu/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@credo-ts/action-menu",
"main": "src/index",
"types": "src/index",
"version": "0.5.13",
"version": "0.6.0",
"files": [
"build"
],
Expand Down
74 changes: 74 additions & 0 deletions packages/anoncreds/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,79 @@
# Changelog

## 0.6.0

### Minor Changes

- 70c849d: update target for tsc compiler to ES2020. Generally this should not have an impact for the supported environments (Node.JS / React Native). However this will have to be tested in React Native
- 897c834: DIDComm has been extracted out of the Core. This means that now all DIDComm related modules (e.g. proofs, credentials) must be explicitly added when creating an `Agent` instance. Therefore, their API will be accesable under `agent.modules.[moduleAPI]` instead of `agent.[moduleAPI]`. Some `Agent` DIDComm-related properties and methods where also moved to the API of a new DIDComm module (e.g. `agent.registerInboundTransport` turned into `agent.modules.didcomm.registerInboundTransport`).

**Example of DIDComm Agent**

Previously:

```ts
const config = {
label: name,
endpoints: ['https://myendpoint'],
walletConfig: {
id: name,
key: name,
},
} satisfies InitConfig

const agent = new Agent({
config,
dependencies: agentDependencies,
modules: {
connections: new ConnectionsModule({
autoAcceptConnections: true,
})
})
this.agent.registerInboundTransport(new HttpInboundTransport({ port }))
this.agent.registerOutboundTransport(new HttpOutboundTransport())

```
Now:
```ts
const config = {
label: name,
walletConfig: {
id: name,
key: name,
},
} satisfies InitConfig

const agent = new Agent({
config,
dependencies: agentDependencies,
modules: {
...getDefaultDidcommModules({ endpoints: ['https://myendpoint'] }),
connections: new ConnectionsModule({
autoAcceptConnections: true,
})
})
agent.modules.didcomm.registerInboundTransport(new HttpInboundTransport({ port }))
agent.modules.didcomm.registerOutboundTransport(new HttpOutboundTransport())
```
### Patch Changes
- 13cd8cb: feat: support node 22
- Updated dependencies [2d10ec3]
- Updated dependencies [13cd8cb]
- Updated dependencies [14673b1]
- Updated dependencies [607659a]
- Updated dependencies [5f08bc6]
- Updated dependencies [2d10ec3]
- Updated dependencies [70c849d]
- Updated dependencies [897c834]
- Updated dependencies [edd2edc]
- Updated dependencies [e80794b]
- @credo-ts/[email protected]
- @credo-ts/[email protected]
## 0.5.13
### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/anoncreds/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@credo-ts/anoncreds",
"main": "src/index",
"types": "src/index",
"version": "0.5.13",
"version": "0.6.0",
"files": [
"build"
],
Expand Down
Loading

0 comments on commit 804407d

Please sign in to comment.