@wppconnect/server 2.8.3 → 2.8.4
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 +6 -0
- package/Dockerfile +2 -2
- package/docker-compose.yml +2 -0
- package/package.json +26 -26
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## 2.8.4 (2025-03-26)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **deps:** update dependency @wppconnect-team/wppconnect to ^1.36.2 ([#2139](https://github.com/wppconnect-team/wppconnect-server/issues/2139)) ([828dcd0](https://github.com/wppconnect-team/wppconnect-server/commit/828dcd015ab4b4ac89bd9c0877fae94a5489f8e3))
|
|
6
|
+
|
|
1
7
|
## 2.8.3 (2025-01-09)
|
|
2
8
|
|
|
3
9
|
## 2.8.2 (2024-12-23)
|
package/Dockerfile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
FROM node:lts-alpine3.18
|
|
1
|
+
FROM node:lts-alpine3.18 AS base
|
|
2
2
|
WORKDIR /usr/src/wpp-server
|
|
3
3
|
ENV NODE_ENV=production PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
|
|
4
4
|
COPY package.json ./
|
|
@@ -15,7 +15,7 @@ RUN yarn install --production --pure-lockfile && \
|
|
|
15
15
|
yarn add sharp --ignore-engines && \
|
|
16
16
|
yarn cache clean
|
|
17
17
|
|
|
18
|
-
FROM base
|
|
18
|
+
FROM base AS build
|
|
19
19
|
WORKDIR /usr/src/wpp-server
|
|
20
20
|
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
|
|
21
21
|
COPY package.json ./
|
package/docker-compose.yml
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wppconnect/server",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.4",
|
|
4
4
|
"description": "Projeto feito para autenticar a automomacao do WhatsappWeb com multi-clientes de forma dinamica. Backend feito em Nodejs(express, socketio), FrontEnd (ReactJS)",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"author": "kingaspx",
|
|
@@ -28,22 +28,22 @@
|
|
|
28
28
|
"test": "jest"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@aws-sdk/client-s3": "^3.
|
|
32
|
-
"@wppconnect-team/wppconnect": "^1.
|
|
31
|
+
"@aws-sdk/client-s3": "^3.774.0",
|
|
32
|
+
"@wppconnect-team/wppconnect": "^1.36.2",
|
|
33
33
|
"archiver": "^7.0.1",
|
|
34
|
-
"axios": "^1.
|
|
34
|
+
"axios": "^1.8.4",
|
|
35
35
|
"bcrypt": "^5.1.1",
|
|
36
36
|
"buffer-to-stream": "1.0.0",
|
|
37
37
|
"cors": "^2.8.5",
|
|
38
38
|
"cross-env": "^7.0.3",
|
|
39
|
-
"dotenv": "^16.4.
|
|
39
|
+
"dotenv": "^16.4.7",
|
|
40
40
|
"express": "^4.21.2",
|
|
41
41
|
"express-query-boolean": "^2.0.0",
|
|
42
|
-
"form-data": "^4.0.
|
|
42
|
+
"form-data": "^4.0.2",
|
|
43
43
|
"json-mapper-json": "^1.3.3",
|
|
44
44
|
"merge-deep": "^3.0.3",
|
|
45
45
|
"moment": "^2.30.1",
|
|
46
|
-
"multer": "^1.4.5-lts.
|
|
46
|
+
"multer": "^1.4.5-lts.2",
|
|
47
47
|
"qrcode": "^1.5.4",
|
|
48
48
|
"socket.io": "^4.8.1",
|
|
49
49
|
"swagger-autogen": "^2.23.7",
|
|
@@ -52,17 +52,17 @@
|
|
|
52
52
|
"winston": "^3.17.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@babel/cli": "^7.
|
|
56
|
-
"@babel/core": "^7.26.
|
|
57
|
-
"@babel/eslint-parser": "^7.
|
|
58
|
-
"@babel/eslint-plugin": "^7.
|
|
55
|
+
"@babel/cli": "^7.26.4",
|
|
56
|
+
"@babel/core": "^7.26.10",
|
|
57
|
+
"@babel/eslint-parser": "^7.26.10",
|
|
58
|
+
"@babel/eslint-plugin": "^7.26.10",
|
|
59
59
|
"@babel/node": "^7.26.0",
|
|
60
|
-
"@babel/plugin-transform-runtime": "^7.
|
|
61
|
-
"@babel/preset-env": "^7.26.
|
|
60
|
+
"@babel/plugin-transform-runtime": "^7.26.10",
|
|
61
|
+
"@babel/preset-env": "^7.26.9",
|
|
62
62
|
"@babel/preset-typescript": "^7.26.0",
|
|
63
|
-
"@commitlint/cli": "^19.
|
|
64
|
-
"@commitlint/config-conventional": "^19.
|
|
65
|
-
"@commitlint/cz-commitlint": "^19.
|
|
63
|
+
"@commitlint/cli": "^19.8.0",
|
|
64
|
+
"@commitlint/config-conventional": "^19.8.0",
|
|
65
|
+
"@commitlint/cz-commitlint": "^19.8.0",
|
|
66
66
|
"@types/archiver": "^6.0.3",
|
|
67
67
|
"@types/bcrypt": "^5.0.2",
|
|
68
68
|
"@types/cors": "^2.8.17",
|
|
@@ -71,12 +71,12 @@
|
|
|
71
71
|
"@types/merge-deep": "^3.0.3",
|
|
72
72
|
"@types/mime-types": "^2.1.4",
|
|
73
73
|
"@types/multer": "^1.4.12",
|
|
74
|
-
"@types/node": "^
|
|
74
|
+
"@types/node": "^22.13.13",
|
|
75
75
|
"@types/qrcode": "^1.5.5",
|
|
76
|
-
"@types/swagger-ui-express": "^4.1.
|
|
77
|
-
"@types/unzipper": "^0.10.
|
|
76
|
+
"@types/swagger-ui-express": "^4.1.8",
|
|
77
|
+
"@types/unzipper": "^0.10.11",
|
|
78
78
|
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
79
|
-
"@typescript-eslint/parser": "^8.
|
|
79
|
+
"@typescript-eslint/parser": "^8.27.0",
|
|
80
80
|
"commitizen": "^4.3.1",
|
|
81
81
|
"conventional-changelog-cli": "^5.0.0",
|
|
82
82
|
"crypto-js": "^4.2.0",
|
|
@@ -84,14 +84,14 @@
|
|
|
84
84
|
"eslint-config-love": "^53.0.0",
|
|
85
85
|
"eslint-config-prettier": "^9.1.0",
|
|
86
86
|
"eslint-plugin-import": "^2.31.0",
|
|
87
|
-
"eslint-plugin-n": "^17.
|
|
87
|
+
"eslint-plugin-n": "^17.16.2",
|
|
88
88
|
"eslint-plugin-prettier": "^4.2.1",
|
|
89
89
|
"eslint-plugin-promise": "^6.6.0",
|
|
90
90
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
91
91
|
"husky": "^9.1.7",
|
|
92
92
|
"jest": "^29.7.0",
|
|
93
93
|
"license-check-and-add": "^4.0.5",
|
|
94
|
-
"mongoose": "^8.
|
|
94
|
+
"mongoose": "^8.13.0",
|
|
95
95
|
"nodemon": "^3.1.9",
|
|
96
96
|
"prettier": "^2.8.8",
|
|
97
97
|
"pretty-quick": "^4.0.0",
|
|
@@ -101,15 +101,15 @@
|
|
|
101
101
|
"rimraf": "^5.0.10",
|
|
102
102
|
"shx": "^0.3.4",
|
|
103
103
|
"swagger-ui-dist": "^5.17.14",
|
|
104
|
-
"ts-jest": "^29.2.
|
|
105
|
-
"ts-loader": "^9.5.
|
|
104
|
+
"ts-jest": "^29.2.6",
|
|
105
|
+
"ts-loader": "^9.5.2",
|
|
106
106
|
"tsx": "^4.17.0",
|
|
107
|
-
"typescript": "^5.7.
|
|
107
|
+
"typescript": "^5.7.3",
|
|
108
108
|
"webpack-cli": "^5.1.4"
|
|
109
109
|
},
|
|
110
110
|
"peerDependencies": {
|
|
111
111
|
"crypto-js": "^4.2.0",
|
|
112
|
-
"mongoose": "^8.
|
|
112
|
+
"mongoose": "^8.13.0",
|
|
113
113
|
"redis": "^4.7.0"
|
|
114
114
|
}
|
|
115
115
|
}
|