diff --git a/CHANGELOG.md b/CHANGELOG.md index 18e8e4d360..4f13c41b1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,12 @@ Changes before Tatum release are not documented in this file. ## [Unreleased] +### General + +#### Fixed + +- Fix outdated GitHub URLs referencing old `network-monorepo` repository instead of `network` (https://github.com/streamr-dev/network/pull/3348) + ### @streamr/sdk #### Added diff --git a/README.md b/README.md index b24fb803b7..7197074c3b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@
diff --git a/docs/docs/guides/use-any-language-or-device.md b/docs/docs/guides/use-any-language-or-device.md index fc6970a7ce..e73363912f 100644 --- a/docs/docs/guides/use-any-language-or-device.md +++ b/docs/docs/guides/use-any-language-or-device.md @@ -148,7 +148,7 @@ For URL authentication, for example `mqtt://"":ApiKey@1.2.3.4:1883`. Some MQTT l :::note If you're connecting to the MQTT interface over the open internet, please remember to make sure the port is open. -Technical information about the plugin interface can be found in the [Streamr node plugin docs](https://github.com/streamr-dev/network-monorepo/blob/main/packages/broker/plugins.md). +Technical information about the plugin interface can be found in the [Streamr node plugin docs](https://github.com/streamr-dev/network/blob/main/packages/node/plugins.md). ::: #### Start pushing data @@ -168,7 +168,7 @@ await mqttClient.publish(StreamId, JSON.stringify({ foo: bar })) If everything has been configured correctly so far then the data should now be flowing to the Streamr node, which will receive and sign the data, then publish it to the to the Streamr Network stream. -At this point, you could use the Streamr [CLI tool](https://github.com/streamr-dev/network-monorepo/tree/main/packages/cli-tools) to subscribe to stream and observe the message flow: +At this point, you could use the Streamr [CLI tool](https://github.com/streamr-dev/network/tree/main/packages/cli-tools) to subscribe to stream and observe the message flow: ```shell $ npm install -g @streamr/cli-tools diff --git a/docs/docs/usage/cli-tool.md b/docs/docs/usage/cli-tool.md index afe518978d..081d9614b3 100644 --- a/docs/docs/usage/cli-tool.md +++ b/docs/docs/usage/cli-tool.md @@ -196,7 +196,7 @@ The `--config` argument tries to read a configuration file from the current work If no `--config` argument is specified, default settings are read from `~/.streamr/config/default.json`, if that file exists. -The configuration file is a JSON. It has one root-level property `client`, which contains any configuration properties for the [streamr-sdk-javascript](https://github.com/streamr-dev/network-monorepo/blob/main/packages/client/) client. Example: +The configuration file is a JSON. It has one root-level property `client`, which contains any configuration properties for the [streamr-sdk-javascript](https://github.com/streamr-dev/network/blob/main/packages/sdk/) client. Example: ``` { diff --git a/packages/cli-tools/README.md b/packages/cli-tools/README.md index 97e5769916..4b1fabd1b7 100644 --- a/packages/cli-tools/README.md +++ b/packages/cli-tools/README.md @@ -1,6 +1,6 @@ @@ -175,7 +175,7 @@ The `--config` argument tries to read a configuration file from the current work If no `--config` argument is specified, default settings are read from `~/.streamr/config/default.json`, if that file exists. -The configuration file is a JSON. It has one root-level property `client`, which contains any configuration properties for the [@streamr/sdk](https://github.com/streamr-dev/network-monorepo/blob/main/packages/client/). Example: +The configuration file is a JSON. It has one root-level property `client`, which contains any configuration properties for the [@streamr/sdk](https://github.com/streamr-dev/network/blob/main/packages/sdk/). Example: ``` { "client": { diff --git a/packages/node/README.md b/packages/node/README.md index 9400e804b7..f3cf14dd79 100644 --- a/packages/node/README.md +++ b/packages/node/README.md @@ -1,6 +1,6 @@ diff --git a/packages/node/plugins.md b/packages/node/plugins.md index eb7d88bd2b..26d21e45e5 100644 --- a/packages/node/plugins.md +++ b/packages/node/plugins.md @@ -122,7 +122,7 @@ If you want to publish or subscribe to a specific partition of a stream, you can - `/streams/:streamId/subscribe?partitions=0,2,5`: subscribes to given partition numbers - `/streams/:streamId/publish?partition=2`: publishes to given partition number -- `/streams/:streamId/publish?partitionKey=foo`: use the given key to calculate the partition number, [see JS-client for details](https://github.com/streamr-dev/network-monorepo/blob/main/packages/client/README.md#publishing-to-partitioned-streams)) +- `/streams/:streamId/publish?partitionKey=foo`: use the given key to calculate the partition number, [see JS-client for details](https://github.com/streamr-dev/network/blob/main/packages/sdk/README.md#publishing-to-partitioned-streams)) - `/streams/:streamId/publish?partitionKeyField=customerId`: use the given field in a JSON to choose the `paritionKey` (e.g. `{ "customerId": "foo", ... }` -> `paritionKey` is `foo`) By default, partition `0` is selected. @@ -292,7 +292,7 @@ http://localhost:7171/streams/foo.eth%2fbar The endpoint supports the following optional query parameters: - `timestamp` can be used to set the message timestamp explicitly. The timestamp should be passed in ISO-8601 string (e.g. `2001-02-03T04:05:06Z`), or as milliseconds since epoch, e.g. `1234567890000` -- `partition` (explicit partition number) or `partitionKey` (a string which used to calculate the partition number, [see JS-client for details](https://github.com/streamr-dev/network-monorepo/blob/main/packages/client/README.md#publishing-to-partitioned-streams)). The default (in case neither is provided) is to select a random partition for each message. +- `partition` (explicit partition number) or `partitionKey` (a string which used to calculate the partition number, [see JS-client for details](https://github.com/streamr-dev/network/blob/main/packages/sdk/README.md#publishing-to-partitioned-streams)). The default (in case neither is provided) is to select a random partition for each message. #### Port diff --git a/packages/node/src/broker.ts b/packages/node/src/broker.ts index bd8621a748..3dd4aa90c1 100644 --- a/packages/node/src/broker.ts +++ b/packages/node/src/broker.ts @@ -66,7 +66,7 @@ export const createBroker = async (configWithoutDefaults: Config): Promise