Skip to content
Merged
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
18 changes: 0 additions & 18 deletions .changeset/large-teachers-boil.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/thirty-adults-perform.md

This file was deleted.

24 changes: 24 additions & 0 deletions packages/client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# @iroha2/client

## 6.0.0

### Major Changes

- 40516f1: Updated according to Iroha `2.0.0-pre-rc.14` (internal release, reference hash: `726f5eabf65a79ea618b4fce62a09cee7a5b13d1`)

Notable changes:

- Renamed structure: ~~`QueryError`~~ `QueryExecutionFailure`
- Introduced new enum struct, `Algorithm`. Changed `digest_function: string` field in `PublicKey` and `PrivateKey` to `digest_function: Algorithm`:
```ts
PublicKey({
digest_function: Algorithm('Ed25519'),
// ...
})
```

### Patch Changes

- Updated dependencies [40516f1]
- Updated dependencies [40516f1]
- @iroha2/data-model@6.0.0
- @iroha2/crypto-core@1.1.0

## 5.0.0

### Major Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@iroha2/client",
"version": "5.0.0",
"version": "6.0.0",
"module": "dist/lib.mjs",
"main": "dist/lib.cjs",
"types": "dist/lib.d.ts",
Expand Down Expand Up @@ -36,8 +36,8 @@
"test:web": "pnpm --filter client-test-web test"
},
"dependencies": {
"@iroha2/crypto-core": "workspace:^1.0.1",
"@iroha2/data-model": "workspace:5.0.0",
"@iroha2/crypto-core": "workspace:^1.1.0",
"@iroha2/data-model": "workspace:6.0.0",
"debug": "^4.3.4",
"emittery": "^0.10.1",
"json-bigint": "^1.0.0"
Expand Down
4 changes: 2 additions & 2 deletions packages/client/test/integration/test-node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"test": "cross-env DEBUG=@iroha2* vitest run main.spec"
},
"devDependencies": {
"@iroha2/client": "workspace:^5.0.0",
"@iroha2/crypto-target-node": "workspace:^1.0.1",
"@iroha2/client": "workspace:^6.0.0",
"@iroha2/crypto-target-node": "workspace:^1.1.0",
"@iroha2/test-peer": "workspace:^0.0.1",
"cross-env": "^7.0.3",
"node-fetch": "^3.3.0",
Expand Down
8 changes: 4 additions & 4 deletions packages/client/test/integration/test-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
},
"devDependencies": {
"@bahmutov/cypress-esbuild-preprocessor": "^2.1.3",
"@iroha2/client": "workspace:^5.0.0",
"@iroha2/crypto-core": "workspace:^1.0.1",
"@iroha2/crypto-target-web": "workspace:^1.0.1",
"@iroha2/data-model": "workspace:^5.0.0",
"@iroha2/client": "workspace:^6.0.0",
"@iroha2/crypto-core": "workspace:^1.1.0",
"@iroha2/crypto-target-web": "workspace:^1.1.0",
"@iroha2/data-model": "workspace:^6.0.0",
"@iroha2/test-peer": "workspace:^0.0.1",
"@scale-codec/util": "^1.1.2",
"@vitejs/plugin-vue": "^4.0.0",
Expand Down
11 changes: 11 additions & 0 deletions packages/crypto/packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @iroha2/crypto-core

## 1.1.0

### Minor Changes

- 40516f1: **refactor**: combine new `Algorithm` type and codec from `data-model` with the crypto's `Algorithm` type, which is simply a string. Add `Algorithm.toDataModel` and `Algorithm.fromDataModel` methods.

### Patch Changes

- Updated dependencies [40516f1]
- @iroha2/data-model@6.0.0

## 1.0.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/crypto/packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@iroha2/crypto-core",
"version": "1.0.1",
"version": "1.1.0",
"license": "Apache 2.0",
"main": "dist/lib.cjs",
"module": "dist/lib.mjs",
Expand All @@ -21,6 +21,6 @@
},
"dependencies": {
"@iroha2/crypto-util": "workspace:^0.1.0",
"@iroha2/data-model": "workspace:^5.0.0"
"@iroha2/data-model": "workspace:^6.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/crypto/packages/interface-wrap/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"main": "src/lib.ts",
"devDependencies": {
"@iroha2/crypto-util": "workspace:^0.1.0",
"@iroha2/data-model": "workspace:^5.0.0"
"@iroha2/data-model": "workspace:^6.0.0"
}
}
13 changes: 13 additions & 0 deletions packages/crypto/packages/target-bundler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @iroha2/crypto-target-bundler

## 1.1.0

### Minor Changes

- 40516f1: **refactor**: combine new `Algorithm` type and codec from `data-model` with the crypto's `Algorithm` type, which is simply a string. Add `Algorithm.toDataModel` and `Algorithm.fromDataModel` methods.

### Patch Changes

- Updated dependencies [40516f1]
- Updated dependencies [40516f1]
- @iroha2/data-model@6.0.0
- @iroha2/crypto-core@1.1.0

## 1.0.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/crypto/packages/target-bundler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@iroha2/crypto-target-bundler",
"version": "1.0.1",
"version": "1.1.0",
"license": "Apache 2.0",
"module": "dist/lib.mjs",
"types": "dist/lib.d.ts",
Expand All @@ -16,8 +16,8 @@
"CHANGELOG.md"
],
"dependencies": {
"@iroha2/crypto-core": "workspace:^1.0.1",
"@iroha2/data-model": "workspace:^5.0.0"
"@iroha2/crypto-core": "workspace:^1.1.0",
"@iroha2/data-model": "workspace:^6.0.0"
},
"devDependencies": {
"@iroha2/crypto-interface-wrap": "workspace:^0.0.0"
Expand Down
13 changes: 13 additions & 0 deletions packages/crypto/packages/target-node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @iroha2/crypto-target-node

## 1.1.0

### Minor Changes

- 40516f1: **refactor**: combine new `Algorithm` type and codec from `data-model` with the crypto's `Algorithm` type, which is simply a string. Add `Algorithm.toDataModel` and `Algorithm.fromDataModel` methods.

### Patch Changes

- Updated dependencies [40516f1]
- Updated dependencies [40516f1]
- @iroha2/data-model@6.0.0
- @iroha2/crypto-core@1.1.0

## 1.0.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/crypto/packages/target-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@iroha2/crypto-target-node",
"version": "1.0.1",
"version": "1.1.0",
"license": "Apache 2.0",
"main": "dist/lib.cjs",
"module": "dist/lib.mjs",
Expand All @@ -18,8 +18,8 @@
"CHANGELOG.md"
],
"dependencies": {
"@iroha2/crypto-core": "workspace:^1.0.1",
"@iroha2/data-model": "workspace:^5.0.0"
"@iroha2/crypto-core": "workspace:^1.1.0",
"@iroha2/data-model": "workspace:^6.0.0"
},
"devDependencies": {
"@iroha2/crypto-interface-wrap": "workspace:^0.0.0"
Expand Down
13 changes: 13 additions & 0 deletions packages/crypto/packages/target-web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @iroha2/crypto-target-web

## 1.1.0

### Minor Changes

- 40516f1: **refactor**: combine new `Algorithm` type and codec from `data-model` with the crypto's `Algorithm` type, which is simply a string. Add `Algorithm.toDataModel` and `Algorithm.fromDataModel` methods.

### Patch Changes

- Updated dependencies [40516f1]
- Updated dependencies [40516f1]
- @iroha2/data-model@6.0.0
- @iroha2/crypto-core@1.1.0

## 1.0.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/crypto/packages/target-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@iroha2/crypto-target-web",
"version": "1.0.1",
"version": "1.1.0",
"license": "Apache 2.0",
"module": "dist/lib.mjs",
"types": "dist/lib.d.ts",
Expand All @@ -16,8 +16,8 @@
"CHANGELOG.md"
],
"dependencies": {
"@iroha2/crypto-core": "workspace:^1.0.1",
"@iroha2/data-model": "workspace:^5.0.0"
"@iroha2/crypto-core": "workspace:^1.1.0",
"@iroha2/data-model": "workspace:^6.0.0"
},
"devDependencies": {
"@iroha2/crypto-interface-wrap": "workspace:^0.0.0"
Expand Down
17 changes: 17 additions & 0 deletions packages/data-model-schema/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @iroha2/data-model-schema

## 6.0.0

### Major Changes

- 40516f1: Updated according to Iroha `2.0.0-pre-rc.14` (internal release, reference hash: `726f5eabf65a79ea618b4fce62a09cee7a5b13d1`)

Notable changes:

- Renamed structure: ~~`QueryError`~~ `QueryExecutionFailure`
- Introduced new enum struct, `Algorithm`. Changed `digest_function: string` field in `PublicKey` and `PrivateKey` to `digest_function: Algorithm`:
```ts
PublicKey({
digest_function: Algorithm('Ed25519'),
// ...
})
```

## 5.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/data-model-schema/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@iroha2/data-model-schema",
"version": "5.0.0",
"version": "6.0.0",
"description": "Data model schema related utilities",
"main": "src/lib.ts",
"files": [
Expand Down
17 changes: 17 additions & 0 deletions packages/data-model/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @iroha2/data-model

## 6.0.0

### Major Changes

- 40516f1: Updated according to Iroha `2.0.0-pre-rc.14` (internal release, reference hash: `726f5eabf65a79ea618b4fce62a09cee7a5b13d1`)

Notable changes:

- Renamed structure: ~~`QueryError`~~ `QueryExecutionFailure`
- Introduced new enum struct, `Algorithm`. Changed `digest_function: string` field in `PublicKey` and `PrivateKey` to `digest_function: Algorithm`:
```ts
PublicKey({
digest_function: Algorithm('Ed25519'),
// ...
})
```

## 5.0.0

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/data-model/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@iroha2/data-model",
"version": "5.0.0",
"version": "6.0.0",
"module": "dist/lib.mjs",
"main": "dist/lib.cjs",
"types": "dist/lib.d.ts",
Expand All @@ -24,7 +24,7 @@
"@scale-codec/definition-runtime": "^4.0.1"
},
"devDependencies": {
"@iroha2/data-model-schema": "workspace:5.0.0",
"@iroha2/data-model-schema": "workspace:6.0.0",
"@scale-codec/definition-compiler": "^4.0.1",
"@scale-codec/util": "^1.1.2"
}
Expand Down
12 changes: 6 additions & 6 deletions packages/docs-recipes/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
"private": true,
"version": "0.0.3",
"devDependencies": {
"@iroha2/client": "workspace:^5.0.0",
"@iroha2/crypto-core": "workspace:^1.0.1",
"@iroha2/crypto-target-bundler": "workspace:^1.0.1",
"@iroha2/crypto-target-node": "workspace:^1.0.1",
"@iroha2/crypto-target-web": "workspace:^1.0.1",
"@iroha2/data-model": "workspace:^5.0.0",
"@iroha2/client": "workspace:^6.0.0",
"@iroha2/crypto-core": "workspace:^1.1.0",
"@iroha2/crypto-target-bundler": "workspace:^1.1.0",
"@iroha2/crypto-target-node": "workspace:^1.1.0",
"@iroha2/crypto-target-web": "workspace:^1.1.0",
"@iroha2/data-model": "workspace:^6.0.0",
"node-fetch": "^3.3.0",
"undici": "^5.20.0"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/test-peer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"cli:config": "pnpm cli config:set-from-client-tests"
},
"devDependencies": {
"@iroha2/client": "workspace:^5.0.0",
"@iroha2/client": "workspace:^6.0.0",
"@iroha2/iroha-source": "workspace:^0.0.0",
"@koa/router": "^10.1.1",
"@types/debug": "^4.1.7",
Expand Down
Loading