diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ced1b5f..72d3a118 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,9 @@ ## vNext - ... +## v0.24.3 +- [BE] Add missing `next` functions to prevent Stats API crash + ## v0.24.2 - [BE] Fix memory leak issue diff --git a/api/package.json b/api/package.json index 0cd4de04..80facafb 100644 --- a/api/package.json +++ b/api/package.json @@ -1,6 +1,6 @@ { "name": "api", - "version": "0.24.2", + "version": "0.24.3", "description": "PolkaStats API", "author": "Mario Pino Uceda", "license": "Apache-2.0", diff --git a/api/src/services/healthService.js b/api/src/services/healthService.js index 26b2588d..c9d6b4f3 100644 --- a/api/src/services/healthService.js +++ b/api/src/services/healthService.js @@ -129,7 +129,7 @@ async function checkBlockchainHealth(req, res, next) { } } -async function checkBlockchainBlocksFinalization(req, res) { +async function checkBlockchainBlocksFinalization(req, res, next) { try { const { query } = req; let networks = splitParams(query.networks); @@ -167,7 +167,7 @@ async function checkBlockchainBlocksFinalization(req, res) { } } -async function checkBlockchainBlocksProducing(req, res) { +async function checkBlockchainBlocksProducing(req, res, next) { try { const { query } = req; let networks = splitParams(query.networks); diff --git a/backend/package.json b/backend/package.json index 0fcfc187..3f095c88 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "backend", - "version": "0.24.2", + "version": "0.24.3", "description": "PolkaStats NG Backend", "author": "Mario Pino Uceda", "license": "Apache-2.0", diff --git a/frontend/package.json b/frontend/package.json index 536c055f..61a6f509 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "frontend", - "version": "0.24.2", + "version": "0.24.3", "description": "PolkaStats NG frontend", "author": "Mario Pino Uceda", "license": "Apache-2.0", diff --git a/package.json b/package.json index bb757477..dd90ea6a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "cerestats", - "version": "0.24.2", + "version": "0.24.3", "description": "Cere Stats mono repo", "repository": { "type": "git",