@tiledesk/tiledesk-server 2.3.32 → 2.3.34
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/CHANGELOG.md +13 -7
- package/package.json +2 -1
- package/pubmodules/pubModulesManager.js +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,21 @@
|
|
|
1
1
|
|
|
2
|
+
💥 TILEDESK SERVER v2.3.32 💥
|
|
3
|
+
🚀 TAGGED AND PUBLISHED ON NPM 🚀
|
|
4
|
+
🚀 IN PRODUCTION 🚀
|
|
5
|
+
(https://www.npmjs.com/package/@tiledesk/tiledesk-server/v/2.3.32)
|
|
6
|
+
|
|
7
|
+
# 2.3.33
|
|
8
|
+
- aqmp depenency fix
|
|
9
|
+
|
|
10
|
+
# 2.3.32
|
|
11
|
+
- log pub module queue
|
|
2
12
|
|
|
3
13
|
# 2.3.31
|
|
4
14
|
- logfix
|
|
5
15
|
|
|
6
16
|
# 2.3.30
|
|
7
17
|
- save multiple messages fix with sequential promises
|
|
8
|
-
- JSON_BODY_LIMIT increased to 500KB. Added JSON_BODY_LIMIT env variable
|
|
18
|
+
- Default JSON_BODY_LIMIT increased to 500KB. Added JSON_BODY_LIMIT env variable
|
|
9
19
|
|
|
10
20
|
# 2.3.29
|
|
11
21
|
- UIDGenerator class replacement for request route
|
|
@@ -52,12 +62,8 @@
|
|
|
52
62
|
- Added cache for chat21 webhook event type message
|
|
53
63
|
- Added cache for getoperator method of department service
|
|
54
64
|
|
|
55
|
-
💥 TILEDESK SERVER v2.3.23 💥
|
|
56
|
-
🚀 TAGGED AND PUBLISHED ON NPM 🚀
|
|
57
|
-
🚀 IN PRODUCTION 🚀
|
|
58
|
-
(https://www.npmjs.com/package/@tiledesk/tiledesk-server/v/2.3.17)
|
|
59
65
|
|
|
60
|
-
# 2.3.23
|
|
66
|
+
# 2.3.23
|
|
61
67
|
- cacheEnabler + trigger cache + subscription cache
|
|
62
68
|
- project cache with cacheEnabler
|
|
63
69
|
- request cache with cacheEnabler
|
|
@@ -82,7 +88,7 @@
|
|
|
82
88
|
- Moved route-queue to public module
|
|
83
89
|
- Disable queue module if JOB_WORKER_ENABLED is true
|
|
84
90
|
|
|
85
|
-
# 2.3.18.7
|
|
91
|
+
# 2.3.18.7
|
|
86
92
|
- filter request by smartAssignment
|
|
87
93
|
|
|
88
94
|
# 2.3.18.6
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tiledesk/tiledesk-server",
|
|
3
3
|
"description": "The Tiledesk server module",
|
|
4
|
-
"version": "2.3.
|
|
4
|
+
"version": "2.3.34",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"start": "node ./bin/www",
|
|
7
7
|
"pretest": "mongodb-runner start",
|
|
@@ -51,6 +51,7 @@
|
|
|
51
51
|
"csv-express": "^1.2.2",
|
|
52
52
|
"debug": "^4.3.4",
|
|
53
53
|
"dotenv": "^8.6.0",
|
|
54
|
+
"amqplib": "^0.5.5",
|
|
54
55
|
"email-templates": "^8.1.0",
|
|
55
56
|
"eventemitter2": "^6.4.4",
|
|
56
57
|
"express": "^4.17.3",
|
|
@@ -305,11 +305,11 @@ class PubModulesManager {
|
|
|
305
305
|
|
|
306
306
|
winston.info("PubModulesManager initialized queue.");
|
|
307
307
|
} catch(err) {
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
308
|
+
if (err.code == 'MODULE_NOT_FOUND') {
|
|
309
|
+
winston.info("PubModulesManager init queue module not found");
|
|
310
|
+
}else {
|
|
311
311
|
winston.info("PubModulesManager error initializing init queue module", err);
|
|
312
|
-
|
|
312
|
+
}
|
|
313
313
|
}
|
|
314
314
|
|
|
315
315
|
|