Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge 4.10.2 into 4.11.0 #492

Merged
merged 27 commits into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
e5d4315
Fix error RPM package checking files (#326)
Desvelao Sep 24, 2024
a5e0199
Merge 4.9.1 into 4.10.0 (#350)
Tostti Oct 10, 2024
01c2ad1
Bump 4.10.0 revision 02 (#352)
asteriscos Oct 10, 2024
c9d51a8
Bump revision to 04 (#356) (#364)
Tostti Oct 17, 2024
316703f
Bump 4.10.0 rev 03 (#369)
Desvelao Oct 18, 2024
77002e4
Reduced the loading logo size (#373)
Desvelao Oct 24, 2024
1c3e1e2
Change order of menu sections (#372)
chantal-kelm Oct 25, 2024
9a50aa3
Avoid duplicate package creation (#385)
Tostti Oct 29, 2024
e6e36cf
Merge 4.9.2 into 4.10.0 (#395)
Tostti Nov 5, 2024
c456b95
Bump revision to 4.10.0-04 (#404)
asteriscos Nov 8, 2024
d525141
Remove validation for duplicate packages (#406)
Tostti Nov 11, 2024
eaa6b78
Update the actions' version (#394)
guidomodarelli Nov 13, 2024
6d205d3
Reorder sections (#413)
chantal-kelm Nov 14, 2024
21d94de
Notification plugin registered in the Explore category (#422)
yenienserrano Nov 20, 2024
566acd8
Fix help menu links (#424)
yenienserrano Nov 20, 2024
78d7a35
Bump 4.10.0 rev 05 (#426)
Desvelao Nov 22, 2024
bb92de8
Fix actions artifact plugins name (#428)
asteriscos Nov 25, 2024
77fe7b2
Unzip command not found in package generation action (#431)
Tostti Nov 28, 2024
7e5b99c
Bump 4.10.0 rev 06 (#436)
Desvelao Dec 3, 2024
5d949a8
Fix packages generation (#445)
Tostti Dec 13, 2024
24a0521
Bump 4.10.0 rev 07 (#452)
asteriscos Dec 18, 2024
65217fb
Support Wazuh 4.10.1 rev 00 (#464)
Tostti Dec 20, 2024
aa2f907
Merge 4.10.0 into 4.10.1 (#478)
Desvelao Jan 10, 2025
7204360
Fix red mask style for chromium browsers (#481)
asteriscos Jan 14, 2025
6035f3e
Bump revision to 4.10.1 01 (#487)
asteriscos Jan 15, 2025
9684f3c
Merge branch '4.11.0' into merge-4.10.2-into-4.11.0
Tostti Jan 17, 2025
9e4b088
Fix typo in changelog
Tostti Jan 17, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,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 00
## 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;
}
Loading