@things-factory/shell 7.0.1-rc.1 → 7.0.1-rc.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/shell",
3
- "version": "7.0.1-rc.1",
3
+ "version": "7.0.1-rc.10",
4
4
  "description": "Core module for framework",
5
5
  "bin": {
6
6
  "things-factory": "bin/things-factory",
@@ -41,7 +41,7 @@
41
41
  "@graphql-tools/merge": "^9.0.3",
42
42
  "@graphql-tools/schema": "^8.5.0",
43
43
  "@graphql-tools/utils": "^10.1.2",
44
- "@hatiolab/koa-webpack": "^6.0.0",
44
+ "@hatiolab/koa-webpack": "^7.0.9",
45
45
  "@hatiolab/things-scene": "^3.2.0",
46
46
  "@koa/cors": "^5.0.0",
47
47
  "@material-design-icons/font": "^0.14.9",
@@ -59,11 +59,12 @@
59
59
  "@operato/shell": "^7.0.0-rc",
60
60
  "@operato/typeorm-history": "^7.0.0-rc",
61
61
  "@operato/utils": "^7.0.0-rc",
62
- "@things-factory/ejs-remote": "^7.0.1-rc.0",
63
- "@things-factory/env": "^7.0.1-rc.0",
62
+ "@reduxjs/toolkit": "^2.2.5",
63
+ "@things-factory/ejs-remote": "^7.0.1-rc.7",
64
+ "@things-factory/env": "^7.0.1-rc.8",
64
65
  "@things-factory/operato-license-checker": "^4.0.4",
65
- "@things-factory/styles": "^7.0.1-rc.0",
66
- "@things-factory/utils": "^7.0.1-rc.0",
66
+ "@things-factory/styles": "^7.0.1-rc.7",
67
+ "@things-factory/utils": "^7.0.1-rc.7",
67
68
  "@webcomponents/scoped-custom-element-registry": "^0.0.9",
68
69
  "@webcomponents/webcomponentsjs": "^2.6.0",
69
70
  "args": "^5.0.0",
@@ -113,7 +114,6 @@
113
114
  "pwa-helpers": "^0.9.1",
114
115
  "react": "^18.2.0",
115
116
  "react-dom": "^18.2.0",
116
- "redux": "^4.0.0",
117
117
  "redux-thunk": "^2.3.0",
118
118
  "regenerator-runtime": "^0.13.2",
119
119
  "reselect": "^4.0.0",
@@ -121,7 +121,7 @@
121
121
  "scrollbooster": "^3.0.2",
122
122
  "type-graphql": "^2.0.0-rc.1",
123
123
  "typeorm": "^0.3.19",
124
- "uuid": "^3.4.0",
124
+ "uuid": "^10.0.0",
125
125
  "web-animations-js": "^2.3.2",
126
126
  "web-push": "^3.5.0",
127
127
  "ws": "^8.8.1"
@@ -134,5 +134,5 @@
134
134
  "pg": "^8.7.3",
135
135
  "sqlite3": "^5.0.8"
136
136
  },
137
- "gitHead": "fa52d291483c4aa913a9c6a9a4463a73058b1b0d"
137
+ "gitHead": "259524f7aeb4368a5a4792aa31e4d11b525dbb28"
138
138
  }
package/server/pubsub.ts CHANGED
@@ -66,7 +66,7 @@ switch (middleware) {
66
66
  ...options
67
67
  })
68
68
  } catch (e) {
69
- logger.error('graphql-kafka-subscriptions module is not installed, so application can not go further.')
69
+ logger.error('graphql-kafka-subscriptions module is not installed, so application can not go further.', e)
70
70
  throw e
71
71
  }
72
72
  break
@@ -46,7 +46,7 @@ import { EntityManager } from 'typeorm'
46
46
  import { domainMiddleware } from './middlewares'
47
47
 
48
48
  process.on('uncaughtException', error => {
49
- logger.error('uncaughtException: ', error, error.stack)
49
+ logger.error('uncaughtException: ', error)
50
50
 
51
51
  //process.exit(1)
52
52
  })
package/server/server.ts CHANGED
@@ -44,7 +44,7 @@ import { schema } from './schema'
44
44
  import { domainMiddleware } from './middlewares'
45
45
 
46
46
  process.on('uncaughtException', error => {
47
- logger.error('uncaughtException: ', error, error.stack)
47
+ logger.error('uncaughtException: ', error)
48
48
 
49
49
  //process.exit(1)
50
50
  })