Update all non-major dependencies (#11618)

* Update all non-major dependencies

* Fix types

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

* highlight.js breaking change

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

* Hold back jest-sonar-reporter

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

---------

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
renovate[bot] 2023-10-18 16:18:13 +00:00 committed by GitHub
parent 73f91cbafa
commit 67452f5021
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 564 additions and 396 deletions

View File

@ -84,7 +84,7 @@
"emojibase-regex": "15.2.0",
"escape-html": "^1.0.3",
"file-saver": "^2.0.5",
"filesize": "10.0.12",
"filesize": "10.1.0",
"gfm.css": "^1.1.2",
"glob-to-regexp": "^0.4.1",
"graphemer": "^1.4.0",
@ -109,7 +109,7 @@
"opus-recorder": "^8.0.3",
"pako": "^2.0.3",
"png-chunks-extract": "^1.0.0",
"posthog-js": "1.77.2",
"posthog-js": "1.83.0",
"proposal-temporal": "^0.9.0",
"qrcode": "1.5.3",
"re-resizable": "^6.9.0",
@ -143,7 +143,7 @@
"@babel/preset-typescript": "^7.12.7",
"@babel/register": "^7.12.10",
"@babel/traverse": "^7.12.12",
"@casualbot/jest-sonar-reporter": "^2.2.5",
"@casualbot/jest-sonar-reporter": "2.2.7",
"@matrix-org/olm": "https://gitlab.matrix.org/api/v4/projects/27/packages/npm/@matrix-org/olm/-/@matrix-org/olm-3.2.14.tgz",
"@peculiar/webcrypto": "^1.4.3",
"@percy/cli": "^1.11.0",
@ -194,10 +194,10 @@
"cypress-plugin-init": "^0.0.8",
"cypress-real-events": "^1.7.1",
"cypress-terminal-report": "^5.3.2",
"eslint": "8.48.0",
"eslint": "8.51.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-deprecate": "0.7.0",
"eslint-plugin-deprecate": "0.8.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.5.1",

View File

@ -5,4 +5,4 @@
@import "_dark.pcss";
@import "../../light/css/_mods.pcss";
@import "../../../../res/css/_components.pcss";
@import url("highlight.js/styles/atom-one-dark.css");
@import url("highlight.js/styles/atom-one-dark.min.css");

View File

@ -4,4 +4,4 @@
@import "../../legacy-light/css/_legacy-light.pcss";
@import "_legacy-dark.pcss";
@import "../../../../res/css/_components.pcss";
@import url("highlight.js/styles/atom-one-dark.css");
@import url("highlight.js/styles/atom-one-dark.min.css");

View File

@ -3,4 +3,4 @@
@import "_fonts.pcss";
@import "_legacy-light.pcss";
@import "../../../../res/css/_components.pcss";
@import url("highlight.js/styles/atom-one-light.css");
@import url("highlight.js/styles/atom-one-light.min.css");

View File

@ -5,4 +5,4 @@
@import "_light-high-contrast.pcss";
@import "../../light/css/_mods.pcss";
@import "../../../../res/css/_components.pcss";
@import url("highlight.js/styles/atom-one-light.css");
@import url("highlight.js/styles/atom-one-light.min.css");

View File

@ -6,4 +6,4 @@
@import "_light.pcss";
@import "_mods.pcss";
@import "../../../../res/css/_components.pcss";
@import url("highlight.js/styles/atom-one-light.css");
@import url("highlight.js/styles/atom-one-light.min.css");

View File

@ -307,7 +307,7 @@ export class PosthogAnalytics {
// No point identifying again
return;
}
if (this.posthog.persistence.get_user_state() === "identified") {
if (this.posthog.persistence?.get_user_state() === "identified") {
// Analytics ID has changed, reset as Posthog will refuse to merge in this case
this.posthog.reset();
}

938
yarn.lock

File diff suppressed because it is too large Load Diff