Skip to content

Commit

Permalink
chore(deps): bump dependencies with known issues (#35007)
Browse files Browse the repository at this point in the history
  • Loading branch information
julio-rocketchat authored Jan 24, 2025
1 parent 5c7f985 commit 274f322
Show file tree
Hide file tree
Showing 6 changed files with 726 additions and 635 deletions.
2 changes: 1 addition & 1 deletion apps/meteor/app/mailer/server/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { escapeHTML } from '@rocket.chat/string-helpers';
import juice from 'juice';
import { Email } from 'meteor/email';
import { Meteor } from 'meteor/meteor';
import stripHtml from 'string-strip-html';
import { stripHtml } from 'string-strip-html';
import _ from 'underscore';

import { replaceVariables } from './replaceVariables';
Expand Down
11 changes: 5 additions & 6 deletions apps/meteor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,6 @@
"@types/sinon": "^10.0.20",
"@types/speakeasy": "^2.0.10",
"@types/strict-uri-encode": "^2.0.2",
"@types/string-strip-html": "^5.0.1",
"@types/supertest": "^6.0.2",
"@types/supports-color": "~7.2.1",
"@types/textarea-caret": "^3.0.3",
Expand Down Expand Up @@ -190,7 +189,7 @@
"nyc": "^15.1.0",
"outdent": "~0.8.0",
"pino-pretty": "^7.6.1",
"playwright-qase-reporter": "^1.2.2",
"playwright-qase-reporter": "^2.0.16",
"postcss": "~8.4.49",
"postcss-custom-properties": "^14.0.4",
"postcss-easy-import": "^4.0.0",
Expand Down Expand Up @@ -221,7 +220,7 @@
"@babel/runtime": "~7.26.0",
"@bugsnag/js": "~7.20.2",
"@bugsnag/plugin-react": "~7.19.0",
"@google-cloud/storage": "^6.12.0",
"@google-cloud/storage": "^7.15.0",
"@kaciras/deasync": "^1.1.0",
"@nivo/bar": "0.88.0",
"@nivo/core": "0.88.0",
Expand Down Expand Up @@ -367,7 +366,7 @@
"jsdom": "^16.7.0",
"jsrsasign": "^11.1.0",
"juice": "^8.1.0",
"katex": "~0.16.11",
"katex": "~0.16.21",
"ldap-escape": "^2.0.6",
"ldapjs": "^2.3.3",
"limax": "^3.0.0",
Expand Down Expand Up @@ -428,12 +427,12 @@
"speakeasy": "^2.0.0",
"stream-buffers": "^3.0.3",
"strict-uri-encode": "^2.0.0",
"string-strip-html": "^7.0.3",
"string-strip-html": "^8.5.0",
"suretype": "~2.4.1",
"swiper": "patch:swiper@npm%3A11.1.14#~/.yarn/patches/swiper-npm-11.1.14-8126fa478a.patch",
"textarea-caret": "^3.1.0",
"tinykeys": "^1.4.0",
"twilio": "^3.84.1",
"twilio": "^5.4.2",
"twit": "^2.2.11",
"typia": "~6.12.2",
"ua-parser-js": "^1.0.39",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { OmnichannelSourceType } from '@rocket.chat/core-typings';
import { LivechatVisitors, LivechatRooms, Messages } from '@rocket.chat/models';
import { Random } from '@rocket.chat/random';
import type { ParsedMail, Attachment } from 'mailparser';
import stripHtml from 'string-strip-html';
import { stripHtml } from 'string-strip-html';

import { logger } from './logger';
import { FileUpload } from '../../../app/file-upload/server';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export class Twilio implements ISMSProvider {
let persistentAction;
if (extraData?.location) {
const [longitude, latitude] = extraData.location.coordinates;
persistentAction = `geo:${latitude},${longitude}`;
persistentAction = [`geo:${latitude},${longitude}`];
body = i18n.t('Location', { lng: defaultLanguage });
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"fossify": "TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\"}' ts-node scripts/fossify.ts"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@changesets/cli": "^2.27.11",
"@types/chart.js": "^2.9.41",
"@types/js-yaml": "^4.0.9",
"ts-node": "^10.9.2",
Expand Down
Loading

0 comments on commit 274f322

Please sign in to comment.