Skip to content

Commit

Permalink
merge: merge 4.10.1 into 4.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Desvelao committed Jan 10, 2025
2 parents ff5d417 + 855cf6b commit ef48555
Show file tree
Hide file tree
Showing 5 changed files with 375 additions and 140 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,13 @@ All notable changes to the Wazuh app project will be documented in this file.
- Refined the layout of the agent details view [#7193](https://github.com/wazuh/wazuh-dashboard-plugins/issues/7193)
- Changed the width of the command column, relocate argvs column and change the width of the rest of the columns in the table processes. [#7195](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7195)

## Wazuh v4.10.0 - OpenSearch Dashboards 2.16.0 - Revision 06
## Wazuh v4.10.1 - OpenSearch Dashboards 2.16.0 - Revision 00

### Added

- Support for Wazuh 4.10.1

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

### Added

Expand Down Expand Up @@ -57,12 +63,13 @@ All notable changes to the Wazuh app project will be documented in this file.
- Fixed the Mitre ATT&CK exception in the agent view, the redirections of ID, Tactics, Dashboard Icon and Event Icon in the drop-down menu and the card not displaying information when the flyout was opened [#7116](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7116)
- Fixed the filter are displayed cropped on screens of 575px to 767px in vulnerability detection module [#7047](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7047)
- Fixed ability to filter from files inventory details flyout of File Integrity Monitoring [#7119](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7119) [#7163](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7163)
- Fixed endpoint group module name and indexer management order [#7150](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7150)
- Fixed endpoint group module name and indexer management order [#7161](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7161)
- Fixed Invalid date filter applied on FIM details flyout [#7160](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7160)
- Fixed the check updates UI was displayed despite it could be configured as disabled [#7156](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7156)
- Fixed filter by value in document details in safari [#7151](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7151)
- Fixed error message to prevent pass no strings to the wazuh logger [#7167](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7167)
- Fixed the rendering of the `data.vunerability.reference` in the table and flyout [#7177](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7177)
- Fixed incorrect or empty Wazuh API version displayed after upgrade [#440](https://github.com/wazuh/wazuh-dashboard/issues/440)

### Removed

Expand Down
3 changes: 2 additions & 1 deletion plugins/wazuh-check-updates/server/plugin-services.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import {
CoreStart,
ISavedObjectsRepository,
Logger,
} from 'opensearch-dashboards/server';
import { createGetterSetter } from '../../../src/plugins/opensearch_dashboards_utils/common';
import { WazuhCorePluginStart } from '../../wazuh-core/server';
Expand All @@ -11,4 +12,4 @@ export const [getCore, setCore] = createGetterSetter<CoreStart>('Core');
export const [getWazuhCore, setWazuhCore] =
createGetterSetter<WazuhCorePluginStart>('WazuhCore');
export const [getWazuhCheckUpdatesServices, setWazuhCheckUpdatesServices] =
createGetterSetter<any>('WazuhCheckUpdatesServices');
createGetterSetter<{ logger: Logger }>('WazuhCheckUpdatesServices');
Loading

0 comments on commit ef48555

Please sign in to comment.