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

Replace search bar on Management > Groups #5445

Merged
merged 116 commits into from
Aug 11, 2023

Commits on Feb 16, 2023

  1. feat: add a search bar component

    Features:
    - Supports multiple query languages
    - Decouple the business logic of query languages of the search bar
      component
    - Ability of query language to interact with the search bar
    
    Query language implementations
    - AQL: custom implementation of the Wazuh Query Language. Include
      suggestions.
    - UIQL: simple implementation (as another example)
    Desvelao committed Feb 16, 2023
    Configuration menu
    Copy the full SHA
    e9f5923 View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2023

  1. feat(search-bar): change the AQL implemenation to use the regular exp…

    …ression used in the Wazuh manager API
    
    - Change the implementation of AQL query language to use the regular
      expression decomposition defined in the Wazuh manager API
    - Adapt the tests for the tokenizer and getting the suggestions
    - Enchance documentation of search bar
    - Add documentation of AQL query language
    - Add more fields and values for the use example in Agents section
    - Add description to the query language select input
    Desvelao committed Mar 1, 2023
    Configuration menu
    Copy the full SHA
    eff5d2b View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2023

  1. fix(search-bar): fixes a problem hidding the suggestion popover when …

    …using the Search suggestion in AQL
    
    - Fixes a problem hidding the suggestion popover when using the Search
      suggestion in AQL
    - Fixes a problem of input text with undefined value
    - Minor fixes
      - Remove `syntax` property of SearchBar component
      - Add disableFocusTrap property to the custom EuiSuggestInput component to be
        forwarded to the EuiInputPopover
      - Replace the inputRef by a reference instead of a state and pass as
        a parameter in the query language run function
      - Move the rebuiding of input text when using some suggestion that changes
        the input to be done when a related suggestion was clicked instead
        of any suggestion (exclude Search).
    Desvelao committed Mar 2, 2023
    Configuration menu
    Copy the full SHA
    0923569 View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2023

  1. feat(search-bar): add the ability to update the input of example

    implemenation
    
    - Add the ability to update the input of the search bar in the example
      implementation
    - Enhance the component documentation
    Desvelao committed Mar 3, 2023
    Configuration menu
    Copy the full SHA
    83c05cf View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2023

  1. feat(search-bar): add initial suggestions to AQL

    - (AQL) Add the fields and an open operator group when there is no input text
    Desvelao committed Mar 6, 2023
    Configuration menu
    Copy the full SHA
    0b0b451 View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2023

  1. feat(search-bar): add target and rel attributes to the documentation

    link of query language displayed in the popover
    Desvelao committed Mar 7, 2023
    Configuration menu
    Copy the full SHA
    ab8a555 View commit details
    Browse the repository at this point in the history
  2. feat(search-bar): enhancements in AQL and search bar documentation

    - AQL enhancements:
      - documentation:
        - Enhance some descriptions
        - Enhance input processing
        - Remove intermetiate interface of EuiSuggestItem
      - Remove the intermediate interface of EuiSuggestItem. Now it is
        managed in the internal of query language instead of be built by the
        suggestion handler
      - Display suggestions when the input text is empty
      - Add the unifiedQuery field to the query language output
      - Adapt tests
    
    - Search Bar component:
      - Enhance documentation
    Desvelao committed Mar 7, 2023
    Configuration menu
    Copy the full SHA
    8d9f746 View commit details
    Browse the repository at this point in the history
  3. feat(search-bar): Add HAQL

    - Remove UIQL
    - Add HAQL query language that is a high-level implementation of AQL
      - Add the query language interface
      - Add tests for tokenizer, get suggestions and
        transformSpecificQLToUnifiedQL method
      - Add documentation about the language
        - Syntax
        - Options
        - Workflow
    Desvelao committed Mar 7, 2023
    Configuration menu
    Copy the full SHA
    9c01c8e View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2023

  1. feat(search-bar): add test to HAQL and AQL query languages

    - Add tests to HAQL and AQL query languages
    - Fix suggestions for HAQL when typing as first element a value entity.
      Now there are no suggestions because the field and operator_compare
      are missing.
    - Enhance documentation of HAQL and AQL
    - Removed unnecesary returns of suggestion handler in the example
      implementation of search bar on Agents section
    Desvelao committed Mar 14, 2023
    Configuration menu
    Copy the full SHA
    b6f0d6d View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2023

  1. feat(search-bar): Rename HAQL query language to WQL

    - Rename query language HAQL to WQL
    - Update tests
    - Remove AQL usage from the implementation in the agents section
    Desvelao committed Mar 15, 2023
    Configuration menu
    Copy the full SHA
    22676d4 View commit details
    Browse the repository at this point in the history
  2. feat(search-bar): Add more use cases to the tests of WQL query language

    - Add more use cases to the test of WQL query language
    - Replace some literals by constants in the WQL query language
      implementation
    Desvelao committed Mar 15, 2023
    Configuration menu
    Copy the full SHA
    459a932 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    315932a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4303a1a View commit details
    Browse the repository at this point in the history
  5. feat(search-bar): wrap the user input with group operators when there…

    … is an implicit query
    Desvelao committed Mar 15, 2023
    Configuration menu
    Copy the full SHA
    5e1485c View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2023

  1. feat(search-bar): add implicit query mode to WQL

    - WQL
      - add implicit query mode to WQL
      - enhance query language documentation
      - renamed transformUnifiedQuery to transformUQLToQL
      - now wraps the user input if this is defined and there a implicit
        query string
      - fix a problem with the value suggestions if there is a previous
        conjunction
        - add tests cases
      - update tests
    - AQL
      - enhance query language documentation
      - renamed transformUnifiedQuery to transformUQLToQL
      - add warning about the query language implementation is not updated
        to the last changes in the search bar component
      - update tests
    
    - Search Bar
      - renamed transformUnifiedQuery to transformUQLToQL
    Desvelao committed Mar 16, 2023
    Configuration menu
    Copy the full SHA
    9983153 View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2023

  1. Configuration menu
    Copy the full SHA
    1eaf944 View commit details
    Browse the repository at this point in the history
  2. feat(search-bar): unify suggestion descriptions in WQL

    - Set a width for the syntax options popover
    - Unify the description in the suggestions of WQL example implementation
    - Update tests
    - Fix minor bugs in the WQL example implementation in Agents
    Desvelao committed Mar 23, 2023
    Configuration menu
    Copy the full SHA
    d9abea0 View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2023

  1. feat(search-bar): add enhancements to WQL

    - WQL
      - Enhance documentation
      - Add partial and "expanded" input validation
      - Add tests
    Desvelao committed Apr 10, 2023
    Configuration menu
    Copy the full SHA
    c221f97 View commit details
    Browse the repository at this point in the history
  2. Merge branch '4.5' of https://github.com/wazuh/wazuh-kibana-app into …

    …feat/4312-poc-search-bar-component-multiple-query-language-api-query-language-implementation
    Desvelao committed Apr 10, 2023
    Configuration menu
    Copy the full SHA
    8123d6e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cdbbb6d View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2023

  1. fix(tests): update snapshot

    Desvelao committed Apr 11, 2023
    Configuration menu
    Copy the full SHA
    c300fa3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ef85c54 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    17053c0 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2023

  1. fix(search-bar): fix an error using the value suggestions in WQL

    Fix an error when the last token in the input was a value and used
    a value suggestion whose label contains whitespaces, the value was
    not wrapped with quotes.
    Desvelao committed Apr 12, 2023
    Configuration menu
    Copy the full SHA
    cfbf19b View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2023

  1. Merge branch '4.5' into feat/4312-poc-search-bar-component-multiple-q…

    …uery-language-api-query-language-implementation
    Desvelao authored Apr 20, 2023
    Configuration menu
    Copy the full SHA
    b4359ce View commit details
    Browse the repository at this point in the history
  2. Merge branch '4.5' into feat/4312-poc-search-bar-component-multiple-q…

    …uery-language-api-query-language-implementation
    Desvelao authored Apr 20, 2023
    Configuration menu
    Copy the full SHA
    8438cd8 View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2023

  1. Configuration menu
    Copy the full SHA
    57d11d6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ce4bc92 View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2023

  1. feat(search-bar): allow the API query output can be redone when the s…

    …earch term fields changed
    
    - Search bar:
      - Add a dependency to run the query language output
      - Adapt search bar documentation to the changes
    - WQL
      - Create a new parameter called `options`
      - Moved the `implicitFilter` and `searchTerm` settings to `options`
      - Update tests
      - Update documentation
    Desvelao committed Apr 27, 2023
    Configuration menu
    Copy the full SHA
    b547d98 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a3c3681 View commit details
    Browse the repository at this point in the history

Commits on May 12, 2023

  1. feat(search-bar): enhance search bar and WQL

    Search bar:
      - Add the possibility to render buttons to the right of the input
      - Minor changes
    WQL:
      - Add options.filterButtons to render filter buttons and component
        rendering
      - Extract the quoted value for the quoted token values
      - Add the `validate` parameter to validate the tokens (only available for
        `value` token)
      - Enhance language description
      - Add test related to value token validation
      - Update language documentation with this changes
    Desvelao committed May 12, 2023
    Configuration menu
    Copy the full SHA
    1b390be View commit details
    Browse the repository at this point in the history

Commits on May 15, 2023

  1. feat(search-bar): replace search bar in TableWzAPI

    Replace search bar in TableWzAPI
    Replace each usage of TableWzAPI
    Adapt external filters
    Desvelao committed May 15, 2023
    Configuration menu
    Copy the full SHA
    1e42463 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    78b23e7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2b7ddb9 View commit details
    Browse the repository at this point in the history
  4. feat(search-bar): replace search bar and table component on Managemen…

    …t/Groups
    
    Replace serach bar and table componnet on Management/Groups,
    Management/Groups/Group/Agents and Management/Groups/Group/Files
    Desvelao committed May 15, 2023
    Configuration menu
    Copy the full SHA
    8f4b083 View commit details
    Browse the repository at this point in the history
  5. fix(test): update snapshot

    Desvelao committed May 15, 2023
    Configuration menu
    Copy the full SHA
    b5b0c05 View commit details
    Browse the repository at this point in the history
  6. Merge branch 'feat/4312-search-bar-replace-tablewzapi' of https://git…

    …hub.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-management-groups
    Desvelao committed May 15, 2023
    Configuration menu
    Copy the full SHA
    0c8e9a8 View commit details
    Browse the repository at this point in the history

Commits on May 17, 2023

  1. feat(table-wz-api): add field selection to the TableWzAPI component

    Add field selection to the TableWzAPI
    Possibility to save the selected fields on storage (localStorage,
    sessionStorage)
    Create useStateStorage that allows save the state in localStorage or
    sessionStorage
    Desvelao committed May 17, 2023
    Configuration menu
    Copy the full SHA
    47255d6 View commit details
    Browse the repository at this point in the history
  2. feat(search-bar): enhace search bar and WQL

    Search bar:
    - rename method from `transformUQLtoQL` to `transformInput`
    - add a options paramenter to `transformInput` to manage when there is
      an implicit filter, that this methods can remove the filter from the
      query
    - update documentation
    WQL:
    - rename method from `transformUQLtoQL` to `transformInput`
    - add a options paramenter to `transformInput` to manage when there is
      an implicit filter, that this methods can remove the filter from the
      query
    - add tests
    Desvelao committed May 17, 2023
    Configuration menu
    Copy the full SHA
    06893ad View commit details
    Browse the repository at this point in the history
  3. Merge branch 'feat/4312-poc-search-bar-component-multiple-query-langu…

    …age-api-query-language-implementation' of https://github.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-tablewzapi
    Desvelao committed May 17, 2023
    Configuration menu
    Copy the full SHA
    4f163dc View commit details
    Browse the repository at this point in the history
  4. feat(table-wz-api): Adapt TableWzAPI usage to the recent changes when

    using the search bar
    
    Enhance Management/Decoders table
    Desvelao committed May 17, 2023
    Configuration menu
    Copy the full SHA
    3d7e0d1 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7a7cb43 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1a198e8 View commit details
    Browse the repository at this point in the history
  7. fix: fixed prop type

    Desvelao committed May 17, 2023
    Configuration menu
    Copy the full SHA
    1a67951 View commit details
    Browse the repository at this point in the history
  8. Merge branch 'feat/4312-search-bar-replace-tablewzapi' of https://git…

    …hub.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-management-groups
    Desvelao committed May 17, 2023
    Configuration menu
    Copy the full SHA
    31b2d21 View commit details
    Browse the repository at this point in the history

Commits on May 18, 2023

  1. fix: adapt search bar parameters on Management/Groups tables

    Adapt search bar parameters on Management/Groups tables
    Enhance group agents table:
      - Removed os.name and os.version columns
      - Add new Operating system column
      - Enhance the rendering of:
        - IP address
        - Operating system
        - Status
    Desvelao committed May 18, 2023
    Configuration menu
    Copy the full SHA
    feae66c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6257a7f View commit details
    Browse the repository at this point in the history

Commits on May 19, 2023

  1. Configuration menu
    Copy the full SHA
    f64749c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d774a48 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'feat/4312-poc-search-bar-component-multiple-query-langu…

    …age-api-query-language-implementation' of https://github.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-tablewzapi
    Desvelao committed May 19, 2023
    Configuration menu
    Copy the full SHA
    b18c570 View commit details
    Browse the repository at this point in the history
  4. Merge branch 'feat/4312-search-bar-replace-tablewzapi' of https://git…

    …hub.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-management-groups
    Desvelao committed May 19, 2023
    Configuration menu
    Copy the full SHA
    76b4bf2 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2023

  1. Merge branch '4.5' of https://github.com/wazuh/wazuh-kibana-app into …

    …feat/4312-poc-search-bar-component-multiple-query-language-api-query-language-implementation
    Desvelao committed May 22, 2023
    Configuration menu
    Copy the full SHA
    4a7e282 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'feat/4312-poc-search-bar-component-multiple-query-langu…

    …age-api-query-language-implementation' of https://github.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-tablewzapi
    Desvelao committed May 22, 2023
    Configuration menu
    Copy the full SHA
    0c854b4 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'feat/4312-search-bar-replace-tablewzapi' of https://git…

    …hub.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-management-groups
    Desvelao committed May 22, 2023
    Configuration menu
    Copy the full SHA
    a0cad35 View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2023

  1. Merge branch '4.6.0' of https://github.com/wazuh/wazuh-kibana-app int…

    …o feat/4312-poc-search-bar-component-multiple-query-language-api-query-language-implementation
    Desvelao committed Jun 26, 2023
    Configuration menu
    Copy the full SHA
    144f9a6 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'feat/4312-poc-search-bar-component-multiple-query-langu…

    …age-api-query-language-implementation' of https://github.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-tablewzapi
    Desvelao committed Jun 26, 2023
    Configuration menu
    Copy the full SHA
    c800050 View commit details
    Browse the repository at this point in the history
  3. Merge branch '4.6.0' of https://github.com/wazuh/wazuh-kibana-app int…

    …o feat/4312-poc-search-bar-component-multiple-query-language-api-query-language-implementation
    Desvelao committed Jun 26, 2023
    Configuration menu
    Copy the full SHA
    ae5bade View commit details
    Browse the repository at this point in the history
  4. Merge branch 'feat/4312-poc-search-bar-component-multiple-query-langu…

    …age-api-query-language-implementation' of https://github.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-tablewzapi
    Desvelao committed Jun 26, 2023
    Configuration menu
    Copy the full SHA
    7786590 View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2023

  1. Merge branch '4.6.0' of https://github.com/wazuh/wazuh-kibana-app int…

    …o feat/4312-poc-search-bar-component-multiple-query-language-api-query-language-implementation
    Desvelao committed Jul 25, 2023
    Configuration menu
    Copy the full SHA
    2503edd View commit details
    Browse the repository at this point in the history
  2. Merge branch '4.6.0' of https://github.com/wazuh/wazuh-kibana-app int…

    …o feat/4312-search-bar-replace-tablewzapi
    Desvelao committed Jul 25, 2023
    Configuration menu
    Copy the full SHA
    c385b73 View commit details
    Browse the repository at this point in the history
  3. fix: test snapshot

    Desvelao committed Jul 25, 2023
    Configuration menu
    Copy the full SHA
    b31e5f5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0cf2d18 View commit details
    Browse the repository at this point in the history
  5. Merge branch '4.6.0' of https://github.com/wazuh/wazuh-kibana-app int…

    …o feat/4312-search-bar-replace-management-groups
    Desvelao committed Jul 25, 2023
    Configuration menu
    Copy the full SHA
    1a870bf View commit details
    Browse the repository at this point in the history
  6. move: move search bar

    Desvelao committed Jul 25, 2023
    Configuration menu
    Copy the full SHA
    9059c5a View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2023

  1. feat: add the distinct values for the search bar suggestions in some

    sections
    
    - Add the distinct values for the search bar suggestions in some
      sections:
      - Modules > Security Configuration Assessment policy checks table
      - Modules > Vulnerabilities > Inventory table
      - Modules > MITRE ATT&CK > Inventory table
      - Management > Rules table
      - Management > Decoders table
      - Management > CDB Lists table
    
    - Add Path column to Rules files table
    - Add Path column to Decoders files table
    Desvelao committed Jul 31, 2023
    Configuration menu
    Copy the full SHA
    4c6c38d View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2023

  1. Configuration menu
    Copy the full SHA
    0cfe1d5 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'feat/4312-poc-search-bar-component-multiple-query-langu…

    …age-api-query-language-implementation' of https://github.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-tablewzapi
    Desvelao committed Aug 1, 2023
    Configuration menu
    Copy the full SHA
    13d2be4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3502d0b View commit details
    Browse the repository at this point in the history
  4. Merge branch 'feat/4312-poc-search-bar-component-multiple-query-langu…

    …age-api-query-language-implementation' of https://github.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-tablewzapi
    Desvelao committed Aug 1, 2023
    Configuration menu
    Copy the full SHA
    76a4feb View commit details
    Browse the repository at this point in the history
  5. Merge branch 'feat/4312-search-bar-replace-tablewzapi' of https://git…

    …hub.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-management-groups
    Desvelao committed Aug 1, 2023
    Configuration menu
    Copy the full SHA
    9cd70af View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2023

  1. fix: add suggestions for the search bar related to Management > Group…

    …s section
    
    Tables:
    - Management > Groups
    - Management > Groups > {group_id} > Agents
    - Management > Groups > {group_id} > Files
    Desvelao committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    d87abf4 View commit details
    Browse the repository at this point in the history
  2. fix: fix Management > Rules search bar filters

    Add id field
    Fix groups filter in Rule info flyout
    Remove onFiltersChange handler
    Desvelao committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    0696698 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'feat/4312-search-bar-replace-tablewzapi' of https://git…

    …hub.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-management-groups
    Desvelao committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    e1efeab View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    bc26f9a View commit details
    Browse the repository at this point in the history
  5. fix(search-bar): use value of value token as the value used to get th…

    …e value suggestions in the search bar instead of raw token that could include " character
    Desvelao committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    cd89aa5 View commit details
    Browse the repository at this point in the history
  6. Merge branch 'feat/4312-poc-search-bar-component-multiple-query-langu…

    …age-api-query-language-implementation' of https://github.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-tablewzapi
    Desvelao committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    64a057b View commit details
    Browse the repository at this point in the history
  7. Merge branch 'feat/4312-poc-search-bar-component-multiple-query-langu…

    …age-api-query-language-implementation' of https://github.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-management-groups
    Desvelao committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    a06df12 View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2023

  1. fix(search-bar): fix a problem extracting value for value tokens wrap…

    …ped by double quotation marks that contains the new line character and remove separation of invalid characters in the value token
    
    - Fix tests
    Desvelao committed Aug 3, 2023
    Configuration menu
    Copy the full SHA
    d961094 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'feat/4312-poc-search-bar-component-multiple-query-langu…

    …age-api-query-language-implementation' of https://github.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-tablewzapi
    Desvelao committed Aug 3, 2023
    Configuration menu
    Copy the full SHA
    6e24bc3 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'feat/4312-poc-search-bar-component-multiple-query-langu…

    …age-api-query-language-implementation' of https://github.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-management-groups
    Desvelao committed Aug 3, 2023
    Configuration menu
    Copy the full SHA
    b388a2e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3831bee View commit details
    Browse the repository at this point in the history
  5. Merge branch 'feat/4312-search-bar-replace-tablewzapi' of https://git…

    …hub.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-management-groups
    Desvelao committed Aug 3, 2023
    Configuration menu
    Copy the full SHA
    ed9ca08 View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2023

  1. fix(table-wz-api): avoid the double toast message when there is an er…

    …ror fetching data and replace the error.name to RequestError
    Desvelao committed Aug 4, 2023
    Configuration menu
    Copy the full SHA
    449eeee View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    579d30f View commit details
    Browse the repository at this point in the history
  3. Merge branch 'feat/4312-poc-search-bar-component-multiple-query-langu…

    …age-api-query-language-implementation' of https://github.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-tablewzapi
    Desvelao committed Aug 4, 2023
    Configuration menu
    Copy the full SHA
    2df66f6 View commit details
    Browse the repository at this point in the history
  4. Merge branch 'feat/4312-search-bar-replace-tablewzapi' of https://git…

    …hub.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-management-groups
    Desvelao committed Aug 4, 2023
    Configuration menu
    Copy the full SHA
    c9bbc1b View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2023

  1. Configuration menu
    Copy the full SHA
    f8b0044 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'feat/4312-poc-search-bar-component-multiple-query-langu…

    …age-api-query-language-implementation' of https://github.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-tablewzapi
    Desvelao committed Aug 7, 2023
    Configuration menu
    Copy the full SHA
    8660ddd View commit details
    Browse the repository at this point in the history
  3. Merge branch 'feat/4312-poc-search-bar-component-multiple-query-langu…

    …age-api-query-language-implementation' of https://github.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-management-groups
    Desvelao committed Aug 7, 2023
    Configuration menu
    Copy the full SHA
    40d1e75 View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2023

  1. fix(search-bar): fix error related to details.program_name suggestion…

    … in the Decoders section
    Desvelao committed Aug 8, 2023
    Configuration menu
    Copy the full SHA
    885ad45 View commit details
    Browse the repository at this point in the history
  2. feat(search-bar): add constant to define the count of distinct values…

    … to get in the suggestions
    Desvelao committed Aug 8, 2023
    Configuration menu
    Copy the full SHA
    eee2bb6 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'feat/4312-search-bar-replace-tablewzapi' of https://git…

    …hub.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-management-groups
    Desvelao committed Aug 8, 2023
    Configuration menu
    Copy the full SHA
    0e12864 View commit details
    Browse the repository at this point in the history
  4. feat(search-bar): use constant to define the count of distinct values…

    … to get in the suggestions
    Desvelao committed Aug 8, 2023
    Configuration menu
    Copy the full SHA
    94f3edb View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    dc9e55b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    0b451ed View commit details
    Browse the repository at this point in the history
  7. workaround(search-bar): add a filter to the value suggestions in WQL

    When getting the distinct values for some fields, the value could not
    match the regular expression that validates them, and this causes that
    the search can not be run. So, we filters the distinct values to ensure
    or reduce the suggestions can be used to search. This causes some
    possible values are not displayed in the suggestions. To undone this,
    then the API should allow these values.
    Desvelao committed Aug 8, 2023
    Configuration menu
    Copy the full SHA
    736d958 View commit details
    Browse the repository at this point in the history
  8. Merge branch 'feat/4312-search-bar-replace-tablewzapi' of https://git…

    …hub.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-management-groups
    Desvelao committed Aug 8, 2023
    Configuration menu
    Copy the full SHA
    b1fb357 View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2023

  1. Merge branch '4.6.0' of https://github.com/wazuh/wazuh-kibana-app int…

    …o feat/4312-search-bar-replace-tablewzapi
    Desvelao committed Aug 9, 2023
    Configuration menu
    Copy the full SHA
    2f241b3 View commit details
    Browse the repository at this point in the history
  2. changelog: add entry

    Desvelao committed Aug 9, 2023
    Configuration menu
    Copy the full SHA
    3e1b919 View commit details
    Browse the repository at this point in the history
  3. changelog: add entry

    Desvelao committed Aug 9, 2023
    Configuration menu
    Copy the full SHA
    d15889a View commit details
    Browse the repository at this point in the history
  4. Merge branch '4.6.0' of https://github.com/wazuh/wazuh-kibana-app int…

    …o feat/4312-search-bar-replace-management-groups
    Desvelao committed Aug 9, 2023
    Configuration menu
    Copy the full SHA
    2a2a494 View commit details
    Browse the repository at this point in the history
  5. Merge branch 'feat/4312-search-bar-replace-tablewzapi' of https://git…

    …hub.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-management-groups
    Desvelao committed Aug 9, 2023
    Configuration menu
    Copy the full SHA
    c0e2d94 View commit details
    Browse the repository at this point in the history
  6. changelog: add entry

    Desvelao committed Aug 9, 2023
    Configuration menu
    Copy the full SHA
    bb9bfcd View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    9e121ad View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2023

  1. Configuration menu
    Copy the full SHA
    8ed6ae4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a2abff5 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'feat/4312-search-bar-replace-tablewzapi' of https://git…

    …hub.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-management-groups
    Desvelao committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    891f86c View commit details
    Browse the repository at this point in the history
  4. fix(search-bar-wql): problem related to execute the search before the…

    … input is analyzed due to this process is debounced
    Desvelao committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    99aa426 View commit details
    Browse the repository at this point in the history
  5. Merge branch 'feat/4312-search-bar-replace-tablewzapi' of https://git…

    …hub.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-management-groups
    Desvelao committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    22f7124 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4ff2653 View commit details
    Browse the repository at this point in the history
  7. Merge branch 'feat/4312-search-bar-replace-tablewzapi' of https://git…

    …hub.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-management-groups
    Desvelao committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    673552e View commit details
    Browse the repository at this point in the history
  8. fix(search-bar): fix tests

    Desvelao committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    a320b78 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    df8a8d3 View commit details
    Browse the repository at this point in the history
  10. Merge branch 'feat/4312-search-bar-replace-tablewzapi' of https://git…

    …hub.com/wazuh/wazuh-kibana-app into feat/4312-search-bar-replace-management-groups
    Desvelao committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    12b4378 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    acf37cf View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2023

  1. Merge branch '4.6.0' of https://github.com/wazuh/wazuh-kibana-app int…

    …o feat/4312-search-bar-replace-management-groups
    Desvelao committed Aug 11, 2023
    Configuration menu
    Copy the full SHA
    945578f View commit details
    Browse the repository at this point in the history