Compare View
Commits (3)
Changes
Showing 5 changed files Side-by-side Diff
.nvmrc
| ... | ... | @@ -0,0 +1 @@ |
| 1 | +v16 |
CHANGELOG.md
| ... | ... | @@ -4,8 +4,15 @@ All notable changes to this project will be documented in this file. Dates are d |
| 4 | 4 | |
| 5 | 5 | Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). |
| 6 | 6 | |
| 7 | +#### [v1.46.15](https://gitlab.intranet.kodesumber.com/komodo/komodo-sdk/compare/v1.46.14...v1.46.15) | |
| 8 | + | |
| 9 | +- Perbaikan deteksi kapan disable advice [`3c249b6`](https://gitlab.intranet.kodesumber.com/komodo/komodo-sdk/commit/3c249b607200cf575a777c0fb978f83359097479) | |
| 10 | +- Set node version to v16 [`f17e3d5`](https://gitlab.intranet.kodesumber.com/komodo/komodo-sdk/commit/f17e3d53d60d853bc3252eb8aa4b2446e3f07185) | |
| 11 | + | |
| 7 | 12 | #### [v1.46.14](https://gitlab.intranet.kodesumber.com/komodo/komodo-sdk/compare/v1.46.13...v1.46.14) |
| 8 | 13 | |
| 14 | +> 22 October 2025 | |
| 15 | + | |
| 9 | 16 | - Bump komodo-sdk from 1.11.0 to 1.12.2 [`31f966c`](https://gitlab.intranet.kodesumber.com/komodo/komodo-sdk/commit/31f966cf0e48076d8bbe0810b1a802247b159b38) |
| 10 | 17 | - Add link to repos on README.md [`ae9709a`](https://gitlab.intranet.kodesumber.com/komodo/komodo-sdk/commit/ae9709a313b34f5d54376029813c320105a81eaf) |
| 11 | 18 | - Push to github first [`eea2431`](https://gitlab.intranet.kodesumber.com/komodo/komodo-sdk/commit/eea24310076331a794ee6e292f2a0f4cc5662b8f) |
gateway/advice-push-server.js
| ... | ... | @@ -10,11 +10,6 @@ const app = express(); |
| 10 | 10 | let partner = null; |
| 11 | 11 | |
| 12 | 12 | function setPartner(_partner) { |
| 13 | - if (!config.push_server.advice.port) { | |
| 14 | - logger.info(`${MODULE_NAME} EE186FAC: config.push_server.advice.port not set, skip listening`); | |
| 15 | - return; | |
| 16 | - } | |
| 17 | - | |
| 18 | 13 | partner = _partner; |
| 19 | 14 | |
| 20 | 15 | if ( |
| ... | ... | @@ -23,7 +18,9 @@ function setPartner(_partner) { |
| 23 | 18 | || !config.push_server.apikey |
| 24 | 19 | || !config.push_server.advice |
| 25 | 20 | || !config.push_server.advice.url |
| 26 | - || !config.push_server.advice.port) { | |
| 21 | + || !config.push_server.advice.port | |
| 22 | + ) { | |
| 23 | + logger.info(`${MODULE_NAME} EE186FAC: config.push_server.advice.port not set, skip listening`); | |
| 27 | 24 | return; |
| 28 | 25 | } |
| 29 | 26 |
package-lock.json
| 1 | 1 | { |
| 2 | 2 | "name": "komodo-sdk", |
| 3 | - "version": "1.46.14", | |
| 3 | + "version": "1.46.15", | |
| 4 | 4 | "lockfileVersion": 2, |
| 5 | 5 | "requires": true, |
| 6 | 6 | "packages": { |
| 7 | 7 | "": { |
| 8 | 8 | "name": "komodo-sdk", |
| 9 | - "version": "1.46.14", | |
| 9 | + "version": "1.46.15", | |
| 10 | 10 | "license": "ISC", |
| 11 | 11 | "dependencies": { |
| 12 | 12 | "array-unique": "^0.3.2", |