From d2bbe968b5807b0d875f964c27a8f94b13c3f65c Mon Sep 17 00:00:00 2001 From: Artem Ryabov Date: Tue, 29 Mar 2022 00:21:06 +0400 Subject: [PATCH] Release branch for 0.1.6 --- CHANGELOG.md | 7 +++++++ .../ton-node/configs/default_config.json | 15 +++++---------- scripts/env.sh | 2 +- 3 files changed, 13 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 188130a..ef5ddd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. +## [0.1.6] – 2022-03-29 + +### Improvements + +- ton-labs-node dependency is fixed to `49a724639a175752f44bcda65d907f2ca3ad97aa` +- Disabled big_messages_storage + ## [0.1.5] – 2022-03-23 ### Improvements diff --git a/docker-compose/ton-node/configs/default_config.json b/docker-compose/ton-node/configs/default_config.json index 6490db2..ed4a6ff 100644 --- a/docker-compose/ton-node/configs/default_config.json +++ b/docker-compose/ton-node/configs/default_config.json @@ -24,8 +24,7 @@ "message_timeout_ms": 100, "topic": "blocks", "attempt_timeout_ms": 100, - "message_max_size": 1000000, - "big_messages_storage": "big-blocks" + "message_max_size": 1000000 }, "message_producer": { "enabled": true, @@ -33,8 +32,7 @@ "message_timeout_ms": 100, "topic": "messages", "attempt_timeout_ms": 100, - "message_max_size": 1000000, - "big_messages_storage": "big-messages" + "message_max_size": 1000000 }, "transaction_producer": { "enabled": true, @@ -42,8 +40,7 @@ "message_timeout_ms": 100, "topic": "transactions", "attempt_timeout_ms": 100, - "message_max_size": 1000000, - "big_messages_storage": "big-transactions" + "message_max_size": 1000000 }, "account_producer": { "enabled": true, @@ -51,8 +48,7 @@ "message_timeout_ms": 100, "topic": "accounts", "attempt_timeout_ms": 100, - "message_max_size": 4000000, - "big_messages_storage": "big-accounts" + "message_max_size": 4000000 }, "block_proof_producer": { "enabled": true, @@ -60,8 +56,7 @@ "message_timeout_ms": 100, "topic": "blocks_signatures", "attempt_timeout_ms": 100, - "message_max_size": 2000000, - "big_messages_storage": "big-block-proofs" + "message_max_size": 2000000 }, "bad_blocks_storage": "bad-blocks" } diff --git a/scripts/env.sh b/scripts/env.sh index ffa04e9..6246664 100755 --- a/scripts/env.sh +++ b/scripts/env.sh @@ -22,4 +22,4 @@ HOSTNAME=$(hostname -f) export TON_Q_SERVER_GITHUB_REPO="https://github.com/tonlabs/ton-q-server" export TON_Q_SERVER_GITHUB_COMMIT_ID="0.48.1" export TON_NODE_GITHUB_REPO="https://github.com/tonlabs/ton-labs-node" -export TON_NODE_GITHUB_COMMIT_ID="3020fa75d73de06433fb162e64dcc830acdf9d6e" +export TON_NODE_GITHUB_COMMIT_ID="49a724639a175752f44bcda65d907f2ca3ad97aa"