Skip to content

Commit 85bf456

Browse files
committed
Release 1.12.1
1 parent 7d405cc commit 85bf456

File tree

8 files changed

+44
-38
lines changed

8 files changed

+44
-38
lines changed

NEWS

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Releases
22

3+
## sortinghat 1.12.1 - (2025-10-31)
4+
5+
**Bug fixes:**
6+
7+
* Task update issues due to type mismatch\
8+
Fix a bug that caused updating and deleting tasks from the UI to fail.
9+
The GraphQL Task type now uses an ID field that accepts both integers
10+
and strings, but the UI had not been updated to handle this change.
11+
* Importer failed to reschedule tasks\
12+
Fix a bug that prevented the importer from rescheduling tasks because
13+
`from_date` was not JSON serializable when inserting into the
14+
database.
15+
* Unify periodic task param issue\
16+
Fixed an issue where creating a unify periodic task with "Guess GitHub
17+
User” enabled failed.
18+
* Importing identities with oversized fields failed\
19+
Fix a bug where importing identities with a large field (e.g.,
20+
username) caused the whole process to fail. Now, such identities are
21+
skipped instead.
22+
23+
324
## sortinghat 1.12.0 - (2025-10-10)
425

526
**New features:**

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "sortinghat"
3-
version = "1.12.1-rc.2"
3+
version = "1.12.1"
44
description = "A tool to manage identities."
55
authors = [
66
"GrimoireLab Developers"

releases/1.12.1.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
## sortinghat 1.12.1 - (2025-10-31)
2+
3+
**Bug fixes:**
4+
5+
* Task update issues due to type mismatch\
6+
Fix a bug that caused updating and deleting tasks from the UI to fail.
7+
The GraphQL Task type now uses an ID field that accepts both integers
8+
and strings, but the UI had not been updated to handle this change.
9+
* Importer failed to reschedule tasks\
10+
Fix a bug that prevented the importer from rescheduling tasks because
11+
`from_date` was not JSON serializable when inserting into the
12+
database.
13+
* Unify periodic task param issue\
14+
Fixed an issue where creating a unify periodic task with "Guess GitHub
15+
User” enabled failed.
16+
* Importing identities with oversized fields failed\
17+
Fix a bug where importing identities with a large field (e.g.,
18+
username) caused the whole process to fail. Now, such identities are
19+
skipped instead.
20+

releases/unreleased/processed/importer-failed-to-reschedule-tasks.yml

Lines changed: 0 additions & 9 deletions
This file was deleted.

releases/unreleased/processed/importing-identities-with-oversized-fields-failed.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

releases/unreleased/processed/task-update-issues-due-to-type-mismatch.yml

Lines changed: 0 additions & 10 deletions
This file was deleted.

releases/unreleased/processed/unify-periodic-task-param-issue.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

sortinghat/_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# File auto-generated by semverup on 2025-10-30 16:53:26.535685
2-
__version__ = "1.12.1-rc.2"
1+
# File auto-generated by semverup on 2025-10-31 08:48:56.966256
2+
__version__ = "1.12.1"

0 commit comments

Comments
 (0)