From 57f426d1ee8ea654da94de95e1f3c3bd0428a69d Mon Sep 17 00:00:00 2001 From: Marc Henry Schultz <85400359+mhsdesign@users.noreply.github.com> Date: Wed, 30 Aug 2023 13:11:05 +0200 Subject: [PATCH 1/3] BUGFIX: Neos 8.2 plugins dont lower yield in plugins #3470 --- .../neos-ui-extensibility/scripts/helpers/webpack.config.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/neos-ui-extensibility/scripts/helpers/webpack.config.js b/packages/neos-ui-extensibility/scripts/helpers/webpack.config.js index 98d4af9bb6..98a7ba7f85 100644 --- a/packages/neos-ui-extensibility/scripts/helpers/webpack.config.js +++ b/packages/neos-ui-extensibility/scripts/helpers/webpack.config.js @@ -37,8 +37,7 @@ module.exports = function (neosPackageJson) { require.resolve('babel-plugin-transform-es2015-destructuring'), require.resolve('babel-plugin-transform-es2015-block-scoping'), require.resolve('babel-plugin-transform-es2015-typeof-symbol'), - require.resolve('babel-plugin-transform-es2015-modules-commonjs'), - [require.resolve('babel-plugin-transform-regenerator'), {async: false, asyncGenerators: false}] + require.resolve('babel-plugin-transform-es2015-modules-commonjs') ] }; } From b4dfa076f98895ebceee1f5bbbfbb7f62607e543 Mon Sep 17 00:00:00 2001 From: Sebastian Helzle Date: Wed, 8 Nov 2023 15:34:20 +0100 Subject: [PATCH 2/3] BUGFIX: Show full labels in nodetrees if possible MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Previously labels were cut even if there would have been enough space due to the constraint to 264px. Also since 8.3 the trees can be resized and the labels didn’t adjust to the increased width. Now they will use the available width. --- packages/react-ui-components/src/Tree/node.module.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/react-ui-components/src/Tree/node.module.css b/packages/react-ui-components/src/Tree/node.module.css index 1c2299216c..e91cda5b35 100644 --- a/packages/react-ui-components/src/Tree/node.module.css +++ b/packages/react-ui-components/src/Tree/node.module.css @@ -49,7 +49,7 @@ composes: reset from '../reset.module.css'; position: relative; display: inline-block; - min-width: 100%; + width: 100%; padding: .1em 0; border-left: 2px solid transparent; @@ -89,7 +89,7 @@ } .header__labelWrapper { - max-width: 264px; + max-width: 100%; overflow: hidden; text-overflow: ellipsis; display: inline-block; From 38b480866475bcfa5fb863a0ebd6e5f47c1b9b33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Gu=CC=88nther?= Date: Sat, 16 Dec 2023 18:20:59 +0100 Subject: [PATCH 3/3] TASK: Run e2e tests with Windows and Firefox --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 33b3f81881..a5715b46ef 100644 --- a/Makefile +++ b/Makefile @@ -105,7 +105,7 @@ test: ## Executes integration tests on saucelabs. test-e2e-saucelabs: - bash Tests/IntegrationTests/e2e.sh "saucelabs:chrome:Windows 10" + bash Tests/IntegrationTests/e2e.sh "saucelabs:Firefox@latest:Windows 10" ## Executes integration tests locally. test-e2e: