From 603f447966ba2be8ff79175d77dd6b33b360c7c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mariusz=20Roli=C5=84ski?= Date: Fri, 16 Jan 2026 12:42:44 +0100 Subject: [PATCH 1/4] Fix incorrect header image URL --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b24fb803b7..7197074c3b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@

- Streamr + Streamr

From 8ec41a2e30fe8d8ca542c7ae40dca92086a82a6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mariusz=20Roli=C5=84ski?= Date: Fri, 16 Jan 2026 12:52:22 +0100 Subject: [PATCH 2/4] Update other outdated URLs --- docs/docs/guides/use-any-language-or-device.md | 4 ++-- docs/docs/usage/cli-tool.md | 2 +- packages/cli-tools/README.md | 4 ++-- packages/node/README.md | 2 +- packages/node/plugins.md | 4 ++-- packages/node/src/broker.ts | 2 +- packages/sdk/README.md | 4 ++-- packages/trackerless-network/package.json | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) 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 @@

- Streamr + Streamr

@@ -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 @@

- Streamr + Streamr

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 { diff --git a/packages/sdk/README.md b/packages/sdk/README.md index 4e13c84e0a..1acfba1062 100644 --- a/packages/sdk/README.md +++ b/packages/sdk/README.md @@ -1,6 +1,6 @@

- Streamr + Streamr

@@ -9,7 +9,7 @@ ![latest npm package version](https://img.shields.io/npm/v/@streamr/sdk?label=latest) -![GitHub stars](https://img.shields.io/github/stars/streamr-dev/network-monorepo?style=social) +![GitHub stars](https://img.shields.io/github/stars/streamr-dev/network?style=social) [![Discord Chat](https://img.shields.io/discord/801574432350928907.svg?label=Discord&logo=Discord&colorB=7289da)](https://discord.gg/FVtAph9cvz) The Streamr SDK allows you to interact with the [Streamr Network](https://streamr.network) from JavaScript-based environments, such as browsers and [Node.js](https://nodejs.org). This library contains convenience functions for creating and managing streams on the Streamr Network. diff --git a/packages/trackerless-network/package.json b/packages/trackerless-network/package.json index 35fdda4c22..d78643aaff 100644 --- a/packages/trackerless-network/package.json +++ b/packages/trackerless-network/package.json @@ -4,7 +4,7 @@ "description": "Minimal and extendable implementation of the Streamr Network node.", "repository": { "type": "git", - "url": "git+https://github.com/streamr-dev/network-monorepo.git", + "url": "git+https://github.com/streamr-dev/network.git", "directory": "packages/trackerless-network" }, "main": "dist/src/exports.js", From fec3f8bfed6dbb6d2f3c2685e80b9c814156f7db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mariusz=20Roli=C5=84ski?= Date: Fri, 16 Jan 2026 12:58:44 +0100 Subject: [PATCH 3/4] Update CHANGELOG --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 18e8e4d360..53c96d5ae2 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` + ### @streamr/sdk #### Added From ef73f9f3fe8861046f187139660762a134423bfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mariusz=20Roli=C5=84ski?= Date: Fri, 16 Jan 2026 13:00:14 +0100 Subject: [PATCH 4/4] Incl. PR # --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 53c96d5ae2..4f13c41b1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,7 @@ Changes before Tatum release are not documented in this file. #### Fixed -- Fix outdated GitHub URLs referencing old `network-monorepo` repository instead of `network` +- Fix outdated GitHub URLs referencing old `network-monorepo` repository instead of `network` (https://github.com/streamr-dev/network/pull/3348) ### @streamr/sdk