Skip to content

Commit

Permalink
Release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sduenas committed Aug 30, 2024
1 parent a436050 commit 746e851
Show file tree
Hide file tree
Showing 9 changed files with 64 additions and 52 deletions.
31 changes: 31 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
# Releases

## sortinghat 1.3.0 - (2024-08-30)

**New features:**

* Remove merge recommendations (#883)\
Recommendations can now be deleted from the database and not just
dismissed. This is useful in case there are too many recommendations
to handle manually.
* Merge organizations when adding an alias (#913)\
When adding an alias on an organization's page, if the new alias is an
existing organization, users now have the option to merge them. This
is useful in cases where organizations can't be merged using drag and
drop.
* User permissions per tenant\
Update the permissions system to allow assigning permissions to users
based on the tenant they are accessing. The command `sortinghat-admin
set-group` has been renamed to `sortinghat.-admin set-permissions`.

**Bug fixes:**

* Duplicated GitHub links (#912)\
The link to an individual's GitHub profile no longer appears several
times when there is more than one GitHub identity.
* Connection closed when job is executed\
RQ workers create a fork to run the jobs. The issue arises when, after
completing the job, the MariaDB logs display the warning: `Aborted
connection to db. Got an error reading communication packets`. This
change ensures the database connection is closed before the fork ends,
preventing the warning from appearing.


## sortinghat 1.2.1 - (2024-08-13)

* Update Poetry's package dependencies
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 = "1.3.0-rc.1"
version = "1.3.0"
description = "A tool to manage identities."
authors = [
"GrimoireLab Developers"
Expand Down
30 changes: 30 additions & 0 deletions releases/1.3.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
## sortinghat 1.3.0 - (2024-08-30)

**New features:**

* Remove merge recommendations (#883)\
Recommendations can now be deleted from the database and not just
dismissed. This is useful in case there are too many recommendations
to handle manually.
* Merge organizations when adding an alias (#913)\
When adding an alias on an organization's page, if the new alias is an
existing organization, users now have the option to merge them. This
is useful in cases where organizations can't be merged using drag and
drop.
* User permissions per tenant\
Update the permissions system to allow assigning permissions to users
based on the tenant they are accessing. The command `sortinghat-admin
set-group` has been renamed to `sortinghat.-admin set-permissions`.

**Bug fixes:**

* Duplicated GitHub links (#912)\
The link to an individual's GitHub profile no longer appears several
times when there is more than one GitHub identity.
* Connection closed when job is executed\
RQ workers create a fork to run the jobs. The issue arises when, after
completing the job, the MariaDB logs display the warning: `Aborted
connection to db. Got an error reading communication packets`. This
change ensures the database connection is closed before the fork ends,
preventing the warning from appearing.

This file was deleted.

8 changes: 0 additions & 8 deletions releases/unreleased/processed/duplicated-github-links.yml

This file was deleted.

This file was deleted.

This file was deleted.

10 changes: 0 additions & 10 deletions releases/unreleased/processed/user-permissions-per-tenant.yml

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 2024-08-30 15:07:41.321707
__version__ = "1.3.0-rc.1"
# File auto-generated by semverup on 2024-08-30 16:03:14.037772
__version__ = "1.3.0"

0 comments on commit 746e851

Please sign in to comment.