Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Update NodeJS version to 18.20.1 #2043

Merged
merged 3 commits into from
Apr 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
---

Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.19.1
18.20.1
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ WebSocket-based APIs can be used through the [Socket.IO](https://socket.io/) lib

To continue the installation ensure that you have the following dependencies installed:

- [NodeJS Active LTS - ^v18.19.1](https://nodejs.org/en/about/releases/)
- [NodeJS Active LTS - ^v18.20.1](https://nodejs.org/en/about/releases/)
- [MySQL - ^v8.0.29](https://dev.mysql.com/doc/relnotes/mysql/8.0/en/)
- [Docker](https://www.docker.com/) with [Docker compose](https://docs.docker.com/compose/install/)
- [GNU Make](https://www.gnu.org/software/make/) and [GNU Tar](https://www.gnu.org/software/tar/)
Expand Down
4 changes: 1 addition & 3 deletions docs/antora/modules/ROOT/pages/configuration/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Muhammad Talha <[email protected]>
: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

Expand Down Expand Up @@ -1452,5 +1452,3 @@ module.exports = {
};
----
====


6 changes: 3 additions & 3 deletions docs/antora/modules/ROOT/pages/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ Mona Bärenfänger <[email protected]>
: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/
Expand Down
24 changes: 12 additions & 12 deletions docs/antora/modules/ROOT/pages/management/docker.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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 <tag>`*
+
----
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

----

Expand All @@ -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 <tag>`*
+
----
git checkout v0.7.0
git checkout v0.7.7
----

. Build the required updated Docker images
Expand Down
110 changes: 55 additions & 55 deletions docs/antora/modules/ROOT/pages/management/source.adoc

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/antora/modules/ROOT/pages/setup/docker.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/antora/modules/ROOT/pages/setup/source.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/redis_authentication.md
Original file line number Diff line number Diff line change
Expand Up @@ -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` <br>
> **Password**: `password`
Expand Down
Binary file added framework/dist/lisk-service-framework-1.6.14.tgz
Binary file not shown.
4 changes: 2 additions & 2 deletions framework/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lisk-service-framework",
"version": "1.6.13",
"version": "1.6.14",
"description": "Lisk Service Framework",
"keywords": [
"lisk",
Expand All @@ -19,7 +19,7 @@
"private": true,
"main": "index.js",
"engines": {
"node": ">=18.19.1 <=18",
"node": ">=18.20.1 <=18",
"npm": ">=8.5.0"
},
"scripts": {
Expand Down
Loading
Loading