From 96d31f23d7b60f658876089b819ec3fc5b1adecf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Santiago=20Due=C3=B1as?= Date: Fri, 22 Jul 2022 14:33:30 +0000 Subject: [PATCH] Release 0.103.0-rc.2 --- AUTHORS | 3 +++ NEWS | 26 ++++++++++++++++++++++++++ grimoire_elk/_version.py | 4 ++-- pyproject.toml | 2 +- releases/0.103.0-rc.2.md | 25 +++++++++++++++++++++++++ 5 files changed, 57 insertions(+), 3 deletions(-) create mode 100644 releases/0.103.0-rc.2.md diff --git a/AUTHORS b/AUTHORS index 0dc120040..54a681cef 100644 --- a/AUTHORS +++ b/AUTHORS @@ -5,3 +5,6 @@ Quan Zhou Jesus M. Gonzalez-Barahona Jose Javier Merchante Santiago DueƱas +ChenqiShan +LinHaiming + diff --git a/NEWS b/NEWS index ed5f7e47f..4b32757a1 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,31 @@ # Releases +## grimoire-elk 0.103.0-rc.2 - (2022-07-22) + +**New features:** + + * Entry points to support enriching plugin mechanism\ + This plugin mechanism allows ELK to use third-party enriching + backends. Developers only need to include the next snippet in their + package configuration and ELK will import them as any other core + backend. ``` entry_points={"grimoire_elk": "mybackend = + package.subpackage:get_connectors"}, ``` **NOTE**: In the previous + example, `get_connectors` is a function that returns the backend + classes needed to enrich a datasource. Take the next snipped as an + example: ``` def get_connectors(): return {"backend": [MyBackend, + MyBackendOcean, MyBackendEnrich, MyBackendCommand]} ``` + * Configurable study aliases\ + Before this fix, the name of the study aliases was hard coded. From + now on, these values can be configured by passing them as parameters. + +**Bug fixes:** + + * [raw/slack] Handle fields in "data.file"\ + Avoid the 'Failed to insert data to ES' error when a document contains + at least one immense term in 'data.file' (whose UTF8 encoding is + longer than the max length 32766). + + ## grimoire-elk 0.103.0-rc.1 - (2022-07-21) **New features:** diff --git a/grimoire_elk/_version.py b/grimoire_elk/_version.py index 91e1756d5..733cbda09 100644 --- a/grimoire_elk/_version.py +++ b/grimoire_elk/_version.py @@ -1,2 +1,2 @@ -# File auto-generated by semverup on 2022-07-21 12:00:33.231096 -__version__ = "0.103.0-rc.1" +# File auto-generated by semverup on 2022-07-22 14:33:29.990223 +__version__ = "0.103.0-rc.2" diff --git a/pyproject.toml b/pyproject.toml index 231f730ad..2c063868c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "grimoire-elk" -version = "0.103.0-rc.1" +version = "0.103.0-rc.2" description = "GrimoireELK processes and stores software development data to ElasticSearch" readme = "README.md" authors = [ diff --git a/releases/0.103.0-rc.2.md b/releases/0.103.0-rc.2.md new file mode 100644 index 000000000..b9c427dda --- /dev/null +++ b/releases/0.103.0-rc.2.md @@ -0,0 +1,25 @@ +## grimoire-elk 0.103.0-rc.2 - (2022-07-22) + +**New features:** + + * Entry points to support enriching plugin mechanism\ + This plugin mechanism allows ELK to use third-party enriching + backends. Developers only need to include the next snippet in their + package configuration and ELK will import them as any other core + backend. ``` entry_points={"grimoire_elk": "mybackend = + package.subpackage:get_connectors"}, ``` **NOTE**: In the previous + example, `get_connectors` is a function that returns the backend + classes needed to enrich a datasource. Take the next snipped as an + example: ``` def get_connectors(): return {"backend": [MyBackend, + MyBackendOcean, MyBackendEnrich, MyBackendCommand]} ``` + * Configurable study aliases\ + Before this fix, the name of the study aliases was hard coded. From + now on, these values can be configured by passing them as parameters. + +**Bug fixes:** + + * [raw/slack] Handle fields in "data.file"\ + Avoid the 'Failed to insert data to ES' error when a document contains + at least one immense term in 'data.file' (whose UTF8 encoding is + longer than the max length 32766). +