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.46.5](https://gitlab.kodesumber.com/komodo/komodo-sdk/compare/v1.46.4...v1.46.5)
  8 +
  9 +- URGENT: Stringify misc report if not string [`6e12666`](https://gitlab.kodesumber.com/komodo/komodo-sdk/commit/6e126667faae74a4426a86db02fbd1841b0b90d8)
  10 +
7 11 #### [v1.46.4](https://gitlab.kodesumber.com/komodo/komodo-sdk/compare/v1.46.3...v1.46.4)
8 12  
  13 +> 4 September 2025
  14 +
9 15 - Fix eslint on coreapi [`7ba193c`](https://gitlab.kodesumber.com/komodo/komodo-sdk/commit/7ba193c55304775e75ccf8acf4e618413df897c1)
10 16 - Log pull task params [`57d148d`](https://gitlab.kodesumber.com/komodo/komodo-sdk/commit/57d148d36c742819df90cb1dc36b1ab07e87bdf4)
11 17  
... ... @@ -195,7 +195,7 @@ const report = async (data, xidFromCaller) => {
195 195 amount: data.amount,
196 196 balance: data.balance,
197 197 raw: data.raw,
198   - misc: data.misc,
  198 + misc: typeof data.misc === 'string' ? data.misc : JSON.stringify(data.misc),
199 199 product: data.product
200 200 || (data.misc && data.misc.task && typeof data.misc.task.product === 'string' && data.misc.task.product)
201 201 || null,
1 1 {
2 2 "name": "komodo-sdk",
3   - "version": "1.46.4",
  3 + "version": "1.46.5",
4 4 "lockfileVersion": 2,
5 5 "requires": true,
6 6 "packages": {
7 7 "": {
8 8 "name": "komodo-sdk",
9   - "version": "1.46.4",
  9 + "version": "1.46.5",
10 10 "license": "ISC",
11 11 "dependencies": {
12 12 "array-unique": "^0.3.2",
1 1 {
2 2 "name": "komodo-sdk",
3   - "version": "1.46.4",
  3 + "version": "1.46.5",
4 4 "description": "SDK for Komodo",
5 5 "main": "index.js",
6 6 "scripts": {