Skip to content

Commit db5d821

Browse files
committed
WIP
1 parent 774f526 commit db5d821

File tree

9 files changed

+855
-289
lines changed

9 files changed

+855
-289
lines changed

.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

+546
Large diffs are not rendered by default.

.yarnrc.yml

+2
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,7 @@ nodeLinker: node-modules
33
plugins:
44
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
55
spec: "@yarnpkg/plugin-workspace-tools"
6+
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
7+
spec: "@yarnpkg/plugin-interactive-tools"
68

79
yarnPath: .yarn/releases/yarn-3.2.0.cjs

apps/meteor/.eslintrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": ["@rocket.chat/eslint-config", "plugin:prettier/recommended"],
2+
"extends": ["@rocket.chat/eslint-config", "plugin:prettier/recommended", "plugin:import/typescript"],
33
"parser": "babel-eslint",
44
"globals": {
55
"__meteor_bootstrap__": false,

apps/meteor/app/api/server/lib/getUploadFormData.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
import Busboy from 'busboy';
1+
import busboy from 'busboy';
22

33
export const getUploadFormData = async ({ request }) =>
44
new Promise((resolve, reject) => {
5-
const busboy = new Busboy({ headers: request.headers });
5+
const bb = busboy({ headers: request.headers });
66

77
const fields = {};
88

9-
busboy.on('file', (fieldname, file, filename, encoding, mimetype) => {
9+
bb.on('file', (fieldname, file, filename, encoding, mimetype) => {
1010
const fileData = [];
1111

1212
file.on('data', (data) => fileData.push(data));
@@ -26,11 +26,11 @@ export const getUploadFormData = async ({ request }) =>
2626
});
2727
});
2828

29-
busboy.on('field', (fieldname, value) => {
29+
bb.on('field', (fieldname, value) => {
3030
fields[fieldname] = value;
3131
});
3232

33-
busboy.on('finish', () => resolve(fields));
33+
bb.on('finish', () => resolve(fields));
3434

35-
request.pipe(busboy);
35+
request.pipe(bb);
3636
});

apps/meteor/ee/server/services/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -33,19 +33,19 @@
3333
"ajv": "^8.7.1",
3434
"bcrypt": "^5.0.1",
3535
"body-parser": "^1.20.0",
36-
"colorette": "^1.3.0",
37-
"cookie": "^0.4.2",
36+
"colorette": "^1.4.0",
37+
"cookie": "^0.5.0",
3838
"cookie-parser": "^1.4.6",
3939
"ejson": "^2.2.2",
4040
"eventemitter3": "^4.0.7",
4141
"express": "^4.17.3",
4242
"fibers": "^5.0.1",
4343
"jaeger-client": "^3.19.0",
4444
"mem": "^8.1.1",
45-
"moleculer": "^0.14.19",
45+
"moleculer": "^0.14.20",
4646
"mongodb": "^3.6.10",
4747
"nats": "^2.4.0",
48-
"pino": "^7.9.2",
48+
"pino": "^7.10.0",
4949
"sodium-native": "^3.3.0",
5050
"sodium-plus": "^0.9.0",
5151
"underscore.string": "^3.3.6",
@@ -63,7 +63,7 @@
6363
"@types/mongodb": "^3.6.20",
6464
"@types/node": "^14.18.12",
6565
"@types/ws": "^8.5.3",
66-
"pino-pretty": "^7.6.0",
66+
"pino-pretty": "^7.6.1",
6767
"pm2": "^5.2.0",
6868
"ts-node": "^10.7.0",
6969
"typescript": "~4.3.5"

apps/meteor/package.json

+48-48
Original file line numberDiff line numberDiff line change
@@ -138,12 +138,12 @@
138138
"babel-eslint": "^10.1.0",
139139
"babel-loader": "^8.2.2",
140140
"babel-plugin-array-includes": "^2.0.3",
141-
"chai": "^4.3.4",
141+
"chai": "^4.3.6",
142142
"chai-datetime": "^1.8.0",
143-
"chai-dom": "^1.10.0",
143+
"chai-dom": "^1.11.0",
144144
"chai-spies": "^1.0.0",
145145
"cross-env": "^7.0.3",
146-
"cypress": "^7.6.0",
146+
"cypress": "^7.7.0",
147147
"emojione-assets": "^4.5.0",
148148
"eslint": "^6.8.0",
149149
"eslint-config-prettier": "^8.3.0",
@@ -152,21 +152,21 @@
152152
"eslint-plugin-react": "^7.24.0",
153153
"eslint-plugin-react-hooks": "^4.2.0",
154154
"eslint-plugin-testing-library": "^5.0.0",
155-
"fast-glob": "^3.2.5",
155+
"fast-glob": "^3.2.11",
156156
"i18next": "^20.3.2",
157157
"jsdom-global": "^3.0.2",
158158
"mocha": "^9.1.3",
159159
"mock-require": "^3.0.3",
160160
"outdent": "~0.8.0",
161-
"pino-pretty": "^7.6.0",
162-
"postcss": "~8",
161+
"pino-pretty": "^7.6.1",
162+
"postcss": "~8.4.12",
163163
"postcss-custom-properties": "^11.0.0",
164164
"postcss-easy-import": "^3.0.0",
165165
"postcss-load-config": "^3.1.0",
166166
"postcss-media-minmax": "^5.0.0",
167-
"postcss-nested": "^5.0.5",
167+
"postcss-nested": "^5.0.6",
168168
"postcss-url": "^10.1.3",
169-
"prettier": "2.5.1",
169+
"prettier": "2.6.2",
170170
"rewire": "^5.0.0",
171171
"source-map": "^0.5.7",
172172
"stylelint": "^13.13.1",
@@ -179,7 +179,7 @@
179179
},
180180
"dependencies": {
181181
"@babel/runtime": "^7.15.4",
182-
"@bugsnag/js": "^7.11.0",
182+
"@bugsnag/js": "^7.16.2",
183183
"@google-cloud/language": "^3.8.0",
184184
"@google-cloud/storage": "^2.5.0",
185185
"@nivo/bar": "0.73.1",
@@ -218,69 +218,69 @@
218218
"asterisk-manager": "^0.2.0",
219219
"atlassian-crowd-patched": "^0.5.1",
220220
"autolinker": "^3.14.3",
221-
"aws-sdk": "^2.735.0",
221+
"aws-sdk": "^2.1119.0",
222222
"bad-words": "^3.0.4",
223223
"bcrypt": "^5.0.1",
224224
"blockstack": "19.3.0",
225-
"body-parser": "1.19.2",
226-
"bson": "^4.5.1",
227-
"busboy": "^0.3.1",
225+
"body-parser": "1.20.0",
226+
"bson": "^4.6.3",
227+
"busboy": "^1.6.0",
228228
"bytebuffer": "5.0.1",
229229
"cas": "https://github.com/kcbanner/node-cas/tarball/fcd27dad333223b3b75a048bce27973fb3ca0f62",
230230
"change-case": "^4.1.2",
231-
"chart.js": "^2.9.3",
232-
"clipboard": "^2.0.8",
233-
"codemirror": "^5.62.0",
234-
"colorette": "^1.3.0",
231+
"chart.js": "^2.9.4",
232+
"clipboard": "^2.0.10",
233+
"codemirror": "^5.65.3",
234+
"colorette": "^1.4.0",
235235
"connect": "^3.7.0",
236-
"cookie": "^0.4.1",
236+
"cookie": "^0.4.2",
237237
"cookie-parser": "^1.4.6",
238238
"cors": "^2.8.5",
239239
"css-vars-ponyfill": "^2.4.7",
240240
"csv-parse": "^4.16.3",
241241
"cypress-real-events": "^1.7.0",
242242
"cypress-wait-until": "^1.7.2",
243243
"date-fns": "^2.28.0",
244-
"dompurify": "^2.2.9",
244+
"dompurify": "^2.3.6",
245245
"ejson": "^2.2.2",
246246
"emailreplyparser": "^0.0.5",
247247
"emojione": "^4.5.0",
248248
"eslint-plugin-anti-trojan-source": "^1.1.0",
249249
"eventemitter3": "^4.0.7",
250-
"exif-be-gone": "^1.2.0",
251-
"express": "^4.17.1",
252-
"express-rate-limit": "^5.2.6",
250+
"exif-be-gone": "^1.2.2",
251+
"express": "^4.17.3",
252+
"express-rate-limit": "^5.5.1",
253253
"fastq": "^1.13.0",
254-
"fflate": "^0.7.1",
254+
"fflate": "^0.7.3",
255255
"fibers": "^5.0.1",
256256
"file-type": "^10.11.0",
257257
"filenamify": "^4.3.0",
258258
"filesize": "^3.6.1",
259-
"google-libphonenumber": "^3.2.25",
259+
"google-libphonenumber": "^3.2.27",
260260
"googleapis": "^25.0.0",
261261
"grapheme-splitter": "^1.0.4",
262262
"gridfs-stream": "^1.1.1",
263263
"he": "^1.2.0",
264264
"highlight.js": "^9.18.5",
265265
"http-proxy-agent": "^5.0.0",
266-
"i18next-http-backend": "^1.3.1",
266+
"i18next-http-backend": "^1.4.0",
267267
"iconv-lite": "^0.6.3",
268-
"image-size": "^1.0.0",
268+
"image-size": "^1.0.1",
269269
"imap": "^0.8.19",
270270
"ip-range-check": "^0.2.0",
271271
"is-svg": "^4.3.2",
272-
"jquery": "^3.5.1",
272+
"jquery": "^3.6.0",
273273
"jschardet": "^3.0.0",
274-
"jsdom": "^16.6.0",
275-
"jsrsasign": "^10.4.0",
274+
"jsdom": "^16.7.0",
275+
"jsrsasign": "^10.5.18",
276276
"juice": "^8.0.0",
277277
"katex": "^0.11.1",
278-
"ldap-escape": "^2.0.5",
279-
"ldapjs": "^2.3.1",
278+
"ldap-escape": "^2.0.6",
279+
"ldapjs": "^2.3.2",
280280
"less": "https://github.com/meteor/less.js/tarball/8130849eb3d7f0ecf0ca8d0af7c4207b0442e3f6",
281281
"less-plugin-autoprefixer": "^2.1.0",
282282
"limax": "^3.0.0",
283-
"localforage": "^1.9.0",
283+
"localforage": "^1.10.0",
284284
"lodash.clonedeep": "^4.5.0",
285285
"lodash.debounce": "^4.0.8",
286286
"lodash.get": "^4.4.2",
@@ -291,23 +291,23 @@
291291
"meteor-node-stubs": "^1.1.0",
292292
"mime-db": "^1.48.0",
293293
"mime-type": "^3.1.0",
294-
"mkdirp": "^0.5.5",
295-
"moleculer": "^0.14.19",
294+
"mkdirp": "^0.5.6",
295+
"moleculer": "^0.14.20",
296296
"moment": "^2.29.1",
297-
"moment-timezone": "^0.5.33",
297+
"moment-timezone": "^0.5.34",
298298
"mongodb": "^3.6.10",
299-
"mongodb-memory-server": "^7.4.1",
299+
"mongodb-memory-server": "^7.6.3",
300300
"nats": "^2.4.0",
301301
"node-dogstatsd": "^0.0.7",
302302
"node-gcm": "1.0.0",
303303
"node-rsa": "^1.1.1",
304-
"nodemailer": "^6.6.2",
304+
"nodemailer": "^6.7.3",
305305
"object-path": "^0.11.8",
306306
"path": "^0.12.7",
307307
"path-to-regexp": "^6.2.0",
308308
"pdfjs-dist": "^2.8.335",
309309
"photoswipe": "^4.1.3",
310-
"pino": "^7.9.2",
310+
"pino": "^7.10.0",
311311
"poplib": "^0.1.7",
312312
"postis": "^2.2.0",
313313
"prom-client": "^12.0.0",
@@ -318,32 +318,32 @@
318318
"rc-scrollbars": "^1.1.3",
319319
"react": "^17.0.2",
320320
"react-dom": "^17.0.2",
321-
"react-hook-form": "^7.21.0",
322-
"react-i18next": "^11.16.2",
321+
"react-hook-form": "^7.30.0",
322+
"react-i18next": "^11.16.7",
323323
"react-keyed-flatten-children": "^1.3.0",
324-
"react-query": "^3.33.1",
325-
"react-virtuoso": "^1.8.6",
324+
"react-query": "^3.38.0",
325+
"react-virtuoso": "^1.11.1",
326326
"redis": "^2.8.0",
327327
"semver": "^5.7.1",
328328
"sharp": "^0.29.3",
329329
"sip.js": "^0.20.0",
330-
"sodium-native": "^3.2.1",
330+
"sodium-native": "^3.3.0",
331331
"sodium-plus": "^0.9.0",
332332
"speakeasy": "^2.0.0",
333333
"stream-buffers": "^3.0.2",
334334
"string-strip-html": "^7.0.3",
335335
"tar-stream": "^1.6.2",
336-
"tinykeys": "^1.2.0",
336+
"tinykeys": "^1.4.0",
337337
"toastr": "^2.1.4",
338338
"turndown": "^5.0.3",
339-
"twilio": "^3.65.0",
339+
"twilio": "^3.76.1",
340340
"twit": "^2.2.11",
341341
"ua-parser-js": "^1.0.2",
342-
"underscore": "^1.13.1",
343-
"underscore.string": "^3.3.5",
342+
"underscore": "^1.13.2",
343+
"underscore.string": "^3.3.6",
344344
"universal-perf-hooks": "^1.0.1",
345345
"url-polyfill": "^1.1.12",
346-
"use-subscription": "^1.5.1",
346+
"use-subscription": "^1.6.0",
347347
"uuid": "^3.4.0",
348348
"webdav": "^2.10.2",
349349
"xml-crypto": "^2.1.3",

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"storybook": "yarn workspace @rocket.chat/meteor run storybook"
1616
},
1717
"devDependencies": {
18-
"husky": "^7.0.1",
19-
"turbo": "1.2.0"
18+
"husky": "^7.0.4",
19+
"turbo": "1.2.5"
2020
},
2121
"workspaces": [
2222
"apps/*",

packages/core-typings/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"@rocket.chat/ui-kit": "^0.31.6",
1010
"@types/mongodb": "^3.6.10",
1111
"eslint": "^8.12.0",
12-
"prettier": "^2.6.1",
12+
"prettier": "^2.6.2",
1313
"typescript": "~4.3.5"
1414
},
1515
"scripts": {

0 commit comments

Comments
 (0)