diff --git a/CHANGELOG.md b/CHANGELOG.md index 090cedba4a..5d19a6851f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -86,8 +86,10 @@ Changes before Tatum release are not documented in this file. #### Removed -- **BREAKING CHANGE:** Remove deprecated `bin/config-wizard` script (i.e. the `streamr-broker-init` command) +- **BREAKING CHANGE:** Remove deprecated `bin/config-wizard` script (i.e. the `streamr-broker-init` command) (https://github.com/streamr-dev/network/pull/2830) - use `streamr-node-init` command instead +- **BREAKING CHANGE:** Remove deprecated command `streamr-broker` (https://github.com/streamr-dev/network/pull/2881) + - use `streamr-node` command instead #### Fixed diff --git a/package-lock.json b/package-lock.json index b6c1659182..49713238bd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -28838,7 +28838,6 @@ "bin": { "delete-expired-data": "dist/bin/delete-expired-data.js", "entry-point": "dist/bin/entry-point.js", - "streamr-broker": "dist/bin/broker.js", "streamr-node": "dist/bin/streamr-node.js", "streamr-node-init": "dist/bin/streamr-node-init.js" }, diff --git a/packages/node/bin/broker.ts b/packages/node/bin/broker.ts deleted file mode 100644 index 3d77049277..0000000000 --- a/packages/node/bin/broker.ts +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env node -import { Logger } from '@streamr/utils' - -// TODO: remove this file and the package.json entry in the future -// eslint-disable-next-line max-len -const deprecationMessage = 'The command "streamr-broker" is deprecated and will be removed in the future. Please switch to command "streamr-node" instead.' -console.warn(deprecationMessage) -new Logger(module).warn(deprecationMessage) - -// side-effect: runs the command -import './streamr-node' diff --git a/packages/node/package.json b/packages/node/package.json index 2fe70a1ea4..37c525e9d8 100644 --- a/packages/node/package.json +++ b/packages/node/package.json @@ -8,7 +8,6 @@ "directory": "packages/broker" }, "bin": { - "streamr-broker": "dist/bin/broker.js", "streamr-node": "dist/bin/streamr-node.js", "streamr-node-init": "dist/bin/streamr-node-init.js", "delete-expired-data": "dist/bin/delete-expired-data.js",