forked from chaoss/grimoirelab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
2643 lines (1767 loc) · 67.8 KB
/
NEWS
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.7.0 - (2024-10-15)
**New components:**
* grimoirelab-toolkit 1.0.6
* kidash 1.0.7
* sortinghat 1.5.0
* cereslib 1.0.6
* perceval 1.0.8
* perceval-mozilla 1.0.8
* perceval-opnfv 1.0.8
* perceval-puppet 1.0.8
* perceval-weblate 1.0.8
* graal 1.0.8
* grimoire-elk 1.3.0
* sirmordred 1.1.2
The following list describes the changes by component:
### grimoirelab-toolkit
* Update Poetry's package dependencies
### kidash
* Update Poetry's package dependencies
### sortinghat
**New features:**
* Mark individuals as reviewed\
Individuals can now be marked as reviewed to keep track of which
profiles have already been checked and when. A profile can be marked
as reviewed more than once, it will show the date of the last review.
If there have been any changes to the profile data since the last
review, the review button displays a warning icon. The list of
individuals can be filtered by whether they have been reviewed and by
their review date. The list can also be ordered by review date.
**Bug fixes:**
* Wrong arrong direction when merging recommendations (#934)\
When recommendations were merged, the arrow showing the direction of
the merge was wrong. It showed `foo → bar` but the resulting identity
will be named `foo` instead of `bar`. The arrow now points in the
other direction showing that `bar` will be merged on `foo`.
### 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:**
* Keywords data on enriched items\
Keywords field is included now on the enriched items of bugzilla and
bugzillarest indices.
* New reponse times on bugzilla items\
The Bugzilla enriched items include two new fields to track response
times on these type of repositories. The field
`time_to_first_attention` is the the time expressed in days between
the ticket creation and the first comment from a contributor different
from the author creating the bug. The field `last_comment_date` is the
date of the last comment posted in the bug.
**Bug fixes:**
* All references processed for the reference analysis study\
The `enrich_reference_analysis` study analyzes the cross-references
between "issues" and "pull request". When we use an aggregations
query, it returns only the first 10 items (ElasticSearch/OpenSearch by
default). By using 'composite aggregations', we can paginate the
result and thus, obtain all the references.
### sirmordred
* Update Poetry's package dependencies
## GrimoireLab 1.6.0 - (2024-09-23)
**New components:**
* grimoirelab-toolkit 1.0.5
* kidash 1.0.6
* sortinghat 1.4.0
* cereslib 1.0.5
* sigils 1.1.1
* perceval 1.0.7
* perceval-mozilla 1.0.7
* perceval-opnfv 1.0.7
* perceval-puppet 1.0.7
* perceval-weblate 1.0.7
* graal 1.0.7
* grimoire-elk 1.2.0
* sirmordred 1.1.1
The following list describes the changes by component:
### grimoirelab-toolkit
**Dependencies updateds:**
* Python minimum version updated\
Python 3.8 will reach its end of life in October 2024. Python 3.9 is
the minimum version required by the project.
### kidash
**Dependencies updateds:**
* Python minimum version updated\
Python 3.8 will reach its end of life in October 2024. Python 3.9 is
the minimum version required by the project.
### sortinghat
**New features:**
* Less distracting main identity indicator (#920)\
The star icon that marked an individual's main identity was
distracting and potentially misleading for users. It has changed to a
more subtle indicator since it is not relevant for most users.
* Redirect to the original URL after log in (#925)\
Users are now redirected to the page they originally requested after
they log in.
* Merge organizations when adding an alias\
Users now have the option to merge the organizations when adding an
alias that already exists on the "Edit organization" dialog. That
option was only previously available at the organization's detail
page.
* Customizable trusted sources for username matching\
Enable customization of trusted sources for username matching in
settings. This feature allows to define and manage the trusted data
sources for username matching from the configuration.
**Bug fixes:**
* Users permissions migrated (#849)\
User permissions are stored in a separate table within the database.
These permissions will be automatically migrated when running
`sortinghat-admin upgrade`.
* Update workspace when identities are split (#919)\
When an individual's identities are split, they are shown in the
workspace, but they were only shown the first time. The workspace is
now updated with the new individuals every time.
**Dependencies updateds:**
* Python minimum version updated\
Python 3.8 will reach its end of life in October 2024. Python 3.9 is
the minimum version required by the project. Update the Docker images
to use Python 3.9.
### cereslib
**Dependencies updateds:**
* Python minimum version updated\
Python 3.8 will reach its end of life in October 2024. Python 3.9 is
the minimum version required by the project.
### sigils
**Dependencies updateds:**
* Python minimum version updated\
Python 3.8 will reach its end of life in October 2024. Python 3.9 is
the minimum version required by the project.
### perceval
**Dependencies updateds:**
* Python minimum version updated\
Python 3.8 will reach its end of life in October 2024. Python 3.9 is
the minimum version required by the project.
### perceval-mozilla
**Dependencies updateds:**
* Python minimum version updated\
Python 3.8 will reach its end of life in October 2024. Python 3.9 is
the minimum version required by the project.
### perceval-opnfv
**Dependencies updateds:**
* Python minimum version updated\
Python 3.8 will reach its end of life in October 2024. Python 3.9 is
the minimum version required by the project.
### perceval-puppet
**Dependencies updateds:**
* Python minimum version updated\
Python 3.8 will reach its end of life in October 2024. Python 3.9 is
the minimum version required by the project.
### perceval-weblate
**Dependencies updateds:**
* Python minimum version updated\
Python 3.8 will reach its end of life in October 2024. Python 3.9 is
the minimum version required by the project.
### graal
**Dependencies updateds:**
* Python minimum version updated\
Python 3.8 will reach its end of life in October 2024. Python 3.9 is
the minimum version required by the project.
### grimoire-elk
**New features:**
* Status in SUMO enriched index\
Add the missing status in the SUMO backend. The status could be
`solved`, `archived`, `locked` or `open`.
**Bug fixes:**
* Avoid UNDEFINED values in author fields\
Avoid `-- UNDEFINED --` values for all SortingHat fields when Mordred
loses connection to the SortingHat server during the enrichment or
autorefresh execution. It will keep the values of the `name`, `email`,
`id` and `uuid` fields.
* Handle OpenSearch page info on pagination\
In OpenSearch and ElasticSearch < 7.x the page info on pagination is
different. This will handle both of them.
**Dependencies updateds:**
* Python minimum version updated\
Python 3.8 will reach its end of life in October 2024. Python 3.9 is
the minimum version required by the project.
### sirmordred
**Dependencies updateds:**
* Python minimum version updated\
Python 3.8 will reach its end of life in October 2024. Python 3.9 is
the minimum version required by the project.
## GrimoireLab 1.5.0 - (2024-08-30)
**New components:**
* kidash 1.0.5
* sortinghat 1.3.0
* perceval 1.0.6
* perceval-mozilla 1.0.6
* perceval-opnfv 1.0.6
* perceval-puppet 1.0.6
* perceval-weblate 1.0.6
* graal 1.0.6
* grimoire-elk 1.1.5
* sirmordred 1.1.0
The following list describes the changes by component:
### kidash
* Update Poetry's package dependencies
### sortinghat
**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.
### perceval
**Bug fixes:**
* Fix issue #782 (#782)\
The issue was that perceval would not delete old tags from upstream
references. This change deletes tags locally if tags are deleted
upstream.
### 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:**
* Git branches study improved\
Previously, while the branches study was running, the `branches` field
remained empty or partially filled until the study was completed,
leading to incorrect data being displayed on the dashboard. With this
change, the branches field is updated only after the study has
finished.
### sirmordred
**Performance improvements:**
* Reduced the number of connections to SortingHat\
Mordred makes a lot of connections to the SortingHat server which
could cause the uWSGI queue to fill up. When the uWSGI queue is full,
Mordred cannot connect to the SortingHat server.
# GrimoireLab 1.0.0
For eight years, we have been working to produce the best platform for
software development analytics possible. With the work of more than
150 developers and after over 11,600 commits, we’re excited to announce
the release of the first major version of GrimoireLab.
GrimoireLab is an evolution of the work done during more than 10 years by
[Bitergia](https://bitergia.com/), LibreSoft URJC research group, and several
contributors in [Metrics Grimoire](http://metricsgrimoire.github.io/)
and [VizGrimorie](http://vizgrimoire.bitergia.org/) projects.
Since 2017, GrimoireLab has been part of The Linux Foundation
[CHAOSS Software](http://chaoss.community) community as one of its founding
projects.
GrimoireLab has become the de facto standard for open source project
health dashboards. It has been used by some of the most important
software companies and open source foundations in the world.
The platform has also been used as the underlying foundation for
other applications, including
[Bitergia Analytics](https://github.com/bitergia-analytics),
[OSS Compass](https://compass.gitee.com/),
[LFX Insights](https://lfx.linuxfoundation.org/tools/insights/),
[Cauldron](https://gitlab.com/cauldronio/), and
[Mystic](https://opensource.ieee.org/rit/mystic-group).
This release of GrimoireLab includes:
- An automated platform to generate software analytics and insights.
- Data collection from more than 30 data sources.
- Generation of more than 150 metrics and visualizations to understand activity,
performance, and community of open source projects.
- Identities manager to track the activity of an individual across platforms
and organizations.
- Integration with third-party applications to visualize and analyze data
(Kibana/OpenSearch Dashboards/Jupiter Notebooks).
This release would not have been possible without the help of the entire
community. We are deeply thankful to all our users. We would especially
like to thank Álvaro del Castillo, Valerio Cosentino, Jesús González-Barahona,
Alberto Pérez García-Plaza, J. Manrique López, Venu Vardhan Reddy Tekula,
David Moreno, Gregorio Robles, Andy Grunwald, and the members of the
CHAOSS project.
Special recognition to [Bitergia](https://bitergia.com/) and
[The Document Foundation](https://www.documentfoundation.org/)
for being early adopters.
The GrimoireLab Developers.
## GrimoireLab 0.24.0 - (2024-03-27)
**New components:**
* grimoirelab-toolkit 0.4.5
* kidash 0.6.9
* sortinghat 0.21.2
* cereslib 0.5.6
* perceval 0.25.0
* perceval-mozilla 0.4.3
* perceval-opnfv 0.2.25
* perceval-puppet 0.2.25
* perceval-weblate 0.2.25
* graal 0.4.25
* grimoire-elk 0.111.1
* sirmordred 0.10.11
The following list describes the changes by component:
### grimoirelab-toolkit
* Update Poetry's package dependencies
### kidash
* Update Poetry's package dependencies
### sortinghat
**Bug fixes:**
* Refetch general settings after they are changed\
The "unify" and "affiliate" switches on the general settings page
sometimes reflected outdated information. The page now reloads the
data everytime it is visited to keep it updated.
**Dependencies updateds:**
* Migration to Vue 3\
Vue 2 reached end of life on December 2023 and is no longer mantained.
### cereslib
* Update Poetry's package dependencies
### perceval
**New features:**
* Include recovery mode for Git backend\
Include a new option in Git that allows continuing to fetch commits
from the previous execution using the last commit. The option is
`--recovery <commit>`. The last commit can be obtained from the offset
in the summary object of the last execution or the last item.
### 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:**
* Kitsune inmerse terms error\
Update raw mapping of Kitsune indexes to handle immense terms found in
`data.answers_data.content`, and `data.content`.
### sirmordred
* Update Poetry's package dependencies
## GrimoireLab 0.23.0 - (2024-03-12)
**New components:**
* grimoirelab-toolkit 0.4.4
* kidash 0.6.8
* sortinghat 0.21.1
* cereslib 0.5.5
* perceval 0.24.1
* perceval-mozilla 0.4.2
* perceval-opnfv 0.2.24
* perceval-puppet 0.2.24
* perceval-weblate 0.2.24
* graal 0.4.24
* grimoire-elk 0.111.0
* sirmordred 0.10.10
The following list describes the changes by component:
### grimoirelab-toolkit
* Update Poetry's package dependencies
### kidash
* Update Poetry's package dependencies
### sortinghat
**Bug fixes:**
* Profile view displays correct recommendations (#864)\
The profile view now correctly displays all recommendations for an
individual, excluding those that have been dismissed.
### 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:**
* Kitsune demography study\
Include demography study in Kitsune (SUMO). And update the index to
include standard fields such as a unique identifier (`id`) and some
missing fields like `origin` or `uuid`.
### sirmordred
* Update Poetry's package dependencies
## GrimoireLab 0.22.0 - (2024-03-01)
**New components:**
* grimoirelab-toolkit 0.4.3
* kidash 0.6.7
* sortinghat 0.21.0
* cereslib 0.5.4
* perceval 0.24.0
* perceval-mozilla 0.4.1
* perceval-opnfv 0.2.23
* perceval-puppet 0.2.23
* perceval-weblate 0.2.23
* graal 0.4.23
* grimoire-elk 0.110.0
* sirmordred 0.10.9
The following list describes the changes by component:
### grimoirelab-toolkit
* Update Poetry's package dependencies
### kidash
* Update Poetry's package dependencies
### sortinghat
**New features:**
* Dedicated queues in multi-tenancy\
This new feature allows to run jobs in dedicated queues when multi-
tenancy is active. Therefore, tenants that require more computing
time, can run in a separate environment without taking the resources
of others. This new feature changes the format of the `tenants.json`
file, so please update it before you install this new version. You can
find more info about how to configure it in the `README.md` file.
**Bug fixes:**
* Match recommendations job fixed\
Fix the bug in recommend matches jobs that was causing it not to
recommend any matches.
**Dependencies updateds:**
* Drop support of Node.js <18\
Versions 14 to 16 of Node.js are no longer mantained. The current
supported versions are 18 to 20.
### cereslib
* Update Poetry's package dependencies
### perceval
**New deprecations:**
* NNTP backend deprecated\
NNTP is deprecated. It is not compatible with Python 3.11.8 and will
be removed in a future version.
### 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:**
* Kitsune raw mapping updated\
Update the mapping for Kitsune backend to fix an error inserting
Perceval items in the raw index when the field 'data.metadata.value'
is too big.
### sirmordred
* Update Poetry's package dependencies
## GrimoireLab 0.21.0 - (2024-02-19)
**New components:**
* sortinghat 0.20.0
* perceval-mozilla 0.4.0
* grimoire-elk 0.109.8
* sirmordred 0.10.8
The following list describes the changes by component:
### sortinghat
**New features:**
* Organization aliases (#857)\
Organizations can be known by different names. To avoid duplicates,
organizations can have aliases. Searching for an organization using
one of its aliases returns the organization. When an organization is
merged into another, its name becomes an alias of the target
organization. If a name exists as an alias, no organization can be
created with that name and viceversa. An organization's aliases can be
added and deleted both on the organizations table and the single
organization view.
### perceval-mozilla
**New features:**
* Retry Kitsune when rate limited\
Kitsune now includes the `--sleep-for-rate` option to manage `429 Too
Many Requests` errors. You can configure retries and sleep duration
using the `--max-retries` and `--sleep-time` options respectively.
### grimoire-elk
* Update Poetry's package dependencies
### sirmordred
* Update Poetry's package dependencies
## GrimoireLab 0.20.2 - (2024-02-08)
**New components:**
* kidash 0.6.6
* sortinghat 0.19.2
* cereslib 0.5.3
* perceval 0.23.6
* perceval-mozilla 0.3.22
* perceval-opnfv 0.2.22
* perceval-puppet 0.2.22
* perceval-weblate 0.2.22
* graal 0.4.22
* grimoire-elk 0.109.7
* sirmordred 0.10.7
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
* 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:**
* Bug on some backends enrichment\
Mediawiki, Meetup are Jira were failing to retrieve the enrollment for
an identity.
### sirmordred
* Update Poetry's package dependencies
## GrimoireLab 0.20.1 - (2024-02-01)
**New components:**
* sortinghat 0.19.1
* graal 0.4.21
* grimoire-elk 0.109.6
* sirmordred 0.10.6
The following list describes the changes by component:
### sortinghat
**Bug fixes:**
* Fix "Table 'django_session' doesn't exist" error\
Fixes the "Table 'django_session' doesn't exist" error for new
installs. For existing databases, run the following commands to create
the table: ``` django-admin migrate --fake sessions zero django-admin
migrate ```
### graal
* Update Poetry's package dependencies
### grimoire-elk
* Update Poetry's package dependencies
### sirmordred
* Update Poetry's package dependencies
## GrimoireLab 0.20.0 - (2024-01-30)
**New components:**
* grimoirelab-toolkit 0.4.2
* kidash 0.6.5
* sortinghat 0.19.0
* cereslib 0.5.2
* perceval 0.23.5
* perceval-mozilla 0.3.21
* perceval-opnfv 0.2.21
* perceval-puppet 0.2.21
* perceval-weblate 0.2.21
* graal 0.4.20
* grimoire-elk 0.109.5
* sirmordred 0.10.5
The following list describes the changes by component:
### grimoirelab-toolkit
* Update Poetry's package dependencies
### kidash
* Update Poetry's package dependencies
### sortinghat
**New features:**
* Unify identities with same source\
Include a new option to only recommend or unify identities from
trusted sources like GitHub or GitLab that have the same username and
backend.
**Bug fixes:**
* Use correct base URL for login and change password API calls (#851)\
The URLs called to login and change password now use the public path
found in vue.config.js if no API URL is specified.
* Authentication required fixed\
When the AUTHENTICATION_REQUIRED setting is set to False, any query to
the API is allowed.
* Display individual's most recent organization\
The individual's current affiliation is now the most recent one
instead of the oldest.
* CSRF token is only required on web requests\
The GraphQL API required the 'X-CSRFToken' header, but the token could
only be retrieved by making a GET request. Now, requests authenticated
using JWT don't need to provide the CSRF token and only the user
interface, which is vulnerable to CSRF attacks and uses a different
authentication, requires it.
**Performance improvements:**
* Performance of organizations query\
Improve organization query for the table by avoiding individual
queries.
### 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 0.19.0 - (2023-12-19)
**New components:**
* grimoirelab-toolkit 0.4.1
* kidash 0.6.4
* sortinghat 0.18.0
* cereslib 0.5.1
* perceval 0.23.4
* perceval-mozilla 0.3.20
* perceval-opnfv 0.2.20
* perceval-puppet 0.2.20
* perceval-weblate 0.2.20
* graal 0.4.19
* grimoire-elk 0.109.4
* sirmordred 0.10.4
The following list describes the changes by component:
### grimoirelab-toolkit
* Update Poetry's package dependencies
### kidash
**Dependencies updateds:**
* Downgrade urllib3 from ^2.0.7 to ^1.26\
Downgrade the version of urllib3 to match Perceval version.
### sortinghat
**New features:**
* Link to profile in individual cards (#837)\
The name on the individuals cards now links to the member's profile.
* Open calendar to the side of the date input (#838)\
The date picker calendar that is used to edit affiliation dates now
opens to the right side of the text field to avoid covering it.
* Improved readability of job settings\
The options for the "unify" and "recommend matches" jobs are now
displayed in a clearer way.
* Improved loading time when looking for organizations\
The autocomplete field that is used to affiliate individuals to
organizations now makes fewer and lighter requests to find them,
resulting in faster loading times.
**Performance improvements:**
* Performance on affiliation recommendations improved\
We have improved the affiliation performance by one order of magnitude
removing unnecessary queries to the database.
### cereslib
* Update Poetry's package dependencies
### perceval
* Update Poetry's package dependencies
### perceval-mozilla
* Update Poetry's package dependencies