Skip to content

Commit

Permalink
Merge 4.11.0 into 4.12.0 (#493)
Browse files Browse the repository at this point in the history
Signed-off-by: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Antonio <[email protected]>
Co-authored-by: Federico Rodriguez <[email protected]>
Co-authored-by: Chantal Belén kelm <[email protected]>
Co-authored-by: Guido Modarelli <[email protected]>
Co-authored-by: Ian Yenien Serrano <[email protected]>
Co-authored-by: JuanGarriuz <[email protected]>
  • Loading branch information
7 people authored Jan 17, 2025
1 parent 2c23083 commit a277817
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 9 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/build_wazuh_dashboard_with_plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,6 @@ jobs:
validate-job:
runs-on: ubuntu-latest
needs: setup-variables
needs: setup-variables
name: Validate inputs
steps:
- name: Validate inputs
Expand All @@ -185,15 +184,7 @@ jobs:
aws-secret-access-key: ${{ secrets.CI_INTERNAL_DEVELOPMENT_BUCKET_USER_SECRET_KEY }}
aws-region: ${{ secrets.CI_AWS_REGION }}

- name: Set up AWS CLI
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.CI_INTERNAL_DEVELOPMENT_BUCKET_USER_ACCESS_KEY }}
aws-secret-access-key: ${{ secrets.CI_INTERNAL_DEVELOPMENT_BUCKET_USER_SECRET_KEY }}
aws-region: ${{ secrets.CI_AWS_REGION }}

build-base:
needs: [validate-job]
needs: [validate-job]
name: Build dashboard
uses: wazuh/wazuh-dashboard/.github/workflows/[email protected]
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@ All notable changes to the Wazuh app project will be documented in this file.

- Support for Wazuh 4.11.0

## Wazuh dashboard v4.10.1 - OpenSearch Dashboards 2.16.0 - Revision 01

### Added

- Support for Wazuh 4.10.1

### Fixed

- Fix red mask style for chromium browsers [#481](https://github.com/wazuh/wazuh-dashboard/pull/481)

## Wazuh dashboard v4.10.0 - OpenSearch Dashboards 2.16.0 - Revision 08

### Changed
Expand Down
29 changes: 29 additions & 0 deletions src/core/public/styles/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,32 @@ $euiCollapsibleNavWidth: $euiSize * 20;
height: auto;
width: auto;
}

// THIS WAS FIXED IN OPENSEARCH DASHBOARDS 2.17.1. THIS IS A TEMPORARY FIX FOR OSD 2.16.0
// Temporary fix for a bug with Chrome 129 when handling mask-image
// OUI provides the mask-image used in these which Chrome 129 fails to render correctly.
// It is not known if or when Chrome will fix this. Since almost all of these classes
// are applied to elements with scrollbars where their content contained, containing the
// paint is a safe solution.
// This can be achieved with various tricks like transform: translate?(0) or
// transform-style: preserve-3d but they add to the browsers workload; contain doesn't.
// ToDo: Remove these when most used versions of Chrome no longer suffer from the bug.
// From OUI: any ruleset containing mask-image
.eui-yScrollWithShadows,
.eui-xScrollWithShadows,
.euiYScrollWithShadows,
.euiDataGrid__controlScroll,
.euiDataGridColumnSelector__columnList,
.euiDataGridColumnSorting__fieldList,
.euiFlyoutBody .euiFlyoutBody__overflow,
.euiFlyoutBody .euiFlyoutBody__overflow.euiFlyoutBody__overflow--hasBanner,
.euiModalBody .euiModalBody__overflow,
.euiSelectableList__list,
// For OSD: consumers of eui?ScrollWithShadows
.osdQueryBar__textarea:not(:focus):not(:invalid),
.osdSavedQueryManagement__list,
.dscCanvas,
.vbConfig,
.vbSidenav__style {
mask-image: unset;
}

0 comments on commit a277817

Please sign in to comment.