Skip to content

Commit d133ffb

Browse files
committed
bump package versions & update changelog
1 parent b07bbec commit d133ffb

8 files changed

Lines changed: 20 additions & 7 deletions

File tree

distributor-node/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### 1.3.0
2+
3+
- Updates `operator:set-metadata` CLI command to set distributor-node's operational status along with other metadata.
4+
- Adds `leader:set-node-operational-status` CLI command to set operational status of any distributor-node by Lead.
5+
16
### 1.2.2
27

38
- **FIX** `sendExtrinsic`: The send extrinsic function (which is a wrapper around PolkadotJS `tx.signAndSend` function) has been fixed to handle the case when tx has been finalized before the callback registered in `tx.signAndSend` would run.

distributor-node/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@joystream/distributor-cli",
33
"description": "Joystream distributor node CLI",
4-
"version": "1.2.2",
4+
"version": "1.3.0",
55
"author": "Joystream contributors",
66
"bin": {
77
"joystream-distributor": "./bin/run"
@@ -10,7 +10,7 @@
1010
"dependencies": {
1111
"@apollo/client": "^3.2.5",
1212
"@elastic/ecs-winston-format": "^1.1.0",
13-
"@joystream/metadata-protobuf": "^2.8.0",
13+
"@joystream/metadata-protobuf": "^2.9.0",
1414
"@joystream/opentelemetry": "1.0.0",
1515
"@joystream/storage-node-client": "^3.0.0",
1616
"@joystream/types": "^2.0.0",

joystreamjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"generate:all": "yarn generate:schema-typings"
4242
},
4343
"dependencies": {
44-
"@joystream/metadata-protobuf": "^2.8.1",
44+
"@joystream/metadata-protobuf": "^2.9.0",
4545
"@joystream/types": "^2.0.0",
4646
"@polkadot/util-crypto": "9.5.1",
4747
"axios": "^1.2.1",

metadata-protobuf/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@joystream/metadata-protobuf",
3-
"version": "2.8.1",
3+
"version": "2.9.0",
44
"description": "Joystream Metadata Protobuf Library",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",

metadata-protobuf/proto/Storage.proto

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ message StorageBucketOperatorMetadata {
1616
optional NodeLocationMetadata location = 2; // Information about node's phisical location (providing {} will unset current value)
1717
optional string extra = 3; // Additional information about the node / node operator
1818
optional NodeOperationalStatusMetadata operational_status = 4; // Node's operational status to set
19-
2019
}
2120

2221
message DistributionBucketOperatorMetadata {

query-node/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 1.3.0
2+
3+
- Updates mappings to process `NodeOperationalStatusMetadata` protobuf message. This metaprotocol message enables both storage/distribution workers & leads to set the operational status of the nodes.
4+
15
### 1.2.2
26

37
- Integrates OpenTelemetry API/SDK with Query Node's Graphql Server for exporting improved tracing logs & metrics to Elasticsearch. Adds `./start-elasticsearch-stack.sh` script to bootstrap elasticsearch services (Elasticsearch + Kibana + APM Server) with all the required configurations.

storage-node/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### 3.8.0
2+
3+
- Updates `operator:set-metadata` CLI command to set storage-node's operational status along with other metadata.
4+
- Adds `leader:set-node-operational-status` CLI command to set operational status of any storage-node by Lead.
5+
16
### 3.7.0
27

38
- Updates `leader:update-bag` CLI command to `leader:update-bags` to accept multiple bag ids as input. This allows the command to be used to update storage buckets of multiple bags in a single batched transaction.

storage-node/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "storage-node",
33
"description": "Joystream storage subsystem.",
4-
"version": "3.7.0",
4+
"version": "3.8.0",
55
"author": "Joystream contributors",
66
"bin": {
77
"storage-node": "./bin/run"
@@ -10,7 +10,7 @@
1010
"dependencies": {
1111
"@apollo/client": "^3.3.21",
1212
"@elastic/ecs-winston-format": "^1.3.1",
13-
"@joystream/metadata-protobuf": "^2.8.0",
13+
"@joystream/metadata-protobuf": "^2.9.0",
1414
"@joystream/opentelemetry": "1.0.0",
1515
"@joystream/types": "^2.0.0",
1616
"@oclif/command": "^1",

0 commit comments

Comments
 (0)