Skip to content

Commit

Permalink
Release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sduenas committed Sep 26, 2022
1 parent 66daba2 commit 31649b7
Show file tree
Hide file tree
Showing 5 changed files with 147 additions and 61 deletions.
4 changes: 2 additions & 2 deletions grimoirelab/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# File auto-generated by semverup on 2022-09-26 12:53:40.500951
__version__ = "0.5.0-rc.1"
# File auto-generated by semverup on 2022-09-26 14:50:35.926612
__version__ = "0.5.0"
68 changes: 34 additions & 34 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 12 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "grimoirelab"
version = "0.5.0-rc.1"
version = "0.5.0"
description = "Tool set for software development analytics"
authors = [
"GrimoireLab Developers"
Expand Down Expand Up @@ -39,20 +39,20 @@ classifiers = [
python = "^3.7"

grimoirelab-toolkit = {version = "^0.3.1rc1", allow-prereleases = true}
perceval-mozilla = {version = "^0.3.2rc11", allow-prereleases = true}
perceval-opnfv = {version = "^0.2.2rc12", allow-prereleases = true}
perceval-puppet = {version = "^0.2.2rc11", allow-prereleases = true}
perceval-weblate = {version = "^0.2.2rc13", allow-prereleases = true}
kingarthur = {version = "^0.2.2rc10", allow-prereleases = true}
sortinghat = {version = "^0.7.21rc6", allow-prereleases = true}
kidash = {version = "^0.5.1rc7", allow-prereleases = true}
perceval-mozilla = {version = "^0.3.2", allow-prereleases = true}
perceval-opnfv = {version = "^0.2.2", allow-prereleases = true}
perceval-puppet = {version = "^0.2.2", allow-prereleases = true}
perceval-weblate = {version = "^0.2.2", allow-prereleases = true}
kingarthur = {version = "^0.2.2", allow-prereleases = true}
sortinghat = {version = "^0.7.21", allow-prereleases = true}
kidash = {version = "^0.5.1", allow-prereleases = true}
grimoirelab-panels = {version = "^0.1.1rc1", allow-prereleases = true}
grimoire-elk = {version = "^0.103.0rc10", allow-prereleases = true}
grimoire-elk = {version = "^0.103.0", allow-prereleases = true}
sirmordred = {version = "^0.4.0rc1", allow-prereleases = true}
cereslib = {version = "^0.3.2rc4", allow-prereleases = true}
graal = {version = "^0.3.2rc9", allow-prereleases = true}
cereslib = {version = "^0.3.2", allow-prereleases = true}
graal = {version = "^0.3.2", allow-prereleases = true}
statsmodels = "^0.13.2"
perceval = {version = "^0.20.0rc15", allow-prereleases = true}
perceval = {version = "^0.20.0", allow-prereleases = true}

[tool.poetry.dev-dependencies]

Expand Down
86 changes: 86 additions & 0 deletions releases/0.5.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
# GrimoireLab 0.5.0
The following list describes the changes by component:


## kidash 0.5.1 - (2022-09-26)

**Others:**

* Update Poetry dependencies\
Update package dependencies for the new release.
## sortinghat 0.7.21 - (2022-09-26)

**Others:**

* Update package dependencies\
Update jinja2 package and dev-dependencies.
## cereslib 0.3.2 - (2022-09-26)

**Others:**

* Update package dependencies\
Update numpy version to be the same as in sortinghat

## perceval 0.20.0 - (2022-09-26)

**New features:**

* [phabricator] Skip a list of items by id\
Perceval will not fetch the items set with the `--blacklist-ids`
argument. In the following example, `perceval` will skip the items
with ids `123` and `456`: ``` perceval phabricator <PHAB_URL> -t
<API_TOKEN> --blacklist-ids 123 456 ```






## grimoire-elk 0.103.0 - (2022-09-26)

**New features:**

* git-branches study skip uncloned repo\
The git-branches study skips the repository when it is not cloned and
continues with the next one.
* 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.
* 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]} ```

**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).
## sirmordred 0.4.0 - (2022-09-26)

**New features:**

* Configurable study names and aliases\
Study aliases and names can be set in the configuration file using the
keyword `studies_aliases`. The following snippet shows an example of
configuration. i.e. In this `aliases.json` file the name of the study
is `enrich_onion` and the name of the alias is `all_onion` ```
"studies_aliases": { "enrich": [ { "alias":
"all_onion", "name": "enrich_onion" }, ... ] }
```
**Bug fixes:**
* [git] pair-programming activation fixed\
Git pair-programming can be activated if the data source contains a
tag like `[git:pair]`
* Study selection fixed\
This fix solves the problem of executing the studies with no
associated aliases.
26 changes: 13 additions & 13 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
grimoirelab=0.5.0-rc.1
grimoirelab=0.5.0
grimoirelab-toolkit==0.3.1-rc.1
perceval==0.20.0-rc.15
perceval-mozilla==0.3.2-rc.11
perceval-opnfv==0.2.2-rc.12
perceval-puppet==0.2.2-rc.11
perceval-weblate==0.2.2-rc.13
kingarthur==0.2.2-rc.10
grimoire-elk==0.103.0-rc.10
sortinghat==0.7.21-rc.6
kidash==0.5.1-rc.7
perceval==0.20.0
perceval-mozilla==0.3.2
perceval-opnfv==0.2.2
perceval-puppet==0.2.2
perceval-weblate==0.2.2
kingarthur==0.2.2
grimoire-elk==0.103.0
sortinghat==0.7.21
kidash==0.5.1
grimoirelab-panels==0.1.1-rc.1
sirmordred==0.4.0-rc.1
cereslib==0.3.2-rc.4
graal==0.3.2-rc.9
sirmordred==0.4.0
cereslib==0.3.2
graal==0.3.2

0 comments on commit 31649b7

Please sign in to comment.