@jsreport/jsreport-cli 4.2.1 → 4.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -7,6 +7,9 @@ See http://jsreport.net/learn/cli for documentation
7
7
 
8
8
  ## Changelog
9
9
 
10
+ ### 4.2.2
11
+ - update deps to fix audit
12
+
10
13
  ### 4.2.1
11
14
  - update deps to fix audit
12
15
 
@@ -93,7 +93,7 @@ function start (customInstance, socketFile) {
93
93
  hostname = new ipAddress.Address6(address.address).to4()
94
94
 
95
95
  if (typeof hostname !== 'string') {
96
- hostname = hostname.address
96
+ hostname = hostname.correctForm()
97
97
  }
98
98
  } else {
99
99
  hostname = address.address
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsreport/jsreport-cli",
3
- "version": "4.2.1",
3
+ "version": "4.2.2",
4
4
  "description": "Command line interface for jsreport",
5
5
  "keywords": [
6
6
  "jsreport",
@@ -50,11 +50,11 @@
50
50
  "test:watch": "mocha --recursive \"./test/*.spec.js\" \"./test/commands/**/*.spec.js\" --timeout 28000 --exit --watch"
51
51
  },
52
52
  "dependencies": {
53
- "@jsreport/nodejs-client": "4.1.1",
53
+ "@jsreport/nodejs-client": "4.1.2",
54
54
  "chalk": "2.4.2",
55
55
  "cliui": "7.0.4",
56
56
  "inquirer": "8.2.7",
57
- "ip-address": "5.8.9",
57
+ "ip-address": "10.4.0",
58
58
  "is-absolute-url": "2.1.0",
59
59
  "is-promise": "2.1.0",
60
60
  "liftoff": "5.0.1",
@@ -70,9 +70,9 @@
70
70
  "yargs": "17.3.1"
71
71
  },
72
72
  "devDependencies": {
73
- "@jsreport/jsreport-authentication": "4.3.1",
74
- "@jsreport/jsreport-core": "4.10.0",
75
- "@jsreport/jsreport-express": "4.3.2",
73
+ "@jsreport/jsreport-authentication": "4.3.2",
74
+ "@jsreport/jsreport-core": "4.11.0",
75
+ "@jsreport/jsreport-express": "4.3.3",
76
76
  "@jsreport/jsreport-fs-store": "4.2.0",
77
77
  "@jsreport/jsreport-handlebars": "4.1.1",
78
78
  "cross-env": "7.0.3",