From bb62fbe2fedafbc7d935b67f2ebe19b06e5664ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Santiago=20Due=C3=B1as?= Date: Fri, 3 Jun 2022 17:06:31 +0200 Subject: [PATCH] Release 0.101.1 --- AUTHORS | 1 + NEWS | 13 +++++++++++++ grimoire_elk/_version.py | 4 ++-- pyproject.toml | 2 +- releases/0.101.1.md | 12 ++++++++++++ ...nectors-to-find-out-pair-programming-authors.yml | 13 ------------- .../fix-fetching-authors-with-min-and-max-dates.yml | 8 -------- 7 files changed, 29 insertions(+), 24 deletions(-) create mode 100644 releases/0.101.1.md delete mode 100644 releases/unreleased/add-more-connectors-to-find-out-pair-programming-authors.yml delete mode 100644 releases/unreleased/fix-fetching-authors-with-min-and-max-dates.yml diff --git a/AUTHORS b/AUTHORS index 0dc120040..eccdcca1a 100644 --- a/AUTHORS +++ b/AUTHORS @@ -5,3 +5,4 @@ Quan Zhou Jesus M. Gonzalez-Barahona Jose Javier Merchante Santiago DueƱas + diff --git a/NEWS b/NEWS index 24b7c36ed..221f8cc91 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,18 @@ # Releases +## GrimoireELK 0.101.1 - (2022-06-03) + +**Bug fixes:** + + * Pair programming regular expression improvement\ + The regular expression to detect pair programming authors in git + datasource has been improved adding more connectors. The following + list shows the current connectors: - `[aA][nN][dD]` - `&` - `+` + * Fix fetching authors with min and max dates\ + The old query only returns 10000 items due to ElasticSearch and + OpenSearch now use `composite` aggregation to paginate all buckets. + + ## GrimoireELK 0.101.0 - (2022-06-03) **New features:** diff --git a/grimoire_elk/_version.py b/grimoire_elk/_version.py index a68585a9f..cf3832188 100644 --- a/grimoire_elk/_version.py +++ b/grimoire_elk/_version.py @@ -1,2 +1,2 @@ -# File auto-generated by semverup on 2022-06-03 10:45:32.908868 -__version__ = "0.101.0" +# File auto-generated by semverup on 2022-06-03 15:04:53.709211 +__version__ = "0.101.1" diff --git a/pyproject.toml b/pyproject.toml index 57e7c4c95..5b028d626 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "grimoire-elk" -version = "0.101.0" +version = "0.101.1" description = "GrimoireELK processes and stores software development data to ElasticSearch" readme = "README.md" authors = [ diff --git a/releases/0.101.1.md b/releases/0.101.1.md new file mode 100644 index 000000000..f86030536 --- /dev/null +++ b/releases/0.101.1.md @@ -0,0 +1,12 @@ +## GrimoireELK 0.101.1 - (2022-06-03) + +**Bug fixes:** + + * Pair programming regular expression improvement\ + The regular expression to detect pair programming authors in git + datasource has been improved adding more connectors. The following + list shows the current connectors: - `[aA][nN][dD]` - `&` - `+` + * Fix fetching authors with min and max dates\ + The old query only returns 10000 items due to ElasticSearch and + OpenSearch now use `composite` aggregation to paginate all buckets. + diff --git a/releases/unreleased/add-more-connectors-to-find-out-pair-programming-authors.yml b/releases/unreleased/add-more-connectors-to-find-out-pair-programming-authors.yml deleted file mode 100644 index beb0020f4..000000000 --- a/releases/unreleased/add-more-connectors-to-find-out-pair-programming-authors.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Pair programming regular expression improvement -category: fixed -author: Quan Zhou -issue: null -notes: > - The regular expression to detect pair programming authors in git - datasource has been improved adding more connectors. - - The following list shows the current connectors: - - `[aA][nN][dD]` - - `&` - - `+` diff --git a/releases/unreleased/fix-fetching-authors-with-min-and-max-dates.yml b/releases/unreleased/fix-fetching-authors-with-min-and-max-dates.yml deleted file mode 100644 index 1402cb42f..000000000 --- a/releases/unreleased/fix-fetching-authors-with-min-and-max-dates.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- -title: Fix fetching authors with min and max dates -category: fixed -author: Quan Zhou -issue: null -notes: > - The old query only returns 10000 items due to ElasticSearch and - OpenSearch now use `composite` aggregation to paginate all buckets.