-
Notifications
You must be signed in to change notification settings - Fork 222
Expand file tree
/
Copy pathNEWS
More file actions
4472 lines (2931 loc) · 109 KB
/
NEWS
File metadata and controls
4472 lines (2931 loc) · 109 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Releases
## GrimoireLab 1.20.2 - (2026-03-05)
**New components:**
* sortinghat 1.14.2
* grimoire-elk 1.7.3
* sirmordred 1.2.9
The following list describes the changes by component:
### sortinghat
**Bug fixes:**
* Bug fix in job retrieval method\
Fixed an issue with job ID retrieval to ensure compatibility with the
latest RQ version.
### grimoire-elk
* Update Poetry's package dependencies
### sirmordred
* Update Poetry's package dependencies
## GrimoireLab 1.20.1 - (2026-03-03)
**New components:**
* sortinghat 1.14.1
* grimoire-elk 1.7.2
* sirmordred 1.2.8
The following list describes the changes by component:
### sortinghat
**Bug fixes:**
* Default S3 location for static files\
A default S3 location is now configured for static file storage. This
prevents errors that could occur during static file cleanup
operations.
### grimoire-elk
* Update Poetry's package dependencies
### sirmordred
* Update Poetry's package dependencies
## GrimoireLab 1.20.0 - (2026-03-03)
**New components:**
* kidash 1.1.7
* sortinghat 1.14.0
* cereslib 1.1.7
* perceval 1.4.6
* perceval-mozilla 1.2.7
* perceval-opnfv 1.1.7
* perceval-puppet 1.1.7
* perceval-weblate 1.1.7
* graal 1.2.7
* grimoire-elk 1.7.1
* sirmordred 1.2.7
The following list describes the changes by component:
### kidash
* Update Poetry's package dependencies
### sortinghat
**New features:**
* Support for static files in AWS\
Static files can now be uploaded to Amazon Web Services's (AWS) Simple
Storage Service (S3). The storage requires the following environment
variables: `SORTINGHAT_STATICFILES_STORAGE=aws`
`SORTINGHAT_BUCKET_NAME=<bucket>` The AWS credentials can be specified
using `AWS_S3_ACCESS_KEY_ID`, `AWS_S3_SECRET_ACCESS_KEY` and
`AWS_SESSION_TOKEN`.
### cereslib
* Update Poetry's package dependencies
### perceval
* Update Poetry's package dependencies
### perceval-mozilla
* Update Poetry's package dependencies
### perceval-opnfv
* Update Poetry's package dependencies
### perceval-puppet
* Update Poetry's package dependencies
### perceval-weblate
* Update Poetry's package dependencies
### graal
* Update Poetry's package dependencies
### grimoire-elk
**Bug fixes:**
* Autorefresh and identity issues in comments\
Bugzilla enriched index missed some user names, and identities were
not correctly linked to SortingHat.
### sirmordred
* Update Poetry's package dependencies
## GrimoireLab 1.19.0 - (2026-01-21)
**New components:**
* grimoirelab-toolkit 1.2.5
* kidash 1.1.6
* sortinghat 1.13.0
* cereslib 1.1.6
* perceval 1.4.5
* perceval-mozilla 1.2.6
* perceval-opnfv 1.1.6
* perceval-puppet 1.1.6
* perceval-weblate 1.1.6
* graal 1.2.6
* grimoire-elk 1.7.0
* sirmordred 1.2.6
The following list describes the changes by component:
### grimoirelab-toolkit
No changes list available.
### kidash
* Update Poetry's package dependencies
### sortinghat
**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.
### cereslib
* Update Poetry's package dependencies
### perceval
* Update Poetry's package dependencies
### perceval-mozilla
* Update Poetry's package dependencies
### perceval-opnfv
* Update Poetry's package dependencies
### perceval-puppet
* Update Poetry's package dependencies
### perceval-weblate
* Update Poetry's package dependencies
### graal
* Update Poetry's package dependencies
### grimoire-elk
**New features:**
* Onion study output index naming update\
The Onion study now uses date based index names, ensuring previous
data remains available while a new study runs or if it fails.
**Bug fixes:**
* Unique BugzillaREST ids\
Bugzilla IDs now include a prefix to ensure uniqueness and avoid
conflicts across item types.
### sirmordred
* Update Poetry's package dependencies
## GrimoireLab 1.18.1 - (2025-12-12)
**New components:**
The following list describes the changes by component:
## GrimoireLab 1.18.0 - (2025-12-12)
**New components:**
* grimoirelab-toolkit 1.2.4
* kidash 1.1.5
* sortinghat 1.12.4
* cereslib 1.1.5
* perceval 1.4.4
* perceval-mozilla 1.2.5
* perceval-opnfv 1.1.5
* perceval-puppet 1.1.5
* perceval-weblate 1.1.5
* graal 1.2.5
* grimoire-elk 1.6.0
* sirmordred 1.2.5
The following list describes the changes by component:
### grimoirelab-toolkit
No changes list available.
### kidash
* Update Poetry's package dependencies
### sortinghat
**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.
### cereslib
* Update Poetry's package dependencies
### perceval
* Update Poetry's package dependencies
### perceval-mozilla
* Update Poetry's package dependencies
### perceval-opnfv
* Update Poetry's package dependencies
### perceval-puppet
* Update Poetry's package dependencies
### perceval-weblate
* Update Poetry's package dependencies
### graal
* Update Poetry's package dependencies
### grimoire-elk
**New features:**
* Bugzilla REST comments\
Bug comments have been added as part of the BugzillaRest enriched
index. From now on, this index will have two types of items : 'bug'
and 'comment'. The new field 'type' has been added to tag the type of
each item.
**Bug fixes:**
* Git aoc bulk error handling\
Improved handling of partial failures during bulk writes for Git Areas
of code to prevent errors.
### sirmordred
* Update Poetry's package dependencies
## GrimoireLab 1.17.3 - (2025-11-25)
**New components:**
* grimoirelab-toolkit 1.2.3
* kidash 1.1.4
* sortinghat 1.12.3
* cereslib 1.1.4
* perceval 1.4.3
* perceval-mozilla 1.2.4
* perceval-opnfv 1.1.4
* perceval-puppet 1.1.4
* perceval-weblate 1.1.4
* graal 1.2.4
* grimoire-elk 1.5.3
* sirmordred 1.2.4
The following list describes the changes by component:
### grimoirelab-toolkit
No changes list available.
### kidash
* Update Poetry's package dependencies
### sortinghat
**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.
### cereslib
* Update Poetry's package dependencies
### perceval
* Update Poetry's package dependencies
### perceval-mozilla
* Update Poetry's package dependencies
### perceval-opnfv
* Update Poetry's package dependencies
### perceval-puppet
* Update Poetry's package dependencies
### perceval-weblate
* Update Poetry's package dependencies
### graal
* Update Poetry's package dependencies
### grimoire-elk
**Bug fixes:**
* Latest date for incremental collection\
Updated the logic for determining the last update date. Now it
considers both `from_date` from `setup.cfg` and the last update from
Elasticsearch, ensuring to use the most recent date.
### sirmordred
* Update Poetry's package dependencies
## GrimoireLab 1.17.2 - (2025-11-11)
**New components:**
* grimoirelab-toolkit 1.2.2
* kidash 1.1.3
* sortinghat 1.12.2
* cereslib 1.1.3
* perceval 1.4.2
* perceval-mozilla 1.2.3
* perceval-opnfv 1.1.3
* perceval-puppet 1.1.3
* perceval-weblate 1.1.3
* graal 1.2.3
* grimoire-elk 1.5.2
* sirmordred 1.2.3
The following list describes the changes by component:
### grimoirelab-toolkit
* Update Poetry's package dependencies
### kidash
* Update Poetry's package dependencies
### sortinghat
* Update Poetry's package dependencies
### cereslib
* Update Poetry's package dependencies
### perceval
* Update Poetry's package dependencies
### perceval-mozilla
* Update Poetry's package dependencies
### perceval-opnfv
* Update Poetry's package dependencies
### perceval-puppet
* Update Poetry's package dependencies
### perceval-weblate
* Update Poetry's package dependencies
### graal
* Update Poetry's package dependencies
### grimoire-elk
**Bug fixes:**
* UTF-8 handling in OpenSearch for Git Areas of code\
Fixed an issue in the OpenSearch integration where some documents in
Git areas of code study fail due to invalid UTF-8 characters.
### sirmordred
* Update Poetry's package dependencies
## GrimoireLab 1.17.1 - (2025-10-31)
**New components:**
* grimoirelab-toolkit 1.2.1
* kidash 1.1.2
* sortinghat 1.12.1
* cereslib 1.1.2
* perceval 1.4.1
* perceval-mozilla 1.2.2
* perceval-opnfv 1.1.2
* perceval-puppet 1.1.2
* perceval-weblate 1.1.2
* graal 1.2.2
* grimoire-elk 1.5.1
* sirmordred 1.2.2
The following list describes the changes by component:
### grimoirelab-toolkit
* Update Poetry's package dependencies
### kidash
* Update Poetry's package dependencies
### sortinghat
**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.
### cereslib
* Update Poetry's package dependencies
### perceval
* Update Poetry's package dependencies
### perceval-mozilla
* Update Poetry's package dependencies
### perceval-opnfv
* Update Poetry's package dependencies
### perceval-puppet
* Update Poetry's package dependencies
### perceval-weblate
* Update Poetry's package dependencies
### graal
* Update Poetry's package dependencies
### grimoire-elk
* Update Poetry's package dependencies
### sirmordred
* Update Poetry's package dependencies
## GrimoireLab 1.17.0 - (2025-10-10)
**New components:**
* grimoirelab-toolkit 1.2.0
* kidash 1.1.1
* sortinghat 1.12.0
* cereslib 1.1.1
* perceval 1.4.0
* perceval-mozilla 1.2.1
* perceval-opnfv 1.1.1
* perceval-puppet 1.1.1
* perceval-weblate 1.1.1
* graal 1.2.1
* grimoire-elk 1.5.0
* sirmordred 1.2.1
The following list describes the changes by component:
### grimoirelab-toolkit
**New features:**
* Identity management functions\
Introduce a new module for managing identities. It includes functions
to generate a UUID based on identity data and to convert Unicode
strings to their unaccented form.
### kidash
* Update Poetry's package dependencies
### sortinghat
**New features:**
* Merge identities when adding a LinkedIn profile (#987)\
When a user tries to add a LinkedIn identity that already exists to a
profile, the user interface now offers the option to merge the
identities.
* Redirect to the original URL after user inactivity (#995)\
After logging in, users are now redirected to the page they were
visiting when they were logged out due to inactivity.
* Improved UI for merge recommendations\
The user interface now shows more than one merge recommendation at a
time, and recommendations for an individual are now grouped so they
can be managed in batches.
**Bug fixes:**
* Remove multiple LinkedIn identities (#1008)\
The user interface became stuck when multiple individuals were
removed using the option 'Remove Linkedin profile' on the individuals
view.
* GraphQL task_id type changed and interval value conversion\
Updated task_id fields in DeleteScheduledTask and UpdateScheduledTask
to use graphene.ID() instead of graphene.Int(). In Graphene v3, this
caused type errors because a string value was being passed instead of
an integer. Also converted interval values to numbers in the
ImporterModal and SettingsGeneral components to prevent similar type
errors, since Graphene v3 expects numeric values instead of strings.
* Error of duplicated identities fixed during the import\
Duplicated identities found during the import process weren't property
handled which made the process to stop with an exception.
* Importer job rescheduled fixed\
Fixes a bug that caused the importer to always use the same start date
when importing identities after being rescheduled. It now uses the
start date of the current job as from_date for the next execution.
* Case-insensitive matching for criteria\
Convert the matching criteria to lowercase. This allows for case-
insensitive comparisons, improving the matching accuracy.
* Table showing jobs failing for offset-naive datetimes\
Showing jobs in the table combining scheduled jobs and one-time jobs
failed.
### cereslib
**Bug fixes:**
* Time zone for Git aoc study updated\
In Git areas of code study use the time zone (`tz` field) from the
author date instead of the committer date to be the same as Git index
dates. Also include `committer_tz` in the index so it is available if
needed.
### perceval
**New features:**
* New trailers for Git commits\
The list of recognized trailers in Git has been expanded using the
ones listed by the [Git documentation](https://git-
scm.com/docs/SubmittingPatches#sign-off).
### perceval-mozilla
**Bug fixes:**
* Handle Kitsune server errors\
This change adds retry logic for HTTP 500 errors when fetching
answers. Ignores the answers after several retries.
### perceval-opnfv
* Update Poetry's package dependencies
### perceval-puppet
* Update Poetry's package dependencies
### perceval-weblate
* Update Poetry's package dependencies
### graal
* Update Poetry's package dependencies
### grimoire-elk
**Performance improvements:**
* [github] Raw mapping updated\
Update `commit_message`, `body`, and `diff_hunk` fields to non-indexed
objects in raw index to improve performance. This change requires
reindex of the GitHub index.
### sirmordred
* Update Poetry's package dependencies
## GrimoireLab 1.16.0 - (2025-09-23)
**New components:**
* grimoirelab-toolkit 1.1.0
* kidash 1.1.0
* sortinghat 1.11.0
* cereslib 1.1.0
* sigils 1.2.0
* perceval 1.3.4
* perceval-mozilla 1.2.0
* perceval-opnfv 1.1.0
* perceval-puppet 1.1.0
* perceval-weblate 1.1.0
* graal 1.2.0
* grimoire-elk 1.4.0
* sirmordred 1.2.0
The following list describes the changes by component:
### grimoirelab-toolkit
**New features:**
* Increased minimum version for Python to 3.10\
Python 3.9 reaches the end of life in October 2025. This means it
won't receive new updates or patches to fix security issues.
GrimoireLab supports Python 3.10 and higher from now on.
### kidash
**New features:**
* Increased minimum version for Python to 3.10\
Python 3.9 reaches the end of life in October 2025. This means it
won't receive new updates or patches to fix security issues.
GrimoireLab supports Python 3.10 and higher from now on.
### sortinghat
**New features:**
* Recommendations based on GitHub-generated email addresses (#867)\
Merge recommendations can now match GitHub profiles to GitHub-
generated emails (<username>@users.noreply.github.com). Individuals
can also be automatically unified with this criteria.
* Increased minimum version for Python to 3.10\
Python 3.9 reaches the end of life in October 2025. This means it
won't receive new updates or patches to fix security issues.
GrimoireLab supports Python 3.10 and higher from now on.
**Bug fixes:**
* Enforce merge recommendation integrity (#993)\
Ensure merge recommendations are unique between individuals and
prevent creating recommmendations with the same individual.
* Automatic affiliation fixed and reduced results (#994)\
Fixes a bug that caused running the affiliate process to overwrite
existing affiliation dates. Now, the job result only includes
individuals who were newly affiliated.
* Unavailable Individuals in Recommendations\
Recommendations now handle cases where an individual has been removed
or merged, preventing errors when creating new recommendations.
* Django static files configuration\
Update the Django STORAGES setting for static files, ensuring
compatibility with Django 5.2.
**Performance improvements:**
* SortingHat API slow due to changelog information\
Improve SortingHat API performance by adding an index to the
transactions table in the database.
* Oraganizations endpoint performance improvement\
Improve the performance of the organizations endpoint, reducing the
loading time of the organizations table
### cereslib
**New features:**
* Increased minimum version for Python to 3.10\
Python 3.9 reaches the end of life in October 2025. This means it
won't receive new updates or patches to fix security issues.
GrimoireLab supports Python 3.10 and higher from now on.
### sigils
**New features:**
* Increased minimum version for Python to 3.10\
Python 3.9 reaches the end of life in October 2025. This means it
won't receive new updates or patches to fix security issues.
GrimoireLab supports Python 3.10 and higher from now on.
### perceval
* Update Poetry's package dependencies
### perceval-mozilla
**New features:**
* Increased minimum version for Python to 3.10\
Python 3.9 reaches the end of life in October 2025. This means it
won't receive new updates or patches to fix security issues.
GrimoireLab supports Python 3.10 and higher from now on.
### perceval-opnfv
**New features:**
* Increased minimum version for Python to 3.10\
Python 3.9 reaches the end of life in October 2025. This means it
won't receive new updates or patches to fix security issues.
GrimoireLab supports Python 3.10 and higher from now on.
### perceval-puppet
**New features:**
* Increased minimum version for Python to 3.10\
Python 3.9 reaches the end of life in October 2025. This means it
won't receive new updates or patches to fix security issues.
GrimoireLab supports Python 3.10 and higher from now on.
### perceval-weblate
**New features:**
* Increased minimum version for Python to 3.10\
Python 3.9 reaches the end of life in October 2025. This means it
won't receive new updates or patches to fix security issues.
GrimoireLab supports Python 3.10 and higher from now on.
### graal
**New features:**
* Increased minimum version for Python to 3.10\
Python 3.9 reaches the end of life in October 2025. This means it
won't receive new updates or patches to fix security issues.
GrimoireLab supports Python 3.10 and higher from now on.
### grimoire-elk
**New features:**
* Increased minimum version for Python to 3.10\
Python 3.9 reaches the end of life in October 2025. This means it
won't receive new updates or patches to fix security issues.
GrimoireLab supports Python 3.10 and higher from now on.
**Bug fixes:**
* Size parameter for Areas of code\
Include block_size parameter to the Areas of code study. It allows a
better control over data processing in chunks, and allow to define a
lower value when the items to process are big.
* GitHub types unified\
The item types for pull requests in the GitHub indices had different
values. While in `github_pull_requests` the type was `pull request`,
the type in `github2_pull_request` was `pull_request` (with
underscore). We have fixed this bug unifing the type to
`pull_request`. You will have to re-enrich indices in your instance to
update old items.
* Sync AOC and Git raw indexes error\
An error occurred in the Areas of Code study, where syncing the AOC
and the Git raw index caused an infinite loop due to using different
dates for filtering
* [github/raw] huge term in data.auto_merge.commit_message handled\
This fixes a potential huge term in the "data.auto
merge.commit_message" field during the `github2:pull` backend's
collection phase by converting the field to text.
* Missing creation_date field in Bugzilla\
For some Bugzilla bugs, the creation date was unavailable. In these
cases, the first activity date is now used to display the bug's
creation date.
**New deprecations:**
* ElasticSearch 6 no longer supported\
Elasticsearch 6 is outdated and no longer receives updates. To
continue development with new features and support for later versions
of Elasticsearch and OpenSearch, we have had to drop support for ES 6.
### sirmordred
**New features:**
* Increased minimum version for Python to 3.10\
Python 3.9 reaches the end of life in October 2025. This means it
won't receive new updates or patches to fix security issues.
GrimoireLab supports Python 3.10 and higher from now on.
## GrimoireLab 1.15.1 - (2025-08-21)
**New components:**
* kidash 1.0.17
* sortinghat 1.10.1
* cereslib 1.0.17
* perceval 1.3.3
* perceval-mozilla 1.1.6
* perceval-opnfv 1.0.19
* perceval-puppet 1.0.19
* perceval-weblate 1.0.19
* graal 1.1.10
* grimoire-elk 1.3.12
* sirmordred 1.1.14
The following list describes the changes by component:
### kidash
* Update Poetry's package dependencies
### sortinghat
* Update Poetry's package dependencies
### cereslib
* Update Poetry's package dependencies
### perceval
**Bug fixes:**
* Latest dulwich version contains a bug (#876)\
The latest releases of Dulwich contain a bug that prevents Perceval
from retrieving the most recent items from repositories. Pin the
dependency to the last known working version until a Dulwich release
with a fix is available.
### perceval-mozilla
* Update Poetry's package dependencies
### perceval-opnfv
* Update Poetry's package dependencies
### perceval-puppet
* Update Poetry's package dependencies
### perceval-weblate
* Update Poetry's package dependencies
### graal
* Update Poetry's package dependencies
### grimoire-elk
* Update Poetry's package dependencies
### sirmordred
* Update Poetry's package dependencies
## GrimoireLab 1.15.0 - (2025-08-18)
**New components:**
* grimoirelab-toolkit 1.0.14
* kidash 1.0.16
* sortinghat 1.10.0
* cereslib 1.0.16
* perceval 1.3.2
* perceval-mozilla 1.1.5
* perceval-opnfv 1.0.18
* perceval-puppet 1.0.18
* perceval-weblate 1.0.18
* graal 1.1.9
* grimoire-elk 1.3.11
* sirmordred 1.1.13
The following list describes the changes by component:
### grimoirelab-toolkit
* Update Poetry's package dependencies
### kidash
* Update Poetry's package dependencies
### sortinghat
**New features:**
* Post processing of imported individuals\
The new method `post_process_individual` allows to post-process
individuals after they are imported. For example, you might want to
merge the imported identities with others already existing using
custom criteria, or to set the profile of the new identities in using