forked from chaoss/grimoirelab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
2213 lines (1465 loc) · 54.9 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.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
### 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.18.0 - (2023-11-28)
**New components:**
* kidash 0.6.3
* sortinghat 0.17.0
* cereslib 0.5.0
* perceval 0.23.3
* perceval-mozilla 0.3.19
* perceval-opnfv 0.2.19
* perceval-puppet 0.2.19
* perceval-weblate 0.2.19
* graal 0.4.18
* grimoire-elk 0.109.3
* sirmordred 0.10.3
The following list describes the changes by component:
### kidash
* Update Poetry's package dependencies
### sortinghat
**New features:**
* Gitdm identities importer\
New SortingHat identities importer for Gitdm format. This backend is
configured with three parameters: a URL pointing to the file that
matches emails with organizations, an optional URL for an aliases file
that associates emails, and a flag for email validation to verify the
validity of the provided email addresses.
### cereslib
**New features:**
* TimeZone field in Git Areas of Code\
Include time zone field of commit date in Git Areas of Code index.
**Bug fixes:**
* Future compatibility with Pandas method (#52)\
Set regex parameter to True in `pandas.Series.str.replace` for future
compatibility.
### 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.17.0 - (2023-11-17)
**New components:**
* sortinghat 0.16.0
* graal 0.4.17
* grimoire-elk 0.109.2
* sirmordred 0.10.2
The following list describes the changes by component:
### sortinghat
**Bug fixes:**
* Fix individual page not loading\
The individual's view was not loading when the workspace had not been
used before or the cache was cleared.
**Performance improvements:**
* Recommendations performance improved\
Improve the recommendations performance by reducing the number of
queries to the database and only generating recommendations between
individuals that are directly related.
### graal
* Update Poetry's package dependencies
### grimoire-elk
* Update Poetry's package dependencies
### sirmordred
* Update Poetry's package dependencies
## GrimoireLab 0.16.0 - (2023-11-06)
**New components:**
* kidash 0.6.1
* sortinghat 0.15.0
* perceval 0.23.1
* perceval-mozilla 0.3.17
* perceval-opnfv 0.2.17
* perceval-puppet 0.2.17
* perceval-weblate 0.2.17
* graal 0.4.15
* grimoire-elk 0.109.1
* sirmordred 0.10.1
The following list describes the changes by component:
### kidash
* Update Poetry's package dependencies
### sortinghat
**New features:**
* Recommendations for individuals modified after a given date (#813)\
Users can generate merge and affiliation recommendations for
individuals that have been created or modified after a date specified
with the `last_modified` parameter.
* Add individual to workspace from their profile page (#816)\
A new button on the individual's profile page allows users to save the
identity in the workspace to continue working with it later on the
dashboard.
* Cache individuals table data (#821)\
Using cached queries prevents the table from refetching all the data
from the server everytime any information is edited. This is
particularly helpful if there is a huge number of identities, where
reloading the table is very slow. However, there are some cases when
the queries need to be refetched, eg. when identities are merged or
split.
### 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
**Bug fixes:**
* Periodic autorefresh not working\
Periodic refresh of identities was not working for backend sections
that included `:` in their name.
## 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.