Skip to content

Releases: chaoss/grimoirelab-sortinghat

1.13.0rc1

21 Jan 09:32

Choose a tag to compare

sortinghat 1.13.0rc1 - (2026-01-21)

New features:

  • Redis SSL support via environment variables (#985)
    Adds support for secure Redis connections over SSL. It can be
    configured using the following environment variables.
    SORTINGHAT_REDIS_SSL, SORTINGHAT_REDIS_SSL_CERT_REQS,
    SORTINGHAT_REDIS_SSL_CA_CERTS, SORTINGHAT_REDIS_SSL_CERTFILE,
    SORTINGHAT_REDIS_SSL_KEYFILE.

Bug fixes:

  • Last run of scheduled tasks (#1018)
    The information about the last run of scheduled tasks on the user
    interface was not coherent when there was more than one 'affiliate'
    and 'unify' task. Now, the system only allows to schedule one
    recurrent task of each of those types and the user interface shows the
    correct date.
  • Reopen "Add organization" modal after closing it (#1023)
    The "Add organization" dialog would not open again after closing it by
    clicking outside of it.
  • Auto fill login details with password managers (#1034)
    Some password managers were unable to auto fill the login form.
  • Show errors when the tables are not empty
    The user interface did not show any error messages when the
    individuals and organizations tables had items.

Performance improvements:

  • Faster loading times for the list of individuals
    Improve the performance of the individuals query, reducing the loading
    time of the table.

1.13.0

21 Jan 10:21

Choose a tag to compare

sortinghat 1.13.0 - (2026-01-21)

New features:

  • Redis SSL support via environment variables (#985)
    Adds support for secure Redis connections over SSL. It can be
    configured using the following environment variables.
    SORTINGHAT_REDIS_SSL, SORTINGHAT_REDIS_SSL_CERT_REQS,
    SORTINGHAT_REDIS_SSL_CA_CERTS, SORTINGHAT_REDIS_SSL_CERTFILE,
    SORTINGHAT_REDIS_SSL_KEYFILE.

Bug fixes:

  • Last run of scheduled tasks (#1018)
    The information about the last run of scheduled tasks on the user
    interface was not coherent when there was more than one 'affiliate'
    and 'unify' task. Now, the system only allows to schedule one
    recurrent task of each of those types and the user interface shows the
    correct date.
  • Reopen "Add organization" modal after closing it (#1023)
    The "Add organization" dialog would not open again after closing it by
    clicking outside of it.
  • Auto fill login details with password managers (#1034)
    Some password managers were unable to auto fill the login form.
  • Show errors when the tables are not empty
    The user interface did not show any error messages when the
    individuals and organizations tables had items.

Performance improvements:

  • Faster loading times for the list of individuals
    Improve the performance of the individuals query, reducing the loading
    time of the table.

1.12.4-rc.2

12 Dec 10:55

Choose a tag to compare

sortinghat 1.12.4-rc.2 - (2025-12-12)

Bug fixes:

  • Merge alias of newly created organization
    The user interface raised an error when trying to merge an alias of an
    organization that had just been created using the same dialog.

1.12.4

12 Dec 11:41

Choose a tag to compare

sortinghat 1.12.4 - (2025-12-12)

Bug fixes:

  • Merge alias of newly created organization
    The user interface raised an error when trying to merge an alias of an
    organization that had just been created using the same dialog.
  • Missing migrations from model changes
    Adds missing database migrations, including an index update and a fix
    to tenant permission defaults.

1.12.4-rc.1

09 Dec 10:23

Choose a tag to compare

sortinghat 1.12.4-rc.1 - (2025-12-09)

Bug fixes:

  • Missing migrations from model changes
    Adds missing database migrations, including an index update and a fix
    to tenant permission defaults.

1.12.3-rc.1

25 Nov 14:09

Choose a tag to compare

sortinghat 1.12.3-rc.1 - (2025-11-25)

Bug fixes:

  • Redis connection updated in tests
    The package django-rq updated the references to get_redis_connection
    and that caused tests to fail. Fix with the new reference.

1.12.3

25 Nov 14:57

Choose a tag to compare

sortinghat 1.12.3 - (2025-11-25)

Bug fixes:

  • Redis connection updated in tests
    The package django-rq updated the references to get_redis_connection
    and that caused tests to fail. Fix with the new reference.

1.12.2-rc.1

11 Nov 10:19

Choose a tag to compare

sortinghat 1.12.2-rc.1 - (2025-11-11)

  • Update Poetry's package dependencies

1.12.2

11 Nov 12:27

Choose a tag to compare

sortinghat 1.12.2 - (2025-11-11)

  • Update Poetry's package dependencies

1.12.1

31 Oct 08:53

Choose a tag to compare

sortinghat 1.12.1 - (2025-10-31)

Bug fixes:

  • Task update issues due to type mismatch
    Fix a bug that caused updating and deleting tasks from the UI to fail.
    The GraphQL Task type now uses an ID field that accepts both integers
    and strings, but the UI had not been updated to handle this change.
  • Importer failed to reschedule tasks
    Fix a bug that prevented the importer from rescheduling tasks because
    from_date was not JSON serializable when inserting into the
    database.
  • Unify periodic task param issue
    Fixed an issue where creating a unify periodic task with "Guess GitHub
    User” enabled failed.
  • Importing identities with oversized fields failed
    Fix a bug where importing identities with a large field (e.g.,
    username) caused the whole process to fail. Now, such identities are
    skipped instead.