Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(release): new version #2091

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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/lemon-singers-sneeze.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/loud-kiwis-bake.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.

6 changes: 0 additions & 6 deletions .changeset/serious-rivers-clap.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.

5 changes: 0 additions & 5 deletions .changeset/tall-geese-impress.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/witty-rabbits-act.md

This file was deleted.

78 changes: 78 additions & 0 deletions packages/action-menu/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,83 @@
# 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 [27f971d]
- Updated dependencies [0d877f5]
- Updated dependencies [2d10ec3]
- Updated dependencies [70c849d]
- Updated dependencies [897c834]
- Updated dependencies [a53fc54]
- Updated dependencies [edd2edc]
- Updated dependencies [e80794b]
- Updated dependencies [27f971d]
- @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
78 changes: 78 additions & 0 deletions packages/anoncreds/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,83 @@
# 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 [27f971d]
- Updated dependencies [0d877f5]
- Updated dependencies [2d10ec3]
- Updated dependencies [70c849d]
- Updated dependencies [897c834]
- Updated dependencies [a53fc54]
- Updated dependencies [edd2edc]
- Updated dependencies [e80794b]
- Updated dependencies [27f971d]
- @credo-ts/[email protected]
- @credo-ts/[email protected]

## 0.5.13

### Patch Changes
Expand Down
Loading