Skip to content

Commit

Permalink
bump package versions & update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
zeeshanakram3 committed Aug 1, 2023
1 parent b07bbec commit d133ffb
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 7 deletions.
5 changes: 5 additions & 0 deletions distributor-node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions distributor-node/package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion joystreamjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion metadata-protobuf/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
1 change: 0 additions & 1 deletion metadata-protobuf/proto/Storage.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
4 changes: 4 additions & 0 deletions query-node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
5 changes: 5 additions & 0 deletions storage-node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions storage-node/package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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",
Expand Down

0 comments on commit d133ffb

Please sign in to comment.