From d9fdf6e7b5e6befea43ca6566ae9f9bd6cae5a87 Mon Sep 17 00:00:00 2001 From: Vijay A Date: Mon, 5 Aug 2024 12:44:44 -0500 Subject: [PATCH 01/26] Bump up ferdium version to next nightly --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 282018a232..6bdb444414 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "productName": "Ferdium", "desktopName": "ferdium.desktop", "appId": "org.ferdium.ferdium-app", - "version": "6.7.6-nightly.8", + "version": "6.7.7-nightly.0", "description": "Messaging app for WhatsApp, Slack, Telegram, Hangouts and many many more.", "author": "Ferdium Contributors (https://ferdium.org/)", "license": "Apache-2.0", From 858c14928af1790202542c477d0b80ac8fac2273 Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 6 Aug 2024 00:52:42 +0000 Subject: [PATCH 02/26] Update browserslist data updates and linter fixes [skip ci] --- pnpm-lock.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 340e982321..98dd29c1e0 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -2570,8 +2570,8 @@ packages: camelize@1.0.1: resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} - caniuse-lite@1.0.30001644: - resolution: {integrity: sha512-YGvlOZB4QhZuiis+ETS0VXR+MExbFf4fZYYeMTEE0aTQd/RdIjkTyZjLrbYVKnHzppDvnOhritRVv+i7Go6mHw==} + caniuse-lite@1.0.30001649: + resolution: {integrity: sha512-fJegqZZ0ZX8HOWr6rcafGr72+xcgJKI9oWfDW5DrD7ExUtgZC7a7R7ZYmZqplh7XDocFdGeIFn7roAxhOeYrPQ==} caseless@0.12.0: resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} @@ -10274,7 +10274,7 @@ snapshots: browserslist@4.23.0: dependencies: - caniuse-lite: 1.0.30001644 + caniuse-lite: 1.0.30001649 electron-to-chromium: 1.4.710 node-releases: 2.0.14 update-browserslist-db: 1.0.13(browserslist@4.23.0) @@ -10437,7 +10437,7 @@ snapshots: camelize@1.0.1: {} - caniuse-lite@1.0.30001644: {} + caniuse-lite@1.0.30001649: {} caseless@0.12.0: {} From 2f97b8d13d00fd11e237b255f5b272234e6b3ed8 Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 6 Aug 2024 00:52:43 +0000 Subject: [PATCH 03/26] 6.7.7-nightly.1 [skip ci] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6bdb444414..21deeaf0f8 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "productName": "Ferdium", "desktopName": "ferdium.desktop", "appId": "org.ferdium.ferdium-app", - "version": "6.7.7-nightly.0", + "version": "6.7.7-nightly.1", "description": "Messaging app for WhatsApp, Slack, Telegram, Hangouts and many many more.", "author": "Ferdium Contributors (https://ferdium.org/)", "license": "Apache-2.0", From f87ff77ec78e4f3d7cbf4d8cbbd8d7409b9bb2fa Mon Sep 17 00:00:00 2001 From: Vijay A Date: Fri, 9 Aug 2024 18:17:54 -0500 Subject: [PATCH 04/26] Upgrade node (20.16.0), pnpm (9.7.0), deps --- .nvmrc | 2 +- CONTRIBUTING.md | 4 +- Dockerfile | 2 +- package.json | 32 ++--- pnpm-lock.yaml | 375 ++++++++++++++++++++++-------------------------- recipes | 2 +- 6 files changed, 194 insertions(+), 223 deletions(-) diff --git a/.nvmrc b/.nvmrc index b8e593f521..8ce7030825 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -20.15.1 +20.16.0 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 99acb51cbc..c22f9ab62f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -62,8 +62,8 @@ Currently, these are the combinations of system dependencies that work for MacOS # Note: 'jq' is not a required system dependency; its only here to show the combined output of versions needed $ jq --null-input '[inputs.engines] | add' < ./package.json < ./recipes/package.json { - "node": "20.15.1", - "pnpm": "9.5.0" + "node": "20.16.0", + "pnpm": "9.7.0" } ``` diff --git a/Dockerfile b/Dockerfile index 79bd983435..60bfc848f3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # Note: Before running this file, you should have already cloned the git repo + submodules on the host machine. This is used when actively developing on your local machine, but you want to build for a different architecture -FROM docker.io/library/node:20.15.1-buster AS builder +FROM docker.io/library/node:20.16.0-buster AS builder ENV PATH="/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/usr/local/lib:/usr/include:/usr/share" diff --git a/package.json b/package.json index 21deeaf0f8..d077ac9514 100644 --- a/package.json +++ b/package.json @@ -13,15 +13,15 @@ "repository": "https://github.com/ferdium/ferdium-app.git", "private": true, "engines": { - "node": "20.15.1", - "pnpm": "9.5.0" + "node": "20.16.0", + "pnpm": "9.7.0" }, "engine-strict": true, "volta": { - "node": "20.15.1", - "pnpm": "9.5.0" + "node": "20.16.0", + "pnpm": "9.7.0" }, - "packageManager": "pnpm@9.5.0", + "packageManager": "pnpm@9.7.0", "scripts": { "prepare": "is-ci || husky", "start": "electron ./build", @@ -65,8 +65,8 @@ "@emotion/styled": "11.11.5", "@mdi/js": "7.4.47", "@mdi/react": "1.6.1", - "@mui/icons-material": "5.16.1", - "@mui/material": "5.16.1", + "@mui/icons-material": "5.16.7", + "@mui/material": "5.16.7", "@octokit/core": "5.1.0", "@sentry/electron": "4.14.0", "@superwf/mobx-react-router": "7.4.0", @@ -77,7 +77,7 @@ "csstype": "3.1.3", "darkreader": "4.9.87", "dbus-next": "0.10.2", - "debug": "4.3.5", + "debug": "4.3.6", "electron-dl": "3.5.2", "electron-find": "1.0.7", "electron-react-titlebar": "1.2.1", @@ -85,9 +85,9 @@ "electron-window-state": "5.0.3", "fast-folder-size": "2.2.0", "fs-extra": "11.2.0", - "google-translate-api-x": "10.6.8", + "google-translate-api-x": "10.7.0", "history": "5.3.0", - "immutable": "4.3.6", + "immutable": "4.3.7", "jsonwebtoken": "9.0.2", "jss": "10.10.0", "languagedetect": "2.0.0", @@ -95,10 +95,10 @@ "macos-version": "5.2.1", "markdown-to-jsx": "7.4.7", "minimist": "1.2.8", - "mobx": "6.13.0", + "mobx": "6.13.1", "mobx-localstorage": "1.2.0", "mobx-react": "7.6.0", - "mobx-react-form": "6.9.4", + "mobx-react-form": "6.10.1", "moment": "2.30.1", "ms": "2.1.3", "normalize-url": "6.1.0", @@ -118,12 +118,12 @@ "react-modal": "3.16.1", "react-router-dom": "6.24.1", "react-sortable-hoc": "2.0.0", - "react-tooltip": "5.27.1", + "react-tooltip": "5.28.0", "react-topbar-progress-indicator": "4.1.1", "react-transition-group": "4.4.5", "route-parser": "0.0.5", "sanitize-filename": "1.6.3", - "semver": "7.6.2", + "semver": "7.6.3", "sqlite3": "5.1.6", "tar": "6.2.1", "tslib": "2.6.3", @@ -143,7 +143,7 @@ "@types/color": "3.0.6", "@types/fs-extra": "11.0.4", "@types/jest": "29.5.12", - "@types/lodash": "4.17.6", + "@types/lodash": "4.17.7", "@types/minimist": "1.2.5", "@types/ms": "0.7.34", "@types/node": "20.14.10", @@ -182,7 +182,7 @@ "eslint-plugin-sonar": "0.13.2", "eslint-plugin-unicorn": "52.0.0", "gulp-livereload": "4.0.2", - "husky": "9.0.11", + "husky": "9.1.4", "is-ci": "3.0.1", "jest": "29.7.0", "prettier": "3.3.3", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 98dd29c1e0..6a9adef780 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -57,11 +57,11 @@ importers: specifier: 1.6.1 version: 1.6.1 '@mui/icons-material': - specifier: 5.16.1 - version: 5.16.1(@mui/material@5.16.1(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) + specifier: 5.16.7 + version: 5.16.7(@mui/material@5.16.7(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) '@mui/material': - specifier: 5.16.1 - version: 5.16.1(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: 5.16.7 + version: 5.16.7(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@octokit/core': specifier: 5.1.0 version: 5.1.0 @@ -70,7 +70,7 @@ importers: version: 4.14.0 '@superwf/mobx-react-router': specifier: 7.4.0 - version: 7.4.0(history@5.3.0)(mobx@6.13.0)(path-to-regexp@6.2.2) + version: 7.4.0(history@5.3.0)(mobx@6.13.1)(path-to-regexp@6.2.2) '@syed_umair/electron-process-manager': specifier: 1.1.0 version: 1.1.0(electron@31.3.1) @@ -93,8 +93,8 @@ importers: specifier: 0.10.2 version: 0.10.2 debug: - specifier: 4.3.5 - version: 4.3.5(supports-color@5.5.0) + specifier: 4.3.6 + version: 4.3.6(supports-color@5.5.0) electron-dl: specifier: 3.5.2 version: 3.5.2 @@ -117,14 +117,14 @@ importers: specifier: 11.2.0 version: 11.2.0 google-translate-api-x: - specifier: 10.6.8 - version: 10.6.8 + specifier: 10.7.0 + version: 10.7.0 history: specifier: 5.3.0 version: 5.3.0 immutable: - specifier: 4.3.6 - version: 4.3.6 + specifier: 4.3.7 + version: 4.3.7 jsonwebtoken: specifier: 9.0.2 version: 9.0.2 @@ -147,17 +147,17 @@ importers: specifier: 1.2.8 version: 1.2.8 mobx: - specifier: 6.13.0 - version: 6.13.0 + specifier: 6.13.1 + version: 6.13.1 mobx-localstorage: specifier: 1.2.0 - version: 1.2.0(mobx@6.13.0) + version: 1.2.0(mobx@6.13.1) mobx-react: specifier: 7.6.0 - version: 7.6.0(mobx@6.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.6.0(mobx@6.13.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) mobx-react-form: - specifier: 6.9.4 - version: 6.9.4(mobx@6.13.0) + specifier: 6.10.1 + version: 6.10.1(mobx@6.13.1) moment: specifier: 2.30.1 version: 2.30.1 @@ -216,8 +216,8 @@ importers: specifier: 2.0.0 version: 2.0.0(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-tooltip: - specifier: 5.27.1 - version: 5.27.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: 5.28.0 + version: 5.28.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-topbar-progress-indicator: specifier: 4.1.1 version: 4.1.1(react@18.3.1) @@ -231,8 +231,8 @@ importers: specifier: 1.6.3 version: 1.6.3 semver: - specifier: 7.6.2 - version: 7.6.2 + specifier: 7.6.3 + version: 7.6.3 sqlite3: specifier: 5.1.6 version: 5.1.6(encoding@0.1.13) @@ -293,8 +293,8 @@ importers: specifier: 29.5.12 version: 29.5.12 '@types/lodash': - specifier: 4.17.6 - version: 4.17.6 + specifier: 4.17.7 + version: 4.17.7 '@types/minimist': specifier: 1.2.5 version: 1.2.5 @@ -410,8 +410,8 @@ importers: specifier: 4.0.2 version: 4.0.2 husky: - specifier: 9.0.11 - version: 9.0.11 + specifier: 9.1.4 + version: 9.1.4 is-ci: specifier: 3.0.1 version: 3.0.1 @@ -441,7 +441,7 @@ importers: version: 5.4.5 wait-on: specifier: 7.2.0 - version: 7.2.0(debug@4.3.5) + version: 7.2.0(debug@4.3.6) packages: @@ -1114,12 +1114,6 @@ packages: '@floating-ui/dom@1.6.1': resolution: {integrity: sha512-iA8qE43/H5iGozC3W0YSnVSW42Vh522yyM1gj+BqRwVsTNOyr231PsXDaV04yT39PsO0QL2QpbI/M0ZaLUQgRQ==} - '@floating-ui/react-dom@2.0.8': - resolution: {integrity: sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw==} - peerDependencies: - react: '>=16.8.0' - react-dom: '>=16.8.0' - '@floating-ui/utils@0.2.1': resolution: {integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==} @@ -1331,22 +1325,11 @@ packages: '@mdi/react@1.6.1': resolution: {integrity: sha512-4qZeDcluDFGFTWkHs86VOlHkm6gnKaMql13/gpIcUQ8kzxHgpj31NuCkD8abECVfbULJ3shc7Yt4HJ6Wu6SN4w==} - '@mui/base@5.0.0-beta.40': - resolution: {integrity: sha512-I/lGHztkCzvwlXpjD2+SNmvNQvB4227xBXhISPjEaJUXGImOQ9f3D2Yj/T3KasSI/h0MLWy74X0J6clhPmsRbQ==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@types/react': ^17.0.0 || ^18.0.0 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - - '@mui/core-downloads-tracker@5.16.1': - resolution: {integrity: sha512-62Jq7ACYi/55Kjkh/nVfEL3F3ytTYTsdB8MGJ9iI+eRQv+Aoem5CPUAzQihUo25qqh1VkVu9/jQn3dFbyrXHgw==} + '@mui/core-downloads-tracker@5.16.7': + resolution: {integrity: sha512-RtsCt4Geed2/v74sbihWzzRs+HsIQCfclHeORh5Ynu2fS4icIKozcSubwuG7vtzq2uW3fOR1zITSP84TNt2GoQ==} - '@mui/icons-material@5.16.1': - resolution: {integrity: sha512-ogQPweYba4+5XZykilwxn2/oS78uwoQ0BVBpOhhCJo0ooZsqTTsalhzP2qD/RdGqMQ8xyXPz1sYM2djTruVVVA==} + '@mui/icons-material@5.16.7': + resolution: {integrity: sha512-UrGwDJCXEszbDI7yV047BYU5A28eGJ79keTCP4cc74WyncuVrnurlmIRxaHL8YK+LI1Kzq+/JM52IAkNnv4u+Q==} engines: {node: '>=12.0.0'} peerDependencies: '@mui/material': ^5.0.0 @@ -1356,8 +1339,8 @@ packages: '@types/react': optional: true - '@mui/material@5.16.1': - resolution: {integrity: sha512-BGTgJRb0d/hX9tus5CEb6N/Fo8pE4tYA+s9r4/S0PCrtZ3urCLXlTH4qrAvggQbiF1cYRAbHCkVHoQ+4Pdxl+w==} + '@mui/material@5.16.7': + resolution: {integrity: sha512-cwwVQxBhK60OIOqZOVLFt55t01zmarKJiJUWbk0+8s/Ix5IaUzAShqlJchxsIQ4mSrWqgcKCCXKtIlG5H+/Jmg==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.5.0 @@ -1373,8 +1356,8 @@ packages: '@types/react': optional: true - '@mui/private-theming@5.16.1': - resolution: {integrity: sha512-2EGCKnAlq9vRIFj61jNWNXlKAxXp56577OVvsts7fAqRx+G1y6F+N7Q198SBaz8jYQeGKSz8ZMXK/M3FqjdEyw==} + '@mui/private-theming@5.16.6': + resolution: {integrity: sha512-rAk+Rh8Clg7Cd7shZhyt2HGTTE5wYKNSJ5sspf28Fqm/PZ69Er9o6KX25g03/FG2dfpg5GCwZh/xOojiTfm3hw==} engines: {node: '>=12.0.0'} peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 @@ -1383,8 +1366,8 @@ packages: '@types/react': optional: true - '@mui/styled-engine@5.16.1': - resolution: {integrity: sha512-JwWUBaYR8HHCFefSeos0z6JoTbu0MnjAuNHu4QoDgPxl2EE70XH38CsKay66Iy0QkNWmGTRXVU2sVFgUOPL/Dw==} + '@mui/styled-engine@5.16.6': + resolution: {integrity: sha512-zaThmS67ZmtHSWToTiHslbI8jwrmITcN93LQaR2lKArbvS7Z3iLkwRoiikNWutx9MBs8Q6okKvbZq1RQYB3v7g==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.4.1 @@ -1396,8 +1379,8 @@ packages: '@emotion/styled': optional: true - '@mui/system@5.16.1': - resolution: {integrity: sha512-VaFcClC+uhvIEzhzcNmh9FRBvrG9IPjsOokhj6U1HPZsFnLzHV7AD7dJcT6LxWoiIZj9Ej0GK+MGh/b8+BtSlQ==} + '@mui/system@5.16.7': + resolution: {integrity: sha512-Jncvs/r/d/itkxh7O7opOunTqbbSSzMTHzZkNLM+FjAOg+cYAZHrPDlYe1ZGKUYORwwb2XexlWnpZp0kZ4AHuA==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.5.0 @@ -1420,8 +1403,8 @@ packages: '@types/react': optional: true - '@mui/utils@5.16.1': - resolution: {integrity: sha512-4UQzK46tAEYs2xZv79hRiIc3GxZScd00kGPDadNrGztAEZlmSaUY8cb9ITd2xCiTfzsx5AN6DH8aaQ8QEKJQeQ==} + '@mui/utils@5.16.6': + resolution: {integrity: sha512-tWiQqlhxAt3KENNiSRL+DIn9H5xNVK6Jjf70x3PnfQPz1MPBdh7yyIcAyVBT9xiw7hP3SomRhPR7hzBMBCjqEA==} engines: {node: '>=12.0.0'} peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 @@ -1675,8 +1658,8 @@ packages: '@types/keyv@3.1.4': resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} - '@types/lodash@4.17.6': - resolution: {integrity: sha512-OpXEVoCKSS3lQqjx9GGGOapBeuW5eUboYHRlHP9urXPX25IKZ6AnP5ZRxtVf63iieUbsHxLn8NQ5Nlftc6yzAA==} + '@types/lodash@4.17.7': + resolution: {integrity: sha512-8wTvZawATi/lsmNu10/j2hk1KEP0IvjubqPE3cu1Xz7xfXXt5oCq3SNUz4fMIP4XGF9Ky+Ue2tBA3hcS7LSBlA==} '@types/minimist@1.2.5': resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} @@ -2695,6 +2678,10 @@ packages: resolution: {integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==} engines: {node: '>=6'} + clsx@2.1.1: + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} + engines: {node: '>=6'} + co-body@6.1.0: resolution: {integrity: sha512-m7pOT6CdLN7FuXUcpuz/8lfQ/L77x8SchHCF4G0RBTJO20Wzmhn5Sp4/5WsKy8OSpifBSUrmg83qEqaDHdyFuQ==} @@ -2990,8 +2977,8 @@ packages: supports-color: optional: true - debug@4.3.5: - resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} + debug@4.3.6: + resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==} engines: {node: '>=6.0'} peerDependencies: supports-color: '*' @@ -4058,8 +4045,8 @@ packages: globrex@0.1.2: resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} - google-translate-api-x@10.6.8: - resolution: {integrity: sha512-vlXnCQhMcy00P2uX/mK3NzJb4HBMhoKo39PSmupiiVKLgsAZp8b22OV48dcAUxykAuPxQreyBYz4P6jFCzeZjA==} + google-translate-api-x@10.7.0: + resolution: {integrity: sha512-Et0NFXJPW0Kuh92sNQSiiQN/qQX+zwWFABpOnkBCZiQdkAdL+vJ29T2KbgzDVt/PIIoKoltiWoVMmS+dM+1VGg==} engines: {node: '>=14.0.0'} gopd@1.0.1: @@ -4244,8 +4231,8 @@ packages: humanize-ms@1.2.1: resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} - husky@9.0.11: - resolution: {integrity: sha512-AB6lFlbwwyIqMdHYhwPe+kjOC3Oc5P3nThEoW/AaO2BX3vJDjWPFxYLxokUZOo6RNX20He3AaT8sESs9NJcmEw==} + husky@9.1.4: + resolution: {integrity: sha512-bho94YyReb4JV7LYWRWxZ/xr6TtOTt8cMfmQ39MQYJ7f/YE268s3GdghGwi+y4zAeqewE5zYLvuhV0M0ijsDEA==} engines: {node: '>=18'} hasBin: true @@ -4276,8 +4263,8 @@ packages: resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} engines: {node: '>= 4'} - immutable@4.3.6: - resolution: {integrity: sha512-Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ==} + immutable@4.3.7: + resolution: {integrity: sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==} import-fresh@3.3.0: resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} @@ -5433,8 +5420,8 @@ packages: peerDependencies: mobx: '>=3' - mobx-react-form@6.9.4: - resolution: {integrity: sha512-Q5V5I+EexsNk3TI6hl1yINqG9V6KTtoEJMrMsArcuLpYA+JWP/41Jq6e8lnmGAInq+GH+MzyNPwgvz3XGUXEaA==} + mobx-react-form@6.10.1: + resolution: {integrity: sha512-Z99lrbNL1tboSfZPvykSDE/6OnoonHzfwKN/hWpWm3sKHEvYDL+F6c9sDb4iR9ep/gbWj+UZZgVPFjMbkdu1YQ==} engines: {node: '>=8.0.0'} peerDependencies: mobx: ^6.0.0 @@ -5465,8 +5452,8 @@ packages: react-native: optional: true - mobx@6.13.0: - resolution: {integrity: sha512-1laWODrBWmB7mDJ8EClCjUQTyLwJ0ydJgE4FtK7t9r3JnjXgc9OhmYs2P4RtHrY1co5+4T6cKP2UswX2SU29mA==} + mobx@6.13.1: + resolution: {integrity: sha512-ekLRxgjWJr8hVxj9ZKuClPwM/iHckx3euIJ3Np7zLVNtqJvfbbq7l370W/98C8EabdQ1pB5Jd3BbDWxJPNnaOg==} modify-filename@1.1.0: resolution: {integrity: sha512-EickqnKq3kVVaZisYuCxhtKbZjInCuwgwZWyAmRIp1NTMhri7r3380/uqwrUHfaDiPzLVTuoNy4whX66bxPVog==} @@ -6223,8 +6210,8 @@ packages: react: ^16.3.0 || ^17.0.0 react-dom: ^16.3.0 || ^17.0.0 - react-tooltip@5.27.1: - resolution: {integrity: sha512-a+micPXcMOMt11CYlwJD4XShcqGziasHco4NPe1OFw298WBTILMyzUgNC1LAFViAe791JdHNVSJIpzhZm2MvDA==} + react-tooltip@5.28.0: + resolution: {integrity: sha512-R5cO3JPPXk6FRbBHMO0rI9nkUG/JKfalBSQfZedZYzmqaZQgq7GLzF8vcCWx6IhUCKg0yPqJhXIzmIO5ff15xg==} peerDependencies: react: '>=16.14.0' react-dom: '>=16.14.0' @@ -6558,8 +6545,8 @@ packages: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true - semver@7.6.2: - resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==} + semver@7.6.3: + resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} engines: {node: '>=10'} hasBin: true @@ -7613,7 +7600,7 @@ snapshots: dependencies: cli-table: 0.3.11 commander: 2.20.3 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) enquirer: 1.0.3 fast-levenshtein: 3.0.0 fs-extra: 9.1.0 @@ -7634,7 +7621,7 @@ snapshots: '@adonisjs/generic-exceptions': 2.0.1 bytes: 3.1.2 co-body: 6.1.0 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) end-of-stream: 1.4.4 fs-extra: 9.1.0 get-stream: 6.0.1 @@ -7654,7 +7641,7 @@ snapshots: dependencies: '@adonisjs/generic-exceptions': 2.0.1 caller: 1.1.0 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) lodash: 4.17.21 require-stack: 1.0.2 transitivePeerDependencies: @@ -7666,7 +7653,7 @@ snapshots: '@adonisjs/middleware-base': 1.0.0 bcryptjs: 2.4.3 co-compose: 4.0.0 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) dotenv: 6.2.0 edge.js: 1.1.4 eventemitter2: 5.0.1 @@ -7696,7 +7683,7 @@ snapshots: '@adonisjs/ignitor@2.0.8': dependencies: - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) pify: 4.0.1 youch: 2.2.2 youch-terminal: 1.1.1 @@ -7707,7 +7694,7 @@ snapshots: dependencies: '@adonisjs/generic-exceptions': 2.0.1 chance: 1.1.9 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) knex: 0.21.21(sqlite3@5.1.6(encoding@0.1.13)) lodash: 4.17.21 moment: 2.30.1 @@ -7772,7 +7759,7 @@ snapshots: '@babel/traverse': 7.23.5(supports-color@5.5.0) '@babel/types': 7.23.5 convert-source-map: 2.0.0 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -7962,7 +7949,7 @@ snapshots: '@babel/helper-split-export-declaration': 7.22.6 '@babel/parser': 7.23.5 '@babel/types': 7.23.5 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -8054,7 +8041,7 @@ snapshots: '@commitlint/is-ignored@19.2.2': dependencies: '@commitlint/types': 19.0.3 - semver: 7.6.2 + semver: 7.6.3 '@commitlint/lint@19.2.2': dependencies: @@ -8146,7 +8133,7 @@ snapshots: '@electron/get@2.0.3': dependencies: - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) env-paths: 2.2.1 fs-extra: 8.1.0 got: 11.8.6 @@ -8160,7 +8147,7 @@ snapshots: '@electron/notarize@2.2.1': dependencies: - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) fs-extra: 9.1.0 promise-retry: 2.0.1 transitivePeerDependencies: @@ -8168,7 +8155,7 @@ snapshots: '@electron/notarize@2.3.2': dependencies: - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) fs-extra: 9.1.0 promise-retry: 2.0.1 transitivePeerDependencies: @@ -8177,7 +8164,7 @@ snapshots: '@electron/osx-sign@1.0.5': dependencies: compare-version: 0.1.2 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) fs-extra: 10.1.0 isbinaryfile: 4.0.10 minimist: 1.2.8 @@ -8193,7 +8180,7 @@ snapshots: dependencies: '@electron/asar': 3.2.8 '@malept/cross-spawn-promise': 1.1.1 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) dir-compare: 3.3.0 fs-extra: 9.1.0 minimatch: 3.1.2 @@ -8488,7 +8475,7 @@ snapshots: '@eslint/eslintrc@2.1.4': dependencies: ajv: 6.12.6 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) espree: 9.6.1 globals: 13.24.0 ignore: 5.3.1 @@ -8510,12 +8497,6 @@ snapshots: '@floating-ui/core': 1.6.0 '@floating-ui/utils': 0.2.1 - '@floating-ui/react-dom@2.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@floating-ui/dom': 1.6.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - '@floating-ui/utils@0.2.1': {} '@formatjs/cli@6.2.12': {} @@ -8580,7 +8561,7 @@ snapshots: '@humanwhocodes/config-array@0.11.14': dependencies: '@humanwhocodes/object-schema': 2.0.2 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -8798,7 +8779,7 @@ snapshots: '@kwsites/file-exists@1.1.1': dependencies: - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) transitivePeerDependencies: - supports-color @@ -8810,7 +8791,7 @@ snapshots: '@malept/flatpak-bundler@0.4.0': dependencies: - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) fs-extra: 9.1.0 lodash: 4.17.21 tmp-promise: 3.0.3 @@ -8826,7 +8807,7 @@ snapshots: nopt: 5.0.0 npmlog: 5.0.1 rimraf: 3.0.2 - semver: 7.6.2 + semver: 7.6.3 tar: 6.2.1 transitivePeerDependencies: - encoding @@ -8838,38 +8819,24 @@ snapshots: dependencies: prop-types: 15.8.1 - '@mui/base@5.0.0-beta.40(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@babel/runtime': 7.24.4 - '@floating-ui/react-dom': 2.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mui/types': 7.2.15(@types/react@18.3.3) - '@mui/utils': 5.16.1(@types/react@18.3.3)(react@18.3.1) - '@popperjs/core': 2.11.8 - clsx: 2.1.0 - prop-types: 15.8.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - optionalDependencies: - '@types/react': 18.3.3 + '@mui/core-downloads-tracker@5.16.7': {} - '@mui/core-downloads-tracker@5.16.1': {} - - '@mui/icons-material@5.16.1(@mui/material@5.16.1(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(react@18.3.1)': + '@mui/icons-material@5.16.7(@mui/material@5.16.7(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 - '@mui/material': 5.16.1(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/material': 5.16.7(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 optionalDependencies: '@types/react': 18.3.3 - '@mui/material@5.16.1(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@mui/material@5.16.7(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 - '@mui/base': 5.0.0-beta.40(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mui/core-downloads-tracker': 5.16.1 - '@mui/system': 5.16.1(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) + '@mui/core-downloads-tracker': 5.16.7 + '@mui/system': 5.16.7(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) '@mui/types': 7.2.15(@types/react@18.3.3) - '@mui/utils': 5.16.1(@types/react@18.3.3)(react@18.3.1) + '@mui/utils': 5.16.6(@types/react@18.3.3)(react@18.3.1) + '@popperjs/core': 2.11.8 '@types/react-transition-group': 4.4.10 clsx: 2.1.0 csstype: 3.1.3 @@ -8883,16 +8850,16 @@ snapshots: '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) '@types/react': 18.3.3 - '@mui/private-theming@5.16.1(@types/react@18.3.3)(react@18.3.1)': + '@mui/private-theming@5.16.6(@types/react@18.3.3)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 - '@mui/utils': 5.16.1(@types/react@18.3.3)(react@18.3.1) + '@mui/utils': 5.16.6(@types/react@18.3.3)(react@18.3.1) prop-types: 15.8.1 react: 18.3.1 optionalDependencies: '@types/react': 18.3.3 - '@mui/styled-engine@5.16.1(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1)': + '@mui/styled-engine@5.16.6(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 '@emotion/cache': 11.11.0 @@ -8903,13 +8870,13 @@ snapshots: '@emotion/react': 11.11.4(@types/react@18.3.3)(react@18.3.1) '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) - '@mui/system@5.16.1(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1)': + '@mui/system@5.16.7(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 - '@mui/private-theming': 5.16.1(@types/react@18.3.3)(react@18.3.1) - '@mui/styled-engine': 5.16.1(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + '@mui/private-theming': 5.16.6(@types/react@18.3.3)(react@18.3.1) + '@mui/styled-engine': 5.16.6(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) '@mui/types': 7.2.15(@types/react@18.3.3) - '@mui/utils': 5.16.1(@types/react@18.3.3)(react@18.3.1) + '@mui/utils': 5.16.6(@types/react@18.3.3)(react@18.3.1) clsx: 2.1.0 csstype: 3.1.3 prop-types: 15.8.1 @@ -8923,10 +8890,12 @@ snapshots: optionalDependencies: '@types/react': 18.3.3 - '@mui/utils@5.16.1(@types/react@18.3.3)(react@18.3.1)': + '@mui/utils@5.16.6(@types/react@18.3.3)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 + '@mui/types': 7.2.15(@types/react@18.3.3) '@types/prop-types': 15.7.12 + clsx: 2.1.1 prop-types: 15.8.1 react: 18.3.1 react-is: 18.3.1 @@ -8965,12 +8934,12 @@ snapshots: '@npmcli/fs@1.1.1': dependencies: '@gar/promisify': 1.1.3 - semver: 7.6.2 + semver: 7.6.3 optional: true '@npmcli/fs@3.1.1': dependencies: - semver: 7.6.2 + semver: 7.6.3 optional: true '@npmcli/move-file@1.1.2': @@ -9125,10 +9094,10 @@ snapshots: node-exceptions: 3.0.0 resetable: 1.0.3 - '@superwf/mobx-react-router@7.4.0(history@5.3.0)(mobx@6.13.0)(path-to-regexp@6.2.2)': + '@superwf/mobx-react-router@7.4.0(history@5.3.0)(mobx@6.13.1)(path-to-regexp@6.2.2)': dependencies: history: 5.3.0 - mobx: 6.13.0 + mobx: 6.13.1 path-to-regexp: 6.2.2 '@syed_umair/electron-process-manager@1.1.0(electron@31.3.1)': @@ -9248,7 +9217,7 @@ snapshots: dependencies: '@types/node': 20.14.10 - '@types/lodash@4.17.6': {} + '@types/lodash@4.17.7': {} '@types/minimist@1.2.5': {} @@ -9335,12 +9304,12 @@ snapshots: '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.0)(typescript@5.4.5) '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.5) '@typescript-eslint/visitor-keys': 6.21.0 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) eslint: 8.57.0 graphemer: 1.4.0 ignore: 5.3.1 natural-compare: 1.4.0 - semver: 7.6.2 + semver: 7.6.3 ts-api-utils: 1.3.0(typescript@5.4.5) optionalDependencies: typescript: 5.4.5 @@ -9371,7 +9340,7 @@ snapshots: '@typescript-eslint/types': 7.10.0 '@typescript-eslint/typescript-estree': 7.10.0(typescript@5.4.5) '@typescript-eslint/visitor-keys': 7.10.0 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) eslint: 8.57.0 optionalDependencies: typescript: 5.4.5 @@ -9402,7 +9371,7 @@ snapshots: dependencies: '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5) '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.5) - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) eslint: 8.57.0 ts-api-utils: 1.3.0(typescript@5.4.5) optionalDependencies: @@ -9414,7 +9383,7 @@ snapshots: dependencies: '@typescript-eslint/typescript-estree': 7.10.0(typescript@5.4.5) '@typescript-eslint/utils': 7.10.0(eslint@8.57.0)(typescript@5.4.5) - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) eslint: 8.57.0 ts-api-utils: 1.3.0(typescript@5.4.5) optionalDependencies: @@ -9426,7 +9395,7 @@ snapshots: dependencies: '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.4.5) '@typescript-eslint/utils': 7.13.1(eslint@8.57.0)(typescript@5.4.5) - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) eslint: 8.57.0 ts-api-utils: 1.3.0(typescript@5.4.5) optionalDependencies: @@ -9446,10 +9415,10 @@ snapshots: dependencies: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) globby: 11.1.0 is-glob: 4.0.3 - semver: 7.6.2 + semver: 7.6.3 tsutils: 3.21.0(typescript@5.4.5) optionalDependencies: typescript: 5.4.5 @@ -9460,11 +9429,11 @@ snapshots: dependencies: '@typescript-eslint/types': 6.21.0 '@typescript-eslint/visitor-keys': 6.21.0 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) globby: 11.1.0 is-glob: 4.0.3 minimatch: 9.0.3 - semver: 7.6.2 + semver: 7.6.3 ts-api-utils: 1.3.0(typescript@5.4.5) optionalDependencies: typescript: 5.4.5 @@ -9475,11 +9444,11 @@ snapshots: dependencies: '@typescript-eslint/types': 7.10.0 '@typescript-eslint/visitor-keys': 7.10.0 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) globby: 11.1.0 is-glob: 4.0.3 minimatch: 9.0.4 - semver: 7.6.2 + semver: 7.6.3 ts-api-utils: 1.3.0(typescript@5.4.5) optionalDependencies: typescript: 5.4.5 @@ -9490,11 +9459,11 @@ snapshots: dependencies: '@typescript-eslint/types': 7.13.1 '@typescript-eslint/visitor-keys': 7.13.1 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) globby: 11.1.0 is-glob: 4.0.3 minimatch: 9.0.4 - semver: 7.6.2 + semver: 7.6.3 ts-api-utils: 1.3.0(typescript@5.4.5) optionalDependencies: typescript: 5.4.5 @@ -9511,7 +9480,7 @@ snapshots: '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5) eslint: 8.57.0 eslint-scope: 5.1.1 - semver: 7.6.2 + semver: 7.6.3 transitivePeerDependencies: - supports-color - typescript @@ -9525,7 +9494,7 @@ snapshots: '@typescript-eslint/types': 6.21.0 '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5) eslint: 8.57.0 - semver: 7.6.2 + semver: 7.6.3 transitivePeerDependencies: - supports-color - typescript @@ -9611,19 +9580,19 @@ snapshots: agent-base@6.0.2: dependencies: - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) transitivePeerDependencies: - supports-color agent-base@7.1.0: dependencies: - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) transitivePeerDependencies: - supports-color agent-base@7.1.1: dependencies: - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) transitivePeerDependencies: - supports-color optional: true @@ -9858,7 +9827,7 @@ snapshots: builder-util: 24.13.1 builder-util-runtime: 9.2.4 chromium-pickle-js: 0.2.0 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) dmg-builder: 24.13.3(electron-builder-squirrel-windows@24.13.3) ejs: 3.1.9 electron-builder-squirrel-windows: 24.13.3(dmg-builder@24.13.3) @@ -9873,7 +9842,7 @@ snapshots: minimatch: 5.1.6 read-config-file: 6.3.2 sanitize-filename: 1.6.3 - semver: 7.6.2 + semver: 7.6.3 tar: 6.2.1 temp-file: 3.4.0 transitivePeerDependencies: @@ -10103,9 +10072,9 @@ snapshots: axe-core@4.7.0: {} - axios@1.6.2(debug@4.3.5): + axios@1.6.2(debug@4.3.6): dependencies: - follow-redirects: 1.15.3(debug@4.3.5) + follow-redirects: 1.15.3(debug@4.3.6) form-data: 4.0.0 proxy-from-env: 1.1.0 transitivePeerDependencies: @@ -10307,7 +10276,7 @@ snapshots: builder-util-runtime@9.2.4: dependencies: - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) sax: 1.3.0 transitivePeerDependencies: - supports-color @@ -10321,7 +10290,7 @@ snapshots: builder-util-runtime: 9.2.4 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) fs-extra: 10.1.0 http-proxy-agent: 5.0.0 https-proxy-agent: 5.0.1 @@ -10572,6 +10541,8 @@ snapshots: clsx@2.1.0: {} + clsx@2.1.1: {} + co-body@6.1.0: dependencies: inflation: 2.0.0 @@ -10885,7 +10856,7 @@ snapshots: dependencies: ms: 2.1.2 - debug@4.3.5(supports-color@5.5.0): + debug@4.3.6(supports-color@5.5.0): dependencies: ms: 2.1.2 optionalDependencies: @@ -11191,7 +11162,7 @@ snapshots: lazy-val: 1.0.5 lodash.escaperegexp: 4.1.2 lodash.isequal: 4.5.0 - semver: 7.6.2 + semver: 7.6.3 tiny-typed-emitter: 2.1.0 transitivePeerDependencies: - supports-color @@ -11755,7 +11726,7 @@ snapshots: read-pkg-up: 7.0.1 regexp-tree: 0.1.27 regjsparser: 0.10.0 - semver: 7.6.2 + semver: 7.6.3 strip-indent: 3.0.0 transitivePeerDependencies: - supports-color @@ -11787,7 +11758,7 @@ snapshots: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.2.2 @@ -11991,7 +11962,7 @@ snapshots: extract-zip@2.0.1: dependencies: - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) get-stream: 5.2.0 yauzl: 2.10.0 optionalDependencies: @@ -12140,9 +12111,9 @@ snapshots: fn.name@1.1.0: {} - follow-redirects@1.15.3(debug@4.3.5): + follow-redirects@1.15.3(debug@4.3.6): optionalDependencies: - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) for-each@0.3.3: dependencies: @@ -12359,7 +12330,7 @@ snapshots: es6-error: 4.1.1 matcher: 3.0.0 roarr: 2.15.4 - semver: 7.6.2 + semver: 7.6.3 serialize-error: 7.0.1 optional: true @@ -12404,7 +12375,7 @@ snapshots: globrex@0.1.2: {} - google-translate-api-x@10.6.8: {} + google-translate-api-x@10.7.0: {} gopd@1.0.1: dependencies: @@ -12559,7 +12530,7 @@ snapshots: dependencies: '@tootallnate/once': 1.1.2 agent-base: 6.0.2 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) transitivePeerDependencies: - supports-color optional: true @@ -12568,14 +12539,14 @@ snapshots: dependencies: '@tootallnate/once': 2.0.0 agent-base: 6.0.2 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) transitivePeerDependencies: - supports-color http-proxy-agent@7.0.2: dependencies: agent-base: 7.1.1 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) transitivePeerDependencies: - supports-color optional: true @@ -12594,14 +12565,14 @@ snapshots: https-proxy-agent@5.0.1: dependencies: agent-base: 6.0.2 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) transitivePeerDependencies: - supports-color https-proxy-agent@7.0.1: dependencies: agent-base: 7.1.0 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) transitivePeerDependencies: - supports-color @@ -12618,7 +12589,7 @@ snapshots: ms: 2.1.3 optional: true - husky@9.0.11: {} + husky@9.1.4: {} hyphenate-style-name@1.0.4: {} @@ -12642,7 +12613,7 @@ snapshots: ignore@5.3.1: {} - immutable@4.3.6: {} + immutable@4.3.7: {} import-fresh@3.3.0: dependencies: @@ -13001,7 +12972,7 @@ snapshots: '@babel/parser': 7.23.5 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 - semver: 7.6.2 + semver: 7.6.3 transitivePeerDependencies: - supports-color @@ -13013,7 +12984,7 @@ snapshots: istanbul-lib-source-maps@4.0.1: dependencies: - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) istanbul-lib-coverage: 3.2.0 source-map: 0.6.1 transitivePeerDependencies: @@ -13302,7 +13273,7 @@ snapshots: jest-util: 29.7.0 natural-compare: 1.4.0 pretty-format: 29.7.0 - semver: 7.6.2 + semver: 7.6.3 transitivePeerDependencies: - supports-color @@ -13434,7 +13405,7 @@ snapshots: lodash.isstring: 4.0.1 lodash.once: 4.1.1 ms: 2.1.3 - semver: 7.6.2 + semver: 7.6.3 jsprim@1.4.2: dependencies: @@ -14017,32 +13988,32 @@ snapshots: mkdirp@1.0.4: {} - mobx-localstorage@1.2.0(mobx@6.13.0): + mobx-localstorage@1.2.0(mobx@6.13.1): dependencies: - mobx: 6.13.0 + mobx: 6.13.1 reactive-localstorage: 0.0.2 - mobx-react-form@6.9.4(mobx@6.13.0): + mobx-react-form@6.10.1(mobx@6.13.1): dependencies: lodash: 4.17.21 - mobx: 6.13.0 + mobx: 6.13.1 - mobx-react-lite@3.4.0(mobx@6.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + mobx-react-lite@3.4.0(mobx@6.13.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - mobx: 6.13.0 + mobx: 6.13.1 react: 18.3.1 optionalDependencies: react-dom: 18.3.1(react@18.3.1) - mobx-react@7.6.0(mobx@6.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + mobx-react@7.6.0(mobx@6.13.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - mobx: 6.13.0 - mobx-react-lite: 3.4.0(mobx@6.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + mobx: 6.13.1 + mobx-react-lite: 3.4.0(mobx@6.13.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 optionalDependencies: react-dom: 18.3.1(react@18.3.1) - mobx@6.13.0: {} + mobx@6.13.1: {} modify-filename@1.1.0: {} @@ -14132,7 +14103,7 @@ snapshots: make-fetch-happen: 13.0.1 nopt: 7.2.1 proc-log: 3.0.0 - semver: 7.6.2 + semver: 7.6.3 tar: 6.2.1 which: 4.0.0 transitivePeerDependencies: @@ -14148,7 +14119,7 @@ snapshots: nopt: 5.0.0 npmlog: 6.0.2 rimraf: 3.0.2 - semver: 7.6.2 + semver: 7.6.3 tar: 6.2.1 which: 2.0.2 transitivePeerDependencies: @@ -14919,7 +14890,7 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-tooltip@5.27.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + react-tooltip@5.28.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@floating-ui/dom': 1.6.1 classnames: 2.5.1 @@ -15266,7 +15237,7 @@ snapshots: sass@1.69.5: dependencies: chokidar: 3.5.3 - immutable: 4.3.6 + immutable: 4.3.7 source-map-js: 1.0.2 sax@1.3.0: {} @@ -15300,7 +15271,7 @@ snapshots: semver@6.3.1: {} - semver@7.6.2: {} + semver@7.6.3: {} send@0.16.2: dependencies: @@ -15475,7 +15446,7 @@ snapshots: dependencies: '@kwsites/file-exists': 1.1.1 '@kwsites/promise-deferred': 1.1.1 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) transitivePeerDependencies: - supports-color @@ -15485,7 +15456,7 @@ snapshots: simple-update-notifier@2.0.0: dependencies: - semver: 7.6.2 + semver: 7.6.3 sisteransi@1.0.5: {} @@ -15527,7 +15498,7 @@ snapshots: socks-proxy-agent@6.2.1: dependencies: agent-base: 6.0.2 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) socks: 2.7.1 transitivePeerDependencies: - supports-color @@ -15536,7 +15507,7 @@ snapshots: socks-proxy-agent@8.0.3: dependencies: agent-base: 7.1.1 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) socks: 2.7.1 transitivePeerDependencies: - supports-color @@ -15816,7 +15787,7 @@ snapshots: sumchecker@3.0.1: dependencies: - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) transitivePeerDependencies: - supports-color @@ -16300,9 +16271,9 @@ snapshots: remove-trailing-separator: 1.1.0 replace-ext: 1.0.1 - wait-on@7.2.0(debug@4.3.5): + wait-on@7.2.0(debug@4.3.6): dependencies: - axios: 1.6.2(debug@4.3.5) + axios: 1.6.2(debug@4.3.6) joi: 17.11.0 lodash: 4.17.21 minimist: 1.2.8 diff --git a/recipes b/recipes index e6d921aead..3822f1fcb9 160000 --- a/recipes +++ b/recipes @@ -1 +1 @@ -Subproject commit e6d921aead128b51ef5f0eaa74e7b29038fe537a +Subproject commit 3822f1fcb936c60a66f24149cc6f3bd9311524e3 From a877c6a83e40f09c5ba6f537a672e40a61a82415 Mon Sep 17 00:00:00 2001 From: Vijay A Date: Thu, 15 Aug 2024 01:50:12 -0500 Subject: [PATCH 05/26] Upgrade electron to '31.4.0' --- package.json | 2 +- pnpm-lock.yaml | 22 +++++++++++----------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/package.json b/package.json index d077ac9514..e80aa59a12 100644 --- a/package.json +++ b/package.json @@ -163,7 +163,7 @@ "chalk": "5.3.0", "concurrently": "8.2.2", "cross-env": "7.0.3", - "electron": "31.3.1", + "electron": "31.4.0", "electron-builder": "24.13.3", "esbuild": "0.16.17", "esbuild-plugin-copy": "2.1.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6a9adef780..bded85bf12 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -43,7 +43,7 @@ importers: version: 5.1.0 '@electron/remote': specifier: 2.1.2 - version: 2.1.2(electron@31.3.1) + version: 2.1.2(electron@31.4.0) '@emotion/react': specifier: 11.11.4 version: 11.11.4(@types/react@18.3.3)(react@18.3.1) @@ -73,7 +73,7 @@ importers: version: 7.4.0(history@5.3.0)(mobx@6.13.1)(path-to-regexp@6.2.2) '@syed_umair/electron-process-manager': specifier: 1.1.0 - version: 1.1.0(electron@31.3.1) + version: 1.1.0(electron@31.4.0) auto-launch: specifier: 5.0.6 version: 5.0.6 @@ -353,8 +353,8 @@ importers: specifier: 7.0.3 version: 7.0.3 electron: - specifier: 31.3.1 - version: 31.3.1 + specifier: 31.4.0 + version: 31.4.0 electron-builder: specifier: 24.13.3 version: 24.13.3(electron-builder-squirrel-windows@24.13.3(dmg-builder@24.13.3)) @@ -3235,8 +3235,8 @@ packages: resolution: {integrity: sha512-1mNTwCfkolXl3kMf50yW3vE2lZj0y92P/HYWFBrb+v2S/pCka5mdwN3cagKm458A7NjndSwijynXgcLWRodsVg==} engines: {node: '>=8.0.0'} - electron@31.3.1: - resolution: {integrity: sha512-9fiuWlRhBfygtcT+auRd/WdBK/f8LZZcrpx0RjpXhH2DPTP/PfnkC4JB1PW55qCbGbh4wAgkYbf4ExIag8oGCA==} + electron@31.4.0: + resolution: {integrity: sha512-YTwKoAA+nrJMlI1TTHnIXLYWoQLKnhbkz0qxZcI7Hadcy0UaFMFs9xzwvH2MnrRpVJy7RKo49kVGuvSdRl8zMA==} engines: {node: '>= 12.20.55'} hasBin: true @@ -8172,9 +8172,9 @@ snapshots: transitivePeerDependencies: - supports-color - '@electron/remote@2.1.2(electron@31.3.1)': + '@electron/remote@2.1.2(electron@31.4.0)': dependencies: - electron: 31.3.1 + electron: 31.4.0 '@electron/universal@1.5.1': dependencies: @@ -9100,9 +9100,9 @@ snapshots: mobx: 6.13.1 path-to-regexp: 6.2.2 - '@syed_umair/electron-process-manager@1.1.0(electron@31.3.1)': + '@syed_umair/electron-process-manager@1.1.0(electron@31.4.0)': dependencies: - electron: 31.3.1 + electron: 31.4.0 electron-process-reporter: 1.4.0 '@szmarczak/http-timer@4.0.6': @@ -11172,7 +11172,7 @@ snapshots: jsonfile: 4.0.0 mkdirp: 0.5.6 - electron@31.3.1: + electron@31.4.0: dependencies: '@electron/get': 2.0.3 '@types/node': 20.14.10 From 1b5e4501f05238b09e4a0cda8bcf96bac833a6c8 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 16 Aug 2024 00:52:52 +0000 Subject: [PATCH 06/26] Update browserslist data updates and linter fixes [skip ci] --- pnpm-lock.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index bded85bf12..d0f9700f5a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -2553,8 +2553,8 @@ packages: camelize@1.0.1: resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} - caniuse-lite@1.0.30001649: - resolution: {integrity: sha512-fJegqZZ0ZX8HOWr6rcafGr72+xcgJKI9oWfDW5DrD7ExUtgZC7a7R7ZYmZqplh7XDocFdGeIFn7roAxhOeYrPQ==} + caniuse-lite@1.0.30001651: + resolution: {integrity: sha512-9Cf+Xv1jJNe1xPZLGuUXLNkE1BoDkqRqYyFJ9TDYSqhduqA4hu4oR9HluGoWYQC/aj8WHjsGVV+bwkh0+tegRg==} caseless@0.12.0: resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} @@ -10243,7 +10243,7 @@ snapshots: browserslist@4.23.0: dependencies: - caniuse-lite: 1.0.30001649 + caniuse-lite: 1.0.30001651 electron-to-chromium: 1.4.710 node-releases: 2.0.14 update-browserslist-db: 1.0.13(browserslist@4.23.0) @@ -10406,7 +10406,7 @@ snapshots: camelize@1.0.1: {} - caniuse-lite@1.0.30001649: {} + caniuse-lite@1.0.30001651: {} caseless@0.12.0: {} From f2e9172ef23671714e1c6d1b019b61fa79b4b465 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 16 Aug 2024 00:52:53 +0000 Subject: [PATCH 07/26] 6.7.7-nightly.2 [skip ci] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e80aa59a12..ba38da897d 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "productName": "Ferdium", "desktopName": "ferdium.desktop", "appId": "org.ferdium.ferdium-app", - "version": "6.7.7-nightly.1", + "version": "6.7.7-nightly.2", "description": "Messaging app for WhatsApp, Slack, Telegram, Hangouts and many many more.", "author": "Ferdium Contributors (https://ferdium.org/)", "license": "Apache-2.0", From 6391fa576edf5b826d1f8effd5b795c86f6dcc63 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sat, 17 Aug 2024 00:48:49 +0000 Subject: [PATCH 08/26] Update submodules [skip ci] --- recipes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes b/recipes index 3822f1fcb9..38233ee3c1 160000 --- a/recipes +++ b/recipes @@ -1 +1 @@ -Subproject commit 3822f1fcb936c60a66f24149cc6f3bd9311524e3 +Subproject commit 38233ee3c1b6ecbf70eab6a79a28dc6af705afc2 From 69b28ffd95a257c1372214a6c1ca726a71de8aa6 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sat, 17 Aug 2024 00:50:50 +0000 Subject: [PATCH 09/26] 6.7.7-nightly.3 [skip ci] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ba38da897d..a219532ad3 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "productName": "Ferdium", "desktopName": "ferdium.desktop", "appId": "org.ferdium.ferdium-app", - "version": "6.7.7-nightly.2", + "version": "6.7.7-nightly.3", "description": "Messaging app for WhatsApp, Slack, Telegram, Hangouts and many many more.", "author": "Ferdium Contributors (https://ferdium.org/)", "license": "Apache-2.0", From 3a905afc233de70c7d5540ae0680203e96bf4564 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 22 Aug 2024 00:52:17 +0000 Subject: [PATCH 10/26] Update submodules [skip ci] --- recipes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes b/recipes index 38233ee3c1..f8c0657341 160000 --- a/recipes +++ b/recipes @@ -1 +1 @@ -Subproject commit 38233ee3c1b6ecbf70eab6a79a28dc6af705afc2 +Subproject commit f8c065734130957a80dc3abc241f5cac8ff2c4c7 From b315ff52c503431a119f0de003ee435adc987b27 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 22 Aug 2024 00:54:13 +0000 Subject: [PATCH 11/26] Update browserslist data updates and linter fixes [skip ci] --- pnpm-lock.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d0f9700f5a..9cbf310e11 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -2300,6 +2300,9 @@ packages: async@3.2.5: resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==} + async@3.2.6: + resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} + asynckit@0.4.0: resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} @@ -9883,7 +9886,7 @@ snapshots: archiver@5.3.2: dependencies: archiver-utils: 2.1.0 - async: 3.2.5 + async: 3.2.6 buffer-crc32: 0.2.13 readable-stream: 3.6.2 readdir-glob: 1.1.3 @@ -10044,6 +10047,8 @@ snapshots: async@3.2.5: {} + async@3.2.6: {} + asynckit@0.4.0: {} at-least-node@1.0.0: {} From a19f3286aceb72ba856b52633e878affae2fd181 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 22 Aug 2024 00:54:14 +0000 Subject: [PATCH 12/26] 6.7.7-nightly.4 [skip ci] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a219532ad3..78bb837677 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "productName": "Ferdium", "desktopName": "ferdium.desktop", "appId": "org.ferdium.ferdium-app", - "version": "6.7.7-nightly.3", + "version": "6.7.7-nightly.4", "description": "Messaging app for WhatsApp, Slack, Telegram, Hangouts and many many more.", "author": "Ferdium Contributors (https://ferdium.org/)", "license": "Apache-2.0", From 98dbf8002697db71786e4f94c53f7004f6db1fad Mon Sep 17 00:00:00 2001 From: Vijay Aravamudhan Date: Fri, 30 Aug 2024 11:27:34 -0500 Subject: [PATCH 13/26] Upgrade electron to '32.0.1' (#1834) --- package.json | 2 +- pnpm-lock.yaml | 22 +++++++++++----------- src/webview/contextMenuBuilder.ts | 8 ++++---- 3 files changed, 16 insertions(+), 16 deletions(-) diff --git a/package.json b/package.json index 78bb837677..26419213ae 100644 --- a/package.json +++ b/package.json @@ -163,7 +163,7 @@ "chalk": "5.3.0", "concurrently": "8.2.2", "cross-env": "7.0.3", - "electron": "31.4.0", + "electron": "32.0.1", "electron-builder": "24.13.3", "esbuild": "0.16.17", "esbuild-plugin-copy": "2.1.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9cbf310e11..5b8fdd922f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -43,7 +43,7 @@ importers: version: 5.1.0 '@electron/remote': specifier: 2.1.2 - version: 2.1.2(electron@31.4.0) + version: 2.1.2(electron@32.0.1) '@emotion/react': specifier: 11.11.4 version: 11.11.4(@types/react@18.3.3)(react@18.3.1) @@ -73,7 +73,7 @@ importers: version: 7.4.0(history@5.3.0)(mobx@6.13.1)(path-to-regexp@6.2.2) '@syed_umair/electron-process-manager': specifier: 1.1.0 - version: 1.1.0(electron@31.4.0) + version: 1.1.0(electron@32.0.1) auto-launch: specifier: 5.0.6 version: 5.0.6 @@ -353,8 +353,8 @@ importers: specifier: 7.0.3 version: 7.0.3 electron: - specifier: 31.4.0 - version: 31.4.0 + specifier: 32.0.1 + version: 32.0.1 electron-builder: specifier: 24.13.3 version: 24.13.3(electron-builder-squirrel-windows@24.13.3(dmg-builder@24.13.3)) @@ -3238,8 +3238,8 @@ packages: resolution: {integrity: sha512-1mNTwCfkolXl3kMf50yW3vE2lZj0y92P/HYWFBrb+v2S/pCka5mdwN3cagKm458A7NjndSwijynXgcLWRodsVg==} engines: {node: '>=8.0.0'} - electron@31.4.0: - resolution: {integrity: sha512-YTwKoAA+nrJMlI1TTHnIXLYWoQLKnhbkz0qxZcI7Hadcy0UaFMFs9xzwvH2MnrRpVJy7RKo49kVGuvSdRl8zMA==} + electron@32.0.1: + resolution: {integrity: sha512-5Hd5Jaf9niYVR2hZxoRd3gOrcxPOxQV1XPV5WaoSfT9jLJHFadhlKtuSDIk3U6rQZke+aC7GqPPAv55nWFCMsA==} engines: {node: '>= 12.20.55'} hasBin: true @@ -8175,9 +8175,9 @@ snapshots: transitivePeerDependencies: - supports-color - '@electron/remote@2.1.2(electron@31.4.0)': + '@electron/remote@2.1.2(electron@32.0.1)': dependencies: - electron: 31.4.0 + electron: 32.0.1 '@electron/universal@1.5.1': dependencies: @@ -9103,9 +9103,9 @@ snapshots: mobx: 6.13.1 path-to-regexp: 6.2.2 - '@syed_umair/electron-process-manager@1.1.0(electron@31.4.0)': + '@syed_umair/electron-process-manager@1.1.0(electron@32.0.1)': dependencies: - electron: 31.4.0 + electron: 32.0.1 electron-process-reporter: 1.4.0 '@szmarczak/http-timer@4.0.6': @@ -11177,7 +11177,7 @@ snapshots: jsonfile: 4.0.0 mkdirp: 0.5.6 - electron@31.4.0: + electron@32.0.1: dependencies: '@electron/get': 2.0.3 '@types/node': 20.14.10 diff --git a/src/webview/contextMenuBuilder.ts b/src/webview/contextMenuBuilder.ts index d686059633..92a246cf59 100644 --- a/src/webview/contextMenuBuilder.ts +++ b/src/webview/contextMenuBuilder.ts @@ -867,8 +867,8 @@ export class ContextMenuBuilder { new MenuItem({ label: this.stringTable.goBack(), accelerator: `${cmdOrCtrlShortcutKey()}+left`, - enabled: webContents.canGoBack(), - click: () => webContents.goBack(), + enabled: webContents.navigationHistory.canGoBack(), + click: () => webContents.navigationHistory.goBack(), }), ); } @@ -882,8 +882,8 @@ export class ContextMenuBuilder { new MenuItem({ label: this.stringTable.goForward(), accelerator: `${cmdOrCtrlShortcutKey()}+right`, - enabled: webContents.canGoForward(), - click: () => webContents.goForward(), + enabled: webContents.navigationHistory.canGoForward(), + click: () => webContents.navigationHistory.goForward(), }), ); } From 9c071abf5798de65a72d8b47607ef713a1d76add Mon Sep 17 00:00:00 2001 From: github-actions Date: Sat, 31 Aug 2024 00:54:58 +0000 Subject: [PATCH 14/26] Update browserslist data updates and linter fixes [skip ci] --- pnpm-lock.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 5b8fdd922f..9e722f86a6 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -2556,8 +2556,8 @@ packages: camelize@1.0.1: resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} - caniuse-lite@1.0.30001651: - resolution: {integrity: sha512-9Cf+Xv1jJNe1xPZLGuUXLNkE1BoDkqRqYyFJ9TDYSqhduqA4hu4oR9HluGoWYQC/aj8WHjsGVV+bwkh0+tegRg==} + caniuse-lite@1.0.30001655: + resolution: {integrity: sha512-jRGVy3iSGO5Uutn2owlb5gR6qsGngTw9ZTb4ali9f3glshcNmJ2noam4Mo9zia5P9Dk3jNNydy7vQjuE5dQmfg==} caseless@0.12.0: resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} @@ -10248,7 +10248,7 @@ snapshots: browserslist@4.23.0: dependencies: - caniuse-lite: 1.0.30001651 + caniuse-lite: 1.0.30001655 electron-to-chromium: 1.4.710 node-releases: 2.0.14 update-browserslist-db: 1.0.13(browserslist@4.23.0) @@ -10411,7 +10411,7 @@ snapshots: camelize@1.0.1: {} - caniuse-lite@1.0.30001651: {} + caniuse-lite@1.0.30001655: {} caseless@0.12.0: {} From 4319cb02c791aac112a4a3f23e18f0368c8cd53f Mon Sep 17 00:00:00 2001 From: github-actions Date: Sat, 31 Aug 2024 00:54:59 +0000 Subject: [PATCH 15/26] 6.7.7-nightly.5 [skip ci] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 26419213ae..cfdd2319cf 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "productName": "Ferdium", "desktopName": "ferdium.desktop", "appId": "org.ferdium.ferdium-app", - "version": "6.7.7-nightly.4", + "version": "6.7.7-nightly.5", "description": "Messaging app for WhatsApp, Slack, Telegram, Hangouts and many many more.", "author": "Ferdium Contributors (https://ferdium.org/)", "license": "Apache-2.0", From 662fb46154bc228f57728008358390a159f4add4 Mon Sep 17 00:00:00 2001 From: Vijay Aravamudhan Date: Thu, 5 Sep 2024 03:01:02 -0500 Subject: [PATCH 16/26] Upgrade electron to '32.0.2' (#1886) --- package.json | 2 +- pnpm-lock.yaml | 22 +++++++++++----------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/package.json b/package.json index cfdd2319cf..f320cece23 100644 --- a/package.json +++ b/package.json @@ -163,7 +163,7 @@ "chalk": "5.3.0", "concurrently": "8.2.2", "cross-env": "7.0.3", - "electron": "32.0.1", + "electron": "32.0.2", "electron-builder": "24.13.3", "esbuild": "0.16.17", "esbuild-plugin-copy": "2.1.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9e722f86a6..ba34e3781c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -43,7 +43,7 @@ importers: version: 5.1.0 '@electron/remote': specifier: 2.1.2 - version: 2.1.2(electron@32.0.1) + version: 2.1.2(electron@32.0.2) '@emotion/react': specifier: 11.11.4 version: 11.11.4(@types/react@18.3.3)(react@18.3.1) @@ -73,7 +73,7 @@ importers: version: 7.4.0(history@5.3.0)(mobx@6.13.1)(path-to-regexp@6.2.2) '@syed_umair/electron-process-manager': specifier: 1.1.0 - version: 1.1.0(electron@32.0.1) + version: 1.1.0(electron@32.0.2) auto-launch: specifier: 5.0.6 version: 5.0.6 @@ -353,8 +353,8 @@ importers: specifier: 7.0.3 version: 7.0.3 electron: - specifier: 32.0.1 - version: 32.0.1 + specifier: 32.0.2 + version: 32.0.2 electron-builder: specifier: 24.13.3 version: 24.13.3(electron-builder-squirrel-windows@24.13.3(dmg-builder@24.13.3)) @@ -3238,8 +3238,8 @@ packages: resolution: {integrity: sha512-1mNTwCfkolXl3kMf50yW3vE2lZj0y92P/HYWFBrb+v2S/pCka5mdwN3cagKm458A7NjndSwijynXgcLWRodsVg==} engines: {node: '>=8.0.0'} - electron@32.0.1: - resolution: {integrity: sha512-5Hd5Jaf9niYVR2hZxoRd3gOrcxPOxQV1XPV5WaoSfT9jLJHFadhlKtuSDIk3U6rQZke+aC7GqPPAv55nWFCMsA==} + electron@32.0.2: + resolution: {integrity: sha512-nmZblq8wW3HZ17MAyaUuiMI9Mb0Cgc7UR3To85h/rVopbfyF5s34NxtK4gvyRfYPxpDGP4k+HoQIPniPPrdE3w==} engines: {node: '>= 12.20.55'} hasBin: true @@ -8175,9 +8175,9 @@ snapshots: transitivePeerDependencies: - supports-color - '@electron/remote@2.1.2(electron@32.0.1)': + '@electron/remote@2.1.2(electron@32.0.2)': dependencies: - electron: 32.0.1 + electron: 32.0.2 '@electron/universal@1.5.1': dependencies: @@ -9103,9 +9103,9 @@ snapshots: mobx: 6.13.1 path-to-regexp: 6.2.2 - '@syed_umair/electron-process-manager@1.1.0(electron@32.0.1)': + '@syed_umair/electron-process-manager@1.1.0(electron@32.0.2)': dependencies: - electron: 32.0.1 + electron: 32.0.2 electron-process-reporter: 1.4.0 '@szmarczak/http-timer@4.0.6': @@ -11177,7 +11177,7 @@ snapshots: jsonfile: 4.0.0 mkdirp: 0.5.6 - electron@32.0.1: + electron@32.0.2: dependencies: '@electron/get': 2.0.3 '@types/node': 20.14.10 From 0112885c0c3509f19a48fd57ecc865e31412facd Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 6 Sep 2024 00:53:43 +0000 Subject: [PATCH 17/26] Update submodules [skip ci] --- recipes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes b/recipes index f8c0657341..049e545f4f 160000 --- a/recipes +++ b/recipes @@ -1 +1 @@ -Subproject commit f8c065734130957a80dc3abc241f5cac8ff2c4c7 +Subproject commit 049e545f4f0da89855db59a33c75733e450fe5ba From 4df0456bd89eac8d5c46686c3d52c7e76c93e4d2 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 6 Sep 2024 00:55:50 +0000 Subject: [PATCH 18/26] Update browserslist data updates and linter fixes [skip ci] --- pnpm-lock.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ba34e3781c..4e4a4c9e1c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -2556,8 +2556,8 @@ packages: camelize@1.0.1: resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} - caniuse-lite@1.0.30001655: - resolution: {integrity: sha512-jRGVy3iSGO5Uutn2owlb5gR6qsGngTw9ZTb4ali9f3glshcNmJ2noam4Mo9zia5P9Dk3jNNydy7vQjuE5dQmfg==} + caniuse-lite@1.0.30001657: + resolution: {integrity: sha512-DPbJAlP8/BAXy3IgiWmZKItubb3TYGP0WscQQlVGIfT4s/YlFYVuJgyOsQNP7rJRChx/qdMeLJQJP0Sgg2yjNA==} caseless@0.12.0: resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} @@ -10248,7 +10248,7 @@ snapshots: browserslist@4.23.0: dependencies: - caniuse-lite: 1.0.30001655 + caniuse-lite: 1.0.30001657 electron-to-chromium: 1.4.710 node-releases: 2.0.14 update-browserslist-db: 1.0.13(browserslist@4.23.0) @@ -10411,7 +10411,7 @@ snapshots: camelize@1.0.1: {} - caniuse-lite@1.0.30001655: {} + caniuse-lite@1.0.30001657: {} caseless@0.12.0: {} From 266d28f42a8302228821b0b0a622f826ddc026e3 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 6 Sep 2024 00:55:52 +0000 Subject: [PATCH 19/26] 6.7.7-nightly.6 [skip ci] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f320cece23..722b3d03d4 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "productName": "Ferdium", "desktopName": "ferdium.desktop", "appId": "org.ferdium.ferdium-app", - "version": "6.7.7-nightly.5", + "version": "6.7.7-nightly.6", "description": "Messaging app for WhatsApp, Slack, Telegram, Hangouts and many many more.", "author": "Ferdium Contributors (https://ferdium.org/)", "license": "Apache-2.0", From 75a89aa1a47e3d73ac8e769f47a879ac41634c3e Mon Sep 17 00:00:00 2001 From: Vijay A Date: Sat, 7 Sep 2024 09:37:23 +0530 Subject: [PATCH 20/26] Upgrade node (20.17.0), pnpm (9.9.0) --- .nvmrc | 2 +- CONTRIBUTING.md | 4 ++-- Dockerfile | 2 +- package.json | 10 +++++----- recipes | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.nvmrc b/.nvmrc index 8ce7030825..3516580bbb 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -20.16.0 +20.17.0 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c22f9ab62f..334b45204d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -62,8 +62,8 @@ Currently, these are the combinations of system dependencies that work for MacOS # Note: 'jq' is not a required system dependency; its only here to show the combined output of versions needed $ jq --null-input '[inputs.engines] | add' < ./package.json < ./recipes/package.json { - "node": "20.16.0", - "pnpm": "9.7.0" + "node": "20.17.0", + "pnpm": "9.9.0" } ``` diff --git a/Dockerfile b/Dockerfile index 60bfc848f3..4be0ddb52f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # Note: Before running this file, you should have already cloned the git repo + submodules on the host machine. This is used when actively developing on your local machine, but you want to build for a different architecture -FROM docker.io/library/node:20.16.0-buster AS builder +FROM docker.io/library/node:20.17.0-buster AS builder ENV PATH="/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/usr/local/lib:/usr/include:/usr/share" diff --git a/package.json b/package.json index 722b3d03d4..05d025ab42 100644 --- a/package.json +++ b/package.json @@ -13,15 +13,15 @@ "repository": "https://github.com/ferdium/ferdium-app.git", "private": true, "engines": { - "node": "20.16.0", - "pnpm": "9.7.0" + "node": "20.17.0", + "pnpm": "9.9.0" }, "engine-strict": true, "volta": { - "node": "20.16.0", - "pnpm": "9.7.0" + "node": "20.17.0", + "pnpm": "9.9.0" }, - "packageManager": "pnpm@9.7.0", + "packageManager": "pnpm@9.9.0", "scripts": { "prepare": "is-ci || husky", "start": "electron ./build", diff --git a/recipes b/recipes index 049e545f4f..e419e881b3 160000 --- a/recipes +++ b/recipes @@ -1 +1 @@ -Subproject commit 049e545f4f0da89855db59a33c75733e450fe5ba +Subproject commit e419e881b386c2fdc3faec145d8b6499b80fdf02 From bf659ffabdf22b87359a1e5f65a303fc8bf216d6 Mon Sep 17 00:00:00 2001 From: Vijay A Date: Thu, 12 Sep 2024 08:26:39 +0530 Subject: [PATCH 21/26] Upgrade electron to '32.1.0' --- package.json | 2 +- pnpm-lock.yaml | 22 +++++++++++----------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/package.json b/package.json index 05d025ab42..468ed695b1 100644 --- a/package.json +++ b/package.json @@ -163,7 +163,7 @@ "chalk": "5.3.0", "concurrently": "8.2.2", "cross-env": "7.0.3", - "electron": "32.0.2", + "electron": "32.1.0", "electron-builder": "24.13.3", "esbuild": "0.16.17", "esbuild-plugin-copy": "2.1.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4e4a4c9e1c..f9b219c2f9 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -43,7 +43,7 @@ importers: version: 5.1.0 '@electron/remote': specifier: 2.1.2 - version: 2.1.2(electron@32.0.2) + version: 2.1.2(electron@32.1.0) '@emotion/react': specifier: 11.11.4 version: 11.11.4(@types/react@18.3.3)(react@18.3.1) @@ -73,7 +73,7 @@ importers: version: 7.4.0(history@5.3.0)(mobx@6.13.1)(path-to-regexp@6.2.2) '@syed_umair/electron-process-manager': specifier: 1.1.0 - version: 1.1.0(electron@32.0.2) + version: 1.1.0(electron@32.1.0) auto-launch: specifier: 5.0.6 version: 5.0.6 @@ -353,8 +353,8 @@ importers: specifier: 7.0.3 version: 7.0.3 electron: - specifier: 32.0.2 - version: 32.0.2 + specifier: 32.1.0 + version: 32.1.0 electron-builder: specifier: 24.13.3 version: 24.13.3(electron-builder-squirrel-windows@24.13.3(dmg-builder@24.13.3)) @@ -3238,8 +3238,8 @@ packages: resolution: {integrity: sha512-1mNTwCfkolXl3kMf50yW3vE2lZj0y92P/HYWFBrb+v2S/pCka5mdwN3cagKm458A7NjndSwijynXgcLWRodsVg==} engines: {node: '>=8.0.0'} - electron@32.0.2: - resolution: {integrity: sha512-nmZblq8wW3HZ17MAyaUuiMI9Mb0Cgc7UR3To85h/rVopbfyF5s34NxtK4gvyRfYPxpDGP4k+HoQIPniPPrdE3w==} + electron@32.1.0: + resolution: {integrity: sha512-4etE3K6vPUkHihf7nvawngbB5+jLuUJgZh31f9ki1Gfveo0qwNDkLv/doabw+4zFFWKUXI+uFUpyOpL5+RwS+Q==} engines: {node: '>= 12.20.55'} hasBin: true @@ -8175,9 +8175,9 @@ snapshots: transitivePeerDependencies: - supports-color - '@electron/remote@2.1.2(electron@32.0.2)': + '@electron/remote@2.1.2(electron@32.1.0)': dependencies: - electron: 32.0.2 + electron: 32.1.0 '@electron/universal@1.5.1': dependencies: @@ -9103,9 +9103,9 @@ snapshots: mobx: 6.13.1 path-to-regexp: 6.2.2 - '@syed_umair/electron-process-manager@1.1.0(electron@32.0.2)': + '@syed_umair/electron-process-manager@1.1.0(electron@32.1.0)': dependencies: - electron: 32.0.2 + electron: 32.1.0 electron-process-reporter: 1.4.0 '@szmarczak/http-timer@4.0.6': @@ -11177,7 +11177,7 @@ snapshots: jsonfile: 4.0.0 mkdirp: 0.5.6 - electron@32.0.2: + electron@32.1.0: dependencies: '@electron/get': 2.0.3 '@types/node': 20.14.10 From a549326553e0c2ecba73816c672804aebaed0a48 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 13 Sep 2024 00:56:09 +0000 Subject: [PATCH 22/26] Update browserslist data updates and linter fixes [skip ci] --- pnpm-lock.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f9b219c2f9..a4dcafa506 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -2556,8 +2556,8 @@ packages: camelize@1.0.1: resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} - caniuse-lite@1.0.30001657: - resolution: {integrity: sha512-DPbJAlP8/BAXy3IgiWmZKItubb3TYGP0WscQQlVGIfT4s/YlFYVuJgyOsQNP7rJRChx/qdMeLJQJP0Sgg2yjNA==} + caniuse-lite@1.0.30001660: + resolution: {integrity: sha512-GacvNTTuATm26qC74pt+ad1fW15mlQ/zuTzzY1ZoIzECTP8HURDfF43kNxPgf7H1jmelCBQTTbBNxdSXOA7Bqg==} caseless@0.12.0: resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} @@ -10248,7 +10248,7 @@ snapshots: browserslist@4.23.0: dependencies: - caniuse-lite: 1.0.30001657 + caniuse-lite: 1.0.30001660 electron-to-chromium: 1.4.710 node-releases: 2.0.14 update-browserslist-db: 1.0.13(browserslist@4.23.0) @@ -10411,7 +10411,7 @@ snapshots: camelize@1.0.1: {} - caniuse-lite@1.0.30001657: {} + caniuse-lite@1.0.30001660: {} caseless@0.12.0: {} From 6ec55279a605042d67207700e79385e9b0dfd219 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 13 Sep 2024 00:56:10 +0000 Subject: [PATCH 23/26] 6.7.7-nightly.7 [skip ci] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 468ed695b1..3f8d4faa1a 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "productName": "Ferdium", "desktopName": "ferdium.desktop", "appId": "org.ferdium.ferdium-app", - "version": "6.7.7-nightly.6", + "version": "6.7.7-nightly.7", "description": "Messaging app for WhatsApp, Slack, Telegram, Hangouts and many many more.", "author": "Ferdium Contributors (https://ferdium.org/)", "license": "Apache-2.0", From 005607b1660efd93ebe2f8c1d156aa1ffbddea2a Mon Sep 17 00:00:00 2001 From: Vijay A Date: Sat, 21 Sep 2024 08:01:35 +0530 Subject: [PATCH 24/26] Upgrade electron to '32.1.2' --- package.json | 2 +- pnpm-lock.yaml | 22 +++++++++++----------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/package.json b/package.json index 3f8d4faa1a..b871d26c5f 100644 --- a/package.json +++ b/package.json @@ -163,7 +163,7 @@ "chalk": "5.3.0", "concurrently": "8.2.2", "cross-env": "7.0.3", - "electron": "32.1.0", + "electron": "32.1.2", "electron-builder": "24.13.3", "esbuild": "0.16.17", "esbuild-plugin-copy": "2.1.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a4dcafa506..511a73fb18 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -43,7 +43,7 @@ importers: version: 5.1.0 '@electron/remote': specifier: 2.1.2 - version: 2.1.2(electron@32.1.0) + version: 2.1.2(electron@32.1.2) '@emotion/react': specifier: 11.11.4 version: 11.11.4(@types/react@18.3.3)(react@18.3.1) @@ -73,7 +73,7 @@ importers: version: 7.4.0(history@5.3.0)(mobx@6.13.1)(path-to-regexp@6.2.2) '@syed_umair/electron-process-manager': specifier: 1.1.0 - version: 1.1.0(electron@32.1.0) + version: 1.1.0(electron@32.1.2) auto-launch: specifier: 5.0.6 version: 5.0.6 @@ -353,8 +353,8 @@ importers: specifier: 7.0.3 version: 7.0.3 electron: - specifier: 32.1.0 - version: 32.1.0 + specifier: 32.1.2 + version: 32.1.2 electron-builder: specifier: 24.13.3 version: 24.13.3(electron-builder-squirrel-windows@24.13.3(dmg-builder@24.13.3)) @@ -3238,8 +3238,8 @@ packages: resolution: {integrity: sha512-1mNTwCfkolXl3kMf50yW3vE2lZj0y92P/HYWFBrb+v2S/pCka5mdwN3cagKm458A7NjndSwijynXgcLWRodsVg==} engines: {node: '>=8.0.0'} - electron@32.1.0: - resolution: {integrity: sha512-4etE3K6vPUkHihf7nvawngbB5+jLuUJgZh31f9ki1Gfveo0qwNDkLv/doabw+4zFFWKUXI+uFUpyOpL5+RwS+Q==} + electron@32.1.2: + resolution: {integrity: sha512-CXe6doFzhmh1U7daOvUzmF6Cj8hssdYWMeEPRnRO6rB9/bbwMlWctcQ7P8NJXhLQ88/vYUJQrJvlJPh8qM0BRQ==} engines: {node: '>= 12.20.55'} hasBin: true @@ -8175,9 +8175,9 @@ snapshots: transitivePeerDependencies: - supports-color - '@electron/remote@2.1.2(electron@32.1.0)': + '@electron/remote@2.1.2(electron@32.1.2)': dependencies: - electron: 32.1.0 + electron: 32.1.2 '@electron/universal@1.5.1': dependencies: @@ -9103,9 +9103,9 @@ snapshots: mobx: 6.13.1 path-to-regexp: 6.2.2 - '@syed_umair/electron-process-manager@1.1.0(electron@32.1.0)': + '@syed_umair/electron-process-manager@1.1.0(electron@32.1.2)': dependencies: - electron: 32.1.0 + electron: 32.1.2 electron-process-reporter: 1.4.0 '@szmarczak/http-timer@4.0.6': @@ -11177,7 +11177,7 @@ snapshots: jsonfile: 4.0.0 mkdirp: 0.5.6 - electron@32.1.0: + electron@32.1.2: dependencies: '@electron/get': 2.0.3 '@types/node': 20.14.10 From 74d50a87c439ac79eccb5864c576080a30354309 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sun, 22 Sep 2024 01:02:19 +0000 Subject: [PATCH 25/26] Update browserslist data updates and linter fixes [skip ci] --- pnpm-lock.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 511a73fb18..83e46c8d98 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -2556,8 +2556,8 @@ packages: camelize@1.0.1: resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} - caniuse-lite@1.0.30001660: - resolution: {integrity: sha512-GacvNTTuATm26qC74pt+ad1fW15mlQ/zuTzzY1ZoIzECTP8HURDfF43kNxPgf7H1jmelCBQTTbBNxdSXOA7Bqg==} + caniuse-lite@1.0.30001662: + resolution: {integrity: sha512-sgMUVwLmGseH8ZIrm1d51UbrhqMCH3jvS7gF/M6byuHOnKyLOBL7W8yz5V02OHwgLGA36o/AFhWzzh4uc5aqTA==} caseless@0.12.0: resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} @@ -10248,7 +10248,7 @@ snapshots: browserslist@4.23.0: dependencies: - caniuse-lite: 1.0.30001660 + caniuse-lite: 1.0.30001662 electron-to-chromium: 1.4.710 node-releases: 2.0.14 update-browserslist-db: 1.0.13(browserslist@4.23.0) @@ -10411,7 +10411,7 @@ snapshots: camelize@1.0.1: {} - caniuse-lite@1.0.30001660: {} + caniuse-lite@1.0.30001662: {} caseless@0.12.0: {} From dbe7fa8f756c1640c101a5b2d364c17dc0567d4e Mon Sep 17 00:00:00 2001 From: github-actions Date: Sun, 22 Sep 2024 01:02:20 +0000 Subject: [PATCH 26/26] 6.7.7-nightly.8 [skip ci] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b871d26c5f..5203497dcd 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "productName": "Ferdium", "desktopName": "ferdium.desktop", "appId": "org.ferdium.ferdium-app", - "version": "6.7.7-nightly.7", + "version": "6.7.7-nightly.8", "description": "Messaging app for WhatsApp, Slack, Telegram, Hangouts and many many more.", "author": "Ferdium Contributors (https://ferdium.org/)", "license": "Apache-2.0",