Compare View

switch
from
...
to
 
Commits (3)

Changes

Showing 4 changed files Side-by-side Diff

... ... @@ -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 +#### [v0.1.22](https://gitlab.kodesumber.com/komodo/komodo-sdk-push-trx/compare/v0.1.21...v0.1.22)
  8 +
  9 +- Fix gateway url verification [`817328f`](https://gitlab.kodesumber.com/komodo/komodo-sdk-push-trx/commit/817328fa7799d047ac808655d36bf3e00068665d)
  10 +- Only connect gateway with url begin with ws:// [`db4dc1a`](https://gitlab.kodesumber.com/komodo/komodo-sdk-push-trx/commit/db4dc1afc59a36c23e2fe24cceecff91973085f8)
  11 +
7 12 #### [v0.1.21](https://gitlab.kodesumber.com/komodo/komodo-sdk-push-trx/compare/v0.1.20...v0.1.21)
8 13  
  14 +> 14 February 2022
  15 +
9 16 - Create initServer [`7ca0e79`](https://gitlab.kodesumber.com/komodo/komodo-sdk-push-trx/commit/7ca0e79023dbf7cafb32591eb2fbcce1594d904e)
10 17 - Add push-trx-sdk-version attribute [`c087704`](https://gitlab.kodesumber.com/komodo/komodo-sdk-push-trx/commit/c08770406a7ed510b98315f8a720637bedd7cb32)
11 18  
... ... @@ -15,6 +15,7 @@ const connectAll = (xidFromCaller) => {
15 15 .filter((gateway) => !gateway.disabled
16 16 && gateway.name
17 17 && gateway.url
  18 + && (gateway.url.indexOf('ws://') !== 0)
18 19 && ((new URL(gateway.url) || {}).protocol === 'ws:'));
19 20  
20 21 if (debugAllGatewaysFromConfig) {
1 1 {
2 2 "name": "komodo-sdk-push-trx",
3   - "version": "0.1.21",
  3 + "version": "0.1.22",
4 4 "lockfileVersion": 2,
5 5 "requires": true,
6 6 "packages": {
7 7 "": {
8 8 "name": "komodo-sdk-push-trx",
9   - "version": "0.1.21",
  9 + "version": "0.1.22",
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.21",
  3 + "version": "0.1.22",
4 4 "description": "Komodo SDK for PUSH transaction",
5 5 "main": "index.js",
6 6 "scripts": {