-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '4.4-7.10' into feat/centralize-plugin-settings
- Loading branch information
Showing
129 changed files
with
2,766 additions
and
1,226 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
{ | ||
"root": true, | ||
"env": { | ||
"browser": true, | ||
"node": true, | ||
"jest": true | ||
}, | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:react/recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"prettier" | ||
], | ||
"overrides": [], | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"ecmaFeatures": { | ||
"jsx": true | ||
}, | ||
"ecmaVersion": "latest", | ||
"sourceType": "module" | ||
}, | ||
"plugins": [ | ||
"react", | ||
"react-hooks", | ||
"@typescript-eslint", | ||
"prettier", | ||
"filenames-simple" | ||
], | ||
"settings": { | ||
"import/resolver": { | ||
"typescript": {} | ||
}, | ||
"react": { | ||
"version": "16.12.0" | ||
} | ||
}, | ||
"ignorePatterns": [ | ||
"node_modules/", | ||
"public/utils/codemirror/", | ||
"public/kibana-integrations/", | ||
"public/utils/jquery-ui.js" | ||
], | ||
"rules": { | ||
"filenames-simple/naming-convention": "error", | ||
"indent": ["error", 2, { "SwitchCase": 1 }], | ||
"quotes": ["error", "single"], | ||
"semi": ["error", "always"], | ||
"react/react-in-jsx-scope": "off", | ||
"camelcase": "error", | ||
"spaced-comment": "error", | ||
"no-duplicate-imports": "error", | ||
"no-await-in-loop": "error", | ||
"block-scoped-var": "error", | ||
"curly": "error", | ||
"default-case": "error", | ||
"default-param-last": "error", | ||
"eqeqeq": "error", | ||
"no-var": "error", | ||
"require-await": "error", | ||
"array-bracket-newline": ["error", "consistent"], | ||
"array-bracket-spacing": [ | ||
"error", | ||
"always", | ||
{ | ||
"singleValue": false | ||
} | ||
], | ||
"array-element-newline": ["error", "always"], | ||
"arrow-parens": ["error", "as-needed"], | ||
"arrow-spacing": "error", | ||
"block-spacing": "error", | ||
"comma-spacing": [ | ||
"error", | ||
{ | ||
"before": false, | ||
"after": true | ||
} | ||
], | ||
"func-call-spacing": ["error", "never"], | ||
"function-call-argument-newline": ["error", "consistent"], | ||
"max-len": [ | ||
"error", | ||
{ | ||
"code": 100 | ||
} | ||
], | ||
"no-trailing-spaces": "error", | ||
"semi-spacing": "error" | ||
} | ||
} |
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# This should match the owning team set up in https://github.com/orgs/wazuh/teams | ||
* @wazuh/frontend |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
name: New release | ||
about: "[wazuh-team] Track the effort of the team to release a new version of Wazuh" | ||
title: Support for Wazuh 4.x.x | ||
labels: enhancement | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Description | ||
|
||
Example: | ||
> Wazuh 4.3.8 will be released shortly. Our Wazuh-dashboard and Kibana needs to support this new version. From our side, no changes will be included, so we only need to bump the version. | ||
|
||
## Tasks | ||
|
||
### Pre-release | ||
- [ ] Add support for Wazuh 4.x.x (bump). | ||
- [ ] Generate the required tags. | ||
- [ ] Generate packages. | ||
- [ ] Test the packages, to verify they install, and the app works as expected. | ||
- [ ] [Optional] Run Regression Testing (#issue) | ||
- [ ] Generate draft releases. | ||
- [ ] Notify the @wazuh/cicd and @wazuh/content teams that the release is good to go, from our side. | ||
|
||
### Post-release | ||
- [ ] Make draft releases final and public. | ||
- [ ] Sync branches. | ||
|
||
### Supported versions | ||
|
||
Same as on [previous releases](https://github.com/wazuh/wazuh-kibana-app/wiki/Compatibility) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
### Description | ||
[Describe what this change achieves] | ||
|
||
### Issues Resolved | ||
[List any issues this PR will resolve] | ||
|
||
### Evidence | ||
[Provide screenshots or videos to prove this PR solves the issues] | ||
|
||
### Test | ||
[Provide instructions to test this PR] | ||
|
||
### Check List | ||
- [ ] All tests pass | ||
- [ ] `yarn test:jest` | ||
- [ ] New functionality includes testing. | ||
- [ ] New functionality has been documented. | ||
- [ ] Update [CHANGELOG.md](./../CHANGELOG.md) | ||
- [ ] Commits are signed per the DCO using --signoff |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# This workflow builds a production-ready package from the given Git reference. | ||
# Any branch, tag or commit SHA existing in the origin can be used. | ||
# | ||
# This workflow is based on the `dev-environment` workflow. | ||
|
||
name: Build | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
reference: | ||
required: true | ||
type: string | ||
default: master | ||
description: Source code reference (branch, tag or commit SHA) | ||
|
||
jobs: | ||
# Build an app package from the given source code reference. | ||
build: | ||
name: Build app package | ||
uses: ./.github/workflows/dev-environment.yml | ||
with: | ||
reference: ${{ github.event.inputs.reference }} | ||
command: 'yarn build' | ||
archive_name: 'wazuh-package' | ||
archive_path: './wazuh/build' | ||
secrets: inherit |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.