Skip to content

Commit c0d0450

Browse files
committed
Merge 4.1-7.10 into master
1 parent 8ba0e33 commit c0d0450

File tree

980 files changed

+28385
-13878
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

980 files changed

+28385
-13878
lines changed

.editorconfig

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.{md,asciidoc}]
13+
trim_trailing_whitespace = false
14+
insert_final_newline = false

.eslintrc.js

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
const LICENSE_HEADER = `
2+
/*
3+
* Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License").
6+
* You may not use this file except in compliance with the License.
7+
* A copy of the License is located at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* or in the "license" file accompanying this file. This file is distributed
12+
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
13+
* express or implied. See the License for the specific language governing
14+
* permissions and limitations under the License.
15+
*/
16+
`
17+
18+
module.exports = {
19+
root: true,
20+
extends: ['@elastic/eslint-config-kibana', 'plugin:@elastic/eui/recommended'],
21+
rules: {
22+
// "@kbn/eslint/require-license-header": "off"
23+
},
24+
overrides: [
25+
{
26+
files: ['**/*.{js,ts,tsx}'],
27+
rules: {
28+
'@kbn/eslint/require-license-header': [
29+
'error',
30+
{
31+
license: LICENSE_HEADER,
32+
},
33+
],
34+
"no-console": 0
35+
}
36+
}
37+
],
38+
};

.eslintrc.json

-37
This file was deleted.

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ typings/
6262

6363
package-lock.json
6464

65+
target/
6566
build/
6667

67-
yarn.lock
68+
yarn.lock

.kibana-plugin-helpers.bak.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"buildSourcePatterns": [
3+
"package.json",
4+
"LICENSE",
5+
"tsconfig.json",
6+
"index.js",
7+
"init.js",
8+
"server/**/*",
9+
"public/**/*",
10+
"common/**/*"
11+
]
12+
}

.kibana-plugin-helpers.json

+8-10
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
{
2-
"buildSourcePatterns": [
3-
"package.json",
4-
"LICENSE",
5-
"tsconfig.json",
6-
"index.js",
7-
"init.js",
8-
"server/**/*",
9-
"public/**/*",
10-
"util/**/*"
11-
]
2+
"serverSourcePatterns": [
3+
"package.json",
4+
"yarn.lock",
5+
"kibana.json",
6+
"LICENSE",
7+
"{common,server,target}/**/*",
8+
"!*test*"
9+
]
1210
}

CHANGELOG.md

+60-4
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,60 @@
22

33
All notable changes to the Wazuh app project will be documented in this file.
44

5-
## Wazuh v4.0.4 - Kibana v7.9.1, v7.9.3 - Revision 4016
5+
6+
## Wazuh v4.0.4 - Kibana 7.10.0 , 7.10.2 - Revision 4017
7+
8+
### Added
9+
- Adapt the app to the new Kibana platform [#2475](https://github.com/wazuh/wazuh-kibana-app/issues/2475)
10+
- Wazuh data directory moved from `optimize` to `data` Kibana directory [#2591](https://github.com/wazuh/wazuh-kibana-app/issues/2591)
11+
- Show the wui_rules belong to wazuh-wui API user [#2702](https://github.com/wazuh/wazuh-kibana-app/issues/2702)
12+
13+
### Fixed
14+
15+
- Fixed Wazuh menu and agent menu for Solaris agents [#2773](https://github.com/wazuh/wazuh-kibana-app/issues/2773) [#2725](https://github.com/wazuh/wazuh-kibana-app/issues/2725)
16+
- Fixed wrong shards and replicas for statistics indices and also fixed wrong prefix for monitoring indices [#2732](https://github.com/wazuh/wazuh-kibana-app/issues/2732)
17+
- Report's creation dates set to 1970-01-01T00:00:00.000Z [#2772](https://github.com/wazuh/wazuh-kibana-app/issues/2772)
18+
- Fixed bug for missing commands in ubuntu/debian and centos [#2786](https://github.com/wazuh/wazuh-kibana-app/issues/2786)
19+
- Fixed bug that show an hour before in /security-events/dashboard [#2785](https://github.com/wazuh/wazuh-kibana-app/issues/2785)
20+
- Fixed permissions to access agents [#2838](https://github.com/wazuh/wazuh-kibana-app/issues/2838)
21+
- Fix searching in groups [#2825](https://github.com/wazuh/wazuh-kibana-app/issues/2825)
22+
- Fix the pagination in SCA ckecks table [#2815](https://github.com/wazuh/wazuh-kibana-app/issues/2815)
23+
- Fix the SCA table with a wrong behaviour using the refresh button [#2854](https://github.com/wazuh/wazuh-kibana-app/issues/2854)
24+
- Fix sca permissions for agents views and dashboards [#2862](https://github.com/wazuh/wazuh-kibana-app/issues/2862)
25+
- Solaris should not show vulnerabilities module [#2829](https://github.com/wazuh/wazuh-kibana-app/issues/2829)
26+
- Fix the settings of statistics indices creation [#2858](https://github.com/wazuh/wazuh-kibana-app/issues/2858)
27+
- Update agents' info in Management Status after changing cluster node selected [#2828](https://github.com/wazuh/wazuh-kibana-app/issues/2828)
28+
- Fix error when applying filter in rules from events [#2877](https://github.com/wazuh/wazuh-kibana-app/issues/2877)
29+
- Fix server error Invalid token specified: Cannot read property 'replace' of undefined [#2899](https://github.com/wazuh/wazuh-kibana-app/issues/2899)
30+
31+
### Changed
32+
33+
- Replaced `wazuh` Wazuh API user by `wazuh-wui` in the default configuration [#2852](https://github.com/wazuh/wazuh-kibana-app/issues/2852)
34+
- Add agent id to the reports name in Agent Inventory and Modules [#2817](https://github.com/wazuh/wazuh-kibana-app/issues/2817)
35+
36+
### Adapt for Kibana 7.10.0
37+
38+
- Fixed filter pinned crash returning from agents [#2864](https://github.com/wazuh/wazuh-kibana-app/issues/2864)
39+
- Fixed style in sca and regulatory compliance tables and in wz menu [#2861](https://github.com/wazuh/wazuh-kibana-app/issues/2861)
40+
- Fix body-payload of Sample Alerts POST endpoint [#2857](https://github.com/wazuh/wazuh-kibana-app/issues/2857)
41+
- Fixed bug in the table on Agents->Table-> Actions->Config icon [#2853](https://github.com/wazuh/wazuh-kibana-app/issues/2853)
42+
- Fixed tooltip in the icon of view decoder file [#2850](https://github.com/wazuh/wazuh-kibana-app/issues/2850)
43+
- Fixed bug with agent filter when it is pinned [#2846](https://github.com/wazuh/wazuh-kibana-app/issues/2846)
44+
- Fix discovery navigation [#2845](https://github.com/wazuh/wazuh-kibana-app/issues/2845)
45+
- Search file editor gone [#2843](https://github.com/wazuh/wazuh-kibana-app/issues/2843)
46+
- Fix Agent Search Bar - Regex Query Interpreter [#2834](https://github.com/wazuh/wazuh-kibana-app/issues/2834)
47+
- Fixed accordion style breaking [#2833](https://github.com/wazuh/wazuh-kibana-app/issues/2833)
48+
- Fix metrics are not updated after a bad request in search input [#2830](https://github.com/wazuh/wazuh-kibana-app/issues/2830)
49+
- Fix mitre framework tab crash [#2821](https://github.com/wazuh/wazuh-kibana-app/issues/2821)
50+
- Changed ping request to default request. Added delay and while to che… [#2820](https://github.com/wazuh/wazuh-kibana-app/issues/2820)
51+
- Removed kibana alert for security [#2806](https://github.com/wazuh/wazuh-kibana-app/issues/2806)
52+
53+
## Wazuh v4.0.4 - Kibana 7.10.0 , 7.10.2 - Revision 4016
654

755
### Added
856

9-
- Show the wui_ rules belong to wazuh-wui API user [#2702](https://github.com/wazuh/wazuh-kibana-app/issues/2702)
10-
- Modified agent registration adding groups and architecture [#2666](https://github.com/wazuh/wazuh-kibana-app/issues/2666)[#2652](https://github.com/wazuh/wazuh-kibana-app/issues/2652)
57+
- Modified agent registration adding groups and architecture [#2666](https://github.com/wazuh/wazuh-kibana-app/issues/2666) [#2652](https://github.com/wazuh/wazuh-kibana-app/issues/2652)
58+
- Each user can only view their own reports [#2686](https://github.com/wazuh/wazuh-kibana-app/issues/2686)
1159

1260
### Fixed
1361

@@ -22,6 +70,14 @@ All notable changes to the Wazuh app project will be documented in this file.
2270
- Fixed message in reserved users actions [#2702](https://github.com/wazuh/wazuh-kibana-app/issues/2702)
2371
- Error 500 on Export formatted CDB list [#2692](https://github.com/wazuh/wazuh-kibana-app/pull/2692)
2472
- Wui rules label should have only one tooltip [#2723](https://github.com/wazuh/wazuh-kibana-app/issues/2723)
73+
- Move upper the Wazuh item in the Kibana menu and default index pattern [#2867](https://github.com/wazuh/wazuh-kibana-app/pull/2867)
74+
75+
76+
## Wazuh v4.0.4 - Kibana v7.9.1, v7.9.3 - Revision 4015
77+
78+
### Added
79+
80+
- Support for Wazuh v4.0.4
2581

2682
## Wazuh v4.0.4 - Kibana v7.9.1, v7.9.3 - Revision 4015
2783

@@ -1794,4 +1850,4 @@ All notable changes to the Wazuh app project will be documented in this file.
17941850
### Fixed
17951851

17961852
- Search bar across panels now support parenthesis grouping
1797-
- Several CSS fixes for IE browser
1853+
- Several CSS fixes for IE browser

0 commit comments

Comments
 (0)