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 +#### [v0.1.12](https://gitlab.kodesumber.com/komodo/komodo-sdk-push-trx/compare/v0.1.11...v0.1.12)
  8 +
  9 +- Add server generated xid on missing client xid [`f858030`](https://gitlab.kodesumber.com/komodo/komodo-sdk-push-trx/commit/f8580302b471568332b08bf0d0e1f974cc753831)
  10 +
7 11 #### [v0.1.11](https://gitlab.kodesumber.com/komodo/komodo-sdk-push-trx/compare/v0.1.10...v0.1.11)
8 12  
  13 +> 7 February 2022
  14 +
9 15 - Fix xid pairs [`ffab3e8`](https://gitlab.kodesumber.com/komodo/komodo-sdk-push-trx/commit/ffab3e8b298e0677c6e7bc4ff282e43ba71d3107)
10 16  
11 17 #### [v0.1.10](https://gitlab.kodesumber.com/komodo/komodo-sdk-push-trx/compare/v0.1.9...v0.1.10)
1 1 {
2 2 "name": "komodo-sdk-push-trx",
3   - "version": "0.1.11",
  3 + "version": "0.1.12",
4 4 "lockfileVersion": 2,
5 5 "requires": true,
6 6 "packages": {
7 7 "": {
8 8 "name": "komodo-sdk-push-trx",
9   - "version": "0.1.11",
  9 + "version": "0.1.12",
10 10 "license": "ISC",
11 11 "dependencies": {
12 12 "express": "^4.17.2",
1 1 {
2 2 "name": "komodo-sdk-push-trx",
3   - "version": "0.1.11",
  3 + "version": "0.1.12",
4 4 "description": "Komodo SDK for PUSH transaction",
5 5 "main": "index.js",
6 6 "scripts": {
... ... @@ -52,10 +52,8 @@ if (!wsListenPort) {
52 52 } = client;
53 53  
54 54 logger.info(`${MODULE_NAME} F7755A03: Client connected`, {
55   - xid: connectionXid,
56   - remoteAddress,
57   - apikeyName,
58   - apikey,
  55 + xid: connectionXid || uniqid(),
  56 + client,
59 57 });
60 58  
61 59 const heatbeatPingInterval = setInterval(() => {