Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Update all non-major dependencies (#11618)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
renovate[bot] and t3chguy authored Oct 18, 2023
1 parent 73f91cb commit 67452f5
Show file tree
Hide file tree
Showing 8 changed files with 562 additions and 394 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion res/themes/dark/css/dark.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -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");
2 changes: 1 addition & 1 deletion res/themes/legacy-dark/css/legacy-dark.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -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");
2 changes: 1 addition & 1 deletion res/themes/legacy-light/css/legacy-light.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Original file line number Diff line number Diff line change
Expand Up @@ -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");
2 changes: 1 addition & 1 deletion res/themes/light/css/light.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -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");
2 changes: 1 addition & 1 deletion src/PosthogAnalytics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down
934 changes: 551 additions & 383 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit 67452f5

Please sign in to comment.