Skip to content

Commit

Permalink
Release 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sduenas committed Oct 20, 2023
1 parent 37aa66b commit 6b31c13
Show file tree
Hide file tree
Showing 11 changed files with 82 additions and 68 deletions.
40 changes: 40 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,45 @@
# Releases

## sortinghat 0.14.0 - (2023-10-20)

**New features:**

* Strict criteria for merge recommendations (#812)\
The merge recommendations filter out invalid email adresses and names
that don't have at least a first and last name when looking for
matches. To disable this behavior, set the `strict` parameter on
`recommendMatches` or `unify` to `false`.
* Text field to update enrollment dates (#819)\
Users have the option to enter the dates on a text field when editing
affiliations.
* Improved organization selector (#820)\
The organization selector that is used to affiliate individuals now
has the option to create an organization if the desired one is not
found. Its size is also increased to improve the readability of longer
names.
* API method to create a scheduled task\
The `add_scheduled_task` API method adds a new scheduled task to the
registry.
* Manage app settings from the user interface\
Users can configure automatic affiliations, profile unification and
identity data synchronization from the new `Settings` section on the
user interface.

**Bug fixes:**

* Remove tasks that fail to be scheduled\
When there was an issue with the Redis connection when a task was
created, the task was added to the database but there was not
scheduled job linked to it. Tasks are now removed from the database
and an error is raised in this case.

**Dependencies updateds:**

* Add Python 3.9 and drop 3.7 support\
Python 3.7 reached the end of life phase on June 27 2023 and is no
longer supported.


## sortinghat 0.13.0 - (2023-08-06)

**Bug fixes:**
Expand Down
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 = "sortinghat"
version = "0.14.0-rc.1"
version = "0.14.0"
description = "A tool to manage identities."
authors = [
"GrimoireLab Developers"
Expand Down
39 changes: 39 additions & 0 deletions releases/0.14.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
## sortinghat 0.14.0 - (2023-10-20)

**New features:**

* Strict criteria for merge recommendations (#812)\
The merge recommendations filter out invalid email adresses and names
that don't have at least a first and last name when looking for
matches. To disable this behavior, set the `strict` parameter on
`recommendMatches` or `unify` to `false`.
* Text field to update enrollment dates (#819)\
Users have the option to enter the dates on a text field when editing
affiliations.
* Improved organization selector (#820)\
The organization selector that is used to affiliate individuals now
has the option to create an organization if the desired one is not
found. Its size is also increased to improve the readability of longer
names.
* API method to create a scheduled task\
The `add_scheduled_task` API method adds a new scheduled task to the
registry.
* Manage app settings from the user interface\
Users can configure automatic affiliations, profile unification and
identity data synchronization from the new `Settings` section on the
user interface.

**Bug fixes:**

* Remove tasks that fail to be scheduled\
When there was an issue with the Redis connection when a task was
created, the task was added to the database but there was not
scheduled job linked to it. Tasks are now removed from the database
and an error is raised in this case.

**Dependencies updateds:**

* Add Python 3.9 and drop 3.7 support\
Python 3.7 reached the end of life phase on June 27 2023 and is no
longer supported.

8 changes: 0 additions & 8 deletions releases/unreleased/processed/api-method-to-create-task.yml

This file was deleted.

11 changes: 0 additions & 11 deletions releases/unreleased/processed/delete-task-on-error.yml

This file was deleted.

8 changes: 0 additions & 8 deletions releases/unreleased/processed/drop-python-37.yml

This file was deleted.

11 changes: 0 additions & 11 deletions releases/unreleased/processed/improve-organization-selector.yml

This file was deleted.

9 changes: 0 additions & 9 deletions releases/unreleased/processed/manage-app-settings.yml

This file was deleted.

10 changes: 0 additions & 10 deletions releases/unreleased/processed/strict-criteria.yml

This file was deleted.

This file was deleted.

4 changes: 2 additions & 2 deletions sortinghat/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# File auto-generated by semverup on 2023-10-19 16:12:44.433916
__version__ = "0.14.0-rc.1"
# File auto-generated by semverup on 2023-10-20 11:03:29.981461
__version__ = "0.14.0"

0 comments on commit 6b31c13

Please sign in to comment.