forked from chaoss/grimoirelab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWS
1424 lines (975 loc) · 38.2 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 0.15.1 - (2023-10-20)
**New components:**
The following list describes the changes by component:
## GrimoireLab 0.15.0 - (2023-10-20)
**New components:**
* grimoirelab-toolkit 0.4.0
* kidash 0.6.0
* sortinghat 0.14.0
* cereslib 0.4.3
* sigils 0.3.0
* perceval 0.23.0
* perceval-mozilla 0.3.16
* perceval-opnfv 0.2.16
* perceval-puppet 0.2.16
* perceval-weblate 0.2.16
* graal 0.4.14
* grimoire-elk 0.109.0
* sirmordred 0.10.0
The following list describes the changes by component:
### grimoirelab-toolkit
**Feature removals:**
* Drop Python 3.7 support\
Python 3.7 reaches the end of life in June 2023. This means it won't
receive new updates or patches to fix security issues. Therefore, this
package only works with Python >= 3.8 from now on.
### kidash
**Feature removals:**
* Drop Python 3.7 support\
Python 3.7 reaches the end of life in June 2023. This means it won't
receive new updates or patches to fix security issues. Therefore, this
package only works with Python >= 3.8 from now on.
**Dependencies updateds:**
* Bump urllib3 version\
Bump urllib3 from ^1.26 to ^2.0.7
### sortinghat
**New features:**
* Strict criteria for merge recommendations (#812)\
The merge recommendations filter out invalid email adresses and names
that don't have at least a first and last name when looking for
matches. To disable this behavior, set the `strict` parameter on
`recommendMatches` or `unify` to `false`.
* Text field to update enrollment dates (#819)\
Users have the option to enter the dates on a text field when editing
affiliations.
* Improved organization selector (#820)\
The organization selector that is used to affiliate individuals now
has the option to create an organization if the desired one is not
found. Its size is also increased to improve the readability of longer
names.
* API method to create a scheduled task\
The `add_scheduled_task` API method adds a new scheduled task to the
registry.
* Manage app settings from the user interface\
Users can configure automatic affiliations, profile unification and
identity data synchronization from the new `Settings` section on the
user interface.
**Bug fixes:**
* Remove tasks that fail to be scheduled\
When there was an issue with the Redis connection when a task was
created, the task was added to the database but there was not
scheduled job linked to it. Tasks are now removed from the database
and an error is raised in this case.
**Dependencies updateds:**
* Add Python 3.9 and drop 3.7 support\
Python 3.7 reached the end of life phase on June 27 2023 and is no
longer supported.
### cereslib
**Dependencies updateds:**
* Add Python 3.9 and 3.10 and drop 3.7 support\
Python 3.7 reached the end of life phase on June 27 2023 and is no
longer supported.
### sigils
**Feature removals:**
* Drop Python 3.7 support\
Python 3.7 reaches the end of life in June 2023. This means it won't
receive new updates or patches to fix security issues. Therefore, this
package only works with Python >= 3.8 from now on.
### perceval
**New features:**
* Jira authentication with token (#813)\
Authentication in `jira` backend is supported using personal access
tokens. Jira Core/Software (8.14 and later), Jira Service Management
(4.15 and later) Data Center and server editions can use personal
access tokens without a username. For Jira Cloud, username and token
are required. Usage: perceval jira <YOUR_JIRA_SERVER> -u <USERNAME> -p
<PASSWORD> perceval jira <YOUR_JIRA_SERVER> -t <PERSONAL_ACCESS_TOKEN>
perceval jira <YOUR_JIRA_CLOUD_SITE> -u <USERNAME> -t <TOKEN>
* Clonfluence authentication with personal access tokens\
Authentication in `confluence` backend is supported using personal
access tokens. Confluence Data Center and server editions 7.9 and
later can use personal access tokens without a username. For
Confluence Cloud, username and token are required.
**Feature removals:**
* Drop Python 3.7 support\
Python 3.7 reaches the end of life in June 2023. This means it won't
receive new updates or patches to fix security issues. Therefore, this
package only works with Python >= 3.8 from now on.
**Dependencies updateds:**
* Bump urllib3 version\
Bump urllib3 from ^1.26 to ^2.0.7
### perceval-mozilla
**Dependencies updateds:**
* Add Python 3.10 and 3.11 and drop 3.7 support\
Python 3.7 reached the end of life phase on June 27 2023 and is no
longer supported.
### perceval-opnfv
**Dependencies updateds:**
* Add Python 3.10 and 3.11 and drop 3.7 support\
Python 3.7 reached the end of life phase on June 27 2023 and is no
longer supported.
### perceval-puppet
**Dependencies updateds:**
* Add Python 3.10 and 3.11 and drop 3.7 support\
Python 3.7 reached the end of life phase on June 27 2023 and is no
longer supported.
### perceval-weblate
**Dependencies updateds:**
* Add Python 3.10 and 3.11 and drop 3.7 support\
Python 3.7 reached the end of life phase on June 27 2023 and is no
longer supported.
### graal
**Dependencies updateds:**
* Update markdown-it-py version\
Use `markdown-it-py^2.0.0` to be aligned with Perceval packages.
* Add Python 3.9 and drop 3.7 support\
Python 3.7 reached the end of life phase on June 27 2023 and is no
longer supported.
### grimoire-elk
**New features:**
* Anonymize repository URLs in graal backend\
The raw data generated by the graal backend had non-anonymized URLs on
the meta fields 'origin' and 'tag'. This was necessary to generate
enriched data for non-public repositories.
* Bug description in Bugzilla\
Include the description of the bugs in Bugzilla. The new fields are
'description' and 'description_analyzed'. The second allows to query
any of the words of the description.
* SortingHat backend name per data source\
Allow to define the name of the backend for the identities stored in
SortingHat. From now on github2 is renamed as github in SortingHat
identities.
**Bug fixes:**
* Individual `id` incorrectly assigned\
Correct a bug that results in enriched items using the individual ID
as the identity ID, and vice versa.
* Error in OpenSearch response stops demography study\
Fix an issue that stops demography study when OpenSearch occasionally
provides a response without some expected fields.
* Undefined identities in GitHub comments\
Fix a bug that causes certain identities from commentaries to not be
imported into SortingHat, resulting in them appearing as UNDEFINED in
OpenSearch.
**Dependencies updateds:**
* Add Python 3.9 and 3.10 and drop 3.7 support\
Python 3.7 reached the end of life phase on June 27 2023 and is no
longer supported.
* Bump urllib3 version\
Bump urllib3 from ^1.26 to ^2.0.7
* Remove Python pymsql dependency\
Remove the dependency with PyMySQL because it is not used anymore.
### sirmordred
**New features:**
* Refresh identities in a shorter period\
This update significantly reduces the time required for identity
refresh operations on large projects.
**Bug fixes:**
* Missing database parameters for SortingHat\
SortingHat database parameters were not included during the
initialization of the enrich backend.
**Breaking changes:**
* Log format updated with the Mordred project name\
Update the log format of SirMordred and MicroMordred to include the
name of the project.
**Dependencies updateds:**
* Add Python 3.9 and 3.10 and drop 3.7 support\
Python 3.7 reached the end of life phase on June 27 2023 and is no
longer supported.
## GrimoireLab 0.14.0 - (2023-08-06)
**New components:**
* sortinghat 0.13.0
* perceval 0.22.3
* perceval-mozilla 0.3.15
* perceval-opnfv 0.2.15
* perceval-puppet 0.2.15
* perceval-weblate 0.2.15
* graal 0.4.13
* grimoire-elk 0.108.1
* sirmordred 0.9.3
The following list describes the changes by component:
### sortinghat
**Bug fixes:**
* Sub-domain affiliation error (#805)\
The `affiliate` and `recommend affiliations` jobs no longer recommend
matches based on a domain's sub-domains if it is not marked as
`top_domain`.
**New deprecations:**
* Use the task scheduler to import identities\
Manage periodic tasks to import identities with the `scheduleTask`,
`updateScheduledTask` and `deleteScheduledTask` GraphQL mutations. The
tasks that were already scheduled using the `addImportIdentitiesTask`
mutation are kept when the migrations are applied.
### 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.13.0 - (2023-07-23)
**New components:**
* kidash 0.5.9
* sortinghat 0.12.0
* perceval 0.22.2
* perceval-mozilla 0.3.14
* perceval-opnfv 0.2.14
* perceval-puppet 0.2.14
* perceval-weblate 0.2.14
* graal 0.4.12
* grimoire-elk 0.108.0
* sirmordred 0.9.2
The following list describes the changes by component:
### kidash
* Update Poetry's package dependencies
### sortinghat
**New features:**
* Job scheduler\
This new feature allows users to schedule jobs, such as `affiliate` or
`unify`, to run periodically. The tasks can be configured, updated and
deleted using the GraphQL API.
### 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:**
* Enrich items with multiple enrollments\
The `date` field must be a string since improved performance by
decreasing calls to the `str_to_datetime` method.
**Performance improvements:**
* Load identities performance\
Improve the load identities process performance by reducing the number
of queries to SortingHat.
### sirmordred
* Update Poetry's package dependencies
## GrimoireLab 0.12.0 - (2023-07-11)
**New components:**
* grimoirelab-toolkit 0.3.6
* kidash 0.5.8
* sortinghat 0.11.1
* cereslib 0.4.2
* perceval 0.22.1
* perceval-mozilla 0.3.13
* perceval-opnfv 0.2.13
* perceval-puppet 0.2.13
* perceval-weblate 0.2.13
* graal 0.4.11
* grimoire-elk 0.107.0
* sirmordred 0.9.1
The following list describes the changes by component:
### grimoirelab-toolkit
* Update Poetry's package dependencies
### kidash
* Update Poetry's package dependencies
### sortinghat
**Bug fixes:**
* Show an organization's members\
Repeatedly clicking on the button to see the members of an
organization or team on the table sometimes showed the full
individuals list.
### 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
**Performance improvements:**
* Enrichment processing time reduced by 50%\
The general performance was improved reducing the number of calls to
the identities manager (i.g. `SortingHat`). There were some deprecated
calls that weren't needed any longer and also, we increased the cache
of individuals in ELKs. We were also able to reduce the processing
time of the Git backend by converting commit dates only once.
### sirmordred
* Update Poetry's package dependencies
## GrimoireLab 0.11.0 - (2023-06-28)
**New components:**
* sortinghat 0.11.0
* cereslib 0.4.1
* perceval 0.22.0
* perceval-mozilla 0.3.12
* perceval-opnfv 0.2.12
* perceval-puppet 0.2.12
* perceval-weblate 0.2.12
* graal 0.4.10
* grimoire-elk 0.106.0
* sirmordred 0.9.0
The following list describes the changes by component:
### sortinghat
**New features:**
* Merge organizations (#571)\
Merging organizations automatically moves all the domains, teams and
enrollments to the target organization. This is helpful in case an
organization has duplicates or if an organization absorbs another one.
Organizations can be merged using drag and drop on the user interface.
* Recommendations by individual (#779)\
Users can generate matching recommendations for a specific individual
by clicking on the drop down menu on each individual or on the
individual's profile.
**Bug fixes:**
* Show hidden buttons when the mouse is over the table row (#787)\
The buttons to lock an individual or mark it as a bot were only
visible when the mouse wass over the individual's name, which made it
hard to find them. Now they appear when the mouse is over the table
row.
* Email affiliation error (#793)\
Fix an error when the email domain ends with a dot, causing the
affiliation process to stop.
* ADD button doesn't affiliate individuals to organizations\
Affiliating an individual to an organization using the "+ ADD" button
on the table expanded view failed.
* Enrollment filter on organizations view\
Filtering individuals by their affiliation to an organization also
returned results of organizations that contained that name. The filter
now only returns organizations that match the exact name.
### cereslib
* Update Poetry's package dependencies
### perceval
**New features:**
* Git backend alternates mechanism\
Git alternates is a mechanism that lets a repository borrow objects
from another repository on the same machine. Allow to execute Git
Perceval backend using this mechanism.
### 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
**Performance improvements:**
* Refreshing identities performance\
Decrease the time required to execute the autorefresh process by
reducing the number of queries to SortingHat.
### sirmordred
**Performance improvements:**
* Refreshing identities performance\
Decrease the time required to execute the autorefresh process by
reducing the number of queries to SortingHat.
## GrimoireLab 0.10.0 - (2023-05-17)
**New components:**
* kidash 0.5.6
* sortinghat 0.10.0
* perceval 0.21.7
* perceval-mozilla 0.3.11
* perceval-opnfv 0.2.11
* perceval-puppet 0.2.11
* perceval-weblate 0.2.11
* graal 0.4.9
* grimoire-elk 0.105.0
* sirmordred 0.8.0
The following list describes the changes by component:
### kidash
* Update Poetry's package dependencies
### sortinghat
**New features:**
* Show when tables are loading (#772)\
The individuals and organizations tables now show a progress bar to
indicate that the items are loading.
* Organization profiles\
Each organization's full profile is available by clicking its name on
the table or at `/organization/<organization name>`. This view shows
the organization's teams, members and domains.
**Bug fixes:**
* Sort jobs from newest to oldest (#769)\
The jobs page now sorts the list from newest to oldest to show running
jobs first.
* Unreadable large numbers in pagination (#770)\
Large page numbers were not fully visible in the tables pagination.
* Edit a profile name with the pencil button (#773)\
Clicking on an invidual's name no longer activates the edition mode.
The name can now be edited with the pencil button.
* Fix enrollment in individual's profile\
In the individual's profile, the button to add an organization was not
working.
* Job timeouts\
Jobs failed because they exceeded the default timeout while running
tasks involving numerous identities. To ensure successful completion,
we adjusted the timeout setting to an infinite duration, allowing jobs
to finish without interruptions.
**Breaking changes:**
* Multi-tenancy using headers\
Tenants are now selected using the `sortinghat-tenant` header instead
of the host. Proxies and clients using multi-tenancy should include
that header.
**Performance improvements:**
* Performance improved for recommendations and merging jobs\
The performance of the matching and merging algorithms that are used
on these jobs have been considerably improved. These jobs will be 4
times faster than on the previous version.
* uWSGI threads and workers\
Include two new environments variables to define the number of threads
and workers for uWSGI. These new variables are
`SORTINGHAT_UWSGI_WORKERS` and `SORTINGHAT_UWSGI_THREADS`
* SortingHat database performance\
Improve SortingHat performance when there are a lot of individuals in
the database.
**Dependencies updateds:**
* Update dependencies\
Include google-auth as a dependency to fix release issues.
### 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
**Breaking changes:**
* SortingHat configuration\
When SortingHat's multi-tenancy is enabled, the tenant is included in
all clients during execution.
### sirmordred
**New features:**
* Optional configuration for SortingHat\
Include an optional configuration for SortingHat to define the name of
the tenant when multi-tenancy is enabled.
**Bug fixes:**
* Race condition initializing SirMordred\
There was a race condition when SirMordred initializes. The thread
that read the list of projects didn't have time to even start before
the manager finalizes it, so data backends didn't have any have any
input to work with. This bug was originally reported by ncsibra-lab49
on
[grimoirelab#585](https://github.com/chaoss/grimoirelab/issues/585).
## GrimoireLab 0.9.2 - (2023-04-28)
**New components:**
* sortinghat 0.9.3
* graal 0.4.8
* grimoire-elk 0.104.6
* sirmordred 0.7.2
The following list describes the changes by component:
### sortinghat
**Bug fixes:**
* Tenant selection in job fixed\
Tenant selection raised an error when the job context was defined as
keyword argument.
### graal
* Update Poetry's package dependencies
### grimoire-elk
* Update Poetry's package dependencies
### sirmordred
* Update Poetry's package dependencies
## GrimoireLab 0.9.1 - (2023-04-27)
**New components:**
* kidash 0.5.5
* sortinghat 0.9.2
* perceval 0.21.6
* perceval-mozilla 0.3.10
* perceval-opnfv 0.2.10
* perceval-puppet 0.2.10
* perceval-weblate 0.2.10
* graal 0.4.7
* grimoire-elk 0.104.5
* sirmordred 0.7.1
The following list describes the changes by component:
### kidash
* Update Poetry's package dependencies
### sortinghat
**Bug fixes:**
* Static files not included in wheel package\
SortingHat static files were not included in the Python package. The
problem was in the GitHub action.
### 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.9.0 - (2023-04-21)
**New components:**
* grimoirelab-toolkit 0.3.4
* kidash 0.5.4
* sortinghat 0.9.0
* cereslib 0.4.0
* perceval 0.21.4
* perceval-mozilla 0.3.8
* perceval-opnfv 0.2.8
* perceval-puppet 0.2.8
* perceval-weblate 0.2.8
* graal 0.4.5
* grimoire-elk 0.104.3
* sirmordred 0.7.0
The following list describes the changes by component:
### grimoirelab-toolkit
* Update Poetry's package dependencies
### kidash
* Update Poetry's package dependencies
### sortinghat
**New features:**
* Set top domain from UI (#729)\
Add the option to set an organization's domain as top domain from the
UI.
* Order individuals by indentities (#732)\
Adds the option to order the individuals by the number of identities
they have.
* Import identities automatically (#746)\
Create a schema to import identities to SortingHat automatically using
custom backends. The jobs will be executed periodically, at the given
interval. The tasks can be configured using the GraphQL API. To
create a custom importer you need to extend `IdentitiesImporter`,
define a `NAME` for your importer (that will be used in the UI), and
implement `get_identities` method that returns a list of individuals
with the related identities that will be imported into SortingHat. If
your importer requires extra parameters, you must extend the
`__init__` method with the required parameters. Those parameters can
be defined using the API.
* Create account command\
Include a new command to create users in SortingHat. The command can
be executed as `sortinghat-admin create-user`.
* Drag and drop to enroll in teams\
Expanding an organization on the table now shows the full list of
teams. Individuals can be dragged and dropped into a team and
viceversa to affiliate them. The buttons to add, edit and delete
organization and team information are reorganized into a dropdown menu
to simplify the interface.
* Multi-tenancy mode\
SortingHat allows hosting multiple instances with a single service
having each instance's data isolated in different databases. To enable
this feature follow these guidelines: - Set `MULTI_TENANT` settings to
`True`. - Define the tenants in `sortinghat/config/tenants.json`. -
Assign users to tenants with `sortinghat-admin set-user-tenant`
command.
* Verify SSL option for client\
Include an option for the client to verify if the certificate is
valid. By default it is verified.
**Bug fixes:**
* Fix outdated recommendation count (#733)\
The number of remaining recommendations on the UI was wrong each time
a recommendation was applied or dismissed.
* Fix search syntax link (#735)\
Fixes the link to the search syntax page on the search bar.
**Feature removals:**
* Groups table removed from the UI\
Groups and organizations are very similar, and having both tables in
the dashboard can be confusing to users. To simplify the view, the
table is removed from the user interface, but groups remain available
through the API.
### cereslib
**New features:**
* Support for more languages and file types\
The library is able to detect the new file formats and language
formats. This list includes JavaScript, TypeScript, Terraform, among
others.
### perceval
**Bug fixes:**
* Default value for mbox to-date (#810)\
Include a default value for `--to-date` argument in mbox backend.
### 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
**Dependencies updateds:**
* Update package dependencies\
Update package dependencies and pin `markdown-it-py` to a specific
version.
### grimoire-elk
**Bug fixes:**
* Fix typo in SortingHat fields\
Some fields were not updated from the old version of SortingHat. Now
the API returns 'isBot' and 'genderAcc' instead of 'is_bot' and
'gender_acc'.
**Breaking changes:**
* Define date format for Git documents\
Git by default uses a custom date format that is not recognized by
Elastic/OpenSearch. Specify the format for the AuthorDate and
CommitDate fields in Git documents to support the formats usually
returned by `git log`. This allows us to do proper filtering on these
fields such as "all documents with CommitDate before 2020".
* Update support for ES/OS versions > 7.X/1.X\
Currently the support for ES/OS versions > 7.X/1.X is broken due to a
faulty version check. Add a static method to the Elasticsearch object
that correctly checks whether the version is 'legacy' (defined as ES
6.X or OS 0.X) and adds this check to various places in the codebase.
Additionally, fixes an instance where `interval` is used instead of
`fixed_interval`. `interval` was deprecated in ES7.
### sirmordred
**New features:**
* SirMordred logs available on console\
All SirMordred logs are now available on the console output. The
`logs_dir` parameter in the `general` section is optional and it is
only needed if you also want the logs in a file.
* SortingHat option to verify SSL\
Include `verify_ssl` option to SortingHat configuration to verify the
connection with the server. By default it is `True`.
## GrimoireLab 0.8.0 - (2023-02-03)
**New components:**
The following list describes the changes by component:
## GrimoireLab 0.7.4 - (2023-02-03)
**New components:**
* sortinghat 0.8.1
* perceval 0.21.3
* perceval-mozilla 0.3.7
* perceval-opnfv 0.2.7
* perceval-puppet 0.2.7
* perceval-weblate 0.2.7
* graal 0.4.4
* grimoire-elk 0.104.2
* sirmordred 0.6.1
The following list describes the changes by component:
### sortinghat
* 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