From b7515fd3f13d125c68b7c8f534c522030326a759 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sat, 3 Jun 2023 00:55:49 +0000 Subject: 6.3.0-nightly.18 [skip ci] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index aacf632bf..019b28e8c 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "productName": "Ferdium", "desktopName": "ferdium.desktop", "appId": "org.ferdium.ferdium-app", - "version": "6.3.0-nightly.17", + "version": "6.3.0-nightly.18", "description": "Messaging app for WhatsApp, Slack, Telegram, HipChat, Hangouts and many many more.", "author": "Ferdium Contributors (https://ferdium.org/)", "license": "Apache-2.0", -- cgit v1.2.3-54-g00ecf From 70cd1ed8e8f02e8b9fb2e1d3310fb2b4ae209e40 Mon Sep 17 00:00:00 2001 From: Vijay A Date: Sat, 3 Jun 2023 08:08:04 +0530 Subject: Upgrade npm modules and some minor refactoring to remove redundant variable --- esbuild.mjs | 43 ++++++++++++++++++----------------------- package.json | 8 ++++---- pnpm-lock.yaml | 60 ++++++++++++++++++++++++++++++---------------------------- 3 files changed, 53 insertions(+), 58 deletions(-) diff --git a/esbuild.mjs b/esbuild.mjs index 0df31be47..ae940b586 100755 --- a/esbuild.mjs +++ b/esbuild.mjs @@ -1,5 +1,5 @@ #!/usr/bin/env node -import { build, serve } from 'esbuild'; +import * as esbuild from 'esbuild'; import { sassPlugin } from 'esbuild-sass-plugin'; import { copy } from 'esbuild-plugin-copy'; import glob from 'tiny-glob'; @@ -60,7 +60,7 @@ const staticAssets = () => [ }), ]; -const copyManualAssets = async () => { +const copyManualAssets = () => { if (!fs.existsSync(outDir)) { fs.mkdirSync(outDir); } @@ -72,27 +72,21 @@ const copyManualAssets = async () => { gitHashShort: buildInfo.gitHashShort, gitBranch: buildInfo.gitBranch, }; - await fsPkg.outputJson(`${outDir}/buildInfo.json`, buildInfoData); + fsPkg.outputJsonSync(`${outDir}/buildInfo.json`, buildInfoData); }; const runEsbuild = async () => { const startTime = performance.now(); - let watch = false; - let isDev = false; - const myArgs = process.argv.slice(2); - if (myArgs.includes('--watch')) { - watch = true; - isDev = true; - } + const isDev = myArgs.includes('--watch'); log(chalk.blue(`Starting with args`), myArgs); if (fs.existsSync(outDir)) { fs.rmSync(outDir, { force: true, recursive: true }); log(chalk.blue(`Cleaning`), outDir); } - await copyManualAssets(); + copyManualAssets(); // Source files const entryPoints = await glob('./src/**/*.{ts,tsx,js,jsx}'); @@ -105,7 +99,7 @@ const runEsbuild = async () => { ); // Run build - await build({ + await esbuild.build({ entryPoints, format: 'cjs', minify: false, @@ -113,23 +107,22 @@ const runEsbuild = async () => { minifyIdentifiers: true, keepNames: true, outdir: outDir, - watch: isDev && - watch && { - onRebuild(error, result) { - if (error) { - log(chalk.red(`watch build failed: ${error}`)); - } else { - log(chalk.blue(`watch build success:`), result); - livereload.reload(); - } - }, + watch: isDev && { + onRebuild(error, result) { + if (error) { + log(chalk.red(`watch build failed: ${error}`)); + } else { + log(chalk.blue(`watch build success:`), result); + livereload.reload(); + } }, - incremental: isDev && watch, + }, + incremental: isDev, plugins: [sassPlugin(), ...staticAssets()], }); - if (watch) { - const serveResult = await serve( + if (isDev) { + const serveResult = await esbuild.serve( { servedir: outDir, port: 8080, diff --git a/package.json b/package.json index 019b28e8c..2ce901a51 100644 --- a/package.json +++ b/package.json @@ -85,7 +85,7 @@ "languagedetect": "2.0.0", "lodash": "4.17.21", "macos-version": "5.2.1", - "markdown-to-jsx": "7.2.0", + "markdown-to-jsx": "7.2.1", "minimist": "1.2.8", "mobx": "6.9.0", "mobx-localstorage": "1.2.0", @@ -118,7 +118,7 @@ "semver": "7.5.1", "sqlite3": "5.1.6", "tar": "6.1.15", - "tslib": "2.5.2", + "tslib": "2.5.3", "useragent-generator": "1.1.1-amkt-22079-finish.0", "uuid": "9.0.0", "validator": "13.9.0", @@ -144,9 +144,9 @@ "@types/validator": "13.7.17", "@typescript-eslint/eslint-plugin": "5.59.8", "@typescript-eslint/parser": "5.59.8", - "all-contributors-cli": "6.25.1", + "all-contributors-cli": "6.26.0", "chalk": "5.2.0", - "concurrently": "8.0.1", + "concurrently": "8.1.0", "cross-env": "7.0.3", "electron": "25.0.1", "electron-builder": "24.4.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index bddbd02ca..90b15b214 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -135,8 +135,8 @@ dependencies: specifier: 5.2.1 version: 5.2.1 markdown-to-jsx: - specifier: 7.2.0 - version: 7.2.0(react@18.2.0) + specifier: 7.2.1 + version: 7.2.1(react@18.2.0) minimist: specifier: 1.2.8 version: 1.2.8 @@ -234,8 +234,8 @@ dependencies: specifier: 6.1.15 version: 6.1.15 tslib: - specifier: 2.5.2 - version: 2.5.2 + specifier: 2.5.3 + version: 2.5.3 useragent-generator: specifier: 1.1.1-amkt-22079-finish.0 version: 1.1.1-amkt-22079-finish.0 @@ -316,14 +316,14 @@ devDependencies: specifier: 5.59.8 version: 5.59.8(eslint@8.39.0)(typescript@5.0.4) all-contributors-cli: - specifier: 6.25.1 - version: 6.25.1 + specifier: 6.26.0 + version: 6.26.0 chalk: specifier: 5.2.0 version: 5.2.0 concurrently: - specifier: 8.0.1 - version: 8.0.1 + specifier: 8.1.0 + version: 8.1.0 cross-env: specifier: 7.0.3 version: 7.0.3 @@ -1526,13 +1526,13 @@ packages: resolution: {integrity: sha512-7bAYAv0w4AIao9DNg0avfOLTCPE9woAgs6SpXuMq11IN3A+l+cq8ghczwqSZBM11myvPSJA7vLn72q0rJ0QK6Q==} dependencies: '@formatjs/intl-localematcher': 0.2.32 - tslib: 2.5.2 + tslib: 2.5.3 dev: false /@formatjs/fast-memoize@2.0.1: resolution: {integrity: sha512-M2GgV+qJn5WJQAYewz7q2Cdl6fobQa69S1AzSM2y0P68ZDbK5cWrJIcPCO395Of1ksftGZoOt4LYCO/j9BKBSA==} dependencies: - tslib: 2.5.2 + tslib: 2.5.3 dev: false /@formatjs/icu-messageformat-parser@2.4.0: @@ -1540,14 +1540,14 @@ packages: dependencies: '@formatjs/ecma402-abstract': 1.15.0 '@formatjs/icu-skeleton-parser': 1.4.0 - tslib: 2.5.2 + tslib: 2.5.3 dev: false /@formatjs/icu-skeleton-parser@1.4.0: resolution: {integrity: sha512-Qq347VM616rVLkvN6QsKJELazRyNlbCiN47LdH0Mc5U7E2xV0vatiVhGqd3KFgbc055BvtnUXR7XX60dCGFuWg==} dependencies: '@formatjs/ecma402-abstract': 1.15.0 - tslib: 2.5.2 + tslib: 2.5.3 dev: false /@formatjs/intl-displaynames@6.3.2: @@ -1555,7 +1555,7 @@ packages: dependencies: '@formatjs/ecma402-abstract': 1.15.0 '@formatjs/intl-localematcher': 0.2.32 - tslib: 2.5.2 + tslib: 2.5.3 dev: false /@formatjs/intl-listformat@7.2.2: @@ -1563,13 +1563,13 @@ packages: dependencies: '@formatjs/ecma402-abstract': 1.15.0 '@formatjs/intl-localematcher': 0.2.32 - tslib: 2.5.2 + tslib: 2.5.3 dev: false /@formatjs/intl-localematcher@0.2.32: resolution: {integrity: sha512-k/MEBstff4sttohyEpXxCmC3MqbUn9VvHGlZ8fauLzkbwXmVrEeyzS+4uhrvAk9DWU9/7otYWxyDox4nT/KVLQ==} dependencies: - tslib: 2.5.2 + tslib: 2.5.3 dev: false /@formatjs/intl@2.7.2(typescript@5.0.4): @@ -1586,7 +1586,7 @@ packages: '@formatjs/intl-displaynames': 6.3.2 '@formatjs/intl-listformat': 7.2.2 intl-messageformat: 10.3.5 - tslib: 2.5.2 + tslib: 2.5.3 typescript: 5.0.4 dev: false @@ -2202,7 +2202,7 @@ packages: '@sentry/types': 7.16.0 '@sentry/utils': 7.16.0 deepmerge: 4.2.2 - tslib: 2.5.2 + tslib: 2.5.3 transitivePeerDependencies: - supports-color dev: false @@ -2865,8 +2865,8 @@ packages: uri-js: 4.4.1 dev: true - /all-contributors-cli@6.25.1: - resolution: {integrity: sha512-Q9MfsO6FH09h71IG6OobfESA7lbooB3/bnO2wnuXbLPye1lFsYsa/jpNZP0YBx6zbhwXqqm6CXRZ9HO/tmD4NQ==} + /all-contributors-cli@6.26.0: + resolution: {integrity: sha512-HOMfawD0XyNbOvLUn7rOAP5N9RLnbH+Y/9/IoxwPzCmy6srHSFyRMwbpD0H7Tw+1QzdJT8RH7bTe1IZkPhF+NQ==} engines: {node: '>=4'} hasBin: true dependencies: @@ -2880,6 +2880,8 @@ packages: node-fetch: 2.6.11 pify: 5.0.0 yargs: 15.4.1 + optionalDependencies: + prettier: 2.8.8 transitivePeerDependencies: - encoding dev: true @@ -4268,8 +4270,8 @@ packages: /concat-map@0.0.1: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} - /concurrently@8.0.1: - resolution: {integrity: sha512-Sh8bGQMEL0TAmAm2meAXMjcASHZa7V0xXQVDBLknCPa9TPtkY9yYs+0cnGGgfdkW0SV1Mlg+hVGfXcoI8d3MJA==} + /concurrently@8.1.0: + resolution: {integrity: sha512-0AB6eOAtaW/r/kX2lCdolaWtT191ICeuJjEJvI9hT3zbPFuZ/iZaJwMRKwbuwADome7OKxk73L7od+fsveZ7tA==} engines: {node: ^14.13.0 || >=16.0.0} hasBin: true dependencies: @@ -5914,7 +5916,7 @@ packages: resolution: {integrity: sha512-QlZ5yJC0VxHxQQsQhXvBaC7VRJ2uaxTf+Tfpu4Z/OcVQJVpZO+DGU0rkoVW5ce2SccxugvpBJoMvUs59iILYdw==} engines: {node: '>= 12'} dependencies: - tslib: 2.5.2 + tslib: 2.5.3 dev: false /file-uri-to-path@1.0.0: @@ -6835,7 +6837,7 @@ packages: '@formatjs/ecma402-abstract': 1.15.0 '@formatjs/fast-memoize': 2.0.1 '@formatjs/icu-messageformat-parser': 2.4.0 - tslib: 2.5.2 + tslib: 2.5.3 dev: false /invariant@2.2.4: @@ -8488,8 +8490,8 @@ packages: object-visit: 1.0.1 dev: false - /markdown-to-jsx@7.2.0(react@18.2.0): - resolution: {integrity: sha512-3l4/Bigjm4bEqjCR6Xr+d4DtM1X6vvtGsMGSjJYyep8RjjIvcWtrXBS8Wbfe1/P+atKNMccpsraESIaWVplzVg==} + /markdown-to-jsx@7.2.1(react@18.2.0): + resolution: {integrity: sha512-9HrdzBAo0+sFz9ZYAGT5fB8ilzTW+q6lPocRxrIesMO+aB40V9MgFfbfMXxlGjf22OpRy+IXlvVaQenicdpgbg==} engines: {node: '>= 10'} peerDependencies: react: '>= 0.14.0' @@ -10010,7 +10012,7 @@ packages: hoist-non-react-statics: 3.3.2 intl-messageformat: 10.3.5 react: 18.2.0 - tslib: 2.5.2 + tslib: 2.5.3 typescript: 5.0.4 dev: false @@ -10570,7 +10572,7 @@ packages: /rxjs@7.8.1: resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} dependencies: - tslib: 2.5.2 + tslib: 2.5.3 /safe-buffer@5.1.2: resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} @@ -11654,8 +11656,8 @@ packages: resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} dev: true - /tslib@2.5.2: - resolution: {integrity: sha512-5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA==} + /tslib@2.5.3: + resolution: {integrity: sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==} /tsscmp@1.0.6: resolution: {integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==} -- cgit v1.2.3-54-g00ecf From 0ec7e97ae3b24dddf47798c164403caabeaaa1ca Mon Sep 17 00:00:00 2001 From: Vijay A Date: Sat, 3 Jun 2023 23:06:16 +0530 Subject: Bump version to '6.4.0-nightly.0' --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 2ce901a51..c29f4378f 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "productName": "Ferdium", "desktopName": "ferdium.desktop", "appId": "org.ferdium.ferdium-app", - "version": "6.3.0-nightly.18", + "version": "6.4.0-nightly.0", "description": "Messaging app for WhatsApp, Slack, Telegram, HipChat, Hangouts and many many more.", "author": "Ferdium Contributors (https://ferdium.org/)", "license": "Apache-2.0", -- cgit v1.2.3-54-g00ecf From 649fcf635ab0ff2aa343b0f7206da9826171f2a1 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sun, 4 Jun 2023 01:04:09 +0000 Subject: Update browserslist data updates and linter fixes [skip ci] --- pnpm-lock.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 90b15b214..61812adb1 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -3659,7 +3659,7 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001492 + caniuse-lite: 1.0.30001494 electron-to-chromium: 1.4.284 node-releases: 2.0.6 update-browserslist-db: 1.0.10(browserslist@4.21.4) @@ -3903,8 +3903,8 @@ packages: engines: {node: '>=10'} dev: true - /caniuse-lite@1.0.30001492: - resolution: {integrity: sha512-2efF8SAZwgAX1FJr87KWhvuJxnGJKOnctQa8xLOskAXNXq8oiuqgl6u1kk3fFpsp3GgvzlRjiK1sl63hNtFADw==} + /caniuse-lite@1.0.30001494: + resolution: {integrity: sha512-sY2B5Qyl46ZzfYDegrl8GBCzdawSLT4ThM9b9F+aDYUrAG2zCOyMbd2Tq34mS1g4ZKBfjRlzOohQMxx28x6wJg==} dev: true /caseless@0.12.0: -- cgit v1.2.3-54-g00ecf From d8bc946574a9fafc1af829b2e6652f24a51f57c7 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sun, 4 Jun 2023 01:04:11 +0000 Subject: 6.4.0-nightly.1 [skip ci] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c29f4378f..e3646f749 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "productName": "Ferdium", "desktopName": "ferdium.desktop", "appId": "org.ferdium.ferdium-app", - "version": "6.4.0-nightly.0", + "version": "6.4.0-nightly.1", "description": "Messaging app for WhatsApp, Slack, Telegram, HipChat, Hangouts and many many more.", "author": "Ferdium Contributors (https://ferdium.org/)", "license": "Apache-2.0", -- cgit v1.2.3-54-g00ecf From 696fe4a4e0c380d1dfa91998a7d75786478372b0 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 5 Jun 2023 00:56:15 +0000 Subject: Update submodules [skip ci] --- recipes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes b/recipes index a4b5b52ea..3fc7435c2 160000 --- a/recipes +++ b/recipes @@ -1 +1 @@ -Subproject commit a4b5b52ea7d6491b4506352fb640624ff02b4b0c +Subproject commit 3fc7435c2d80f810352666b2edcaadb4f90a2ee6 -- cgit v1.2.3-54-g00ecf From a1ee88bc4781c34e03a6c4da917d6562d1fc840f Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 5 Jun 2023 00:58:10 +0000 Subject: 6.4.0-nightly.2 [skip ci] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e3646f749..48698e220 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "productName": "Ferdium", "desktopName": "ferdium.desktop", "appId": "org.ferdium.ferdium-app", - "version": "6.4.0-nightly.1", + "version": "6.4.0-nightly.2", "description": "Messaging app for WhatsApp, Slack, Telegram, HipChat, Hangouts and many many more.", "author": "Ferdium Contributors (https://ferdium.org/)", "license": "Apache-2.0", -- cgit v1.2.3-54-g00ecf From 07a4e1e87f016613f04b61c2ca39ee044a651cbb Mon Sep 17 00:00:00 2001 From: Vijay A Date: Thu, 8 Jun 2023 05:28:12 +0530 Subject: Upgrade 'electron' to '25.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 48698e220..0518980c4 100644 --- a/package.json +++ b/package.json @@ -148,7 +148,7 @@ "chalk": "5.2.0", "concurrently": "8.1.0", "cross-env": "7.0.3", - "electron": "25.0.1", + "electron": "25.1.0", "electron-builder": "24.4.0", "esbuild": "0.16.17", "esbuild-plugin-copy": "2.1.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 61812adb1..f5ba05c30 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -46,10 +46,10 @@ dependencies: version: 5.1.0 '@electron/remote': specifier: 2.0.9 - version: 2.0.9(electron@25.0.1) + version: 2.0.9(electron@25.1.0) '@krisdages/electron-process-manager': specifier: 3.0.0 - version: 3.0.0(@electron/remote@2.0.9)(electron@25.0.1)(rxjs@7.8.1) + version: 3.0.0(@electron/remote@2.0.9)(electron@25.1.0)(rxjs@7.8.1) '@mdi/js': specifier: 7.2.96 version: 7.2.96 @@ -328,8 +328,8 @@ devDependencies: specifier: 7.0.3 version: 7.0.3 electron: - specifier: 25.0.1 - version: 25.0.1 + specifier: 25.1.0 + version: 25.1.0 electron-builder: specifier: 24.4.0 version: 24.4.0 @@ -1243,12 +1243,12 @@ packages: - supports-color dev: true - /@electron/remote@2.0.9(electron@25.0.1): + /@electron/remote@2.0.9(electron@25.1.0): resolution: {integrity: sha512-LR0W0ID6WAKHaSs0x5LX9aiG+5pFBNAJL6eQAJfGkCuZPUa6nZz+czZLdlTDETG45CgF/0raSvCtYOYUpr6c+A==} peerDependencies: electron: '>= 13.0.0' dependencies: - electron: 25.0.1 + electron: 25.1.0 dev: false /@electron/universal@1.3.4: @@ -1926,15 +1926,15 @@ packages: '@jridgewell/sourcemap-codec': 1.4.15 dev: true - /@krisdages/electron-process-manager@3.0.0(@electron/remote@2.0.9)(electron@25.0.1)(rxjs@7.8.1): + /@krisdages/electron-process-manager@3.0.0(@electron/remote@2.0.9)(electron@25.1.0)(rxjs@7.8.1): resolution: {integrity: sha512-Gs8McOVC6BVdfP4SeF+l5nx85eFooarm37K5mxs1PESI59a7oLwRf5Yd2tsZ6Ye14bCG0eTJGDv3yPuixBg3OQ==} peerDependencies: '@electron/remote': '>= 1.2.0' electron: '>= 10' rxjs: '>= 7' dependencies: - '@electron/remote': 2.0.9(electron@25.0.1) - electron: 25.0.1 + '@electron/remote': 2.0.9(electron@25.1.0) + electron: 25.1.0 electron-process-reporter: /@krisdages/electron-process-reporter@2.0.0-rxjs7-1.4.0(rxjs@7.8.1) rxjs: 7.8.1 dev: false @@ -4966,8 +4966,8 @@ packages: mkdirp: 0.5.6 dev: false - /electron@25.0.1: - resolution: {integrity: sha512-YD3xCrH01LiPeLlG90DWgMXJK69UxY4NiXKqXT12HOiXLqEaKrLWap+CiiS7J7SWUXz+4XOItQI8g1dtG7zkkA==} + /electron@25.1.0: + resolution: {integrity: sha512-VKk4G/0euO7ysMKQKHXmI4d3/qR4uHsAtVFXK2WfQUVxBmc160OAm2R6PN9/EXmgXEioKQBtbc2/lvWyYpDbuA==} engines: {node: '>= 12.20.55'} hasBin: true requiresBuild: true -- cgit v1.2.3-54-g00ecf From 77d2f3d07cdf90231e122980db99fc0e5fa69a0f Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 8 Jun 2023 00:57:36 +0000 Subject: Update browserslist data updates and linter fixes [skip ci] --- pnpm-lock.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f5ba05c30..21658b25e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -3659,7 +3659,7 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001494 + caniuse-lite: 1.0.30001495 electron-to-chromium: 1.4.284 node-releases: 2.0.6 update-browserslist-db: 1.0.10(browserslist@4.21.4) @@ -3903,8 +3903,8 @@ packages: engines: {node: '>=10'} dev: true - /caniuse-lite@1.0.30001494: - resolution: {integrity: sha512-sY2B5Qyl46ZzfYDegrl8GBCzdawSLT4ThM9b9F+aDYUrAG2zCOyMbd2Tq34mS1g4ZKBfjRlzOohQMxx28x6wJg==} + /caniuse-lite@1.0.30001495: + resolution: {integrity: sha512-F6x5IEuigtUfU5ZMQK2jsy5JqUUlEFRVZq8bO2a+ysq5K7jD6PPc9YXZj78xDNS3uNchesp1Jw47YXEqr+Viyg==} dev: true /caseless@0.12.0: -- cgit v1.2.3-54-g00ecf From 957737e7814c6ab504f5f6681be512e0cec49ac9 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 8 Jun 2023 00:57:38 +0000 Subject: 6.4.0-nightly.3 [skip ci] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0518980c4..97dbd3253 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "productName": "Ferdium", "desktopName": "ferdium.desktop", "appId": "org.ferdium.ferdium-app", - "version": "6.4.0-nightly.2", + "version": "6.4.0-nightly.3", "description": "Messaging app for WhatsApp, Slack, Telegram, HipChat, Hangouts and many many more.", "author": "Ferdium Contributors (https://ferdium.org/)", "license": "Apache-2.0", -- cgit v1.2.3-54-g00ecf From 690665741dc62f6ea3cdd6818ef73b8cc163c5eb Mon Sep 17 00:00:00 2001 From: Vijay A Date: Tue, 13 Jun 2023 10:45:55 +0530 Subject: Upgrade 'pnpm' to '8.6.2'; Upgrade npm modules (minor version bumps). --- CONTRIBUTING.md | 2 +- package.json | 20 ++--- pnpm-lock.yaml | 272 ++++++++++++++++++++++++++++---------------------------- recipes | 2 +- 4 files changed, 149 insertions(+), 147 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5a1b6f453..149fb747b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -63,7 +63,7 @@ Currently, these are the combinations of system dependencies that work for MacOS $ jq --null-input '[inputs.engines] | add' < ./package.json < ./recipes/package.json { "node": "18.15.0", - "pnpm": "8.6.0" + "pnpm": "8.6.2" } ``` diff --git a/package.json b/package.json index 97dbd3253..44d4df282 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "private": true, "engines": { "node": "18.15.0", - "pnpm": "8.6.0" + "pnpm": "8.6.2" }, "engine-strict": true, "scripts": { @@ -55,7 +55,7 @@ "@adonisjs/session": "1.1.0", "@adonisjs/shield": "1.1.0", "@adonisjs/validator": "5.1.0", - "@electron/remote": "2.0.9", + "@electron/remote": "2.0.10", "@krisdages/electron-process-manager": "3.0.0", "@mdi/js": "7.2.96", "@mdi/react": "1.6.1", @@ -104,7 +104,7 @@ "react-dom": "18.2.0", "react-dropzone": "14.2.3", "react-electron-web-view": "2.0.1", - "react-intl": "6.4.2", + "react-intl": "6.4.4", "react-jss": "10.10.0", "react-loader": "2.4.7", "react-modal": "3.16.1", @@ -128,7 +128,7 @@ "@commitlint/cli": "17.6.5", "@commitlint/config-conventional": "17.6.5", "@electron/notarize": "1.2.3", - "@formatjs/cli": "6.1.1", + "@formatjs/cli": "6.1.3", "@types/color": "3.0.3", "@types/expect.js": "0.3.29", "@types/fs-extra": "11.0.1", @@ -136,17 +136,17 @@ "@types/lodash": "4.14.195", "@types/ms": "0.7.31", "@types/node": "18.15.3", - "@types/react": "18.2.8", - "@types/react-dom": "18.2.4", + "@types/react": "18.2.12", + "@types/react-dom": "18.2.5", "@types/route-parser": "0.1.4", "@types/tar": "6.1.5", - "@types/uuid": "9.0.1", + "@types/uuid": "9.0.2", "@types/validator": "13.7.17", - "@typescript-eslint/eslint-plugin": "5.59.8", - "@typescript-eslint/parser": "5.59.8", + "@typescript-eslint/eslint-plugin": "5.59.11", + "@typescript-eslint/parser": "5.59.11", "all-contributors-cli": "6.26.0", "chalk": "5.2.0", - "concurrently": "8.1.0", + "concurrently": "8.2.0", "cross-env": "7.0.3", "electron": "25.1.0", "electron-builder": "24.4.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 21658b25e..df4602d81 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,4 @@ -lockfileVersion: '6.1' +lockfileVersion: '6.0' settings: autoInstallPeers: true @@ -45,11 +45,11 @@ dependencies: specifier: 5.1.0 version: 5.1.0 '@electron/remote': - specifier: 2.0.9 - version: 2.0.9(electron@25.1.0) + specifier: 2.0.10 + version: 2.0.10(electron@25.1.0) '@krisdages/electron-process-manager': specifier: 3.0.0 - version: 3.0.0(@electron/remote@2.0.9)(electron@25.1.0)(rxjs@7.8.1) + version: 3.0.0(@electron/remote@2.0.10)(electron@25.1.0)(rxjs@7.8.1) '@mdi/js': specifier: 7.2.96 version: 7.2.96 @@ -192,8 +192,8 @@ dependencies: specifier: 2.0.1 version: 2.0.1(react-dom@18.2.0)(react@18.2.0) react-intl: - specifier: 6.4.2 - version: 6.4.2(react@18.2.0)(typescript@5.0.4) + specifier: 6.4.4 + version: 6.4.4(react@18.2.0)(typescript@5.0.4) react-jss: specifier: 10.10.0 version: 10.10.0(react@18.2.0) @@ -268,8 +268,8 @@ devDependencies: specifier: 1.2.3 version: 1.2.3 '@formatjs/cli': - specifier: 6.1.1 - version: 6.1.1 + specifier: 6.1.3 + version: 6.1.3 '@types/color': specifier: 3.0.3 version: 3.0.3 @@ -292,11 +292,11 @@ devDependencies: specifier: 18.15.3 version: 18.15.3 '@types/react': - specifier: 18.2.8 - version: 18.2.8 + specifier: 18.2.12 + version: 18.2.12 '@types/react-dom': - specifier: 18.2.4 - version: 18.2.4 + specifier: 18.2.5 + version: 18.2.5 '@types/route-parser': specifier: 0.1.4 version: 0.1.4 @@ -304,17 +304,17 @@ devDependencies: specifier: 6.1.5 version: 6.1.5 '@types/uuid': - specifier: 9.0.1 - version: 9.0.1 + specifier: 9.0.2 + version: 9.0.2 '@types/validator': specifier: 13.7.17 version: 13.7.17 '@typescript-eslint/eslint-plugin': - specifier: 5.59.8 - version: 5.59.8(@typescript-eslint/parser@5.59.8)(eslint@8.39.0)(typescript@5.0.4) + specifier: 5.59.11 + version: 5.59.11(@typescript-eslint/parser@5.59.11)(eslint@8.39.0)(typescript@5.0.4) '@typescript-eslint/parser': - specifier: 5.59.8 - version: 5.59.8(eslint@8.39.0)(typescript@5.0.4) + specifier: 5.59.11 + version: 5.59.11(eslint@8.39.0)(typescript@5.0.4) all-contributors-cli: specifier: 6.26.0 version: 6.26.0 @@ -322,8 +322,8 @@ devDependencies: specifier: 5.2.0 version: 5.2.0 concurrently: - specifier: 8.1.0 - version: 8.1.0 + specifier: 8.2.0 + version: 8.2.0 cross-env: specifier: 7.0.3 version: 7.0.3 @@ -353,16 +353,16 @@ devDependencies: version: 19.0.4(eslint-plugin-import@2.27.5)(eslint-plugin-jsx-a11y@6.7.1)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.32.2)(eslint@8.39.0) eslint-config-airbnb-typescript: specifier: 17.0.0 - version: 17.0.0(@typescript-eslint/eslint-plugin@5.59.8)(@typescript-eslint/parser@5.59.8)(eslint-plugin-import@2.27.5)(eslint@8.39.0) + version: 17.0.0(@typescript-eslint/eslint-plugin@5.59.11)(@typescript-eslint/parser@5.59.11)(eslint-plugin-import@2.27.5)(eslint@8.39.0) eslint-config-prettier: specifier: 8.8.0 version: 8.8.0(eslint@8.39.0) eslint-plugin-import: specifier: 2.27.5 - version: 2.27.5(@typescript-eslint/parser@5.59.8)(eslint@8.39.0) + version: 2.27.5(@typescript-eslint/parser@5.59.11)(eslint@8.39.0) eslint-plugin-jest: specifier: 27.2.1 - version: 27.2.1(@typescript-eslint/eslint-plugin@5.59.8)(eslint@8.39.0)(jest@29.5.0)(typescript@5.0.4) + version: 27.2.1(@typescript-eslint/eslint-plugin@5.59.11)(eslint@8.39.0)(jest@29.5.0)(typescript@5.0.4) eslint-plugin-jsx-a11y: specifier: 6.7.1 version: 6.7.1(eslint@8.39.0) @@ -1243,8 +1243,8 @@ packages: - supports-color dev: true - /@electron/remote@2.0.9(electron@25.1.0): - resolution: {integrity: sha512-LR0W0ID6WAKHaSs0x5LX9aiG+5pFBNAJL6eQAJfGkCuZPUa6nZz+czZLdlTDETG45CgF/0raSvCtYOYUpr6c+A==} + /@electron/remote@2.0.10(electron@25.1.0): + resolution: {integrity: sha512-3SFKKaQXcyWgwmibud+UqJl/XlHOgLcI3fwtB9pNelPSJAcTxocOJrF6FaxBIQaj1+R05Di6xuAswZpXAW7xhA==} peerDependencies: electron: '>= 13.0.0' dependencies: @@ -1511,8 +1511,8 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@formatjs/cli@6.1.1: - resolution: {integrity: sha512-prUblUQRJwFQqfmBtRWXZFKX+QmhXQkBKRl54hWTCwenskorK6+LTlm9TFbUDhfib2Xt3iDsjk7o9LpeU/AQCw==} + /@formatjs/cli@6.1.3: + resolution: {integrity: sha512-PdTXZTY8LqxwmvFqdifn89gjXnPUpGtGyFs0BnoeLuOuxZFSnBfIs5WQCVMaJnr1+0vNNlXyT0VAIAwjRpf6BA==} engines: {node: '>= 16'} hasBin: true peerDependencies: @@ -1522,70 +1522,70 @@ packages: optional: true dev: true - /@formatjs/ecma402-abstract@1.15.0: - resolution: {integrity: sha512-7bAYAv0w4AIao9DNg0avfOLTCPE9woAgs6SpXuMq11IN3A+l+cq8ghczwqSZBM11myvPSJA7vLn72q0rJ0QK6Q==} + /@formatjs/ecma402-abstract@1.17.0: + resolution: {integrity: sha512-6ueQTeJZtwKjmh23bdkq/DMqH4l4bmfvtQH98blOSbiXv/OUiyijSW6jU22IT8BNM1ujCaEvJfTtyCYVH38EMQ==} dependencies: - '@formatjs/intl-localematcher': 0.2.32 + '@formatjs/intl-localematcher': 0.4.0 tslib: 2.5.3 dev: false - /@formatjs/fast-memoize@2.0.1: - resolution: {integrity: sha512-M2GgV+qJn5WJQAYewz7q2Cdl6fobQa69S1AzSM2y0P68ZDbK5cWrJIcPCO395Of1ksftGZoOt4LYCO/j9BKBSA==} + /@formatjs/fast-memoize@2.2.0: + resolution: {integrity: sha512-hnk/nY8FyrL5YxwP9e4r9dqeM6cAbo8PeU9UjyXojZMNvVad2Z06FAVHyR3Ecw6fza+0GH7vdJgiKIVXTMbSBA==} dependencies: tslib: 2.5.3 dev: false - /@formatjs/icu-messageformat-parser@2.4.0: - resolution: {integrity: sha512-6Dh5Z/gp4F/HovXXu/vmd0If5NbYLB5dZrmhWVNb+BOGOEU3wt7Z/83KY1dtd7IDhAnYHasbmKE1RbTE0J+3hw==} + /@formatjs/icu-messageformat-parser@2.6.0: + resolution: {integrity: sha512-yT6at0qc0DANw9qM/TU8RZaCtfDXtj4pZM/IC2WnVU80yAcliS3KVDiuUt4jSQAeFL9JS5bc2hARnFmjPdA6qw==} dependencies: - '@formatjs/ecma402-abstract': 1.15.0 - '@formatjs/icu-skeleton-parser': 1.4.0 + '@formatjs/ecma402-abstract': 1.17.0 + '@formatjs/icu-skeleton-parser': 1.6.0 tslib: 2.5.3 dev: false - /@formatjs/icu-skeleton-parser@1.4.0: - resolution: {integrity: sha512-Qq347VM616rVLkvN6QsKJELazRyNlbCiN47LdH0Mc5U7E2xV0vatiVhGqd3KFgbc055BvtnUXR7XX60dCGFuWg==} + /@formatjs/icu-skeleton-parser@1.6.0: + resolution: {integrity: sha512-eMmxNpoX/J1IPUjPGSZwo0Wh+7CEvdEMddP2Jxg1gQJXfGfht/FdW2D5XDFj3VMbOTUQlDIdZJY7uC6O6gjPoA==} dependencies: - '@formatjs/ecma402-abstract': 1.15.0 + '@formatjs/ecma402-abstract': 1.17.0 tslib: 2.5.3 dev: false - /@formatjs/intl-displaynames@6.3.2: - resolution: {integrity: sha512-kBOh0O7QYKLUqaZujLSEF2+au017plPp63R6Hrokl+oDtLyTt9y9pEuCTbOKh/P8CC9THnDLKRKgeVWZw5Ek8A==} + /@formatjs/intl-displaynames@6.5.0: + resolution: {integrity: sha512-sg/nR8ILEdUl+2sWu6jc1nQ5s04yucGlH1RVfatW8TSJ5uG3Yy3vgigi8NNC/BuhcncUNPWqSpTCSI1hA+rhiw==} dependencies: - '@formatjs/ecma402-abstract': 1.15.0 - '@formatjs/intl-localematcher': 0.2.32 + '@formatjs/ecma402-abstract': 1.17.0 + '@formatjs/intl-localematcher': 0.4.0 tslib: 2.5.3 dev: false - /@formatjs/intl-listformat@7.2.2: - resolution: {integrity: sha512-YIruRGwUrmgVOXjWi6VbwPcRNBkEfgK2DFjyyqopCmpfJ+39vnl46oLpVchErnuXs6kkARy5GcGaGV7xRsH4lw==} + /@formatjs/intl-listformat@7.4.0: + resolution: {integrity: sha512-ifupb+balZUAF/Oh3QyGRqPRWGSKwWoMPR0cYZEG7r61SimD+m38oFQqVx/3Fp7LfQFF11m7IS+MlxOo2sKINA==} dependencies: - '@formatjs/ecma402-abstract': 1.15.0 - '@formatjs/intl-localematcher': 0.2.32 + '@formatjs/ecma402-abstract': 1.17.0 + '@formatjs/intl-localematcher': 0.4.0 tslib: 2.5.3 dev: false - /@formatjs/intl-localematcher@0.2.32: - resolution: {integrity: sha512-k/MEBstff4sttohyEpXxCmC3MqbUn9VvHGlZ8fauLzkbwXmVrEeyzS+4uhrvAk9DWU9/7otYWxyDox4nT/KVLQ==} + /@formatjs/intl-localematcher@0.4.0: + resolution: {integrity: sha512-bRTd+rKomvfdS4QDlVJ6TA/Jx1F2h/TBVO5LjvhQ7QPPHp19oPNMIum7W2CMEReq/zPxpmCeB31F9+5gl/qtvw==} dependencies: tslib: 2.5.3 dev: false - /@formatjs/intl@2.7.2(typescript@5.0.4): - resolution: {integrity: sha512-ziiQfnXwY0/rXhtohSAmYMqDjRsihoMKdl8H2aA+FvxG9638E0XrvfBFCb+1HhimNiuqRz5fTY7F/bZtsJxsjA==} + /@formatjs/intl@2.9.0(typescript@5.0.4): + resolution: {integrity: sha512-Ym0trUoC/VO6wQu4YHa0H1VR2tEixFRmwZgADkDLm7nD+vv1Ob+/88mUAoT0pwvirFqYKgUKEwp1tFepqyqvVA==} peerDependencies: typescript: ^4.7 || 5 peerDependenciesMeta: typescript: optional: true dependencies: - '@formatjs/ecma402-abstract': 1.15.0 - '@formatjs/fast-memoize': 2.0.1 - '@formatjs/icu-messageformat-parser': 2.4.0 - '@formatjs/intl-displaynames': 6.3.2 - '@formatjs/intl-listformat': 7.2.2 - intl-messageformat: 10.3.5 + '@formatjs/ecma402-abstract': 1.17.0 + '@formatjs/fast-memoize': 2.2.0 + '@formatjs/icu-messageformat-parser': 2.6.0 + '@formatjs/intl-displaynames': 6.5.0 + '@formatjs/intl-listformat': 7.4.0 + intl-messageformat: 10.5.0 tslib: 2.5.3 typescript: 5.0.4 dev: false @@ -1926,14 +1926,14 @@ packages: '@jridgewell/sourcemap-codec': 1.4.15 dev: true - /@krisdages/electron-process-manager@3.0.0(@electron/remote@2.0.9)(electron@25.1.0)(rxjs@7.8.1): + /@krisdages/electron-process-manager@3.0.0(@electron/remote@2.0.10)(electron@25.1.0)(rxjs@7.8.1): resolution: {integrity: sha512-Gs8McOVC6BVdfP4SeF+l5nx85eFooarm37K5mxs1PESI59a7oLwRf5Yd2tsZ6Ye14bCG0eTJGDv3yPuixBg3OQ==} peerDependencies: '@electron/remote': '>= 1.2.0' electron: '>= 10' rxjs: '>= 7' dependencies: - '@electron/remote': 2.0.9(electron@25.1.0) + '@electron/remote': 2.0.10(electron@25.1.0) electron: 25.1.0 electron-process-reporter: /@krisdages/electron-process-reporter@2.0.0-rxjs7-1.4.0(rxjs@7.8.1) rxjs: 7.8.1 @@ -2408,7 +2408,7 @@ packages: /@types/hoist-non-react-statics@3.3.1: resolution: {integrity: sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==} dependencies: - '@types/react': 18.2.8 + '@types/react': 18.2.12 hoist-non-react-statics: 3.3.2 dev: false @@ -2492,14 +2492,14 @@ packages: /@types/prop-types@15.7.5: resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} - /@types/react-dom@18.2.4: - resolution: {integrity: sha512-G2mHoTMTL4yoydITgOGwWdWMVd8sNgyEP85xVmMKAPUBwQWm9wBPQUmvbeF4V3WBY1P7mmL4BkjQ0SqUpf1snw==} + /@types/react-dom@18.2.5: + resolution: {integrity: sha512-sRQsOS/sCLnpQhR4DSKGTtWFE3FZjpQa86KPVbhUqdYMRZ9FEFcfAytKhR/vUG2rH1oFbOOej6cuD7MFSobDRQ==} dependencies: - '@types/react': 18.2.8 + '@types/react': 18.2.12 dev: true - /@types/react@18.2.8: - resolution: {integrity: sha512-lTyWUNrd8ntVkqycEEplasWy2OxNlShj3zqS0LuB1ENUGis5HodmhM7DtCoUGbxj3VW/WsGA0DUhpG6XrM7gPA==} + /@types/react@18.2.12: + resolution: {integrity: sha512-ndmBMLCgn38v3SntMeoJaIrO6tGHYKMEBohCUmw8HoLLQdRMOIGXfeYaBTLe2lsFaSB3MOK1VXscYFnmLtTSmw==} dependencies: '@types/prop-types': 15.7.5 '@types/scheduler': 0.16.2 @@ -2535,8 +2535,8 @@ packages: minipass: 4.2.8 dev: true - /@types/uuid@9.0.1: - resolution: {integrity: sha512-rFT3ak0/2trgvp4yYZo5iKFEPsET7vKydKF+VRCxlQ9bpheehyAJH89dAkaLEq/j/RZXJIqcgsmPJKUP1Z28HA==} + /@types/uuid@9.0.2: + resolution: {integrity: sha512-kNnC1GFBLuhImSnV7w4njQkUiJi0ZXUycu1rUaouPqiKlXkh77JKgdRnTAp1x5eBwcIwbtI+3otwzuIDEuDoxQ==} dev: true /@types/validator@13.7.17: @@ -2566,8 +2566,8 @@ packages: '@types/node': 18.15.3 optional: true - /@typescript-eslint/eslint-plugin@5.59.8(@typescript-eslint/parser@5.59.8)(eslint@8.39.0)(typescript@5.0.4): - resolution: {integrity: sha512-JDMOmhXteJ4WVKOiHXGCoB96ADWg9q7efPWHRViT/f09bA8XOMLAVHHju3l0MkZnG1izaWXYmgvQcUjTRcpShQ==} + /@typescript-eslint/eslint-plugin@5.59.11(@typescript-eslint/parser@5.59.11)(eslint@8.39.0)(typescript@5.0.4): + resolution: {integrity: sha512-XxuOfTkCUiOSyBWIvHlUraLw/JT/6Io1365RO6ZuI88STKMavJZPNMU0lFcUTeQXEhHiv64CbxYxBNoDVSmghg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -2578,10 +2578,10 @@ packages: optional: true dependencies: '@eslint-community/regexpp': 4.4.0 - '@typescript-eslint/parser': 5.59.8(eslint@8.39.0)(typescript@5.0.4) - '@typescript-eslint/scope-manager': 5.59.8 - '@typescript-eslint/type-utils': 5.59.8(eslint@8.39.0)(typescript@5.0.4) - '@typescript-eslint/utils': 5.59.8(eslint@8.39.0)(typescript@5.0.4) + '@typescript-eslint/parser': 5.59.11(eslint@8.39.0)(typescript@5.0.4) + '@typescript-eslint/scope-manager': 5.59.11 + '@typescript-eslint/type-utils': 5.59.11(eslint@8.39.0)(typescript@5.0.4) + '@typescript-eslint/utils': 5.59.11(eslint@8.39.0)(typescript@5.0.4) debug: 4.3.4 eslint: 8.39.0 grapheme-splitter: 1.0.4 @@ -2594,8 +2594,8 @@ packages: - supports-color dev: true - /@typescript-eslint/parser@5.59.8(eslint@8.39.0)(typescript@5.0.4): - resolution: {integrity: sha512-AnR19RjJcpjoeGojmwZtCwBX/RidqDZtzcbG3xHrmz0aHHoOcbWnpDllenRDmDvsV0RQ6+tbb09/kyc+UT9Orw==} + /@typescript-eslint/parser@5.59.11(eslint@8.39.0)(typescript@5.0.4): + resolution: {integrity: sha512-s9ZF3M+Nym6CAZEkJJeO2TFHHDsKAM3ecNkLuH4i4s8/RCPnF5JRip2GyviYkeEAcwGMJxkqG9h2dAsnA1nZpA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -2604,9 +2604,9 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.59.8 - '@typescript-eslint/types': 5.59.8 - '@typescript-eslint/typescript-estree': 5.59.8(typescript@5.0.4) + '@typescript-eslint/scope-manager': 5.59.11 + '@typescript-eslint/types': 5.59.11 + '@typescript-eslint/typescript-estree': 5.59.11(typescript@5.0.4) debug: 4.3.4 eslint: 8.39.0 typescript: 5.0.4 @@ -2622,16 +2622,16 @@ packages: '@typescript-eslint/visitor-keys': 5.48.1 dev: true - /@typescript-eslint/scope-manager@5.59.8: - resolution: {integrity: sha512-/w08ndCYI8gxGf+9zKf1vtx/16y8MHrZs5/tnjHhMLNSixuNcJavSX4wAiPf4aS5x41Es9YPCn44MIe4cxIlig==} + /@typescript-eslint/scope-manager@5.59.11: + resolution: {integrity: sha512-dHFOsxoLFtrIcSj5h0QoBT/89hxQONwmn3FOQ0GOQcLOOXm+MIrS8zEAhs4tWl5MraxCY3ZJpaXQQdFMc2Tu+Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.59.8 - '@typescript-eslint/visitor-keys': 5.59.8 + '@typescript-eslint/types': 5.59.11 + '@typescript-eslint/visitor-keys': 5.59.11 dev: true - /@typescript-eslint/type-utils@5.59.8(eslint@8.39.0)(typescript@5.0.4): - resolution: {integrity: sha512-+5M518uEIHFBy3FnyqZUF3BMP+AXnYn4oyH8RF012+e7/msMY98FhGL5SrN29NQ9xDgvqCgYnsOiKp1VjZ/fpA==} + /@typescript-eslint/type-utils@5.59.11(eslint@8.39.0)(typescript@5.0.4): + resolution: {integrity: sha512-LZqVY8hMiVRF2a7/swmkStMYSoXMFlzL6sXV6U/2gL5cwnLWQgLEG8tjWPpaE4rMIdZ6VKWwcffPlo1jPfk43g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -2640,8 +2640,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 5.59.8(typescript@5.0.4) - '@typescript-eslint/utils': 5.59.8(eslint@8.39.0)(typescript@5.0.4) + '@typescript-eslint/typescript-estree': 5.59.11(typescript@5.0.4) + '@typescript-eslint/utils': 5.59.11(eslint@8.39.0)(typescript@5.0.4) debug: 4.3.4 eslint: 8.39.0 tsutils: 3.21.0(typescript@5.0.4) @@ -2655,8 +2655,8 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/types@5.59.8: - resolution: {integrity: sha512-+uWuOhBTj/L6awoWIg0BlWy0u9TyFpCHrAuQ5bNfxDaZ1Ppb3mx6tUigc74LHcbHpOHuOTOJrBoAnhdHdaea1w==} + /@typescript-eslint/types@5.59.11: + resolution: {integrity: sha512-epoN6R6tkvBYSc+cllrz+c2sOFWkbisJZWkOE+y3xHtvYaOE6Wk6B8e114McRJwFRjGvYdJwLXQH5c9osME/AA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true @@ -2681,8 +2681,8 @@ packages: - supports-color dev: true - /@typescript-eslint/typescript-estree@5.59.8(typescript@5.0.4): - resolution: {integrity: sha512-Jy/lPSDJGNow14vYu6IrW790p7HIf/SOV1Bb6lZ7NUkLc2iB2Z9elESmsaUtLw8kVqogSbtLH9tut5GCX1RLDg==} + /@typescript-eslint/typescript-estree@5.59.11(typescript@5.0.4): + resolution: {integrity: sha512-YupOpot5hJO0maupJXixi6l5ETdrITxeo5eBOeuV7RSKgYdU3G5cxO49/9WRnJq9EMrB7AuTSLH/bqOsXi7wPA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -2690,8 +2690,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.59.8 - '@typescript-eslint/visitor-keys': 5.59.8 + '@typescript-eslint/types': 5.59.11 + '@typescript-eslint/visitor-keys': 5.59.11 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -2722,8 +2722,8 @@ packages: - typescript dev: true - /@typescript-eslint/utils@5.59.8(eslint@8.39.0)(typescript@5.0.4): - resolution: {integrity: sha512-Tr65630KysnNn9f9G7ROF3w1b5/7f6QVCJ+WK9nhIocWmx9F+TmCAcglF26Vm7z8KCTwoKcNEBZrhlklla3CKg==} + /@typescript-eslint/utils@5.59.11(eslint@8.39.0)(typescript@5.0.4): + resolution: {integrity: sha512-didu2rHSOMUdJThLk4aZ1Or8IcO3HzCw/ZvEjTTIfjIrcdd5cvSIwwDy2AOlE7htSNp7QIZ10fLMyRCveesMLg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -2731,9 +2731,9 @@ packages: '@eslint-community/eslint-utils': 4.3.0(eslint@8.39.0) '@types/json-schema': 7.0.11 '@types/semver': 7.3.13 - '@typescript-eslint/scope-manager': 5.59.8 - '@typescript-eslint/types': 5.59.8 - '@typescript-eslint/typescript-estree': 5.59.8(typescript@5.0.4) + '@typescript-eslint/scope-manager': 5.59.11 + '@typescript-eslint/types': 5.59.11 + '@typescript-eslint/typescript-estree': 5.59.11(typescript@5.0.4) eslint: 8.39.0 eslint-scope: 5.1.1 semver: 7.5.1 @@ -2750,11 +2750,11 @@ packages: eslint-visitor-keys: 3.4.1 dev: true - /@typescript-eslint/visitor-keys@5.59.8: - resolution: {integrity: sha512-pJhi2ms0x0xgloT7xYabil3SGGlojNNKjK/q6dB3Ey0uJLMjK2UDGJvHieiyJVW/7C3KI+Z4Q3pEHkm4ejA+xQ==} + /@typescript-eslint/visitor-keys@5.59.11: + resolution: {integrity: sha512-KGYniTGG3AMTuKF9QBD7EIrvufkB6O6uX3knP73xbKLMpH+QRPcgnCxjWXSHjMRuOxFLovljqQgQpR0c7GvjoA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.59.8 + '@typescript-eslint/types': 5.59.11 eslint-visitor-keys: 3.4.1 dev: true @@ -4270,17 +4270,17 @@ packages: /concat-map@0.0.1: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} - /concurrently@8.1.0: - resolution: {integrity: sha512-0AB6eOAtaW/r/kX2lCdolaWtT191ICeuJjEJvI9hT3zbPFuZ/iZaJwMRKwbuwADome7OKxk73L7od+fsveZ7tA==} + /concurrently@8.2.0: + resolution: {integrity: sha512-nnLMxO2LU492mTUj9qX/az/lESonSZu81UznYDoXtz1IQf996ixVqPAgHXwvHiHCAef/7S8HIK+fTFK7Ifk8YA==} engines: {node: ^14.13.0 || >=16.0.0} hasBin: true dependencies: chalk: 4.1.2 - date-fns: 2.29.3 + date-fns: 2.30.0 lodash: 4.17.21 rxjs: 7.8.1 shell-quote: 1.8.1 - spawn-command: 0.0.2-1 + spawn-command: 0.0.2 supports-color: 8.1.1 tree-kill: 1.2.2 yargs: 17.7.2 @@ -4509,9 +4509,11 @@ packages: assert-plus: 1.0.0 dev: false - /date-fns@2.29.3: - resolution: {integrity: sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==} + /date-fns@2.30.0: + resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==} engines: {node: '>=0.11'} + dependencies: + '@babel/runtime': 7.21.5 dev: true /dbus-next@0.10.2: @@ -5251,13 +5253,13 @@ packages: dependencies: confusing-browser-globals: 1.0.11 eslint: 8.39.0 - eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.8)(eslint@8.39.0) + eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.11)(eslint@8.39.0) object.assign: 4.1.4 object.entries: 1.1.6 semver: 6.3.0 dev: true - /eslint-config-airbnb-typescript@17.0.0(@typescript-eslint/eslint-plugin@5.59.8)(@typescript-eslint/parser@5.59.8)(eslint-plugin-import@2.27.5)(eslint@8.39.0): + /eslint-config-airbnb-typescript@17.0.0(@typescript-eslint/eslint-plugin@5.59.11)(@typescript-eslint/parser@5.59.11)(eslint-plugin-import@2.27.5)(eslint@8.39.0): resolution: {integrity: sha512-elNiuzD0kPAPTXjFWg+lE24nMdHMtuxgYoD30OyMD6yrW1AhFZPAg27VX7d3tzOErw+dgJTNWfRSDqEcXb4V0g==} peerDependencies: '@typescript-eslint/eslint-plugin': ^5.13.0 @@ -5265,11 +5267,11 @@ packages: eslint: ^7.32.0 || ^8.2.0 eslint-plugin-import: ^2.25.3 dependencies: - '@typescript-eslint/eslint-plugin': 5.59.8(@typescript-eslint/parser@5.59.8)(eslint@8.39.0)(typescript@5.0.4) - '@typescript-eslint/parser': 5.59.8(eslint@8.39.0)(typescript@5.0.4) + '@typescript-eslint/eslint-plugin': 5.59.11(@typescript-eslint/parser@5.59.11)(eslint@8.39.0)(typescript@5.0.4) + '@typescript-eslint/parser': 5.59.11(eslint@8.39.0)(typescript@5.0.4) eslint: 8.39.0 eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.27.5)(eslint@8.39.0) - eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.8)(eslint@8.39.0) + eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.11)(eslint@8.39.0) dev: true /eslint-config-airbnb@19.0.4(eslint-plugin-import@2.27.5)(eslint-plugin-jsx-a11y@6.7.1)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.32.2)(eslint@8.39.0): @@ -5284,7 +5286,7 @@ packages: dependencies: eslint: 8.39.0 eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.27.5)(eslint@8.39.0) - eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.8)(eslint@8.39.0) + eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.11)(eslint@8.39.0) eslint-plugin-jsx-a11y: 6.7.1(eslint@8.39.0) eslint-plugin-react: 7.32.2(eslint@8.39.0) eslint-plugin-react-hooks: 4.6.0(eslint@8.39.0) @@ -5311,7 +5313,7 @@ packages: - supports-color dev: true - /eslint-module-utils@2.7.4(@typescript-eslint/parser@5.59.8)(eslint-import-resolver-node@0.3.7)(eslint@8.39.0): + /eslint-module-utils@2.7.4(@typescript-eslint/parser@5.59.11)(eslint-import-resolver-node@0.3.7)(eslint@8.39.0): resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} engines: {node: '>=4'} peerDependencies: @@ -5332,7 +5334,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.59.8(eslint@8.39.0)(typescript@5.0.4) + '@typescript-eslint/parser': 5.59.11(eslint@8.39.0)(typescript@5.0.4) debug: 3.2.7 eslint: 8.39.0 eslint-import-resolver-node: 0.3.7 @@ -5340,7 +5342,7 @@ packages: - supports-color dev: true - /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.59.8)(eslint@8.39.0): + /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.59.11)(eslint@8.39.0): resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} engines: {node: '>=4'} peerDependencies: @@ -5350,7 +5352,7 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.59.8(eslint@8.39.0)(typescript@5.0.4) + '@typescript-eslint/parser': 5.59.11(eslint@8.39.0)(typescript@5.0.4) array-includes: 3.1.6 array.prototype.flat: 1.3.1 array.prototype.flatmap: 1.3.1 @@ -5358,7 +5360,7 @@ packages: doctrine: 2.1.0 eslint: 8.39.0 eslint-import-resolver-node: 0.3.7 - eslint-module-utils: 2.7.4(@typescript-eslint/parser@5.59.8)(eslint-import-resolver-node@0.3.7)(eslint@8.39.0) + eslint-module-utils: 2.7.4(@typescript-eslint/parser@5.59.11)(eslint-import-resolver-node@0.3.7)(eslint@8.39.0) has: 1.0.3 is-core-module: 2.11.0 is-glob: 4.0.3 @@ -5373,7 +5375,7 @@ packages: - supports-color dev: true - /eslint-plugin-jest@27.2.1(@typescript-eslint/eslint-plugin@5.59.8)(eslint@8.39.0)(jest@29.5.0)(typescript@5.0.4): + /eslint-plugin-jest@27.2.1(@typescript-eslint/eslint-plugin@5.59.11)(eslint@8.39.0)(jest@29.5.0)(typescript@5.0.4): resolution: {integrity: sha512-l067Uxx7ZT8cO9NJuf+eJHvt6bqJyz2Z29wykyEdz/OtmcELQl2MQGQLX8J94O1cSJWAwUSEvCjwjA7KEK3Hmg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -5386,7 +5388,7 @@ packages: jest: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.59.8(@typescript-eslint/parser@5.59.8)(eslint@8.39.0)(typescript@5.0.4) + '@typescript-eslint/eslint-plugin': 5.59.11(@typescript-eslint/parser@5.59.11)(eslint@8.39.0)(typescript@5.0.4) '@typescript-eslint/utils': 5.48.1(eslint@8.39.0)(typescript@5.0.4) eslint: 8.39.0 jest: 29.5.0(@types/node@18.15.3)(ts-node@10.9.1) @@ -6831,12 +6833,12 @@ packages: engines: {node: '>= 0.10'} dev: false - /intl-messageformat@10.3.5: - resolution: {integrity: sha512-6kPkftF8Jg3XJCkGKa5OD+nYQ+qcSxF4ZkuDdXZ6KGG0VXn+iblJqRFyDdm9VvKcMyC0Km2+JlVQffFM52D0YA==} + /intl-messageformat@10.5.0: + resolution: {integrity: sha512-AvojYuOaRb6r2veOKfTVpxH9TrmjSdc5iR9R5RgBwrDZYSmAAFVT+QLbW3C4V7Qsg0OguMp67Q/EoUkxZzXRGw==} dependencies: - '@formatjs/ecma402-abstract': 1.15.0 - '@formatjs/fast-memoize': 2.0.1 - '@formatjs/icu-messageformat-parser': 2.4.0 + '@formatjs/ecma402-abstract': 1.17.0 + '@formatjs/fast-memoize': 2.2.0 + '@formatjs/icu-messageformat-parser': 2.6.0 tslib: 2.5.3 dev: false @@ -9993,8 +9995,8 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /react-intl@6.4.2(react@18.2.0)(typescript@5.0.4): - resolution: {integrity: sha512-q8QyLZfbyqV3Ifa7vtjRrgfSQPGTR6Fi+u9tP/CuzhUPl9DJEPIrvUFhlBryKtRW2qNASqchaP/79Obip+h6oA==} + /react-intl@6.4.4(react@18.2.0)(typescript@5.0.4): + resolution: {integrity: sha512-/C9Sl/5//ohfkNG6AWlJuf4BhTXsbzyk93K62A4zRhSPANyOGpKZ+fWhN+TLfFd5YjDUHy+exU/09y0w1bO4Xw==} peerDependencies: react: ^16.6.0 || 17 || 18 typescript: ^4.7 || 5 @@ -10002,15 +10004,15 @@ packages: typescript: optional: true dependencies: - '@formatjs/ecma402-abstract': 1.15.0 - '@formatjs/icu-messageformat-parser': 2.4.0 - '@formatjs/intl': 2.7.2(typescript@5.0.4) - '@formatjs/intl-displaynames': 6.3.2 - '@formatjs/intl-listformat': 7.2.2 + '@formatjs/ecma402-abstract': 1.17.0 + '@formatjs/icu-messageformat-parser': 2.6.0 + '@formatjs/intl': 2.9.0(typescript@5.0.4) + '@formatjs/intl-displaynames': 6.5.0 + '@formatjs/intl-listformat': 7.4.0 '@types/hoist-non-react-statics': 3.3.1 - '@types/react': 18.2.8 + '@types/react': 18.2.12 hoist-non-react-statics: 3.3.2 - intl-messageformat: 10.3.5 + intl-messageformat: 10.5.0 react: 18.2.0 tslib: 2.5.3 typescript: 5.0.4 @@ -11046,8 +11048,8 @@ packages: engines: {node: '>=0.10.0'} dev: true - /spawn-command@0.0.2-1: - resolution: {integrity: sha512-n98l9E2RMSJ9ON1AKisHzz7V42VDiBQGY6PB1BwRglz99wpVsSuGzQ+jOi6lFXBGVTCrRpltvjm+/XA+tpeJrg==} + /spawn-command@0.0.2: + resolution: {integrity: sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==} dev: true /spdx-correct@3.2.0: diff --git a/recipes b/recipes index 3fc7435c2..b21abf5ec 160000 --- a/recipes +++ b/recipes @@ -1 +1 @@ -Subproject commit 3fc7435c2d80f810352666b2edcaadb4f90a2ee6 +Subproject commit b21abf5ec30c35773890382869ee9d9ab8f4acec -- cgit v1.2.3-54-g00ecf From 4bf2fe30c1f58fbd97670876b974f488a40218aa Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 14 Jun 2023 01:39:30 +0000 Subject: 6.4.0-nightly.4 [skip ci] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 44d4df282..55f1e562d 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "productName": "Ferdium", "desktopName": "ferdium.desktop", "appId": "org.ferdium.ferdium-app", - "version": "6.4.0-nightly.3", + "version": "6.4.0-nightly.4", "description": "Messaging app for WhatsApp, Slack, Telegram, HipChat, Hangouts and many many more.", "author": "Ferdium Contributors (https://ferdium.org/)", "license": "Apache-2.0", -- cgit v1.2.3-54-g00ecf From 3ae8a2387f0120736689777851a7c234c68ee4b7 Mon Sep 17 00:00:00 2001 From: Vijay A Date: Thu, 15 Jun 2023 07:15:31 +0530 Subject: Upgrade 'electron' to '25.1.1' --- package.json | 2 +- pnpm-lock.yaml | 22 +++++++++++----------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/package.json b/package.json index 55f1e562d..5c1992175 100644 --- a/package.json +++ b/package.json @@ -148,7 +148,7 @@ "chalk": "5.2.0", "concurrently": "8.2.0", "cross-env": "7.0.3", - "electron": "25.1.0", + "electron": "25.1.1", "electron-builder": "24.4.0", "esbuild": "0.16.17", "esbuild-plugin-copy": "2.1.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index df4602d81..279de4595 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -46,10 +46,10 @@ dependencies: version: 5.1.0 '@electron/remote': specifier: 2.0.10 - version: 2.0.10(electron@25.1.0) + version: 2.0.10(electron@25.1.1) '@krisdages/electron-process-manager': specifier: 3.0.0 - version: 3.0.0(@electron/remote@2.0.10)(electron@25.1.0)(rxjs@7.8.1) + version: 3.0.0(@electron/remote@2.0.10)(electron@25.1.1)(rxjs@7.8.1) '@mdi/js': specifier: 7.2.96 version: 7.2.96 @@ -328,8 +328,8 @@ devDependencies: specifier: 7.0.3 version: 7.0.3 electron: - specifier: 25.1.0 - version: 25.1.0 + specifier: 25.1.1 + version: 25.1.1 electron-builder: specifier: 24.4.0 version: 24.4.0 @@ -1243,12 +1243,12 @@ packages: - supports-color dev: true - /@electron/remote@2.0.10(electron@25.1.0): + /@electron/remote@2.0.10(electron@25.1.1): resolution: {integrity: sha512-3SFKKaQXcyWgwmibud+UqJl/XlHOgLcI3fwtB9pNelPSJAcTxocOJrF6FaxBIQaj1+R05Di6xuAswZpXAW7xhA==} peerDependencies: electron: '>= 13.0.0' dependencies: - electron: 25.1.0 + electron: 25.1.1 dev: false /@electron/universal@1.3.4: @@ -1926,15 +1926,15 @@ packages: '@jridgewell/sourcemap-codec': 1.4.15 dev: true - /@krisdages/electron-process-manager@3.0.0(@electron/remote@2.0.10)(electron@25.1.0)(rxjs@7.8.1): + /@krisdages/electron-process-manager@3.0.0(@electron/remote@2.0.10)(electron@25.1.1)(rxjs@7.8.1): resolution: {integrity: sha512-Gs8McOVC6BVdfP4SeF+l5nx85eFooarm37K5mxs1PESI59a7oLwRf5Yd2tsZ6Ye14bCG0eTJGDv3yPuixBg3OQ==} peerDependencies: '@electron/remote': '>= 1.2.0' electron: '>= 10' rxjs: '>= 7' dependencies: - '@electron/remote': 2.0.10(electron@25.1.0) - electron: 25.1.0 + '@electron/remote': 2.0.10(electron@25.1.1) + electron: 25.1.1 electron-process-reporter: /@krisdages/electron-process-reporter@2.0.0-rxjs7-1.4.0(rxjs@7.8.1) rxjs: 7.8.1 dev: false @@ -4968,8 +4968,8 @@ packages: mkdirp: 0.5.6 dev: false - /electron@25.1.0: - resolution: {integrity: sha512-VKk4G/0euO7ysMKQKHXmI4d3/qR4uHsAtVFXK2WfQUVxBmc160OAm2R6PN9/EXmgXEioKQBtbc2/lvWyYpDbuA==} + /electron@25.1.1: + resolution: {integrity: sha512-WvFUfVsJn6YiP35UxdibYVjU2LceastyMm4SVp2bmb4XvKEvItAIiwxgm7tPC5Syl1243aRCvQLqr84sZ71pyQ==} engines: {node: '>= 12.20.55'} hasBin: true requiresBuild: true -- cgit v1.2.3-54-g00ecf From 9f1d82c7dfae89d9f63089dc64d7d73ae4ce000f Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 16 Jun 2023 00:56:35 +0000 Subject: Update browserslist data updates and linter fixes [skip ci] --- pnpm-lock.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 279de4595..7f935b1bc 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -3659,7 +3659,7 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001495 + caniuse-lite: 1.0.30001503 electron-to-chromium: 1.4.284 node-releases: 2.0.6 update-browserslist-db: 1.0.10(browserslist@4.21.4) @@ -3903,8 +3903,8 @@ packages: engines: {node: '>=10'} dev: true - /caniuse-lite@1.0.30001495: - resolution: {integrity: sha512-F6x5IEuigtUfU5ZMQK2jsy5JqUUlEFRVZq8bO2a+ysq5K7jD6PPc9YXZj78xDNS3uNchesp1Jw47YXEqr+Viyg==} + /caniuse-lite@1.0.30001503: + resolution: {integrity: sha512-Sf9NiF+wZxPfzv8Z3iS0rXM1Do+iOy2Lxvib38glFX+08TCYYYGR5fRJXk4d77C4AYwhUjgYgMsMudbh2TqCKw==} dev: true /caseless@0.12.0: -- cgit v1.2.3-54-g00ecf From 31af8baa07bc3a5301e1d73c692786001627f77b Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 16 Jun 2023 00:56:36 +0000 Subject: 6.4.0-nightly.5 [skip ci] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5c1992175..fa1aef936 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "productName": "Ferdium", "desktopName": "ferdium.desktop", "appId": "org.ferdium.ferdium-app", - "version": "6.4.0-nightly.4", + "version": "6.4.0-nightly.5", "description": "Messaging app for WhatsApp, Slack, Telegram, HipChat, Hangouts and many many more.", "author": "Ferdium Contributors (https://ferdium.org/)", "license": "Apache-2.0", -- cgit v1.2.3-54-g00ecf From 61ced65b756d9120e77155a849877580e4cbcc64 Mon Sep 17 00:00:00 2001 From: André Oliveira <37463445+SpecialAro@users.noreply.github.com> Date: Sat, 17 Jun 2023 15:37:45 +0100 Subject: fix: changelog links opening in-app instead of browser (#1241) --- .../releaseNotes/ReleaseNotesDashboard.tsx | 31 +++++++++------------- 1 file changed, 12 insertions(+), 19 deletions(-) diff --git a/src/components/settings/releaseNotes/ReleaseNotesDashboard.tsx b/src/components/settings/releaseNotes/ReleaseNotesDashboard.tsx index d0be82312..ff7c45bb1 100644 --- a/src/components/settings/releaseNotes/ReleaseNotesDashboard.tsx +++ b/src/components/settings/releaseNotes/ReleaseNotesDashboard.tsx @@ -2,7 +2,6 @@ import { Component } from 'react'; import { observer } from 'mobx-react'; import { defineMessages, injectIntl } from 'react-intl'; import Markdown from 'markdown-to-jsx'; -import { openExternalUrl } from '../../../helpers/url-helpers'; import { ferdiumVersion } from '../../../environment-remote'; import { getFerdiumVersion, @@ -53,25 +52,12 @@ class ReleaseNotesDashboard extends Component { this.setState({ data, }); - - for (const link of document.querySelectorAll('.releasenotes__body a')) { - link.addEventListener('click', this.handleClick.bind(this), false); - } - } - - handleClick(e) { - e.preventDefault(); - openExternalUrl(e.target.href); } - componentWillUnmount() { - document.removeEventListener( - 'click', - // eslint-disable-next-line unicorn/no-invalid-remove-event-listener - this.handleClick.bind(this), - false, - ); - } + overrideAnchor = props => ( + // eslint-disable-next-line jsx-a11y/anchor-has-content + + ); render() { const { intl } = this.props; @@ -89,7 +75,14 @@ class ReleaseNotesDashboard extends Component {
- {data} + + {data} +
); -- cgit v1.2.3-54-g00ecf From d970bfb143f3efa6bde231e8453e578f54cf1351 Mon Sep 17 00:00:00 2001 From: Alphrag <34252790+Alphrag@users.noreply.github.com> Date: Sat, 17 Jun 2023 16:28:48 +0100 Subject: Remove certificate verification in windows auto-update (#1244) --- electron-builder.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/electron-builder.yml b/electron-builder.yml index 085dc609d..2cb0fe5d7 100644 --- a/electron-builder.yml +++ b/electron-builder.yml @@ -84,6 +84,8 @@ win: arch: [x64, ia32, arm64] # The name of the CN appearing in the certificate must be present in the publisherName list below publisherName: ["Ferdium Contributors", "Ambroise Grau"] + # Remove the verification for a signature to allow auto-update without signed certificate + verifyUpdateCodeSignature: false linux: icon: ./build-helpers/images/icons -- cgit v1.2.3-54-g00ecf From cf3ab89ca135e9099a5d83ed80f345cbacf6f575 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sun, 18 Jun 2023 01:01:37 +0000 Subject: Update browserslist data updates and linter fixes [skip ci] --- pnpm-lock.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7f935b1bc..235b5b2a9 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -3659,7 +3659,7 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001503 + caniuse-lite: 1.0.30001504 electron-to-chromium: 1.4.284 node-releases: 2.0.6 update-browserslist-db: 1.0.10(browserslist@4.21.4) @@ -3903,8 +3903,8 @@ packages: engines: {node: '>=10'} dev: true - /caniuse-lite@1.0.30001503: - resolution: {integrity: sha512-Sf9NiF+wZxPfzv8Z3iS0rXM1Do+iOy2Lxvib38glFX+08TCYYYGR5fRJXk4d77C4AYwhUjgYgMsMudbh2TqCKw==} + /caniuse-lite@1.0.30001504: + resolution: {integrity: sha512-5uo7eoOp2mKbWyfMXnGO9rJWOGU8duvzEiYITW+wivukL7yHH4gX9yuRaobu6El4jPxo6jKZfG+N6fB621GD/Q==} dev: true /caseless@0.12.0: -- cgit v1.2.3-54-g00ecf From deada2f5133b8c23d22535155876ba38bb896cb2 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sun, 18 Jun 2023 01:01:39 +0000 Subject: 6.4.0-nightly.6 [skip ci] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index fa1aef936..08f2e00af 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "productName": "Ferdium", "desktopName": "ferdium.desktop", "appId": "org.ferdium.ferdium-app", - "version": "6.4.0-nightly.5", + "version": "6.4.0-nightly.6", "description": "Messaging app for WhatsApp, Slack, Telegram, HipChat, Hangouts and many many more.", "author": "Ferdium Contributors (https://ferdium.org/)", "license": "Apache-2.0", -- cgit v1.2.3-54-g00ecf From 6220221a426626b25e5fcf0ab34d3dd06759475b Mon Sep 17 00:00:00 2001 From: Vijay A Date: Thu, 22 Jun 2023 07:15:00 +0530 Subject: Upgrade 'electron' to '25.2.0' --- package.json | 2 +- pnpm-lock.yaml | 22 +++++++++++----------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/package.json b/package.json index 08f2e00af..e82eade4b 100644 --- a/package.json +++ b/package.json @@ -148,7 +148,7 @@ "chalk": "5.2.0", "concurrently": "8.2.0", "cross-env": "7.0.3", - "electron": "25.1.1", + "electron": "25.2.0", "electron-builder": "24.4.0", "esbuild": "0.16.17", "esbuild-plugin-copy": "2.1.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 235b5b2a9..8e2e69e12 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -46,10 +46,10 @@ dependencies: version: 5.1.0 '@electron/remote': specifier: 2.0.10 - version: 2.0.10(electron@25.1.1) + version: 2.0.10(electron@25.2.0) '@krisdages/electron-process-manager': specifier: 3.0.0 - version: 3.0.0(@electron/remote@2.0.10)(electron@25.1.1)(rxjs@7.8.1) + version: 3.0.0(@electron/remote@2.0.10)(electron@25.2.0)(rxjs@7.8.1) '@mdi/js': specifier: 7.2.96 version: 7.2.96 @@ -328,8 +328,8 @@ devDependencies: specifier: 7.0.3 version: 7.0.3 electron: - specifier: 25.1.1 - version: 25.1.1 + specifier: 25.2.0 + version: 25.2.0 electron-builder: specifier: 24.4.0 version: 24.4.0 @@ -1243,12 +1243,12 @@ packages: - supports-color dev: true - /@electron/remote@2.0.10(electron@25.1.1): + /@electron/remote@2.0.10(electron@25.2.0): resolution: {integrity: sha512-3SFKKaQXcyWgwmibud+UqJl/XlHOgLcI3fwtB9pNelPSJAcTxocOJrF6FaxBIQaj1+R05Di6xuAswZpXAW7xhA==} peerDependencies: electron: '>= 13.0.0' dependencies: - electron: 25.1.1 + electron: 25.2.0 dev: false /@electron/universal@1.3.4: @@ -1926,15 +1926,15 @@ packages: '@jridgewell/sourcemap-codec': 1.4.15 dev: true - /@krisdages/electron-process-manager@3.0.0(@electron/remote@2.0.10)(electron@25.1.1)(rxjs@7.8.1): + /@krisdages/electron-process-manager@3.0.0(@electron/remote@2.0.10)(electron@25.2.0)(rxjs@7.8.1): resolution: {integrity: sha512-Gs8McOVC6BVdfP4SeF+l5nx85eFooarm37K5mxs1PESI59a7oLwRf5Yd2tsZ6Ye14bCG0eTJGDv3yPuixBg3OQ==} peerDependencies: '@electron/remote': '>= 1.2.0' electron: '>= 10' rxjs: '>= 7' dependencies: - '@electron/remote': 2.0.10(electron@25.1.1) - electron: 25.1.1 + '@electron/remote': 2.0.10(electron@25.2.0) + electron: 25.2.0 electron-process-reporter: /@krisdages/electron-process-reporter@2.0.0-rxjs7-1.4.0(rxjs@7.8.1) rxjs: 7.8.1 dev: false @@ -4968,8 +4968,8 @@ packages: mkdirp: 0.5.6 dev: false - /electron@25.1.1: - resolution: {integrity: sha512-WvFUfVsJn6YiP35UxdibYVjU2LceastyMm4SVp2bmb4XvKEvItAIiwxgm7tPC5Syl1243aRCvQLqr84sZ71pyQ==} + /electron@25.2.0: + resolution: {integrity: sha512-I/rhcW2sV2fyiveVSBr2N7v5ZiCtdGY0UiNCDZgk2fpSC+irQjbeh7JT2b4vWmJ2ogOXBjqesrN9XszTIG6DHg==} engines: {node: '>= 12.20.55'} hasBin: true requiresBuild: true -- cgit v1.2.3-54-g00ecf