forked from chaoss/grimoirelab
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathNEWS.old
3058 lines (2295 loc) · 96.9 KB
/
NEWS.old
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
## 18.11-01
Released: 2018-11-06
* Perceval
** [jenkins] Update message level when handling blacklisted jobs
** [gitlab] Allow to blacklist merge/issue ids
** Ignore W504 flake8 error code
** [backends] Fix flake8 errors
* grimoirelab-elk
** [enrich-redmine] Add ELK metadata
** [enrich-mozillaclub] Add ELK metadata
** [enrich-mediawiki] Add ELK metadata
** [elastic_items] Handle pagination over none index
** [enrich] Handle insertion of empty identities
** [elk] Avoid processing None identities
** [enrich-meetup] Prevent insert enrich items with no time
** [enrich-discourse] Refactor logic to enrich items
** [ELK] Fix flake8 errors
** [utils] goodbye google-hits script
** [utils] Goodbye rest script
** [enrich-gitlab] Handle missing milestone attribute in raw items
** [elastic_items] Refactor `fetch` method
** [enrich-google_hits] Redifine has_identities method
** [enrich-functest] Redifine has_identities method
** [enrich-dockerhub] Redifine has_identities method
** [enrich-jenkins] Redifine has_identities method
** [elk] Add condition to skip loading identites
** [enrich] Add has_identities method
** [enrich-askbot] Replace list with yield
** [enrich-bugzillarest] Replace list with yield
** [enrich-confluence] Replace list with yield
** [enrich-discourse] Replace list with yield
** [enrich-gitlab] Replace list with yield
** [enrich-jira] Replace list with yield
** [enrich-kitsune] Replace list with yield
** [enrich-mattermost] Replace list with yield
** [enrich-mediawiki] Replace list with yield
** [enrich-phabricator] Replace list with yield
** [enrich-mozillaclub] Replace list with yield
** [enrich-puppetforge] Replace list with yield
** [enrich-redmine] Replace list with yield
** [enrich-remo] Replace list with yield
** [enrich-rss] Replace list with yield
** [enrich-stackexchange] Replace list with yield
** [enrich-slack] Replace list with yield
** [enrich-supybot] Replace list with yield
** [enrich-telegram] Replace list with yield
** [jenkins] Add node name cleaning based on RE
** [enrich-twitter] Replace list with yield
* SirMordred
** Add demographics index pattern
** [menu] Add index pattern for attraction/retention
** [tests] Fix flake8 errors after upgrade
** [sirmordred] Set elasticsearch logging level to INFO
** [jira] Add index pattern for closed issues
** Add documentation for jenkins `node_regex` param
** [jenkins] Add support for node name cleaning
* Sigils
** [git] Update demographics panel to use new fields
** [gitlab] Fix latest items tables to size 100
** [gitlab] Add missing fields in issues index pattern
** [jira] Add closed issues by project table
## 18.10-03
Released: 2018-10-21
* GrimoireLab
** Fixes dependencies problems found in GrimoireLab package
## 18.10-02
Released: 2018-10-18
* Perceval
** [groupsio] Make api token a required param
** [groupsio] Fetch archives from group-specific domains
** Adding academic reference
* grimoirelab-elk
** [enrich_mattermost] Fix error setting empty emails for identities
** [enrich_mattermost] Fix error setting blank names on identities
** [enrich-github] Include label lists in enriched items
** [enrich-git] Replace list with yield
** [enrich-github] Replace list with yield
** [enrich-gerrit] Replace list with yield
** [enrich-bugzilla] Replace list with yield
** [tests] Extend tests for demography study
** [enrich] Add method to include aliases in enriched index
** [enrich-gerrit] Add demography study to gerrit
** [install] Update dependencies
** [tests] Update .travis.yml
** [tests] Align tests for git demography study
** [enrich] Add generic demography study
** [enrich-git] Replace ad-hoc git demography
** [enrich-gitlab] Include labels list in enriched items
** [onion] Fix `all_onion` alias creation
** [onion] Add refresh interval
** [enrich] Check presence of input index onion
** [gitlab-enrich] Add onion study
** [schema] Add schema for gitlab issues
** [schema] Add schema for gitlab merges
** [aoc] Add a constant for out_index default value
** [tests] Extend tests data for Gitlab milestone attribute
** [enrich-gitlab] Add milestone attribute for gitlab items
* SirMordred
** [onion] Add documentation for 'seconds' parameter
** [setup] Update dependencies
** [menu] Remove onion index pattern from Git panel
** [panels] Add demographics panel in community section
** [tests] Fix tests for task panels
** [tests] Fix tests for config
** [tests] Update mediawiki 1.28 archive
** [tests] Update .travis.yml
** [cfg] Update config files
** [doc] Update documentation with gitlab info
** [micro] Handle raw and enrich tasks exceptions
** [doc] Include doc for gitlab onion studies
** [doc] Add autorefresh_interval description
** [autorefresh] Add autorefresh identities in AOC
* Sigils
** [data_status] Update google_hits data status entry
** [demographics] Add known limitations and issues
** [demographics] Add panel for multiple sources
** Update info about index patterns and panel ids
** [gitlab] Increase the number of issues shown in timing panels
** [gitlab] Remove invalid search object for MRs backlog
** [gitlab] Adjust "Avg. Time Open" column in Backlog Submitters table
** [gitlab] Show full list of participants in GitLab panels
** [gitlab] Add milestone visualizations to GitLab merge requests
** [gitlab] Add milestone visualizations to GitLab issues
** [onion] Add data source filter widget to panels
** [gitlab] Fix typo in visualizations
* Kidash
** Add check for query key in bool filter fix
## 18.10-01
Released: 2018-10-03
* Perceval
** [tests] Align mediawiki after API calls optimization
** [mediawiki] Optimize number of calls to API
** [tests] Use output method in assertLogs for mbox test
** [tests] Use output method in assertLogs for gitlab test
** [tests] Add test to handle mediawiki version exception
** [mediawiki] Fix error in client `get_version` method
** [gitlab] Fix typo initiazaling common MRs fields
* grimoirelab-elk
** [enrich-stackexchange] Handle KeyError exception
** [aoc] Add support for autorfresh in sirmordred
** [demography] Catch conn exceptions when fetching author commits
** [enrich] Set identities fields to UNDEFINED for null values
* SirMordred
** [tasks_panels] Fix initialization of .kibana index in Kibana 6.x
** Sigils
** [data_status] Fix error showing GitLab issues retrieval dates
** [twitter] Replaces Latest tweets widget at the bottom
** Update documentation about contributing to be updated with Kibiter 6.1.0 release
** Fix hidden legends in bar charts
** Fix title of organizations pie chart
** Fix badly stacked bar bug
* SortingHat
** Support UTF-8 fully in MySQL/MariaDB
* Hatstall
** Register new template filter when a name is blank but isn't None
* Kidash
* [kidash] Enable Kibiter 6 configuration
## 18.09-03
Released: 2018-09-24
* GrimoireLab
** [doc] Added file for community components.
** [docker] Clarify variable names in ansible file for building release.
* Perceval
** [tests] Add tests for GitLab merge request data
** [gitlab] Add merge_request category
** [github] Fix doc in fetch method
** [args] Add new argument --json-line
* grimoirelab-elk
** [tests] Include tests data for GitLab merge requests
** [enrich-gitlab] Add merge request enrich item
** [enrich-mediawiki] Fix unique id for enriched items
** [tests] Include tests data for GitHub pull requests
** [enrich-stackexchange] Add 'origin' and 'tag' fields to answer items
** [raw] Improve logging message in elastic
* Sigils
** [overview] Minor change to make gitlab panels visible
** [data_status] Minor change to make gitlab panels visible
** [gitlab] Minor change on merge panels
** [gitlab] Minor change on issue panels
** [gitlab] Add Issues and MR info to Overview and Status panels
** [adoption] Panel for Rust adoption
** [dev] Panel for dev related sources
** [social] Panel for Social sources
** [mediawiki] Use 'edits' instead of 'editions'
** [gitlab mr] Update URL links and fix a couple of titles
** Add GitLab Merge Request panels
** [jenkins] Add panel to track nodes
** [jenkins] Add panel for tracking jobs
** [gitlab] Fix issue with URLs in the repositories table
** [gitlab] Update GitLab panels based on the review. Minor fixes.
** [gitlab] Add GitLab panels focused just on issues
** [github] Fix acc time widget in PRs backlog
* SirMordred
** [utils] Update setup.cfg micro-mordred
** [config] Change gitlab param names
** [task_panels] Change gitlab data source names
** [tasks_panels] Disable kibiter 6 configuration
** [utils] Add gitlab entries in setup.cfg and .json
** [task_panels] Add aliases to gitlab indexes
** [utils] Update setup.cfg and .json micromordred
** [utils] Update menu.yml
** [menu.yml] Adding nodes and jobs panels
** [tests] Include strict param in mock tests task panels
** [task_panels] Handle strict mode loading panels via setup.cfg
** [config] Handle strict loading of panels
** [tests] Update number of loaded panels
** [utils] Align menu.yml micro-mordred with upstream one
** [menu.yml] Remove mattermost from menu.yml
** [tasks_panels] Handle mattermost panels via setup.cfg
** [config] Load mattermost panels by the setup.cfg
** [tasks_panels] Handle gitlab panels via setup.cfg
** [config] Load gitlab panels by the setup.cfg
** [tests] Include archives for gitlab merges and github pulls
** [task_panels] Align task panels with kidash
** [tests] Align configuration files with new changes
** [tests] Align tests with new changes in task_panels
** [doc] Update config.md
** [README.md] Update readme
** [config] Make kibiter url mandatory for panels section
** [task_panels] Set kibana settings programmatically
** [task-collection] Improve logging message
* Hatstall
** Fix url redirection to /identities/hatstall
** Change absolute urls in href and actions to the Django right ones
* Kidash
** Revert previous commit
** [import] Create the Kibana index if not exists before importing anything
## 18.09-02
Released: 2018-09-07
* Perceval
** Remove unused and not working config_file option
* grimoirelab-elk
** [tests] Fix load identities test
** [tests] Add tests for googlehits connectors
** [utils] Add googlehits connectors
** [enrich] Add support to enrich googlehits raw data
** [raw] Add support for googlehits data
* Sigils
** [irc] Fix orgs table participants count
** [KIP] Restore search viz
* SirMordred
** [utils] Update micro-mordred menu.yml
** [task_panels] Modify alias for google hits
** [config] Remove google_hits from extra backends
** [archives] Update slack archive
** [archives] Update github archive
** [tests] Add tests for googlehits
* Hatstall
** Add new index that show just an form in order to search identities
** Delete the first and last " with strip()
** Add CSRF_TRUSTED_ORIGINS as a docker env variable
## 18.09-01
Released: 2018-09-04
* Perceval
** [googlehits] Modify item id generation
** [github] Increase number of items retrieved per page
** type fix on tests requirements file
* Sirmordred
** [menu.yml] Fix typo in googlehits data source
** [task_panels] Include phabricator panels in overview and data status
** [task_panels] Enable kafka studies
** [config] Include option to visualize kafka studies
** [tests] Align tests for new panels
** [utils] Align micro-morded menu.yml with mordred one
** [task_panels] Include mbox-type panels
** [menu.yml] Include mbox-type entries
** [task_panels] Do not import panels that don't have the release field
** [task_panels] Replace google_hits backend name
** [menu.yml] Modify google hits source name
** [tests] Fix tests for task_panels
** [tests] Fix tests for task_enrich
** [tests] Fix tests for test_task
** [collection] Add support for mediawiki tag
** [utils] Add mattermost panels to menu.yml micro-mordred
** [menu] Add mattermost entry
** [menu.yaml] Remove duplicated community info in git menu
** [utils] Fix setup.cfg for micro-mordred
** [menu] Add index pattern for remo-activities
** [menu] Fix remo-activities index-patterns entry
* grimoirelab-elk
** [enrich-meetup] Fix error printing the number of comments and RSVPs
** [tests] Update Git test data
** [tests] Update Slack test data
** [tests] Update Jira test data
** [enrich-jira] Remove unknown user data logic
** [enrich-git] Remove unknown user data logic
** Set Unknown to null user data (org, name and username)
** [elk] Modify logic to load new identities to SH
** [enrich-mbox] Replace lists with yields
** [enrich-meetup] Replace lists with yields
** [enriched] Update mediawiki project json params
** [enriched-jira] Set Unassigned to null assignee orgs and usernames
** [enrich-jira] Improve jira enricher
** [enrich-git] Handle commits with missing user info
** [tests] Enable tests from no-localhost ES
* Sigils
** [kip] Disable search panel
** [overview] Add mattermost widgets
** [data status] Add mattermost widgets
** [overview] Fix missing widget panels
** [data_status] Fix visualization ids
** [meetup] Fix visualization id for `meetups_main_numbers`
** [overview] Replace dockerhub viz by current ones
** [kip] Migrate panel to Kibana 6
** [data status] Add remo activities index pattern
** [about] Update panel to include release date
** [data status] Fix dockerhub index pattern name
** [data status] Fix google hits widgets
** [overview] Fix index name for Dockerhub viz
** [overview] Update google hits widgets
** [google-hits] Panel updated to support new backend
## 18.08-01
Released: 2018-08-23
* SortingHat
** [api] Fix lost enrollments error merging identities
** [db] Handle disconnection using pessimistic mode
* Perceval
** [doc] Include doc to execute the googlehits backend
** [backends] Add backend for GoogleHits
** [slack] Fix flake8 error
** [slack] Include num members in channel info
** [doc] Update install from source code section in README.md
** Mozilla
** [doc] Update install from source code section in README.md
** OPNFV
** [doc] Update install from source code section in README.md
** Puppet
** [doc] Update install from source code section in README.md
* Sirmordred
** Fix typos in menu.yaml for 6.x panels and index patterns
** [task_panels] Update index pattern files for Onion panels
** [utils] Add conf files for micro-mordred
** [utils] Add micro-mordred
** [test_task_panels] Update tests for community section menu
** [task_panels] Add community structure menu
** [config] Add time interval for autorefresh
** [panels] Remove unused panels
** Fix weird warning
** [tests] Update test_config.py
** [tests] Add example of enrich_pull_requests study in test_studies.cfg
** [config] Add `enrich_pull_requests` to the tuple of studies
* grimoirelab-elk
** [enrich-mediawiki] Change way url is created
** [aoc] Replace message commit with first 80 chars
** [enrich-slack] Use `num_members` attribute to count channel members
** [studies] Add enrich_pull_requests study
** [aoc] Fix study to do nothing if no events
* Sigils
** Merge branch 'kibana6-migration'
** Use 'edits' instead of 'editions' for MediaWiki
** [mattermost] Add Kibana 6 panel and index pattern
** [reps activities] Add panel migrated to Kibana 6
** [reps events] add panel fro Kibana 6
** [about] Add about.json from master
** [dockerhub] Fix legend title for Stars and Pulls
** [dockerhub] Update evolutionary charts to use Timelion and use Deltas
** [dockerhub] Add DockerHub panel and index pattern
** [functest] Add panel for functest project
** [functest] Add testing overview panel
** [mediawiki] Use 'edits' instead of 'editions'
** [mozilla-club] Increase size of pie charts
** Add Mozilla Club panels and index patterns
** [google-hits] Add Google Hits panel and index pattern
** [twitter] Migrate panel to Kibana 6
* Manuscripts
** [Notebooks] Update README with instructions to run the notebooks
** Add Notebooks for GMD metrics and sample visualisations
** Some (hopefully minor) changes
** [MS2/report/tests] Add basic tests for manuscripts2 reports
** [MS2/tests] Set up module level test fixtures
** [MS2/README] Update README with instructions to generate the report
** [MS2/manuscripts2] Update bin/manuscripts2 to take cmd inputs
** [MS2/latex] Separate github_issues and github_prs data for Overview
** [MS2/reports] Add functions to generate the PDF reports
** [MS2/reports] Add latex template folder from the old manuscripts
** [MS2/reports] Remove "_" from strings and update create_csv_fig_from_df
** [MS2/reports] Fix minor errors and change folder names
** [MS2/Reports] Add the project process section of the report
** [tests] Add tests for Metrics under project process in github_prs
** [MS2/metrics] Add project_process Metrics & function for github_prs
** [tests] Add tests for Metrics under project process in github_issues
** [MS2/metrics] Add project_process Metrics & function for github_issues
** [MS2/elasticsearch] Update calculate_bmi function
** [MS2/metrics] Change field for timeseries aggregations in ClosedIssues
** [MS2/reports] Add PROJECT_COMMUNITY section of the report
** [manuscripts2/metrics] Rename NAME variable to DS_NAMES In all the data source files
** [tests] Add tests for aggregations() in Authors and Organizations classes
** [MS2/metrics] Add capability to calculate project_community metrics
** [tests] Clean up code. Add tests/utils.py
** [manuscripts2/elasticsearch] Add get_list method for Query class
** [config] Add studies params
** [tests] Add tests for timeseries metrics generated in github_prs
** [github_prs] Add project_activity function
** [tests] Add tests for timeseries metrics generated in github_issues
** [github_issues] Add project_activity function
** [tests] Add tests for timeseries metrics generated in git
** [git] Add project_activity function
** [report] Add functionality to calculate PROJECT ACTIVITY section
** [tests] Rearrange the test data into specific folders
** [tests] Add tests for github_issues data source
** [manuscripts2] Add OVERVIEW section for github_issues data source
** [tests] Update test_elasticsearch.py to use test base class
** [tests] Update tests/data/git_commit.json file
** [tests] Update git_commit.json data
** [tests] Update test base class
** Rename manuscripts2/Readme.md to manuscripts2/README.md
** [tests] Add example to use the test base class
** [tests] Add test base class
** [manuscripts2] Add tests for OVERVIEW section of 'git' data source
** [manuscripts2] Add code to calculate OVERVIEW section for 'git' data source
* Kidash
* GrimoireLab Toolkit
* King Arthur
* Bestiary
* Hatstall
** [docker] Update password of admin user when container restart
** Change href of Profiles item to "list" instead of "/"
** Update href in order to avoid absolute/relative problems
** Allow None country in the profile form
** [docker] Modify path of sqlite file when env variable exists
** [docker] Default admin account can be now set via docker environment variables
** [urls] Add support for using /identities as the base path for accessing Hatstall
** [docker] Remove gunicorn and use stage from Docker image
** [docker] Modify apache config to serve static files and generate the static files during deployment
** [static] Reorganize static contents for the base template in the django-hatstall project
** [urls] Remove gunicorn suport for static contents
** [docker] Add in stage the activation of ssl module in Apache
** [docker] Support https for accessing the Django Hatstall application
** [docker] Convert Django Hatstall deployment to Apache2 + mod_wsgi
* Ceres
** Fix filter method when a column has no values
## 18.07-11
Released: 2018-07-25
## Release details
* SortingHat
** [tests] Add tests for recovery mode in unify command
** [unify] Add resume method to unify command
* Perceval
** [askbot] Handle upstream internal server
** [gitlab] Sanitize requests before archiving
** [gitlab] Fix signature backend
** [travis] Change how perceval is installed
** [mbox] Fix test `test_mboxes_error`
** [github] Fix position GitHub client args
** [phabricator] Handle 429 HTTP errors
** [mbox] Increase test coverage
** [pipermail] Remove duplicated test
** [utils] Add checks to zip compressed type
** [mbox] Add checks to zip compressed type
** [doc] Include doc to execute the groups.io backend
** [backends] Add backend for groups.io
** [mbox] Allow support for zip file in MboxArchive
** [utils] Add support for zip compressed file type
** Mozilla
** [setup] Align setup to perceval one
** [travis] Change how perceval-mozilla is installed
** OPNFV
** [setup] Align setup to perceval one
** [travis] Change how perceval-opnfv is installed
** Puppet
** [setup] Align setup to perceval one
** [travis] Change how perceval-puppet is installed
* Sirmordred
** [tests] Add tests for sirmordred
** [tests] Update test data
** [sirmordred] Load repos for a tagged backend sections
** [task_projects] Load repos for a tagged backend section
** [tests] Add archive for GitLab
** [utils] Goodbye cfg_generator
** [doc] Include example for GitLab
** [tests] Relax number of index-patterns in tests for panels
** [docs] Add coveralls badge
** [tests] Add perceval-* dependencies to requirements.txt
** [tests] Add grimoirelab-toolkit dependency to requirements.txt
** [config] Redirect autogenerated doc to README.md
** [config] Extend `write_doc` method
** [tests] Extend test for config file
* grimoirelab-elk
** Change shebang line
** [elastic_items] Remove condition for old twitter items
** Add support for Groupsio
** [travis] Fix coverage execution
** [utils] Goodbye twitter scripts
** [README.md] Fix travis badge
** [travis] Execute coveralls after tests
** [README.md] Add coveralls badge
** Add support for GitLab
* Sigils
* Manuscripts
** Update failing tests because of change in perceval git data
** Rename manuscripts2 branch files
** [travis] Narrow coveralls execution
** Update tests for manuscripts2
** Update Query class: set start and end date filters directly into search object
** [tests] Fix travis.yml
** [travis] Add coveralls
** [doc] Fix badges in README.md
** Add initial infrastructure to generate the reports
* Kidash
* GrimoireLab Toolkit
* King Arthur
* Bestiary
* Hatstall
* Ceres
## 18.07-10
Released: 2018-07-17
## Release details
* grimoirelab-elk
** [studies] Use hash instead of plain text as id
** [enriched] Use metadata__update_on to index tweets
## 18.07-09
Released: 2018-07-15
## Release details
* Sigils
** Use kibana6-migration branch
## 18.07-08
Released: 2018-07-13
## Release details
* Sirmordred
** [menu.yaml] Add panels and index patterns for Areas of Code and Community Structure
## 18.07-07
Released: 2018-07-12
## Release details
* SortingHat
* Perceval
** Changes to work with grimoirelab_toolkit.
** Mozilla
*** Changes to work with grimoirelab_toolkit.
** OPNFV
*** Changes to work with grimoirelab_toolkit.
** Puppet
*** Changes to work with grimoirelab_toolkit.
* Sirmordred
** [config] Add tag to backend sections
* grimoirelab-elk
** [raw] Fix mapping Twitter
** [enriched] Add code to calculate github pull requests enriched data
** [enriched] Change toolkit import in git enricher
** [enriched] Change toolkit import in ceres_base
** [p2o] Add support for execution a list of studies
** [enrich][git][demography] Add doc and fix the incremental support
* Sigils
* Manuscripts
* Kidash
* GrimoireLab Toolkit
** Change module name to grimoirelab_toolkit.
* King Arthur
** [arthur] Change toolkit import
* Bestiary
* Hatstall
* Ceres
## 18.07-06
Released: 2018-07-10
## Release details
* SortingHat
** [travis] Include cryptography package
** [tests] Align tests to logging support
** [sortinghat] Add logging support
* Perceval
** [twitter] Change metadata_id attribute
** Mozilla
** OPNFV
** Puppet
* Sirmordred
** [tests] Add twitter archive
** [dashboard title] Fix typo in project name extraction
** [tests] Add arthur and perceval eggs to requirements.txt
** [studies] Include raw backend to studies
* grimoirelab-elk
** [enriched] Add support for github pull request data
** [raw] Add support for github pull request data
** [tests] Add test for kafka kip study, git studies and SSL support
** [enriched] Improve logging for studies
** [enriched] Include ocean backend in studies
** [elk] Add raw backend to studies params
** [raw] Add parser params for perceval mattermost backend
** [studies] Fix ES conns to use insecure parameter
** [enrich][mattermost] Fix project mapping support
** [enrich][slack] Fix slack project mapping to use just the channel id in the projects mapping file
** [tests] Use the projects mapping json file for testing
* Sigils
** [telegram] Add Telegram panels migrated to Kibana 6
** [apache] Add Apache panels
** Updated panels for askbot, discourse, stackoverflow, rss, bugzilla timing, redmine, maniphest, bugzilla, onion, overview, git, data status, mediawiki, jenkins, stackoverflow, confluence, slack, maniphest, github, irc, mbox, jira, bugzilla, gerrit,
* Manuscripts
** Add manuscripts2 containing new functions to calculate the metrics
** Closes #48: start date not provided use case
* Kidash
* GrimoireLab Toolkit
* King Arthur
* Bestiary
* Hatstall
** [urls] Add support for using /identities as the base path for accessing Hatstall
** [docker] Default admin account can be now set via docker environment variables
** [docker] Modify path of sqlite file when env variable exists
* Ceres
## 18.07-05
Released: 2018-07-04
* Sirmordred
** Update menu.yaml to kibana 6 panel and index names
** [task_panels] Add support for loading several index patterns per data source
## 18.07-04
Released: 2018-07-04
* Kidash
** Don't sys.exit from kidash.py library (raise exceptions)
* Mordred
** [task_panels] Manage the error loading panels, log it and continue execution
## 18.07-03
Released: 2018-07-03
* Sirmordred
** [task_panels] Add support for loading index patterns
## 18.07-02
Released: 2018-07-03
* Kidash
** Add release date support for Index Patterns
* Sigils
** Add panels for kibiter 6.1.0 migration
## 18.07-01
Released: 2018-07-02
* Kidash
** [tests] Add test for split-index-patterns new param
** [kidash] Add support for importing and exporting only index patterns
** Update mapping in Kibana6 if needed
** Add constant for release date field name
** Add try/except to show content of error responses
** Add release_date to panel json
## 18.06-03
Released: 2018-06-28
* SortingHat
** [tests] Adapt tests to run with setup.py test
** [all] Remove support for Python 2.7
** [db:api] Add functions for all the low level operations on SortingHat
** [api] Improve output messages for enrollment commands
** [exceptions] Rename WrappedValueError to InvalidValueError
* Perceval
** [tests] Replace datetime function with equivalent toolkit one
** [meetup] Pythonicize `calculate_time_to_reset`
** [backends] Add backend for Twitter
** Mozilla
** OPNFV
** Puppet
* Mordred
** Change name from mordred to sirmordred
* grimoirelab-elk
** [mattermost] Add mattermost support for gelk (raw + enrich)
** [tests] Modify tests for Twitter backend
** [utils] Modify connector information for twitter
** [twitter] Modify enrich connector
** [twitter] Modify raw connector
** [tests] Allow testing with latest grimoirelab component versions
** [enrich] Align ELK with changes in SortingHat
** [enriched][github] Add code to calculate the first reaction duration to an issue
** [enrich][redmine] Add `assigned_to` fields
** [jira] Fix mapping to avoid limit number of fields exception
** [bugzilla] Fix immense term exception for activity attribute
** [elastic] Add template to force date format
** [raw] Update mappings for jenkins to ES 5.x
** [enrich] Handle deleted user in stackoverflow
** [enriched] Add `latest_date` method to connector
* Sigils
** [owlwatch] Move owlwatch to its own repo
** [GitHub] Revamp timing panels
** [GitHub ]Update PRs overview panel
** [demographics] Fix y-axis label for leaving devs
** [slack] Add projects table
* Manuscripts
** Updated comments in esquery.py
* Kidash
* GrimoireLab Toolkit
* King Arthur
* Bestiary
* Hatstall
* Ceres
## 18.06-02
Released: 2018-06-08
* Mordred
** [studies] Handle empty list of studies in backends
## 18.06-01
Released: 2018-06-07
* SortingHat
** [parsing:sh] Make gender profile info not required
* Perceval
** [backend] Include category in backend params
** [github] Add list of commits hashed included in pull requests
** [pipermail] Fix command line parameters
** OPNFV
** Puppet
* Mordred
* grimoirelab-elk
** [stackexchage] Fix fields for questions having an accepted answer
** [jira] Fix typo in enriched jira fields
** [studies][demography] Use author_uuid field to aggregate the authors instead of author_id
** [enrich] Modify max length for keyword fields
* Sigils
** [discourse] Add % of questions answered
** [stackoverflow] Fix % of questions answered
** [askbot] Add % of questions with accepted answer
** [panels] Add community structure panels & documentation
** [panels] Add accepted answers and project support
** [panels] Fixed links to issues and revamp (jira)
** [panels] Refurbish Jira panel
** [panels] Fix typo in Jira panels
** [panels] Modify answers table for consistency
** [Panels] Rearrange project and authors widgets
** [panels] Add project support to Askbot
** [panels] Add crates to Data Status
* Manuscripts
** Updated esquery.py and created tests/test_esquery.py
** Updated esquery.py to use elasticsearch_dsl in all places
* Kidash
** [kidash] Preserve uiStateJSON dict when cleaning a dashboard from not needed data sources
** [kidash] Use #!/usr/bin/env python3 to work inside venvs correctly
* GrimoireLab Toolkit
* King Arthur
** [tests] Align tests with arthur tasks validation
** [arthur] Add validation for tasks
** [tests] Fix tests for server
** [jobs] Add category to backend arguments
** [scheduler] Fix wrong date conversion
** [server] Allow to add tasks without archiving/scheduling options
* Bestiary
* Hatstall
* Ceres
## 18.05-03
Released: 2018-05-31
* SortingHat
* Perceval
** [tests] Increase coverage pipermail
** [pipermail] Disable SSL verification
** Mozilla
** OPNFV
** Puppet
* Mordred
** [studies] Allow setting up kafka_kip via cfg
** [task_projects] Add new eclipse_projects_lib.py
** [tests] Add tests for task_manager
** [config] Include sections for studies
** [tests] Align tests for studies with new functionalities
** [task_enrich] Forward study params to ELK
** [tests] Enable tests with latest versions of grimoirelab components
** [task] Improve parsing parameters for perceval
* grimoirelab-elk
** [twitter] Set field_date for twitter enricher to created_at
** [enrich][bugzilla] Remove emails from enriched index
** [enrich][meetup] Change log from error to warning when the date are incorrect from upstream data
** [gelk-mapping] Add the script to setup.py so it is installed with the pip package
** [gelk_mapping] Generate files with the JSON mappings to be used by elasticdump to create the indexes
** [elk] Propagate study params from mordred to elk
** [enrich] Create all_onion alias if not exist
** [git] Generalize areas of code study
** [gelk_mapping.py] Script to show the mappings for a data source
** [raw] Reduce the number of fields indexed for jenkins items
** [elk] Fix enrichment of stackexchage answers
* Sigils
** [panels] Add accepted answers to Discourse panel
** [panels] Add areas of code panel
** [confluence] Increase rows and sort by page edits
** [confluence] Use `content_url` for page links
* Manuscripts
** [metrics][gerrit] Use closed date field for computing the TTM (time to merge) metric
* Kidash
* GrimoireLab Toolkit
* King Arthur
** [setup] Update Perceval version
** [jobs] Modify imports of perceval functions
* Bestiary
* Hatstall
* Ceres
## 18.05-02
Released: 2018-05-17
* SortingHat
* Perceval
** [setup] Fix to let setup.py test run
** Add readthedocs badge
** [backend] Replace datetime import with grimoirelab-toolkit
** Mozilla
*** Fix support for package namespaces
** OPNFV
*** Fix support for package namespaces
** Puppet
*** Fix support for package namespaces
* Mordred
* grimoirelab-elk
** [enrich][twitter] Use case insesitive tags for doing the projects mapping
** [studies][demography] Add tests for the study
** [studies][demography] Use author_id field to aggregate the authors instead of Author
* Sigils
* Manuscripts
** [docstrings] Complete docstrings for manuscripts
* Kidash
* GrimoireLab Toolkit
* King Arthur
* Bestiary