From b5905b1987bf943e3b6ecc4100a22a65e9632e27 Mon Sep 17 00:00:00 2001 From: Sameer Kumar Subudhi Date: Thu, 4 Apr 2024 13:12:50 +0200 Subject: [PATCH] :pencil: Update documentation --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- .../ROOT/pages/configuration/index.adoc | 4 +- docs/antora/modules/ROOT/pages/index.adoc | 6 +- .../modules/ROOT/pages/management/docker.adoc | 24 ++-- .../modules/ROOT/pages/management/source.adoc | 110 +++++++++--------- .../modules/ROOT/pages/setup/docker.adoc | 2 +- .../modules/ROOT/pages/setup/source.adoc | 2 +- docs/redis_authentication.md | 2 +- .../apis/http-exports/swagger/apiJson.json | 2 +- .../apis/http-version3/swagger/apiJson.json | 2 +- services/gateway/tests/constants/utils.js | 2 +- 11 files changed, 78 insertions(+), 80 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 4f67a641ea..44fe3e062f 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -4,7 +4,7 @@ about: Create a report to help us improve title: '' labels: 'type: bug' assignees: '' -projects: 'Lisk Service Version 0.7.0' +projects: 'Lisk Service Version 0.7' status: 'Backlog' --- diff --git a/docs/antora/modules/ROOT/pages/configuration/index.adoc b/docs/antora/modules/ROOT/pages/configuration/index.adoc index 577d8daae8..ceed08825c 100644 --- a/docs/antora/modules/ROOT/pages/configuration/index.adoc +++ b/docs/antora/modules/ROOT/pages/configuration/index.adoc @@ -15,7 +15,7 @@ Muhammad Talha :url_pm2: https://pm2.keymetrics.io/ //TODO: Update the URL to point to the `main` branch once we make the release in production. -:url_config_file: https://github.com/LiskHQ/lisk-service/blob/release/0.7.0/ecosystem.config.js +:url_config_file: https://github.com/LiskHQ/lisk-service/blob/release/0.7.7/ecosystem.config.js :url_lisk_service_repo: https://github.com/LiskHQ/lisk-service :url_faq: https://moleculer.services/docs/0.14/faq.html#Why-am-I-getting-502-Bad-Gateway-when-api-gateway-is-behind-ALB-on-AWS @@ -1452,5 +1452,3 @@ module.exports = { }; ---- ==== - - diff --git a/docs/antora/modules/ROOT/pages/index.adoc b/docs/antora/modules/ROOT/pages/index.adoc index 18dce3aae3..5ab08ec750 100644 --- a/docs/antora/modules/ROOT/pages/index.adoc +++ b/docs/antora/modules/ROOT/pages/index.adoc @@ -26,10 +26,10 @@ Mona Bärenfänger :url_services_directory: https://github.com/LiskHQ/lisk-service/tree/development/services :url_app_registry: https://github.com/LiskHQ/app-registry :url_dynamic_fee: https://github.com/LiskHQ/lips/blob/main/proposals/lip-0013.md -// :url_http_api: https://github.com/LiskHQ/lisk-service/blob/v0.7.0-rc.2/docs/api/version3.md +// :url_http_api: https://github.com/LiskHQ/lisk-service/blob/v0.7.7/docs/api/version3.md :url_http_api: {lisk-docs}api/lisk-service-http.adoc -:url_websocket_api: https://github.com/LiskHQ/lisk-service/blob/v0.7.0-rc.2/docs/api/version3.md -:url_subscribe_api: https://github.com/LiskHQ/lisk-service/blob/v0.7.0-rc.2/docs/api/websocket_subscribe_api.md +:url_websocket_api: https://github.com/LiskHQ/lisk-service/blob/v0.7.7/docs/api/version3.md +:url_subscribe_api: https://github.com/LiskHQ/lisk-service/blob/v0.7.7/docs/api/websocket_subscribe_api.md :url_postman: https://www.postman.com/ :url_curl: https://curl.se/ :url_httpie: https://httpie.io/ diff --git a/docs/antora/modules/ROOT/pages/management/docker.adoc b/docs/antora/modules/ROOT/pages/management/docker.adoc index aabc359c51..94b6dad65c 100644 --- a/docs/antora/modules/ROOT/pages/management/docker.adoc +++ b/docs/antora/modules/ROOT/pages/management/docker.adoc @@ -274,49 +274,49 @@ NOTE: In case the database needs to be flushed please execute the `make down` co . Checkout the version with *`git checkout `* + ---- -git checkout v0.7.0 +git checkout v0.7.7 ---- . Update `docker-compose.yml` to download the specific image versions from the DockerHub as shown below. -Update specified images with the desired version, for example `0.7.0`. +Update specified images with the desired version, for example `0.7.7`. + .docker-compose.yml [source,yaml] ---- blockchain-app-registry: - image: lisk/service_blockchain_app_registry:0.7.0 + image: lisk/service_blockchain_app_registry:0.7.7 ... blockchain-connector: - image: lisk/service_blockchain_connector:0.7.0 + image: lisk/service_blockchain_connector:0.7.7 ... blockchain-indexer: - image: lisk/service_blockchain_indexer:0.7.0 + image: lisk/service_blockchain_indexer:0.7.7 ... blockchain-coordinator: - image: lisk/service_blockchain_coordinator:0.7.0 + image: lisk/service_blockchain_coordinator:0.7.7 ... transaction-statistics: - image: lisk/service_transaction_statistics:0.7.0 + image: lisk/service_transaction_statistics:0.7.7 ... fee-estimator: - image: lisk/service_fee_estimator:0.7.0 + image: lisk/service_fee_estimator:0.7.7 ... gateway: - image: lisk/service_gateway:0.7.0 + image: lisk/service_gateway:0.7.7 ... market: - image: lisk/service_market:0.7.0 + image: lisk/service_market:0.7.7 ... export: - image: lisk/service_export:0.7.0 + image: lisk/service_export:0.7.7 ---- @@ -342,7 +342,7 @@ NOTE: In case the database needs to be flushed please execute the `make down` co . Checkout the version with *`git checkout `* + ---- -git checkout v0.7.0 +git checkout v0.7.7 ---- . Build the required updated Docker images diff --git a/docs/antora/modules/ROOT/pages/management/source.adoc b/docs/antora/modules/ROOT/pages/management/source.adoc index 7d858d9cd7..de3b1b85bc 100644 --- a/docs/antora/modules/ROOT/pages/management/source.adoc +++ b/docs/antora/modules/ROOT/pages/management/source.adoc @@ -61,15 +61,15 @@ pm2 start ecosystem.config.js ┌----------------------------------------------------------------------------------------------------------------------------------------------------------------------------┐ │ id │ name │ namespace │ version │ mode │ pid │ uptime │ ↺ │ status │ cpu │ mem │ user │ watching │ ├----------------------------------------------------------------------------------------------------------------------------------------------------------------------------┤ -│ 1 │ lisk-service-blockchain-app-registry │ default │ 0.7.0-… │ fork │ 33328 │ 0s │ 16 │ online │ 0% │ 65.5mb │ XYZ │ disabled │ -│ 2 │ lisk-service-blockchain-connector │ default │ 0.7.0-… │ fork │ 33331 │ 0s │ 0 │ online │ 0% │ 63.8mb │ XYZ │ disabled │ -│ 4 │ lisk-service-blockchain-coordinator │ default │ 0.7.0-… │ fork │ 33341 │ 0s │ 0 │ online │ 0% │ 54.1mb │ XYZ │ disabled │ -│ 3 │ lisk-service-blockchain-indexer │ default │ 0.7.0-… │ fork │ 33338 │ 0s │ 16 │ online │ 0% │ 54.3mb │ XYZ │ disabled │ -│ 8 │ lisk-service-export │ default │ 0.7.0-… │ fork │ 33355 │ 0s │ 15 │ online │ 0% │ 14.1mb │ XYZ │ disabled │ -│ 5 │ lisk-service-fee-estimator │ default │ 0.7.0-… │ fork │ 33346 │ 0s │ 15 │ online │ 0% │ 46.9mb │ XYZ │ disabled │ -│ 0 │ lisk-service-gateway │ default │ 0.7.0-… │ fork │ 33326 │ 0s │ 15 │ online │ 0% │ 65.6mb │ XYZ │ disabled │ -│ 7 │ lisk-service-market │ default │ 0.7.0-… │ fork │ 33351 │ 0s │ 15 │ online │ 0% │ 36.9mb │ XYZ │ disabled │ -│ 6 │ lisk-service-transaction-statistics │ default │ 0.7.0-… │ fork │ 33348 │ 0s │ 15 │ online │ 0% │ 43.5mb │ XYZ │ disabled │ +│ 1 │ lisk-service-blockchain-app-registry │ default │ 0.7.7 │ fork │ 33328 │ 0s │ 16 │ online │ 0% │ 65.5mb │ XYZ │ disabled │ +│ 2 │ lisk-service-blockchain-connector │ default │ 0.7.7 │ fork │ 33331 │ 0s │ 0 │ online │ 0% │ 63.8mb │ XYZ │ disabled │ +│ 4 │ lisk-service-blockchain-coordinator │ default │ 0.7.7 │ fork │ 33341 │ 0s │ 0 │ online │ 0% │ 54.1mb │ XYZ │ disabled │ +│ 3 │ lisk-service-blockchain-indexer │ default │ 0.7.7 │ fork │ 33338 │ 0s │ 16 │ online │ 0% │ 54.3mb │ XYZ │ disabled │ +│ 8 │ lisk-service-export │ default │ 0.7.7 │ fork │ 33355 │ 0s │ 15 │ online │ 0% │ 14.1mb │ XYZ │ disabled │ +│ 5 │ lisk-service-fee-estimator │ default │ 0.7.7 │ fork │ 33346 │ 0s │ 15 │ online │ 0% │ 46.9mb │ XYZ │ disabled │ +│ 0 │ lisk-service-gateway │ default │ 0.7.7 │ fork │ 33326 │ 0s │ 15 │ online │ 0% │ 65.6mb │ XYZ │ disabled │ +│ 7 │ lisk-service-market │ default │ 0.7.7 │ fork │ 33351 │ 0s │ 15 │ online │ 0% │ 36.9mb │ XYZ │ disabled │ +│ 6 │ lisk-service-transaction-statistics │ default │ 0.7.7 │ fork │ 33348 │ 0s │ 15 │ online │ 0% │ 43.5mb │ XYZ │ disabled │ └----------------------------------------------------------------------------------------------------------------------------------------------------------------------------┘ ---- ==== @@ -90,15 +90,15 @@ pm2 list ┌----------------------------------------------------------------------------------------------------------------------------------------------------------------------------┐ │ id │ name │ namespace │ version │ mode │ pid │ uptime │ ↺ │ status │ cpu │ mem │ user │ watching │ ├----------------------------------------------------------------------------------------------------------------------------------------------------------------------------┤ -│ 1 │ lisk-service-blockchain-app-registry │ default │ 0.7.0-… │ fork │ 33328 │ 0s │ 16 │ online │ 0% │ 65.5mb │ XYZ │ disabled │ -│ 2 │ lisk-service-blockchain-connector │ default │ 0.7.0-… │ fork │ 33331 │ 0s │ 0 │ online │ 0% │ 63.8mb │ XYZ │ disabled │ -│ 4 │ lisk-service-blockchain-coordinator │ default │ 0.7.0-… │ fork │ 33341 │ 0s │ 0 │ online │ 0% │ 54.1mb │ XYZ │ disabled │ -│ 3 │ lisk-service-blockchain-indexer │ default │ 0.7.0-… │ fork │ 33338 │ 0s │ 16 │ online │ 0% │ 54.3mb │ XYZ │ disabled │ -│ 8 │ lisk-service-export │ default │ 0.7.0-… │ fork │ 33355 │ 0s │ 15 │ online │ 0% │ 14.1mb │ XYZ │ disabled │ -│ 5 │ lisk-service-fee-estimator │ default │ 0.7.0-… │ fork │ 33346 │ 0s │ 15 │ online │ 0% │ 46.9mb │ XYZ │ disabled │ -│ 0 │ lisk-service-gateway │ default │ 0.7.0-… │ fork │ 33326 │ 0s │ 15 │ online │ 0% │ 65.6mb │ XYZ │ disabled │ -│ 7 │ lisk-service-market │ default │ 0.7.0-… │ fork │ 33351 │ 0s │ 15 │ online │ 0% │ 36.9mb │ XYZ │ disabled │ -│ 6 │ lisk-service-transaction-statistics │ default │ 0.7.0-… │ fork │ 33348 │ 0s │ 15 │ online │ 0% │ 43.5mb │ XYZ │ disabled │ +│ 1 │ lisk-service-blockchain-app-registry │ default │ 0.7.7 │ fork │ 33328 │ 0s │ 16 │ online │ 0% │ 65.5mb │ XYZ │ disabled │ +│ 2 │ lisk-service-blockchain-connector │ default │ 0.7.7 │ fork │ 33331 │ 0s │ 0 │ online │ 0% │ 63.8mb │ XYZ │ disabled │ +│ 4 │ lisk-service-blockchain-coordinator │ default │ 0.7.7 │ fork │ 33341 │ 0s │ 0 │ online │ 0% │ 54.1mb │ XYZ │ disabled │ +│ 3 │ lisk-service-blockchain-indexer │ default │ 0.7.7 │ fork │ 33338 │ 0s │ 16 │ online │ 0% │ 54.3mb │ XYZ │ disabled │ +│ 8 │ lisk-service-export │ default │ 0.7.7 │ fork │ 33355 │ 0s │ 15 │ online │ 0% │ 14.1mb │ XYZ │ disabled │ +│ 5 │ lisk-service-fee-estimator │ default │ 0.7.7 │ fork │ 33346 │ 0s │ 15 │ online │ 0% │ 46.9mb │ XYZ │ disabled │ +│ 0 │ lisk-service-gateway │ default │ 0.7.7 │ fork │ 33326 │ 0s │ 15 │ online │ 0% │ 65.6mb │ XYZ │ disabled │ +│ 7 │ lisk-service-market │ default │ 0.7.7 │ fork │ 33351 │ 0s │ 15 │ online │ 0% │ 36.9mb │ XYZ │ disabled │ +│ 6 │ lisk-service-transaction-statistics │ default │ 0.7.7 │ fork │ 33348 │ 0s │ 15 │ online │ 0% │ 43.5mb │ XYZ │ disabled │ └----------------------------------------------------------------------------------------------------------------------------------------------------------------------------┘ ---- ==== @@ -183,15 +183,15 @@ pm2 stop ecosystem.config.js ┌------------------------------------------------------------------------------------------------------------------------------------------------------------------------┐ │ id │ name │ namespace │ version │ mode │ pid │ uptime │ ↺ │ status │ cpu │ mem │ user │ watching │ ├------------------------------------------------------------------------------------------------------------------------------------------------------------------------┤ -│ 1 │ lisk-service-blockchain-app-registry │ default │ 0.7.0-… │ fork │ 0 │ 0 │ 32 │ stopped │ 0% │ 0b │ XYZ │ disabled │ -│ 2 │ lisk-service-blockchain-connector │ default │ 0.7.0-… │ fork │ 0 │ 0 │ 0 │ stopped │ 0% │ 0b │ XYZ │ disabled │ -│ 4 │ lisk-service-blockchain-coordinator │ default │ 0.7.0-… │ fork │ 0 │ 0 │ 0 │ stopped │ 0% │ 0b │ XYZ │ disabled │ -│ 3 │ lisk-service-blockchain-indexer │ default │ 0.7.0-… │ fork │ 0 │ 0 │ 32 │ stopped │ 0% │ 0b │ XYZ │ disabled │ -│ 8 │ lisk-service-export │ default │ 0.7.0-… │ fork │ 0 │ 0 │ 30 │ stopped │ 0% │ 0b │ XYZ │ disabled │ -│ 5 │ lisk-service-fee-estimator │ default │ 0.7.0-… │ fork │ 0 │ 0 │ 30 │ stopped │ 0% │ 0b │ XYZ │ disabled │ -│ 0 │ lisk-service-gateway │ default │ 0.7.0-… │ fork │ 0 │ 0 │ 30 │ stopped │ 0% │ 0b │ XYZ │ disabled │ -│ 7 │ lisk-service-market │ default │ 0.7.0-… │ fork │ 0 │ 0 │ 30 │ stopped │ 0% │ 0b │ XYZ │ disabled │ -│ 6 │ lisk-service-transaction-statistics │ default │ 0.7.0-… │ fork │ 0 │ 0 │ 30 │ stopped │ 0% │ 0b │ XYZ │ disabled │ +│ 1 │ lisk-service-blockchain-app-registry │ default │ 0.7.7 │ fork │ 0 │ 0 │ 32 │ stopped │ 0% │ 0b │ XYZ │ disabled │ +│ 2 │ lisk-service-blockchain-connector │ default │ 0.7.7 │ fork │ 0 │ 0 │ 0 │ stopped │ 0% │ 0b │ XYZ │ disabled │ +│ 4 │ lisk-service-blockchain-coordinator │ default │ 0.7.7 │ fork │ 0 │ 0 │ 0 │ stopped │ 0% │ 0b │ XYZ │ disabled │ +│ 3 │ lisk-service-blockchain-indexer │ default │ 0.7.7 │ fork │ 0 │ 0 │ 32 │ stopped │ 0% │ 0b │ XYZ │ disabled │ +│ 8 │ lisk-service-export │ default │ 0.7.7 │ fork │ 0 │ 0 │ 30 │ stopped │ 0% │ 0b │ XYZ │ disabled │ +│ 5 │ lisk-service-fee-estimator │ default │ 0.7.7 │ fork │ 0 │ 0 │ 30 │ stopped │ 0% │ 0b │ XYZ │ disabled │ +│ 0 │ lisk-service-gateway │ default │ 0.7.7 │ fork │ 0 │ 0 │ 30 │ stopped │ 0% │ 0b │ XYZ │ disabled │ +│ 7 │ lisk-service-market │ default │ 0.7.7 │ fork │ 0 │ 0 │ 30 │ stopped │ 0% │ 0b │ XYZ │ disabled │ +│ 6 │ lisk-service-transaction-statistics │ default │ 0.7.7 │ fork │ 0 │ 0 │ 30 │ stopped │ 0% │ 0b │ XYZ │ disabled │ └------------------------------------------------------------------------------------------------------------------------------------------------------------------------┘ ---- ==== @@ -232,15 +232,15 @@ pm2 restart ecosystem.config.js ┌----------------------------------------------------------------------------------------------------------------------------------------------------------------------------┐ │ id │ name │ namespace │ version │ mode │ pid │ uptime │ ↺ │ status │ cpu │ mem │ user │ watching │ ├----------------------------------------------------------------------------------------------------------------------------------------------------------------------------┤ -│ 1 │ lisk-service-blockchain-app-registry │ default │ 0.7.0-… │ fork │ 33328 │ 0s │ 16 │ online │ 0% │ 65.5mb │ XYZ │ disabled │ -│ 2 │ lisk-service-blockchain-connector │ default │ 0.7.0-… │ fork │ 33331 │ 0s │ 0 │ online │ 0% │ 63.8mb │ XYZ │ disabled │ -│ 4 │ lisk-service-blockchain-coordinator │ default │ 0.7.0-… │ fork │ 33341 │ 0s │ 0 │ online │ 0% │ 54.1mb │ XYZ │ disabled │ -│ 3 │ lisk-service-blockchain-indexer │ default │ 0.7.0-… │ fork │ 33338 │ 0s │ 16 │ online │ 0% │ 54.3mb │ XYZ │ disabled │ -│ 8 │ lisk-service-export │ default │ 0.7.0-… │ fork │ 33355 │ 0s │ 15 │ online │ 0% │ 14.1mb │ XYZ │ disabled │ -│ 5 │ lisk-service-fee-estimator │ default │ 0.7.0-… │ fork │ 33346 │ 0s │ 15 │ online │ 0% │ 46.9mb │ XYZ │ disabled │ -│ 0 │ lisk-service-gateway │ default │ 0.7.0-… │ fork │ 33326 │ 0s │ 15 │ online │ 0% │ 65.6mb │ XYZ │ disabled │ -│ 7 │ lisk-service-market │ default │ 0.7.0-… │ fork │ 33351 │ 0s │ 15 │ online │ 0% │ 36.9mb │ XYZ │ disabled │ -│ 6 │ lisk-service-transaction-statistics │ default │ 0.7.0-… │ fork │ 33348 │ 0s │ 15 │ online │ 0% │ 43.5mb │ XYZ │ disabled │ +│ 1 │ lisk-service-blockchain-app-registry │ default │ 0.7.7 │ fork │ 33328 │ 0s │ 16 │ online │ 0% │ 65.5mb │ XYZ │ disabled │ +│ 2 │ lisk-service-blockchain-connector │ default │ 0.7.7 │ fork │ 33331 │ 0s │ 0 │ online │ 0% │ 63.8mb │ XYZ │ disabled │ +│ 4 │ lisk-service-blockchain-coordinator │ default │ 0.7.7 │ fork │ 33341 │ 0s │ 0 │ online │ 0% │ 54.1mb │ XYZ │ disabled │ +│ 3 │ lisk-service-blockchain-indexer │ default │ 0.7.7 │ fork │ 33338 │ 0s │ 16 │ online │ 0% │ 54.3mb │ XYZ │ disabled │ +│ 8 │ lisk-service-export │ default │ 0.7.7 │ fork │ 33355 │ 0s │ 15 │ online │ 0% │ 14.1mb │ XYZ │ disabled │ +│ 5 │ lisk-service-fee-estimator │ default │ 0.7.7 │ fork │ 33346 │ 0s │ 15 │ online │ 0% │ 46.9mb │ XYZ │ disabled │ +│ 0 │ lisk-service-gateway │ default │ 0.7.7 │ fork │ 33326 │ 0s │ 15 │ online │ 0% │ 65.6mb │ XYZ │ disabled │ +│ 7 │ lisk-service-market │ default │ 0.7.7 │ fork │ 33351 │ 0s │ 15 │ online │ 0% │ 36.9mb │ XYZ │ disabled │ +│ 6 │ lisk-service-transaction-statistics │ default │ 0.7.7 │ fork │ 33348 │ 0s │ 15 │ online │ 0% │ 43.5mb │ XYZ │ disabled │ └----------------------------------------------------------------------------------------------------------------------------------------------------------------------------┘ ---- ==== @@ -405,15 +405,15 @@ pm2 stop ecosystem.config.js ┌------------------------------------------------------------------------------------------------------------------------------------------------------------------------┐ │ id │ name │ namespace │ version │ mode │ pid │ uptime │ ↺ │ status │ cpu │ mem │ user │ watching │ ├------------------------------------------------------------------------------------------------------------------------------------------------------------------------┤ -│ 1 │ lisk-service-blockchain-app-registry │ default │ 0.7.0-… │ fork │ 0 │ 0 │ 32 │ stopped │ 0% │ 0b │ XYZ │ disabled │ -│ 2 │ lisk-service-blockchain-connector │ default │ 0.7.0-… │ fork │ 0 │ 0 │ 0 │ stopped │ 0% │ 0b │ XYZ │ disabled │ -│ 4 │ lisk-service-blockchain-coordinator │ default │ 0.7.0-… │ fork │ 0 │ 0 │ 0 │ stopped │ 0% │ 0b │ XYZ │ disabled │ -│ 3 │ lisk-service-blockchain-indexer │ default │ 0.7.0-… │ fork │ 0 │ 0 │ 32 │ stopped │ 0% │ 0b │ XYZ │ disabled │ -│ 8 │ lisk-service-export │ default │ 0.7.0-… │ fork │ 0 │ 0 │ 30 │ stopped │ 0% │ 0b │ XYZ │ disabled │ -│ 5 │ lisk-service-fee-estimator │ default │ 0.7.0-… │ fork │ 0 │ 0 │ 30 │ stopped │ 0% │ 0b │ XYZ │ disabled │ -│ 0 │ lisk-service-gateway │ default │ 0.7.0-… │ fork │ 0 │ 0 │ 30 │ stopped │ 0% │ 0b │ XYZ │ disabled │ -│ 7 │ lisk-service-market │ default │ 0.7.0-… │ fork │ 0 │ 0 │ 30 │ stopped │ 0% │ 0b │ XYZ │ disabled │ -│ 6 │ lisk-service-transaction-statistics │ default │ 0.7.0-… │ fork │ 0 │ 0 │ 30 │ stopped │ 0% │ 0b │ XYZ │ disabled │ +│ 1 │ lisk-service-blockchain-app-registry │ default │ 0.7.7 │ fork │ 0 │ 0 │ 32 │ stopped │ 0% │ 0b │ XYZ │ disabled │ +│ 2 │ lisk-service-blockchain-connector │ default │ 0.7.7 │ fork │ 0 │ 0 │ 0 │ stopped │ 0% │ 0b │ XYZ │ disabled │ +│ 4 │ lisk-service-blockchain-coordinator │ default │ 0.7.7 │ fork │ 0 │ 0 │ 0 │ stopped │ 0% │ 0b │ XYZ │ disabled │ +│ 3 │ lisk-service-blockchain-indexer │ default │ 0.7.7 │ fork │ 0 │ 0 │ 32 │ stopped │ 0% │ 0b │ XYZ │ disabled │ +│ 8 │ lisk-service-export │ default │ 0.7.7 │ fork │ 0 │ 0 │ 30 │ stopped │ 0% │ 0b │ XYZ │ disabled │ +│ 5 │ lisk-service-fee-estimator │ default │ 0.7.7 │ fork │ 0 │ 0 │ 30 │ stopped │ 0% │ 0b │ XYZ │ disabled │ +│ 0 │ lisk-service-gateway │ default │ 0.7.7 │ fork │ 0 │ 0 │ 30 │ stopped │ 0% │ 0b │ XYZ │ disabled │ +│ 7 │ lisk-service-market │ default │ 0.7.7 │ fork │ 0 │ 0 │ 30 │ stopped │ 0% │ 0b │ XYZ │ disabled │ +│ 6 │ lisk-service-transaction-statistics │ default │ 0.7.7 │ fork │ 0 │ 0 │ 30 │ stopped │ 0% │ 0b │ XYZ │ disabled │ └------------------------------------------------------------------------------------------------------------------------------------------------------------------------┘ ---- ==== @@ -421,7 +421,7 @@ pm2 stop ecosystem.config.js . Checkout the version with *`git checkout `*. + ---- -git checkout v0.7.0 +git checkout v0.7.7 ---- . Update the npm dependencies by executing the following command. @@ -462,15 +462,15 @@ pm2 start ecosystem.config.js ┌----------------------------------------------------------------------------------------------------------------------------------------------------------------------------┐ │ id │ name │ namespace │ version │ mode │ pid │ uptime │ ↺ │ status │ cpu │ mem │ user │ watching │ ├----------------------------------------------------------------------------------------------------------------------------------------------------------------------------┤ -│ 1 │ lisk-service-blockchain-app-registry │ default │ 0.7.0-… │ fork │ 33328 │ 0s │ 16 │ online │ 0% │ 65.5mb │ XYZ │ disabled │ -│ 2 │ lisk-service-blockchain-connector │ default │ 0.7.0-… │ fork │ 33331 │ 0s │ 0 │ online │ 0% │ 63.8mb │ XYZ │ disabled │ -│ 4 │ lisk-service-blockchain-coordinator │ default │ 0.7.0-… │ fork │ 33341 │ 0s │ 0 │ online │ 0% │ 54.1mb │ XYZ │ disabled │ -│ 3 │ lisk-service-blockchain-indexer │ default │ 0.7.0-… │ fork │ 33338 │ 0s │ 16 │ online │ 0% │ 54.3mb │ XYZ │ disabled │ -│ 8 │ lisk-service-export │ default │ 0.7.0-… │ fork │ 33355 │ 0s │ 15 │ online │ 0% │ 14.1mb │ XYZ │ disabled │ -│ 5 │ lisk-service-fee-estimator │ default │ 0.7.0-… │ fork │ 33346 │ 0s │ 15 │ online │ 0% │ 46.9mb │ XYZ │ disabled │ -│ 0 │ lisk-service-gateway │ default │ 0.7.0-… │ fork │ 33326 │ 0s │ 15 │ online │ 0% │ 65.6mb │ XYZ │ disabled │ -│ 7 │ lisk-service-market │ default │ 0.7.0-… │ fork │ 33351 │ 0s │ 15 │ online │ 0% │ 36.9mb │ XYZ │ disabled │ -│ 6 │ lisk-service-transaction-statistics │ default │ 0.7.0-… │ fork │ 33348 │ 0s │ 15 │ online │ 0% │ 43.5mb │ XYZ │ disabled │ +│ 1 │ lisk-service-blockchain-app-registry │ default │ 0.7.7 │ fork │ 33328 │ 0s │ 16 │ online │ 0% │ 65.5mb │ XYZ │ disabled │ +│ 2 │ lisk-service-blockchain-connector │ default │ 0.7.7 │ fork │ 33331 │ 0s │ 0 │ online │ 0% │ 63.8mb │ XYZ │ disabled │ +│ 4 │ lisk-service-blockchain-coordinator │ default │ 0.7.7 │ fork │ 33341 │ 0s │ 0 │ online │ 0% │ 54.1mb │ XYZ │ disabled │ +│ 3 │ lisk-service-blockchain-indexer │ default │ 0.7.7 │ fork │ 33338 │ 0s │ 16 │ online │ 0% │ 54.3mb │ XYZ │ disabled │ +│ 8 │ lisk-service-export │ default │ 0.7.7 │ fork │ 33355 │ 0s │ 15 │ online │ 0% │ 14.1mb │ XYZ │ disabled │ +│ 5 │ lisk-service-fee-estimator │ default │ 0.7.7 │ fork │ 33346 │ 0s │ 15 │ online │ 0% │ 46.9mb │ XYZ │ disabled │ +│ 0 │ lisk-service-gateway │ default │ 0.7.7 │ fork │ 33326 │ 0s │ 15 │ online │ 0% │ 65.6mb │ XYZ │ disabled │ +│ 7 │ lisk-service-market │ default │ 0.7.7 │ fork │ 33351 │ 0s │ 15 │ online │ 0% │ 36.9mb │ XYZ │ disabled │ +│ 6 │ lisk-service-transaction-statistics │ default │ 0.7.7 │ fork │ 33348 │ 0s │ 15 │ online │ 0% │ 43.5mb │ XYZ │ disabled │ └----------------------------------------------------------------------------------------------------------------------------------------------------------------------------┘ ---- ==== diff --git a/docs/antora/modules/ROOT/pages/setup/docker.adoc b/docs/antora/modules/ROOT/pages/setup/docker.adoc index 72c50881bb..d303cf773d 100644 --- a/docs/antora/modules/ROOT/pages/setup/docker.adoc +++ b/docs/antora/modules/ROOT/pages/setup/docker.adoc @@ -158,7 +158,7 @@ cd lisk-service Switch to the latest release branch. ---- -git checkout v0.7.0 +git checkout v0.7.7 ---- == Build Lisk Service diff --git a/docs/antora/modules/ROOT/pages/setup/source.adoc b/docs/antora/modules/ROOT/pages/setup/source.adoc index 45607a12eb..87be0cbd96 100644 --- a/docs/antora/modules/ROOT/pages/setup/source.adoc +++ b/docs/antora/modules/ROOT/pages/setup/source.adoc @@ -351,7 +351,7 @@ cd lisk-service .Switch to the recent stable as a base ---- -git checkout v0.7.0 +git checkout v0.7.7 ---- .\...or use the development branch diff --git a/docs/redis_authentication.md b/docs/redis_authentication.md index e8d0106714..445b89e866 100644 --- a/docs/redis_authentication.md +++ b/docs/redis_authentication.md @@ -2,7 +2,7 @@ To prevent unauthorized access to the Redis database and mitigate unintended behavior associated with the use of Redis' passwordless `default` user. -With Lisk Service [v0.7.2](https://github.com/LiskHQ/lisk-service/tree/v0.7.2), similar to our MySQL setup, we now enforce our custom authentication on Redis, by default, with the following credentials: +Starting with Lisk Service [v0.7.2](https://github.com/LiskHQ/lisk-service/tree/v0.7.2), similar to our MySQL setup, we now enforce our custom authentication on Redis, by default, with the following credentials: > **Username**: `lisk`
> **Password**: `password` diff --git a/services/gateway/apis/http-exports/swagger/apiJson.json b/services/gateway/apis/http-exports/swagger/apiJson.json index bc4dfe1232..c9f2e47ada 100644 --- a/services/gateway/apis/http-exports/swagger/apiJson.json +++ b/services/gateway/apis/http-exports/swagger/apiJson.json @@ -3,7 +3,7 @@ "swagger": "2.0", "info": { "title": "Lisk Service API", - "version": "0.7.0", + "version": "0.7.7", "contact": { "email": "admin@lisk.com" }, diff --git a/services/gateway/apis/http-version3/swagger/apiJson.json b/services/gateway/apis/http-version3/swagger/apiJson.json index 3da91048f6..ed92502068 100644 --- a/services/gateway/apis/http-version3/swagger/apiJson.json +++ b/services/gateway/apis/http-version3/swagger/apiJson.json @@ -3,7 +3,7 @@ "swagger": "2.0", "info": { "title": "Lisk Service API", - "version": "0.7.0", + "version": "0.7.7", "contact": { "email": "admin@lisk.com" }, diff --git a/services/gateway/tests/constants/utils.js b/services/gateway/tests/constants/utils.js index f1f6ad9b43..b0084dc402 100644 --- a/services/gateway/tests/constants/utils.js +++ b/services/gateway/tests/constants/utils.js @@ -215,7 +215,7 @@ const requireAllJsonExpectedResponse = { swagger: '2.0', info: { title: 'Lisk Service API', - version: '0.7.0', + version: '0.7.7', contact: { email: 'admin@lisk.com', },