From 8e0dfca048c29e3338123904b5930deb206f8b81 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 29 Jul 2022 12:08:11 +0300 Subject: [PATCH 1/3] Use 127.0.0.1 (keycloack redirect mask) --- scripts/webpack.dev.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/webpack.dev.config.js b/scripts/webpack.dev.config.js index 75421dcf..abba0289 100755 --- a/scripts/webpack.dev.config.js +++ b/scripts/webpack.dev.config.js @@ -63,7 +63,7 @@ module.exports = { // serve index.html in place of 404 responses to allow HTML5 history historyApiFallback: true, port: 9000, - host: 'localhost' + host: '127.0.0.1' }, plugins: [ ...common.plugins, From 58e0d5de73daeb32e10fcd8a1687312a09113593 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 29 Jul 2022 12:08:46 +0300 Subject: [PATCH 2/3] Fixed an issue with authorization when using social profiles --- app/modules/account/sagas.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/modules/account/sagas.js b/app/modules/account/sagas.js index b5a8b428..b061c54f 100644 --- a/app/modules/account/sagas.js +++ b/app/modules/account/sagas.js @@ -30,7 +30,7 @@ import { message } from 'antd'; import qs from 'querystringify'; const ACCOUNTS_AUTH_OPENID_ENDPOINT = - 'https://auth.accounts.platformio.org/auth/realms/pioaccount/protocol/openid-connect/auth'; + 'https://auth.accounts.platformio.org/realms/pioaccount/protocol/openid-connect/auth'; const ACCOUNTS_AUTH_CLIENT_ID = 'pio-user-api'; function showAPIErrorMessage(output) { From 4c91e773b9780c3dac6391418007d545b798a61b Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 29 Jul 2022 12:10:38 +0300 Subject: [PATCH 3/3] Bump version to 3.4.3 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c22b59ac..2e8969cf 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "platformio-home", - "version": "3.4.2", + "version": "3.4.3", "description": "PlatformIO Home", "repository": { "type": "git",