Skip to content

Commit

Permalink
Release 0.103.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sduenas committed Jul 21, 2022
1 parent 973edb5 commit 43a2e5a
Show file tree
Hide file tree
Showing 8 changed files with 55 additions and 39 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ Quan Zhou <[email protected]>
Jesus M. Gonzalez-Barahona <[email protected]>
Jose Javier Merchante <[email protected]>
Santiago Dueñas <[email protected]>
ChenqiShan <[email protected]>, LinHaiming <[email protected]>

26 changes: 26 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Releases

## grimoire-elk 0.103.0-rc.1 - (2022-07-21)

**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).


## GrimoireELK 0.102.0 - (2022-06-24)

**Bug fixes:**
Expand Down
4 changes: 2 additions & 2 deletions grimoire_elk/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# File auto-generated by semverup on 2022-06-24 11:31:20.431813
__version__ = "0.102.0"
# File auto-generated by semverup on 2022-07-21 12:00:33.231096
__version__ = "0.103.0-rc.1"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "grimoire-elk"
version = "0.102.0"
version = "0.103.0-rc.1"
description = "GrimoireELK processes and stores software development data to ElasticSearch"
readme = "README.md"
authors = [
Expand Down
25 changes: 25 additions & 0 deletions releases/0.103.0-rc.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
## grimoire-elk 0.103.0-rc.1 - (2022-07-21)

**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).

This file was deleted.

This file was deleted.

9 changes: 0 additions & 9 deletions releases/unreleased/[slack]-handle-fields-in-data.file.yml

This file was deleted.

0 comments on commit 43a2e5a

Please sign in to comment.