Compare View

switch
from
...
to
 
Commits (2)

Changes

Showing 4 changed files Side-by-side Diff

... ... @@ -4,8 +4,14 @@ 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.45.12](https://gitlab.kodesumber.com/komodo/komodo-sdk/compare/v1.45.11...v1.45.12)
  8 +
  9 +- Add info why use sd-notify instead of systemd-notify [`c00c6b1`](https://gitlab.kodesumber.com/komodo/komodo-sdk/commit/c00c6b1d1ede7c5bd66d46345ebc3a2814f4bdbb)
  10 +
7 11 #### [v1.45.11](https://gitlab.kodesumber.com/komodo/komodo-sdk/compare/v1.45.10...v1.45.11)
8 12  
  13 +> 19 June 2024
  14 +
9 15 - Experimental using systemd-notify package [`3a96ac4`](https://gitlab.kodesumber.com/komodo/komodo-sdk/commit/3a96ac45dffa26630fc939812236230fad8afe0e)
10 16  
11 17 #### [v1.45.10](https://gitlab.kodesumber.com/komodo/komodo-sdk/compare/v1.45.9...v1.45.10)
1 1 {
2 2 "name": "komodo-sdk",
3   - "version": "1.45.11",
  3 + "version": "1.45.12",
4 4 "lockfileVersion": 2,
5 5 "requires": true,
6 6 "packages": {
7 7 "": {
8 8 "name": "komodo-sdk",
9   - "version": "1.45.11",
  9 + "version": "1.45.12",
10 10 "license": "ISC",
11 11 "dependencies": {
12 12 "array-unique": "^0.3.2",
1 1 {
2 2 "name": "komodo-sdk",
3   - "version": "1.45.11",
  3 + "version": "1.45.12",
4 4 "description": "SDK for Komodo",
5 5 "main": "index.js",
6 6 "scripts": {
... ... @@ -44,7 +44,9 @@ module.exports = async (statusMsg) => {
44 44 status,
45 45 });
46 46 } catch (e) {
47   - logger.verbose(`${MODULE_NAME} 488B3245: Trying to notify sd-notify package`);
  47 + logger.verbose(`${MODULE_NAME} 488B3245: Trying to notify sd-notify package`, {
  48 + why: e.message || e.toString(),
  49 + });
48 50 notifyUseSdNotify();
49 51 }
50 52 };