From d133ffbf1f3265f560d5aaece632820c08c21e0f Mon Sep 17 00:00:00 2001 From: Zeeshan Akram <97m.zeeshan@gmail.com> Date: Tue, 1 Aug 2023 15:18:17 +0000 Subject: [PATCH] bump package versions & update changelog --- distributor-node/CHANGELOG.md | 5 +++++ distributor-node/package.json | 4 ++-- joystreamjs/package.json | 2 +- metadata-protobuf/package.json | 2 +- metadata-protobuf/proto/Storage.proto | 1 - query-node/CHANGELOG.md | 4 ++++ storage-node/CHANGELOG.md | 5 +++++ storage-node/package.json | 4 ++-- 8 files changed, 20 insertions(+), 7 deletions(-) diff --git a/distributor-node/CHANGELOG.md b/distributor-node/CHANGELOG.md index 2a5a428282..cc75d7b4b6 100644 --- a/distributor-node/CHANGELOG.md +++ b/distributor-node/CHANGELOG.md @@ -1,3 +1,8 @@ +### 1.3.0 + +- Updates `operator:set-metadata` CLI command to set distributor-node's operational status along with other metadata. +- Adds `leader:set-node-operational-status` CLI command to set operational status of any distributor-node by Lead. + ### 1.2.2 - **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. diff --git a/distributor-node/package.json b/distributor-node/package.json index 4b143a96b8..549cb8db9d 100644 --- a/distributor-node/package.json +++ b/distributor-node/package.json @@ -1,7 +1,7 @@ { "name": "@joystream/distributor-cli", "description": "Joystream distributor node CLI", - "version": "1.2.2", + "version": "1.3.0", "author": "Joystream contributors", "bin": { "joystream-distributor": "./bin/run" @@ -10,7 +10,7 @@ "dependencies": { "@apollo/client": "^3.2.5", "@elastic/ecs-winston-format": "^1.1.0", - "@joystream/metadata-protobuf": "^2.8.0", + "@joystream/metadata-protobuf": "^2.9.0", "@joystream/opentelemetry": "1.0.0", "@joystream/storage-node-client": "^3.0.0", "@joystream/types": "^2.0.0", diff --git a/joystreamjs/package.json b/joystreamjs/package.json index 45d0307cb0..45504f27e8 100644 --- a/joystreamjs/package.json +++ b/joystreamjs/package.json @@ -41,7 +41,7 @@ "generate:all": "yarn generate:schema-typings" }, "dependencies": { - "@joystream/metadata-protobuf": "^2.8.1", + "@joystream/metadata-protobuf": "^2.9.0", "@joystream/types": "^2.0.0", "@polkadot/util-crypto": "9.5.1", "axios": "^1.2.1", diff --git a/metadata-protobuf/package.json b/metadata-protobuf/package.json index 90c614ef74..0692180b56 100644 --- a/metadata-protobuf/package.json +++ b/metadata-protobuf/package.json @@ -1,6 +1,6 @@ { "name": "@joystream/metadata-protobuf", - "version": "2.8.1", + "version": "2.9.0", "description": "Joystream Metadata Protobuf Library", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/metadata-protobuf/proto/Storage.proto b/metadata-protobuf/proto/Storage.proto index 93bece2cbd..8313dfa25a 100644 --- a/metadata-protobuf/proto/Storage.proto +++ b/metadata-protobuf/proto/Storage.proto @@ -16,7 +16,6 @@ message StorageBucketOperatorMetadata { optional NodeLocationMetadata location = 2; // Information about node's phisical location (providing {} will unset current value) optional string extra = 3; // Additional information about the node / node operator optional NodeOperationalStatusMetadata operational_status = 4; // Node's operational status to set - } message DistributionBucketOperatorMetadata { diff --git a/query-node/CHANGELOG.md b/query-node/CHANGELOG.md index 05a4efd9d6..c84fd500c2 100644 --- a/query-node/CHANGELOG.md +++ b/query-node/CHANGELOG.md @@ -1,3 +1,7 @@ +### 1.3.0 + +- Updates mappings to process `NodeOperationalStatusMetadata` protobuf message. This metaprotocol message enables both storage/distribution workers & leads to set the operational status of the nodes. + ### 1.2.2 - 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. diff --git a/storage-node/CHANGELOG.md b/storage-node/CHANGELOG.md index e1ba1a017a..8138e2095f 100644 --- a/storage-node/CHANGELOG.md +++ b/storage-node/CHANGELOG.md @@ -1,3 +1,8 @@ +### 3.8.0 + +- Updates `operator:set-metadata` CLI command to set storage-node's operational status along with other metadata. +- Adds `leader:set-node-operational-status` CLI command to set operational status of any storage-node by Lead. + ### 3.7.0 - 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. diff --git a/storage-node/package.json b/storage-node/package.json index 4790b7a64e..d05c43ed00 100644 --- a/storage-node/package.json +++ b/storage-node/package.json @@ -1,7 +1,7 @@ { "name": "storage-node", "description": "Joystream storage subsystem.", - "version": "3.7.0", + "version": "3.8.0", "author": "Joystream contributors", "bin": { "storage-node": "./bin/run" @@ -10,7 +10,7 @@ "dependencies": { "@apollo/client": "^3.3.21", "@elastic/ecs-winston-format": "^1.3.1", - "@joystream/metadata-protobuf": "^2.8.0", + "@joystream/metadata-protobuf": "^2.9.0", "@joystream/opentelemetry": "1.0.0", "@joystream/types": "^2.0.0", "@oclif/command": "^1",