forked from TestLinkOpenSourceTRMS/testlink-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
3322 lines (3152 loc) · 288 KB
/
CHANGELOG
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
*******************************************************************************
TestLink Change-log
*******************************************************************************
http://www.testlink.org
http://forum.testlink.org
https://twitter.com/TLOpenSource
TestLink - 1.9.16 - Moka Pot (Released 2017-01-21)
==================================================
- 7814: [User Authentication Methods] Unable to Reset Passwords For Users with DB Authentication In System Using Mixed LDAP/DB Authentication
- 7701: [API - XMLRPC] XMLRPC API returns "XML-RPC server accepts POST requests only" for any request
- 7676: [GUI] Password reset does not work
- 2842: [Integration with Other Systems] Mutliple LDAP authentication
- 7278: [Bug Tracking System - Redmine Integration] Customise Testlink Username to Equal Redmine Username
- 7799: [Bug Tracking System - Redmine Integration] Request for Redmine Integration : Redmine API Key for each user
- 7757: [Bug Tracking System - JIRA Integration] Jira issues updated with Jira integration user instead of the actual testlink user
- 7765: [Test Project Management] deleting test projects with execution step results raise fatale db error
- 7761: [Bug Tracking System - JIRA Integration] Issue add failure versions FIELD
- 7813: [Test Execute - Step notes & result] New config option to set as default latest exec result on each step
- 7812: [Bug Tracking System - JIRA Integration] Lack of "save execution" button
- 7805: [Database Postgres] upgrade to 1.9.15 failed with errror: DB Access Error
- 7806: [Database General] Upgrade ADODB to 5.20.LATEST (@20170106)
- 7801: [Third party components] CKeditor upgrade to 4.6
- 7803: [Third party components] PHPmailer security update
- 7800: [Database General] Execution Bug will be contain step id info
- 7773: [User Interface Customization] The new login page doesn't display login_info from custom_config.inc.php
- 5817: [Requirement Revisioning] Changes made in requirements aren't saved
- 7737: [Requirement Revisioning] DB Access Error - debug_print_backtrace() OUTPUT START - creating req revision
- 7774: [User Interface General] Kint Dump information is displayed in stable release
- 7794: [Database MySQL] Critical error while editing a requirement.
- 7786: [General] source map file not sent along with jquery
- 7793: [Test Specification] Pressing 'Sort alphabetically' button generates errors in log
- 7656: [API - XMLRPC] tl.updateTestCase updates executed testcase allthough user does not have permission
- 7719: [GUI] Class Details are shown on screen, when test execution page is accessed
- 7756: [Bug Tracking System - Redmine Integration] Unable to link created/existing issue from Redmine to TestLink
- 7746: [Available Fixes] Notification mails sent to inactive users (globalRole)
- 7772: [Test Execute] Attachements are not deleted if related build isremoved.
- 7777: [Build Management] Fatal error when aborting creation of new build
- 7709: [Custom fields] The system is not accepting the imposed customizations in custom_config.inc.php file.
- 7738: [Test Spec. - Search Test Cases] Missing test cases while applying a filter on a test suite created as another test suite copy
- 7750: [Event viewer] unknown warnings after update in event viewer
- 7706: [Test Specification Import] Fail to Import a XML files to update a Testcase executed in a older version
- 7725: [Test Specification] Renaming test suite fails
- 7708: [Localization] PHP Fatal error: Call to undefined function plugin_get_current() in /var/www/testlink/lib/functions/lang_api.php on line 67
- 7710: [General] Customization "$tlCfg->user_self_signup" does not work
- 7696: [Test Specification Import] testsuite.class.php has incorrect code on importing whole testsuite specification
- 7688: [Database Postgres] Multiple errors in Postgres SQL scripts
- 7687: [Export/Import] Testcases Import : testcases too long, warning in summary always encoded in HTML format
- 7685: [Test Specification] Fatal error on uploading/deleting an attachment to the Top Level Project
- 7638: [Test Plan - Assign Test Case Execution] No mail notification when removing test case assignment
- 7675: [Test Plan - Assign Test Case Execution] Urgency is shown in Priority column on Assign Test Case Execution page
- 7683: [Installer] Error 500 after license agreement
- 6055: [LDAP authentication] Regarding Multiple LDAP confiiguration in TestLink
- 6383: [Test Project Management] The 'Create a new project' page crahes after clicking 'Cancel' button
- 7714: [Bug Tracking System - Redmine Integration] failure to report issue
- 7667: [Plugins] Fatal error after Testlink upgrade to 1.9.15 - missing plugin_get_current()
[47 issues]
TestLink - 1.9.15 - Tauriel (Released 2016-09-08)
=================================================
- 7313: [API - XMLRPC] API XMLRPC - possibility to set the step-test result.
- 7655: [Reports] Crome rendering problems after applying commit/b3e0cb4c.
- 7455: [Localization] Missing French translations for print.inc.php on test case execution.
- 7637: [Test Cases Assigned to Me] The tree in the left frame remains empty, after applying the security patch of ticket 7402.
- 7649: [Reports] invalid HTML generated by reports.
- 7645: [Localization] Typo in GUI description file - strings.txt under \locale\en_GB.
- 7402: [Security - SQL Injection] TestLink Security Vulnerability Notification.
- 7633: [API - XMLRPC] API-XMLRPC - Updating testSuite Method.
- 7625: [Assign Test Case Execution] Email notification sent to User does not contain Platform and Build.
- 7609: [Export/Import] Unable to update existant testcase data from XML file if detection is done with External ID containing prefix.
- 7599: [Plugins] Support internationalized strings for plugins.
- 7452: [Import results XML format] Import XML results : Import steps results and notes provided in XML file.
- 7560: [GUI] Report and Metrics - Display multilined text content according to text editor configuration.
- 7563: [GUI] TestCases Version comparator - Display multilined text content according to text editor configuration.
- 7559: [GUI] Test Execution View - Display multilined text content according to text editor configuration.
- 7552: [API - XMLRPC] getTestCasesForTestPlan parameter 'getstepsinfo' doesn't work.
- 7621: [Export/Import] LATEST GITHUB CODE - Testcase/Testsuite Export: exporting keywords is broken.
- 7398: [Test Specification] Filter for Status - combine more than one (Advanced Filters).
- 7519: [Test Specification Import] Import TestCases activation and frozen status from XML content.
- 7610: [Event viewer] many warnings in event log while test execution.
- 7543: [GUI] Display multilined text content according to text editor configuration.
- 7605: [Test Execute] Display of lastest run ANY BUILD execution notes at the test execution.
- 7565: [GUI] TestCases Edition - Display multilined text content according to text editor configuration.
- 7561: [GUI] Assign Requirements - Display multilined text content according to text editor configuration.
- 7562: [GUI] Search TestCases - Display multilined text content according to text editor configuration.
- 7564: [GUI] Req Version Comparator - Display multilined text content according to text editor configuration.
- 7569: [Reports - Test report matrix] Direct link does not display the report correctly.
- 7551: [Assign Test Case Execution] TL 1.9.15: Cannot assign TestCases.
- 7462: [API - XMLRPC] FEATURE REQUEST: Add API call to update linked Test Case Versions.
- 7558: [GUI] Test Specification View - Display multilined text content according to text editor configuration.
- 7557: [GUI] Requirement Specifications View - Display multilined text content according to text editor configuration.
- 7554: [Test Project Management] Display multilined text content according to text editor configuration.
- 7555: [GUI] Platform View - Display multilined text content according to text editor configuration.
- 7556: [GUI] TestPlan View - Display multilined text content according to text editor configuration.
- 7550: [Roles] Roles View - Display multilined text content according to text editor configuration.
- 7544: [Build Management] BUILD View - Display multilined text content according to text editor configuration.
- 7545: [Requirement Monitoring] Requirement Monitoring - Bulk Operations (from Req Spec View Screen).
- 7523: [Requirement Management] Req. Spec - EDIT - custom field (date or datetime) value is not saved.
- 7527: [Reports - Test Report on Build] Hyperlink to Test Suite in Table of Content doesn't work.
- 7528: [Database MySQL] Missing creationsof two new tables for MySQL in alter_tables.
- 7478: [Test Execute] Test Case Execution - Option to add LINK TO TestLink on notes on Issue Tracker System.
- 7508: [Test Plan - Assign Test Case Execution] Test cases can be assigned to an inactive or closed build.
- 7521: [Assign Test Case Execution] Add ruler to make work simpler.
- 7509: [Export/Import] Exporting testcases : add options to exclude from export: Summary,Preconditions,Steps.
- 6676: [API - XMLRPC] API CALL - create build add option with "Copy tester assignments".
- 5542: [API - XMLRPC] Add option "Copy tester assignments" to createBuild.
- 7520: [Assign Test Case Execution] Possibility to copy test execution assignment from other build.
- 7518: [GUI] New login page : image seems to be hardcoded.
- 7516: [Test Specification Export] Export TestCases activation status in XML content.
- 7517: [Test Specification Export] Export TestCases frozen status in XML content.
- 7497: [API - XMLRPC] create / update Testcase do not support to set the TestCaseStatus.
- 7498: [API - XMLRPC] createTestCase() - add support for estimated execution duration.
- 7491: [Test Execute - 'Save and move to next'] No warning if exec is not saved when using 'Save and move to next'.
- 7489: [User Interface General] Username field too short on login screen.
- 7488: [Test Execute] Test Exec - inline image rendering on Summary is not working.
- 7485: [Test Specification] Test Case Summary & Preconditions - Replace PlaceHolders with Custom Field value.
- 7481: [API - XMLRPC] xml-rpc createBuild method cannot set the date.
- 7483: [API - XMLRPC] XMLRPC - createBuild() - add active,open & release date as parameters for the call.
- 7477: [Test Specification] Test Spec Filters - Configure Default values for filter on status (workflow status).
- 7476: [Test Specification] Test Spec Filters - Adding CHOSEN Select + Always advanced mode.
- 7466: [API - XMLRPC] Different test cases may have the same external test case ID.
- 7418: [Requirements Import - TL XML format] Import req with a too long doc-id results in a data inconsistency.
- 7463: [Bug Tracking System - JIRA Integration] Testlink integration with JIRA using jira (Interface: db).
- 7454: [Users and Rights] User rights : A non admin user can grant admin access to itself and/or to others via Roles management.
- 7458: [User Interface General] User management: alphabetic sorting of the users by login doesnt work.
- 7449: [API - REST] User rights are NOT checked in createTestProject.
- 6423: [API - XMLRPC] Enable to link a project with an ITS when creating a test project using the XML-RPC API.
- 7426: [Installer] PHP7 - install KO with msg "Checking MySQL Database Failed! MySQL Database cannot be used. ".
- 7444: [Test Spec. - Keywords] Cannot open Keyword View from Test Spec..
- 7435: [Requirement Management] Tree view don´t show requeriment in tree view after copy.
- 7424: [Reports - Test Report on Build] Test report on build is incomplete. Test suites and test cases are missing..
- 7430: [API - REST] Unable to configure proxy using JiraRest integration.
- 7428: [User Authentication Methods] Definition of password management on authentication methods should be get from config.
- 7429: [GUI] The link 'Lost Password?' on the login screen cannot be hidden.
- 7399: [API - XMLRPC] Issue in permission check when creating a test suite via the XMLRPC API.
- 7393: [Bug Tracking System - JIRA Integration] Issue Tracker JIRA REST check connexion twice.
- 7390: [Bug Tracking System - JIRA Integration] Issue Tracker JIRA REST check connection fails when jirauser have readonly power only.
- 7384: [API - XMLRPC] Insufficient permission message on attempt to modify keywords using XMLRPC API.
- 7381: [General] Export Custom Fields - Mac OS issues due to tmp dir used by ADODB-XML.
- 7354: [Test Execute] Test Case Execution - just move to next.
- 7353: [Test Execute] Test Case Execution - save & move to next Improvements.
- 7250: [Requirement Management] Requirement View (Read only access) given you user doesnt work as expected.
- 7312: [Test Execute] File cannot be attached to execution of Test Case if empty title forbidden in config.
- 7326: [API - XMLRPC] API - getTestSuiteByName => getTestSuite().
- 7330: [Reports] Report - Test Results Flat - Add Test Case Version execution type indication.
- 7329: [Reports] Report - Test Results Flat - Test Case Version indication is not present.
- 7324: [Reports - Test Report on Build] $tlCfg->exec_cfg->features->exec_duration->enabled => USED ON REPORT.
- 7279: [Localization] Wrong french label for text counter feedback.
- 7306: [Test Plan Management] Sorting by name works incorrectly at Test Plans management page.
- 7301: [Installer] Add php-curl extension check => blocks REST integration with issue tracker.
- 7292: [Test Project Management] Sorting by Name does not work.
- 7282: [API - XMLRPC] API -XMLRPC - updateTestSuiteCustomFieldDesignValue raise database error.
- 7272: [Bug Tracking System - Redmine Integration] Debug Error Message : Test link Connection with Redmine Via Proxy.
- 7256: [Bug Tracking System - Redmine Integration] Testlink Connection Failure : Unable to connect to Redmine Hosted in Cloud Via Proxy Configuration.
- 7257: [Bug Tracking System - Redmine Integration] Add PROXY config on issuetracker integration via REST API.
- 7093: [GUI] gui->direct_link is empty after editing and saving a test case.
- 6708: [Issue Tracker management] Raising issue at step level (fman) - closed.
- 7337: [Assign Test Case Execution] Include direct link URL to test in test asssignment email sent to testers (fman) - closed.
- 7299: [Test Specification] Test Case - right to freeze/unfreeze test case version (fman) - closed.
TestLink - 1.9.14 (2015 Q3) (Released on 2015-09-20)
====================================================================
- 7261: [Test Execute] Multiple file upload for EXECUTION
- 7258: [Requirement to Test Case Assignment] Spelling error of 'maximum' in 'Assign Requirement'
- 7255: [Users and Rights] Unable to create a platform with XMLRPC request if user has not "admin" role
- 7254: [Users and Rights] Unable to create a testplan with XMLRPC request without "Test Project management" right
- 7160: [Security - XSS] Stored XSS in User Managment (View Users)
- 7241: [API - XMLRPC] reportTCResult - optional parameter to provide timestamp
- 7248: [API - XMLRPC] API to update testSuite Custom field design value.
- 7224: [Assign Test Case Execution] GITHUB CODE - Mail not sent in test case assignment when BULK MODE IS USED
- 7222: [GUI] GITHUB - Wrong Alt message on attachment
- 7053: [Reports] Possibility to get reports in xls format via wget
- 7227: [Test Spec. - Test Case Steps] Reordering Steps results in error message
- 7228: [Bug Tracking System - Redmine Integration] Issue creation with custom fields in Redmine is not working
- 7089: [Assign Test Case Execution] Bulk TESTER assignment does not work for all test cases when the first level test suite with many child suite is selected
- 7214: [Test Execute] GITHUB CODE - could not delete attachment in text execution results
- 7202: [API - XMLRPC] Method "tl.getTestCaseCustomFieldExecutionValue" not working as expected
- 7209: [API - XMLRPC] reportTCResult - optional parameter to provide execution duration
- 7195: [Third party components] E_WARNINGs on Windows from unlink() within Smarty
- 7193: [Third party components] Invalid HTML in test case version comparison (diff)
- 7194: [Reports] E_NOTICE when viewing test execution history
- 7155: [Performance] Test Plan usage - Edit test cases - access to test case data is very slow when test plan links > 30
- 7192: [LDAP authentication] E_NOTICE during successful LDAP login
- 7187: [Test Specification Import] TestLink installation unusable after importing a test case
- 7183: [Test Execute] Test Execute - config options to hide/show input for execution duration
- 7184: [Test Execute - Step notes & result] Test Execute - config options to hide/show input for file upload FOR TEST STEP
- 7173: [Reports - Test report matrix] Test report matrix - export to spreadsheet stopped working
- 7177: [Test Specification Import] LATEST GITHUB CODE - Already executed test case can't be edit by import a modified xml-file
- 6915: [Test Plan - Add/Remove Test Cases] Searching by keywork is not working in Add/Remove Test case option
- 4214: [Export/Import] Already executed test cases versions can be edited by importing an XML test case file
- 7174: [Users and Rights] Users assinged "guest" for a particular Test Project have rights to assign user roles even with rights disabled
- 7168: [Assign Test Case Execution] Tester can set test cases on Test Case Assignement Overview page without permission
- 7171: [General] Pagination via JQuery DataTables - added pagination length config option
- 7170: [Test Plan Management] Test plan table - add pagination
- 7127: [Reports] Possibility to include only assigned testcases in "Test report on build"
- 7130: [Reports - Test report matrix] In a certain test campaign, test report matrix ends up in a php error.
- 7145: [New Feature] direct link to test execution results page
- 7146: [Test Execute] Possibility to access Specific Execution Information in Print (Read Only) Mode
- 7159: [Database General] Projects disappeared
- 7025: [Database MySQL] Execution history is slow because of attachments comparison
- 7152: [Test Spec. - Search Test Cases] Test case search accessed by magnifying glass - Search gives no result
- 7150: [Test Plan (builds, milestones, test assign)] Copying builds without release date fails (POSTGRES)
- 7142: [Requirement Management] Requirement relations are missing when creating new testproject based on existent one
- 7148: [Test Specification] TestLink doesn't show Execution History for test cases if those are the part of inactive test plans
- 7131: [Reports] Test Results Flat (ONLY Spreadsheet format) - to allow further processing by user
- 7126: [Reports] Test report on SPECIFIC build displays wrong execution time
- 4669: [Test Project Management] Requirement / TestCase relationship broken when a new project is created from an existing one (1.9.3)
- 7123: [Build Management] User with build management able to delete builds (and thus test case execution) without Delete execution rights
- 7084: [Test Plan (builds, milestones, test assign)] While creating a new build in a Test Plan, only 'Not Run' test cases of the previous build should be associated with this build
- 7106: [Export/Import] Import TestPlan has to follow same logic than GUI (OBSOLETE STATUS issue)
- 1893: [API - XMLRPC] Admin should be able to e-mail users their API key
- 1422: [API - XMLRPC] Generate user API Key by admin
- 7112: [Test Execute] Test Case with multiple users assigned is not able to be executed.BY USERS WITH TESTER ROLE
- 7110: [Filters - Test Specification] Test specification - Filter Status shows test cases whose status is different than the selected
- 7111: [Test Spec. - Search Test Cases] Test Specification Filter for "Status" and "Importance" is broken
- 7085: [Reports] "Results by Tester per Build" - "Execution time" becomes 00:00 when total time exceed 1000 minutes
- 7096: [Bug Tracking System - Redmine Integration] Issue creation in Redmine is not working
- 2664: [General] FEATURE DEACTIVATE ALL VERSIONS (It should not be possible to add older versions of inactive testcases to testplan)
- 7107: [Reports] Report - Test Case Assignment Overview - when exec status <> not run display info about who has executed
- 7104: [Reports - Not RunTest Cases] Report - Not Run Test Cases - Assigned to column population needs to be refactored for multiple user exec assignment
- 7086: [Assign Test Case Execution] Feature for assigning test cases to multiple users
- 7097: [LDAP authentication] Can't login to TestLink when using strong passwords (len > 32) in LDAP
- 6938: [Build Management] Create Build from existent one - copy tester assignment filtering by execution status
- 7082: [Bug Tracking System - JIRA Integration] Jira Rest - Connection check - added get project data as MANDATORY CONDITION
- 7081: [Bug Tracking System - JIRA Integration] Jira Rest Integration - Better check on mandatory config parameter (projectKey)
- 7079: [Test Specification] Test suite document shows Last Result as not run for test cases witch has been executed
- 7072: [Assign Test Case Execution] Allow multiselect testers in the bulk testcase assignment dropdown list
- 7073: [Assign Test Case Execution] Assign Test Case Exec - tester combo multiselect
- 7067: [Test Plan - Add/Remove Test Cases] Add/Remove Test Cases - Advanced Filters do nothing
- 7060: [Test Plan - Add/Remove Test Cases] Add / Remove Test Cases - Multiselection of Importance
- 6996: [Test Specification - Move/Copy Test Cases] Copy Test Suite: can't keep Assigned Requirement
- 6997: [Test Specification - Move/Copy Test Cases] Copy TestSuite: add a checkbox to copy or not assigned requirement
- 7056: [Bug Tracking System - JIRA Integration] JIRA REST API - No bug is created after clicking on Save button.
- 6943: [Bug Tracking System - JIRA Integration] No message showing issue is created successfully or not when clicking "save" in "create issue" page
- 7050: [Bug Tracking System - JIRA Integration] JIRA REST - Possibility to specify custom fields on XML configuration
- 6955: [Roles] affecting a role on a project make you lose your own role (Pagination enabled)
- 7022: [Test Execute - Navigator] Test execution navigator tree doesn't show angle brackets and content in angle brackets for test case name.
- 5095: [Export/Import] Testcases with the same name after import from xml file
- 7038: [Roles] an user with a global "admin" role, can loose his rights on a project
- 7032: [Test Specification] Test Case - possibility to update attributes on ALL versions
- 7039: [Roles] Global Admin role will not be demoted/changed on test project or test plan
- 6980: [Database MS-SQL] Problem database MSSQL Update from 1.9.9.0 to 1.9.13.0:
- 7034: [Test Spec. - Test Case Table View] Bulk value assignment on Custom fields for Test Case set
- 7023: [Test Execute] Test execution mode shows "File i Browse... " bar under every test step - unable to disable with $tlCfg->exec_cfg->steps_exec
- 7006: [Test Spec. - Test Case Steps] Step is created twice assign a requirement jsut after the test creation
- 7004: [Bug Tracking System - JIRA Integration] (Proxy problem)Testlink 1.9.13 cannot connect to JIRA 6.2 using jira interface (SOAP/REST)
- 7014: [Test Specification] Create/Change test case with custom execution type, custom value is ignored
- 7020: [API - XMLRPC] API - XMLRPC - creatTestPlan() interface improvement
- 7019: [API - XMLRPC] API - XMLRPC - deleteTestProject() Method
- 7016: [API - XMLRPC] A project leader cannot create a test plan via the XMLRPC API
- 6982: [Bug Tracking System - JIRA Integration] Possibility to upload screenshot attachment from Testlink to Jira
- 6994: [GUI] Database search queries are displayed in GUI
- 6960: [GUI] Setup parameter for height and width of execution notes editor (AFTER EXEC NOTES HAS BEEN CREATED)
- 6964: [Test Plan - Assign Test Case Execution] Filter by platform on tree has no effect on right side pane
- 6957: [Test Execute] Test report does not show a test summary and duration
- 6962: [Communication via mail] Users not receiving password reset emails
- 6954: [Communication via mail] "Forgotten password" - email not send
- 6944: [Test Plan - Assign Test Case Execution] Test case was assign to "None" user or one user multiple times?
- 6934: [API - XMLRPC] Set keywords for a test case or a test case set
- 6907: [API - XMLRPC] XML-RPC API - Remove keywords from a test case set
- 6942: [Test Execute] Unable to "Copy issues from latest exec"
- 6852: [Test Specification] Invisible text after ghost links in TC description (WHEN Version is EMPTY on GHOST)
- 6931: [API - XMLRPC] Get keywords changed to support test case set as input
- 7234: [Database General] Test Projects disappear from Testlink UI but remain in the database (fman) - closed.
- 7230: [Test Plan (builds, milestones, test assign)] github - 20150804 - Cannot create milestone. (fman) - closed.
- 7226: [Req Overview] MSSQL - DB SPECIFIC - Group by issue - 'Requirements Overview (fman) - closed.
- 7212: [Installer] Alter tables SQL files not updated for MSSQL (fman) - closed.
- 7188: [Test Execute] fatal error thrown when trying to execute test cases on a project that is linked to a non existing Bugtracker (fman) - closed.
- 7154: [Documentation (Install, User Manual, help)] BUYING_SUPPORT.TXT should have more information (fman) - closed.
- 7125: [Reports] Test Report which depicts overall metrics (latest execution) for each user and allows filtering based on execution status (fman) - closed.
- 5220: [API - XMLRPC] xml-rpc : Error with 0005063 patch, when rights on test project / test plan differ (fman) - closed.
- 4577: [Export/Import] Unable to import requirement using XML file (fman) - closed.
- 5568: [Documentation (Install, User Manual, help)] Error in reports formats description in "Description of Test Reports and Metrics" (fman) - closed.
- 2097: [Reports] automate report (fman) - closed.
- 0899: [Reports] Improved format of printed Test Specification (fman) - closed.
- 0477: [Test Specification] Assign Requirements from TC page (fman) - closed.
- 4188: [API - XMLRPC] feature request - new method - getTestSuiteCustomFieldValue - closed.
- 7101: [Export/Import] Test Reports section shows feature for results import to MS Excel in general message but feature not available (fman) - closed.
- 4479: [API - XMLRPC] API - reportTCResult function shall follow a user project right (fman) - closed.
- 4254: [API - XMLRPC] test suites for project api request (fman) - closed.
- 5292: [API - XMLRPC] getLastExecutionResult method - changed to use optional argument "platformid" (fman) - closed.
- 3650: [API - XMLRPC] request for API method getExecutionResult. (fman) - closed.
- 1840: [Users and Rights] Users page takes extremely long to load with 100+ users (fman) - closed.
- 7078: [Bug Tracking System - JIRA Integration] Jira Rest causes crash preventing user from seeing execution results (BAD USER CONFIGURATION) (fman) - closed.
- 7076: [Users and Rights] cannot reset password (fman) - closed.
- 6920: [Bug Tracking System - JIRA Integration] Allow JIRA REST has similar configuration as JIRA SOAP (fman) - closed.
- 7009: [Reports] Blank report pages redux (OutOfMemory when generating reports) (fman) - closed.
- 6891: [Reports] Test Case Execution Reports (ALL) - execution_duration field data value not displayed (fman) - closed.
TestLink - 1.9.13 (2014 Q4) (Released on 2015-02-07)
====================================================================
6926: [Test Plan - Assign Test Case Execution] Cannot clear assignment in the "Assign to" drop down list
6924: [Test Spec. - Ghost Test Case Steps] Ghost string disappeared and overridden by the actual test step description when updating a test case to a new version
6905: [Reports - Failed/Blocked Test Cases] Link to test case is still raw link (no title) in email(HTML) type of test report
6914: [Test Execute] When executing any test case, the test cases tree is not updated with the new result
6876: [Test Execution - Bulk Mode] Link to set execution status for a single test case when working in Bulk Mode
6912: [Test Execute - Export for Results Import] Export for result import - add tags to allow specify result at step level
6899: [Reports - Failed/Blocked Test Cases] Incorrect bug ID in exported Excel spreadsheet
6904: [Test Execute - Export Test Plan] Export the Execution Order in a TestPlan for each testcase
6814: [Test Specification] Test Case search - add option to search value on multiple fields
6872: [Bug Tracking System - JIRA Integration] JIRA REST - add issue note ( Jira calls it comment)
6667: [General] Config option to enable/disable combo with access to user documentation on desktop/main page
6666: [General] Security Warnings - allow to configure how many times has to be done
6656: [Reports] "Results by Tester per Build" - show closed builds is not working
6655: [Test Execute] Many warnings when a user run a test
6641: [Test Plan Management] Blank web page appearance upon clicking on 'Active' field
6619: [Test Plan Management] Test Plan Management does not work
6648: [Test Execute - Navigator] Checkbox "Update tree after every operation" does not work
6116: [Test Execute] Test case keywords are not displayed on execution pane
6610: [Test Plan Management] After creating a new project and hitting "Return" button bring randomly "Webpage has expired"
6614: [Test Execute] "Cancel" button in Test Project Edit is not function
6637: [Requirement to Test Case Assignment] Create test case from requiremenent fails - UTF-8 Issue ?
6630: [Assign Test Case Execution] impossible to assign test case execution
6626: [Test Specification] Print view shows version 1 even if test case have version 2
6617: [Requirement Management] filter breaks requirement tree
6612: [Test Execute - Filters] Test execution filters destroys tree
6608: [Test Spec. - Test Case Steps] Test Case Step - Create / Modify - Add new button 'Save & Create step'
6611: [GUI] E_NOTICE Undefined property - printDocOptions.tpl.php - Line 172
6729: [Filter on Keyword - Test Specification] Keyword´s not working properly
6834: [Reports - Req. Based Report] Req. Based Report - add possibility to filter on specific BUILD
6907: [API - XMLRPC] XML-RPC API - Remove keywords from a test case
6896: [API - XMLRPC] XML-RPC API - add keywords to test case
6882: [Bug Tracking System - JIRA Integration] JIRA Bug Title created from TestLink 1.9.12
6878: [Test Plan Management] Testplan manangement screen is blank
6874: [Test Execution - Bulk Mode] Execution Order in Bulk Mode doesn't match with Order shown in Left test suite tree
6673: [0 - User too Lazy to analize defined categories] Set Urgent Tests duplicates test number when there is user assigned
6664: [Requirement to Test Case Assignment] When assigning requirement while using a filter, all filtered test cases get assigned and not selected test suite test cases.
6684: [Reports] Test Report / Test Report on Build - Display information regarding WHOLE execution attachments
6351: [Export/Import] Images in Test Cases not Exported for Word/OpenOffice Document
5950: [Export/Import] Images are not exported in Word
6700: [Assign Test Case Execution] Filter on Platform breaks Tc tree
6719: [Bug Tracking System - Mantis Integration] Create Mantis issue fails
6720: [User Authentication Methods] Impossible Logout via login page
6723: [Test Specification] Search Test Cases - possibility to filter also by Status
6722: [Test Plan - Assign Test Case Execution] It´s impossible Unassigned test cases alltogether
6695: [Test Execute] Attachments not found from Test Execution view
6692: [Test Plan Management] Updating test plan results in error message
6689: [Test Spec. - Test Case relations] Cancel does not function when creating a new test case with existing name.
4101: [Reports] Images not loaded with word format of Test Specification Document
4096: [Requirement Management] Supplementing Hyperlink to inlined Images in a Requirement Specification Document
6686: [Test Specification] Error when creating an existing test suite (when NAME already exists)
6688: [Test Spec. - Test Case relations] Cancel button does not function when creating a test case. (‘check to create another test case after saving’)
6725: [Reports - Test Cases Created x user] Test Cases Created x user - GUI Refactoring
6742: [Test Plan Management] Creating/editing test plan throws you to a fatal error page
6743: [New Feature] XML-Export: Include ID of test suites
6754: [Reports] Test Suite Heading Prints With Text Style, Not Header Style
6635: [Assign Test Case Execution] Can't Check/uncheck all Test cases in Assign Test Case Execution
6646: [API - XMLRPC] Extend API - XMLRPC Add function "removeAssignement"
6534: [Users and Rights] 1.9.12 DEV -- User with 'admin' rights cannot do Test Plan Management
6752: Could not Set Test cases urgency in bulk mode.
6805: [API - XMLRPC] API XML-RPC - add platform id for getTestCasesForTestPlan() Method
6756: [Test Specification] Test suite creation - Details can not be provided
6779: [API - XMLRPC] API -XMLRPC - getTestCaseKeywords()
6778: [API - XMLRPC] API -XMLRPC - getProjectKeywords()
6804: [Test Spec. - inline images] Test Suite - inline images on details
6773: [Test Execute] Test Case Step execution attachments - possibility to DELETE IT
6749: [Localization] pl_PL localization for 1.9.12 + DEV updates
6767: [Test Execute - Navigator] case execution module: when change tplan, current platform cannot renew
6809: [Reports] Requirements Report - display images inline & convert TestLink tlInlineImage command
6808: [Requirement Management] Requirement print view - display images INLINE
6797: [Keyword Assignment] Assign keyword AT TEST SUITE LEVEL - add option to assign keywords ONLY TO FILTERED TEST CASES
6740: [Reports - Req. Based Report] Req Based Report shows a rolled up status of "Partial Pass" when all test cases are not run
6792: [Test Execution - Bulk Mode] Test case execution from Test Case Assignment Overview (reports) using smile execution options.
6744: [Localization] relation_destination_tcase is not localized
6802: [Reports] Report Bug per Test Case - option to process all executions (and not the latest on platform & build)
6786: [Test Specification Export] Export Test Spec - add option to export external ID WITH PREFIX
6761: [Test Specification] Negative value in Estimate exec. field in test case
6759: [Test Execute] During 'delete execution' system fire 'DB Access Error - debug_print_backtrace() OUTPUT START'
6819: [Test Spec. - Ghost Test Case Steps] Test case STEP ghost inside Summary and/or Preconditions, is managed like Test case ghost (WRONG)
6803: [Test Spec. - inline images] Test Case - inline images on summary & preconditions
4668: [Test Project Management] Req Spec Attachements are lost when a new project is created from an existing one
4656: [Test Plan (builds, milestones, test assign)] Test Plan Copy - Build release date is not copied
6650: [Test Execute] Test Step execution - Attachment management
6824: [Milestones] Milestones view - add section to display status
6817: [Test Specification] Test Case Copy - possibility to specify new name when copying
6823: [Milestones] Milestone provides 100% complete when 0 test cases of target priority are available
6822: [Custom fields] Custom Fields - Possibility to add to current test project while creating
6799: [Requirement Management] Requirements Specification: Display uploaded images in-line in Requirement Scope
6735: [Test Execute] Automatically copy linked bugs from previous execution to the new one
6739: [Test Execute] IMPORT RESULTS VIA XML - Copy linked issues from (ABSOLUTE) latest execution
6736: [Test Execute] Copy linked issues from (ABSOLUTE) latest execution when creating a new execution
6821: [Test Project Management] Test Project List - add number of available test projects (respect grants)
6806: [API - XMLRPC] API XML-RPC - deleteTestPlan Method
6818: [Test Spec. - inline images] Test Case - inline images on STEPS
6855: [Test Project Management] Test project table - add pagination
6638: [Reports] Reports on format Pseudo MS Word doesn't load the reports list
6850: [Reports - Failed/Blocked Test Cases] In 'Reports and Metrics' section the direct link to Failed/Blocked/Not Run Test Cases doesn't work
6848: [Test Execute] Test case execution - bug list - possibility to configure ORDER BY
6726: [Test Specification] Test Case Search - GUI refactoring
6847: [Bug Tracking Systems Integration] Create Issue AFTER Execution - possibility to provide issue summary
6840: [Import results XML format] [Import test execution results] Ignore test results if already exists in TestLink (with same execution timestamp)
6837: [Test Execute - Navigator] Access Test Execution from Test Case Specification seems to be lost
6496: [Reports] Check impact on different reports of test case relations
6760: [Roles] Edit TestProject user roles at Project level - Spanish
6034: [Test Specification] Test suite 'Sort alpahbetically' breaks 'Cancel' button operation on other test suite feature
6828: [Reports - Req. Based Report] Req Based Report - When more than one platform exists, execution status is always on SAME platform (last created)
6856: [Users and Rights] Test project & Test Plan Role assignment - add pagination
6867: [Bug Tracking System - JIRA Integration] JIRA REST - getIssueTypes()
6866: [Bug Tracking System - JIRA Integration] JIRA REST API - Dynamic configuration to tracker management
6864: [Bug Tracking Systems Integration] Create Issue WHILE Executing - possibility to provide issue description
6865: [Test Plan Management] Test plan view - allow access to test case execution
6870: [Bug Tracking System - JIRA Integration] JIRA REST - getComponents()
6863: [Test Spec. - Test Case Table View] Test suite - test case table view - add possibility to update status & importance
6859: [Test Specification] Test spec - add test case to test plan (from test case view) - add pagination & search
6858: [Test Spec. - Keywords] Allow keyword remove from Test Case view screen
6869: [Bug Tracking System - JIRA Integration] JIRA REST - getVersions()
6854: [Bug Tracking Systems Integration] Create Issue WHILE Executing - possibility to provide issue summary
6868: [Bug Tracking System - JIRA Integration] JIRA REST - getPriorities()
6716: [Users and Rights] Access to assign role management functionality for granted users
4921: [New Feature] Direct link for Test Suite
6435: [Build Management] Build assignment to made available at execution time
6812: [Assign Test Case Execution] "Do" have no function while bulk user assignment.
6774: [Users and Rights] Testcase "Print view" button stopped working after today's (2014.11.20) update
6633: [Reports] Generate Requirement Specification Document doesn't load attachments
6604: [Bug Tracking System - Redmine Integration] Unable to Add/link a defect
6707: [User Authentication Methods] User Authentication is failing with DB when using LDAP & DB authentication
6795: [Keywords] Filter doesn't work when adding keyword
6782: [Bug Tracking System - Redmine Integration] Logging issues from TL to Redmine is throwing error message
6776: [API - XMLRPC] API-XMLRPC - option on getTestCase() to allow retrieve assigned keywords
6777: [Test Plan - Add/Remove Platforms] Test plan management panel not working --> blank page is retour
6765: [General] warnings about /tmp in testlink events log
6748: [Test Plan Management] Page crash after click "Test Plan Management" link at home page
6712: [User Authentication Methods] Reset Password does not write password to DB, when DEFAULT AUTH method is LDAP, but user is DB
6620: [Test Plan Management] Test Plan Management does not work
6730: [Localization] es_ES localization
6731: [Export/Import] No MSWord export available in test report
6663: [Reports] Undefined index on print.inc.php
6651: [Security] PHP Object Injection Vulnerability In /lib/execute/execSetResults.php
6631: Test Report does not work
6652: [Test Plan Management] Clicking "Test Plan Management" from home gives 500 error
[139 TICKETS]
TestLink - 1.9.12 (2014 Q3) (Released on 2014-09-28)
===========================================================================
[73 tickets]
- 6578: [Test Execute] Save execution result - option to CREATE Issue while saving (fman) - resolved.
- 6595: [Localization] string 'error_ldap_start_tls_failed' is not localized for locale 'en_GB'
- 6591: [Requirement to Test Case Assignment] Requirements Bulk Assignment- Assigned By & Timestamp are not saved
- 6255: [Requirement to Test Case Assignment] Requirements Bulk Assignment does not respect Test Case filter
- 6416: [Test Specification] Filtering for keywords with decent number of testcases results in infinite spinner for loading
- 6580: [Filters- Test Specification] Test Specification- Possibility to filter test cases without some keywords
- 6321: [Reports- Req. Based Report] Can't choose options in Requirement Specification Report
- 6548: [Bug Tracking System- Bugzilla Integration] Bugzilla XMLRPC Integration: Bug creation is not working in Bugzilla 4.4.4
- 6570: [Test Spec / Test Suite HTML Report] HTML report will be generated in NEW WINDOW
- 6517: [Test Plan- Assign Test Case Execution] Possibility to assign Test cases to multiple users
- 6581: [Test Specification] Can't update status, exec type, importance for previous tc version
- 6577: [Test Project Management] Create Test project- Default ON for Test priority & Automation
- 6556: [Test Specification] Test Suite & Test Case operations when working on Test Suite => migrate to icons
- 6554: [Test Specification] Test Suite operations when working on Test Project => migrate to icons
- 6574: [Test Spec / Test Suite Pseudo Word Report] Test Spec / Test Suite Pseudo Word Report
- 6566: [Bug Tracking System- Mantis Integration] Mantis- Create Issue via SOAP API- reporter will be set to TestLink Logged user
- 6513: [Bug Tracking System- JIRA Integration] Create Issue via REST API- reporter will be set to TestLink Logged user
- 6415: [Reports] Reports with direct link are dispayed shifted
- 6506: [Security] Cross-Site Request Forgery on lib/usermanagement/rolesView.php (CWE-352)
- 6455: [Test Execute- Navigator] "null" erasing in test execution tree
- 6557: [Bug Tracking System- Bugzilla Integration] Mantis SOAP- addNote() method
- 6555: [Bug Tracking System- JIRA Integration] JIRA- REST Integration- Check for connection OK is WRONG
- 6551: [Test Specification] (User cannot export Test Spec Document) Possibility to generate HTML DOC for a specific Test Suite
- 6545: [Reports] On report with test steps exec wrong value is used for test case execution type
- 6543: [Failed/Blocked Test Cases] test steps execution report (print view) always shows FOR TEST CASE lastest execution result
- 6553: [Test Spec.- Test Case Steps] Reordering of steps alwaws gives error if more than one test case version exists
- 6531: [Custom fields] Apostrophe in test case custom field string, list, multiselection list causes DB errors, bad filtering, etc
- 6525: [Security] Configuration of password requirements
- 6524: [General] New configuration option- notifications
- 6516: [Test Plan- Assign Test Case Execution] Remove Tester through direct icon
- 6511: [Bug Tracking System- Redmine Integration] Redmine Integration- Problems with target version mapping
- 6515: [Test Execute] Exec test case- New Option Assign to me execution task if not assigned
- 6514: [Test Execute] Exec test case- choose results from combo instead of radio buttons
- 6509: [Usability] Test project combo on top- possibility to display test project prefix
- 6504: [Req Overview] Report Last Modified column- on POSTGRES 01/01/1970 is displayed
- 6481: [Test Project Management] Enable/Disable Requirements feature from test project list
- 6498: [Security] Cross-Site Scripting on /lib/plan/planExport.php (CWE-80)
- 6499: [Security] Blind SQL Injection on /lib/requirements/reqExport.php (CWE-89)
- 6492: [Test Cases Assigned to Me] Allow Quick & Dirty execution
- 6489: [JIRA Integration] Undefined property: stdClass::$duedate- when running 'failed test cases' report)
- 6486: [Security] Cross-Site Scripting on login page
- 6488: [Security] SQL Injection (CWE-89) (eventinfo.php)
- 6460: [API- XMLRPC] Extend API- XMLRPC Add function "getTestCaseBugs"
- 6483: [User Interface General] Top menu- replace text with images
- 6482: [Test Plan Management] Test plan list- action buttons refactoring
- 6473: [Requirements Import- TL XML format] Confusing message appears while using Import under Requirements
- 6296: [Test Specification- Move/Copy Test Cases] feature should only present filtered tests for move/copy when filer is applied.
- 6464: [Test Importance / Urgency / Priority] Set Test urgency- display also tester assigned
- 6463: [Platforms- import] Platforms import- user feedback improvements
- 6451: [Import results XML format] FEATURE REQUEST- Importing custom fields in in test execution
- 4722: [Import results XML format] Importing custom field values during test results import
- 6452: [API- XMLRPC] Get user assigned to test case XMLRPC method
- 6490: [API- XMLRPC] Assign test to user using assignTestCaseExecutionTask doesn't report the right platform (fman)- closed.
- 6497: [Reports- Test report matrix] memory exhausted when use test report matrix (fman)- closed.
- 6461: [Filters] Filter in "Set urgent Test Case section dosen't work (1.9.9) (fman)- closed.
- 6484: [Test Execute] Complete execution history disregards testplan ID => due to typo error (fman)- closed.
- 6562: [Redmine Integration] Redmine REST Integration- Possibility to ADD notes to issues on Redmine from TestLink
- 6547: [New Feature] Automatically add comment to issue report when link a test execution to a issue
- 6560: [Mantis Integration] Mantis SOAP Integration- Possibility to ADD notes to issues on Mantis from TestLink
- 5234: [Test Spec.- Test Case relations] Relation feature for Testcase
- 6501: [Test Spec.- Test Case relations] Export Test Case- relations need to be included
- 6493: [Test Spec.- Test Case relations] Test Case execution- Display Test case relations
- 6068: [Bug Tracking Systems Integration] JIRA REST API Integration- CRITIC ONLY via HTTPS
- 5487: [Database General] When using Foreing Keys, add ON DELETE CASCADE option when available
- 6590: [Reports- Test report matrix] Export of Test Result Matrix fails and shows blank page due to PHP out of memory error
- 6572: [Req Overview] Req overview feature- performance issues with 2000 req or more
- 6530: [Test Spec.- Test Case relations] User with right Guess can create test case relation (KO)
- 6230: [Filters- Test Specification] Possibility to configure Test plan usage show up in Test specification
- 6470: [Test Execute- Export for Results Import] Test Execute- Export for Results Imports => honors filters
- 6607: [New Feature] Export users list
- 6533: [Test Specification] Template for Summary and Preconditions is not used when creating multiple Testcases
- 6540: [Database MS-SQL] Error creating tables into database using the script provided with 1.9.11
- 5201: [Users and Rights] There is a id criteria on tlRole::getUserIDsWithTestProjectRole function that is not needed
TestLink- 1.9.11 (2014 Q2 - bug fixing) (Released on 2014-07-28)
===========================================================================
[35 tickets]
-6453: [GUI] Spelling mistake in Metrics Dashboard (fman) - resolved.
-6265: [Test Execute - Export Test Plan] Cancel button is not working (fman) - resolved.
-6337: [User Interface General] Spelling mistake in Requirements submenu (fman) - resolved.
-6450: [Test Plan - Add/Remove Test Cases] Add/Remove Test Case to test plan - Status Filter (fman) - resolved.
-6442: [Test Plan - Assign Test Case Execution] Assign Test Case Execution: Undefined property: tlTestCaseFilterControl::$formAction (fman) - resolved.
-6444: [API - XMLRPC] Extend API - XMLRPC function "getLastExecutionResult" to return also the linked bug ids (fman) - resolved.
-6447: [Test Specification] "Estimated exec. (min)" is blank when new test case version is created. (fman) - resolved.
-6331: [API - XMLRPC] Assign test case execution XMLRPC method (fman) - resolved.
-6424: [Reports - Req. Based Report] No excution details page poped up when clicking "Execution" icon of non-excuted case on "Requirements based Report" page (fman) - resolved.
-4738: [Reports] "Last Build" on Test result matrix takes the wrong build as being last (fman) - resolved.
-5938: [Test Specification] Include "Status" as filtering option in the Filters section (fman) - resolved.
-6394: [Filters - Test Specification] Status Filter (fman) - resolved.
-6370: [Test Specification] DB Access Error appear while I try to assign keyword to non existing test case (fman) - resolved.
-6379: [Test Specification] DB Access Error appears under Search Test Cases (fman) - resolved.
-6377: [Test Plan Management] When just ONE TEST PLAN exists, deleting it causes DB error on screen (fman) - resolved.
-6262: [Test Specification] The tree-list view is not refreshed when moving/copying a test suite (fman) - resolved.
-6356: [Test Spec. - Test Case Steps] Add control to force (at least from GUI) that all step numbers ARE UNIQUE (fman) - resolved.
-6355: [Test Spec. - Test Case Steps] Add control to force (at least from GUI) that step number has to be > 0 (fman) - resolved.
-6350: [Bug Tracking System - Bugzilla Integration] Bugzilla Integration is not working in Bugzilla 4.4.4 (fman) - resolved.
-6336: [GUI] Char out of place in filter - Test Execution (fman) - resolved.
-6325: [Test Execute] Blank Page shown if a user has not been assigned any tests and he visits the Test Execution Page (fman) - resolved.
-6320: [Reports] Add configuration variable for the results By Status report (fman) - resolved.
-6318: [Test Plan - Add/Remove Platforms] "Add / Remove Platforms" link does nothing (fman) - resolved.
-6314: [Export/Import] Export TestPlan XML with FULL Testcase External ID to permit TO THIRD PARTY TOOL generation of Execution Result XML file (fman) - resolved.
-6361: [User Interface Customization] Need a user setting to optionally always display testcase "Actions" buttons. (fman) - resolved.
-6357: [Database Schema] Database Schema - TestLink 1.9.x (fman) - resolved.
-6396: [Test Specification] Edit test case - cancel button refactoring (fman) - resolved.
-6391: [Test Specification] The 'Edit Test Case' page crashed after clicking 'Close' button (fman) - resolved.
-6392: [Test Specification] 'Add Test Case Version to Test Plans' page crashes after clicking 'Cancel' button (fman) - resolved.
-6343: [Reports - Test report matrix] Test Results Matrix exports as spreadsheet fails with high number of active builds (> 40) (fman) - resolved.
-6119: [Test Plan - Add/Remove Test Cases] Add/Remove Test Case - Right Pane Refactoring - Display Test Plan Tree + Test Report (fman) - resolved.
-6341: [Reports] Test Plan Report - test case version seems missing (fman) - resolved.
-6422: [Test Specification] Estimation in Test specification as mandatory field via Javascript (fman) - resolved.
-6390: [Test Execute] Tree is slow to load when user clicks on Test Execution. (fman) - resolved.
-6365: [Test Plan Management] Test case creation in test link is not updated in test suite automatically (fman) - resolved.
TestLink - 1.9.10 (2014 Q1 - bug fixing) (Released on 2014-04-25)
===========================================================================
[69 tickets]
- 0006061: [Requirements Import - Mantis XML format] Create Req. from Mantis Issue XML export (fman) - resolved.
- 0006100: [Roles] Divide & Conquer - rights with more granularity (fman) - resolved.
- 0005055: [API - XMLRPC] Error attaching file via XMLRPC API (kinow) - resolved.
- 0006213: [API - XMLRPC] Test plan access rights not checked on API - XMLRPC (fman) - resolved.
- 0006307: [API - XMLRPC] XML-RPC API getTestCasesForTestSuite() - add option to return also test case keywords (fman) - resolved.
- 0006257: [Bug Tracking System - Bugzilla Integration] Junk values of Bugzilla ID and Bugzilla key in Exported Spreadsheet on Failed Test Case Report (fman) - resolved.
- 0006303: [Custom fields] Facility for linking the Custom field to Builds only (fman) - resolved.
- 0006253: [Reports] Display Attached Images on reports when displayed like HTML online (fman) - resolved.
- 0005031: [New Feature] Automatically create user account at the first time of login if the account just exists on LDAP (fman) - resolved.
- 0006261: [Test Specification] Test suite 'Sort alphabetically' is not working properly (fman) - resolved.
- 0006258: [User Authentication Methods] User cannot login after change Authentication method from LDAP to DB (fman) - resolved.
- 0006110: [Test Execute] Replace help on right pane with exec summary regarding Test plan, Build, Platform (fman) - resolved.
- 0006250: [Users and Rights] Cannot set new rights after upgrade to 1.9.8 (fman) - resolved.
- 0006236: [Test Plan - Add/Remove Test Cases] Option to display whole test specification (filtered) on right pane (fman) - resolved.
- 0006215: [Custom fields] Custom DATE fields in 64bit OS systems show 30/10/-2 by default instead of being empty (fman) - resolved.
- 0006216: [Test Plan - Assign Test Case Execution] Crash when changing from TestPlan with Builds to TestPlan with NO Builds in the "Assign Test Case Execution" Window (fman) - resolved.
- 0006218: [Reports] Report Metrics Dashboard - Test Project Progress Section is always empty (fman) - resolved.
- 0006223: [Metrics Dashboard] Metrics dashboard doesn't show up (fman) - resolved.
- 0006204: [Test Specification Import] Import Estimated exec. duration from XML (fman) - resolved.
- 0006174: [Reports] Requirements based Report - No execute content display when clicking "exec_icon.png" icon (fman) - resolved.
- 0006197: [Database MS-SQL] 1.9.8 Upgrade - req_coverage table (fman) - resolved.
- 0006175: [Reports] Add "Execution time" to "Results by Tester per Build" report (fman) - resolved.
- 0006185: [API - XMLRPC] reportTCResults() - new parameter 'user' (user login) (fman) - resolved.
- 0006137: [Test Plan Management] Test plan list view - display quantity of builds (fman) - resolved.
- 0006179: [Test Execute] Cannot remove already executed test case (demo.testlink.org) (fman) - resolved.
- 0006173: [Test Plan - Add/Remove Test Cases] E_NOTICE Array to string conversion - in /development/gitorious/testlink/gui/templates_c/ce37385d2519d69075b04c94daed876d1c2677c (fman) - resolved.
- 0006166: [Users and Rights] Adding "Event viewer (read only access)" to a Role won't show the Events link (fman) - resolved.
- 0006164: [Requirement to Test Case Assignment] One requirement link same test case duplicated if the test case has more then one version. (fman) - resolved.
- 0006159: [API - XMLRPC] getTestCasesForTestPlan returns confusing exec_status [POSTGRESQL] (fman) - resolved.
- 0006006: [Export/Import] Requirement relations are not exported and cannot be imported (fman) - resolved.
- 0003560: [Export/Import] Requirements Export does not Export Requirement Relations (kinow) - resolved.
- 0006149: [Build Management] Build View - possibility to set active/inactive, open/close on quick way (fman) - resolved.
- 0006144: [Third party components] jquery and prototype third party packages CONFLICT (fman) - resolved.
- 0006138: [Test Specification] Test Specification - Add buttons to Generate Test Spec Document on Test Project and Test suite (fman) - resolved.
- 0006136: [GUI] Requirement Specification - Icon to show/hide actions for REQUIREMENTS (fman) - resolved.
- 0006135: [GUI] Requirement Specification - Icon to show/hide actions Req. Spec (fman) - resolved.
- 0006128: [GUI] Test Specification - Icon to show/hide actions on Test Project and Test Suites (fman) - resolved.
- 0006129: [GUI] Test Specification - Icon to show/hide actions on Test Case (fman) - resolved.
- 0006127: [Test Execute] unable to execute test case with linked requirement using TL1.9.9 hotfix package - file inc_exec_test_spec_req.tpl missing (fman) - resolved.
- 0006125: [Reports] Warning about arg_build_set being undefined when exporting to Excel (fman) - resolved.
- 0006124: [Localization] Updated some missing localization strings for Dutch (fman) - resolved.
- 0006126: [Bug Tracking System - TRAC Integration] Warning about unknown property "id" (fman) - resolved.
- 0006121: [Bug Tracking System - TRAC Integration] isResolved property not set for TRAC (fman) - resolved.
- 0006123: [Reports - Test report matrix] Showing test results gives invalid index warning in events (fman) - resolved.
- 0006112: [Test Execute - Filters] Filter by "bug" when execute tests (fman) - resolved.
- 0006109: [API - XMLRPC] createTestCaseSteps with action 'update' does not change existing steps (fman) - resolved.
- 0006102: [API - XMLRPC] updateTestCase returns debug informations (fman) - resolved.
- 0006101: [API - XMLRPC] updateTestCase does not set modification timestamp (fman) - resolved.
- 0006099: [GUI] Keyword Assignment feature - cleanup GUI (fman) - resolved.
- 0006028: [Bug Tracking System - JIRA Integration] Integration with Jira 6.1 broken. - Due to JIRA schema changes (fman) - resolved.
- 0006098: [GUI] Access to REQUIREMENTS specification feature from desktop - right pane will present ACTIONS instead of help (fman) - resolved.
- 0006097: [GUI] Access to test specification feature from desktop - right pane will present test project data instead of help (fman) - resolved.
- 0006082: [Requirements Import - TL XML format] Import req from DocBook to testlink ignore of $tlCfg->req_cfg->importDocBook->requirement var (fman) - resolved.
- 0006085: [Test Specification - Move/Copy Test Cases] Move/Copy Test Cases Feature ON TEST SUITE - do not offer chance to choose [Copy Requirement Assignments] (fman) - resolved.
- 0006087: [Contribution Maintained BY USER] Import RESULTS - import test EXECUTION duration through xml files (fman) - resolved.
- 0006084: [Test Specification - Move/Copy Test Cases] Cannot copy a testcase with (attached) linked requirements (fman) - resolved.
- 0006083: [Reports] Test Plan Execution report on SPECIFIC BUILD (fman) - resolved.
- 0006060: [Test Plan Management] Test Plan attachment management refactoring (fman) - resolved.
- 0006076: [API - XMLRPC] addPlatformToTestPlan creates invalid platform links (fman) - resolved.
- 0006056: [Test Execute] Execute with tree refresh, refresh also right pane removing exec data from user view (fman) - resolved.
- 0006066: [User Interface General] Testlink "Home" link on login screen incorrect (fman) - resolved.
- 0006049: [Test Specification] Test Suite attachment management refactoring (fman) - resolved.
- 0006059: [Requirement Management] Requirement - attachment management refactoring (fman) - resolved.
- 0006054: [Requirement Management] Req. Specification attachment management refactoring (fman) - resolved.
- 0006051: [Export/Import] Extension of file exported is php instead of xml, when you export Platforms (fman) - resolved.
- 0006259: [Reports - Test report matrix] Test report matrix - Spreadsheet output - display more info that on HTML output (fman) - closed.
- 0006108: [API - XMLRPC] createTestCaseSteps creates steps without test case references (fman) - closed.
- 0006086: [Test Execute - 'Save and move to next'] "Save an move to next" doesn't work (fman) - closed.
- 0006057: [Bug Tracking System - JIRA Integration] Jira integration via SOAP is broken due to changes in jirasoapInterface.class.php (not true just debug message printed) (fman) - closed.
TestLink - 1.9.9 (2013 Q4 - bug fixing) (Scheduled For Release 2013-11-16)
==========================================================================
[64 tickets]
- 0004959: [Test Specification] Closing file upload window after uploading file ...(fman)
- 0006044: [API - XMLRPC] getTestCase() raise <500 Internal Server Error>, when testcaseexternalid includes no '-' (fman)
- 0006045: [API - XMLRPC] new method testLinkVersion (fman)
- 0006036: [Requirement Management] When trying to view requiremeent versions, the grouping label shows "Array.version Array version" (fman)
- 0006031: [Reports - Req. Based Report] H<n>-Tags not nested properly (fman)
- 0005926: [Database General] DB Access Error when access Requirement Specification (fman)
- 0005981: [Bug Tracking System - JIRA Integration] Jira SOAP - Additional Attributes Management has limitations (fman)
- 0006007: [Bug Tracking System - JIRA Integration] Jira affectsVersions management (fman)
- 0006033: [Custom fields] Custom Fields for Build (fman)
- 0006024: [Test Specification - Move/Copy Test Cases] GUI / Usability improvements - jQuery Chosen for HTML Select (fman)
- 0006017: [Test Spec. - Ghost Test Case Steps] Test Case Steps Ghost cannot use steps in the same test case (fman)
- 0005996: [API - XMLRPC] Need XMLRPC api for getExecutionResult that takes a build paramter (fman)
- 0006013: [API - XMLRPC] Missing build number parameters for testcase execution status (fman)
- 0006021: [API - XMLRPC] getLastExecutionResult () - new parameters platform and build (fman)
- 0006015: [Available Fixes] Webserver: Nginx - https is forced incorrectly (fman)
- 0005970: [Test Execution - Bulk Mode] Bulk execution for automated group of Test Case IN a TEST SUITE (fman)
- 0005983: [Bug Tracking System - JIRA Integration] Jira SOAP - Additional Attributes Custom Fields (fman)
- 0005972: [User Authentication Methods] User Authentication Methods - Allow configuration at user level (fman)
- 0004596: [Requirement Management] Exception thrown when generating Test cases from Requirements (fman)
- 0006011: [Requirement to Test Case Assignment] Create testcase from req - (tlCfg->req_cfg->... Crash (fman)
- 0006009: [Test Plan - Add/Remove Test Cases] Test Case Execution order number is short of 1 char for the input field (fman)
- 0006003: [Test Specification] Test Spec Requirement list did not refresh after admendment (fman)
- 0005984: [Test Specification] Test Specification Link Requirements Icon does not appears after saving new test case (fman)
- 0005995: [Import Requirements - XML format] Import req from DocBook to testlink don't work. (typo error) (fman)
- 0005998: [Test Execute - Navigator] CombBoxes on Settings Section - Add search capability (fman)
- 0005997: [GUI] Test Plan CombBox on main screen (Desktop) - Add search capability (fman)
- 0005991: [Test Spec. - Ghost Test Case] Any Text to the RIGHT of Ghost Test Case string is rendered in a new line (fman)
- 0005992: [Test Spec. - Test Case Steps] Create/Edit Test Case Step - ghost on SUMMARY and PRECONDITIONS are not .... (fman)
- 0005311: [Users and Rights] Test plan & Test project Config - convert options into rights (fman)
- 0005982: [Bug Tracking System - JIRA Integration] Jira SOAP - Component is IGNORED When issue has ONLY ONE. (fman)
- 0005975: [Requirement to Test Case Assignment] Bulk Requirement linking to filtered test cases at ...(fman)
- 0005921: [Database Postgres] POSTGRESQL - Update 1.9.7 to 1.9.8 fails because db_schema_update.sql use unknown typ number() (fman)
- 0005936: [Requirement Management] DB Access Error message on Requirement visualization/modification (fman)
- 0005943: [Requirement Management] MS-SQL - New fields for req coverage table are missing (fman)
- 0005959: [Usability] Assign Test Project Roles / Assign Test Plan Roles - Display login + first name + last name (fman)
- 0005957: [Test Execute - Filters] Test Case Execute - BULK MODE - Filter on "Test Case Title"is OK on tree but ignored ...(fman)
- 0005958: [Test Execution - Bulk Mode] Test Execute Bulk Mode - Crash with DB Error (fman)
- 0005946: [Test Project Management] Test Project Management - Add filter by name on test project list (fman)
- 0005944: [Requirement Management] Delete Requirement crashes with DB error (fman)
- 0005937: [Filters - Test Specification] (Required) Custom Fields become mandatory in Filters Section (fman)
- 0005940: [Database MS-SQL] Table req_coverage does not have collumns creation_ts and author_id (fman)
- 0005916: [GUI] It's impossible to login with browser set to italian language (or other language <> english) (fman)
- 0005928: [Test Execute - Export Test Plan] Export Test Plan with Platforms generate xml with no info (fman)
- 0005912: [Reports] Report Bugs per Test Case shows white screen (fman)
- 0005924: [Documentation (Install, User Manual, help)] README File with bad path to db scripts to upgrade from 1.9.7 to 1.9.8 (fman)
- 0005925: [Test Spec. - Ghost Test Case] ghost link to a testcase in a step of the same testcase -> crash (fman)
- 0005927: [Test Execute] Bulk execution not updating execution status (fman)
- 0005895: [Communication via mail] New Account Created notification is sent to wrong destinations (fman)
- 0005922: [Filters] Filters on creation and modification dates is ignored in test cases search (fman)
- 0005920: [Users and Rights] [FEATURE] User Management - allow access to user data usin login (as Mantis do) (fman)
- 0005919: [Users and Rights] User list - <no rights> is not displayed on role column (fman)
- 0005918: [GUI] [FEATURE] Test Case View - Screen cleanup - information about author and modifier only displayed on request. (fman)
- 0005914: [Test Spec. - Ghost Test Case Steps] [FEATURE] Create Ghost Test Case STEP that always follows latest active version (fman)
- 0005906: [Test Spec. - Ghost Test Case] [FEATURE] Create Ghost Test Case that always follows latest active version (fman)
- 0005907: [0 - User too ...] Links are not click-able in Description fields for Projects Test Plans and Builds (fman)
- 0005910: [Requirement Management] Req. Management - link test case to req. providing test case external ID - Nothing happens (fman)
- 0005902: [Metrics Dashboard] Uncaught exception when doing a Metric Dashboard when no releases are active or open. (fman)
- 0005901: [Bug Tracking System - TRAC Integration] TRAC integration - sendCmd() errors are not logged (fman)
- 0006037: [Reports - Req. Based Report] Add the option : Print list of attached files (fman)
- 0006000: [Export/Import] Import Test cases with requirements - DB access error - Relations not saved (fman)
- 0005985: [Test Spec. - Ghost Test Case Steps] Test Case Step not able to render with additional manual text input (fman)
- 0005989: [Issue Tracker management] Extra information is displayed in some on top of the page ... (fman)
- 0005967: [Test Plan - Add/Remove Test Cases] It is not possible to remove executed test case from Testplan (fman)
- 0005942: [Database MS-SQL] Cannot create test cases from requirement document (fman)
TestLink - 1.9.8 (2013 Q3 - bug fixing) (Scheduled For Release 2013-09-10)
==========================================================================
- 0005687: [Database Schema] db_version - add PK on version (fman)
- 0005885: [Migration/Upgrade Testlink] Provide SQL to migrate values from estimated and actual execution time to new fields (fman)
- 0005756: [Database Schema] Execution duration (minutes) is part of executions table (fman)
- 0005688: [Database Schema] cfields_testproject - columns related required feature (fman)
- 0005680: [Custom fields] Adding Required attribute to Custom field via HTML5 required attribute (fman)
- 0005755: [Database General] add estimated_exec_duration column to tcversions table (fman)
- 0005545: [Database Schema] Add fields author_id, creation_ts to req_coverage table. (fman)
- 0005836: [Test Execute - Filters] Test Execute - include unassigned Test Case checkbox issue (fman)
- 0005881: [Test Specification] Using Direct links to test cases (linkto.php) doesnt work (fman)
- 0005866: [API - REST] REST 'GET /testprojects/:id' raise 500 Internal Server Error - due to authentication (fman)
- 0005865: [API - REST] REST response header should define content-type application/json (fman)
- 0005859: [Users and Rights] Possibility to export users (fman)
- 0005848: [API - XMLRPC] API XML-RPC - getUserByLogin(), getUserByID() (fman)
- 0005857: [API - XMLRPC] getTestCase() method with specified 'version' param always return version 1 (fman)
- 0005858: [Test Project Management] Usability Improvement - Toggle Active attribute from test project list (fman)
- 0005856: [Test Plan Management] Usability Improvement - toogle Active/Inactive from test plan list (fman)
- 0005850: [Import results XML format] Add Option to create XML output file, to make simple import of results (fman)
- 0005855: [Test Specification Export] Test Spec Export - Ghost in test case steps are replaced with text from source test case step (fman)
- 0005854: [Test Execute - Export Test Plan] Test Execute - After Export Test Plan some context info is missing and ...
- 0005800: [Test Spec. - Test Case Steps] TEST CASE STEP - Custom Field Values get deleted when leaving Test Case Step with Save & Exit (fman)
- 0005746: [Users and Rights] Cannot set new rights after upgrade (fman)
- 0005763: [Test Specification] Test Case Reuse - Ghost - Possibility to get generated ghost string (fman)
- 0005840: [Bug Tracking System - JIRA Integration] JIRA SOAP - Add possibility to disable CREATE ISSUE feature via configuration (fman)
- 0005838: [Localization] Additions to German Localization (fman)
- 0005837: [Localization] French localization update (fman)
- 0005749: [Test Specification] got E_WARNING when creating/managing Test cases (fman)
- 0005808: [Test Execute] Test case versions for executed test cases show new version when updated (fman)
- 0005812: [Export/Import] Can not be imported - You are hitting an existent Test Case with SAME EXTERNAL ID (fman)
- 0005804: [Reports - Failed/Blocked Test Cases] Failed Test Cases report shows history on all projects, ignoring Role security (fman)
- 0005796: [Database MySQL] Search test case or string, using search box on menu bar - Database error (fman)
- 0005788: [Test Plan - Assign Test Case Execution] test case execution order not working on RIGHT PANE (fman)
- 0005781: [Requirement Management] "delete this version" in requirement pop-up from "Requirement Overview" breaks requirement overview;
- 0005739: [Filters - Test Specification] Test Specification Filters - Add option to filter by 'NO keywords' (fman)
- 0005787: [Import Requirements - XML format] Custom fields import via XML for Requirement Specification does not work (fman)
- 0005527: [Filters] search test cases - possibility to search by test author (fman)
- 0005764: [Reports] Browsers IE - OPERA / Clicking report direct link opens file "Save As" dialog (fman)
- 0005767: [Bug Tracking System - Redmine Integration] Redmine 2.x - Link access issue (uriview) has changed from 1.x
- 0005762: [Test Specification] test case view: possibility to change attributes without entering edit mode (fman)
- 0005760: [Bug Tracking System - Youtrack Integration] Default youtrack template contains comments that break the integration (fman)
- 0005640: [General] Popup for not saved changes is not shown if using CKEDITOR (fman)
- 0005734: [Bug Tracking System - Redmine Integration] Cant create new bug - subject is too long (fman)
- 0005748: [Requirement Management] E_NOTICE when creating/managing Requirements (fman)
- 0005657: [Test Specification] No alert for not saved changes while editing TestSuite name (fman)
- 0005730: [Custom fields] Custom fields view - new layout (fman)
- 0005703: [Bug Tracking System - Redmine Integration] Create issue with Portuguese characters produces mangled text (fman)
- 0005736: [Bug Tracking System - TRAC Integration] TRAC integration does not appear in the dropdown box (fman)
- 0005733: [Bug Tracking System - Redmine Integration] Create bug - debug information displayed (fman)
- 0005770: [Bug Tracking System - JIRA Integration] The issue field (eg JIRA) has limited caracter number (16)? (fman)
- 0005842: [Import results XML format] import XML results error test case not found (fman)
- 0005262: [Users and Rights] Default admin's password can not be changed because user doesn't have an email address (fman)
- 0005807: [Test Plan - Add/Remove Test Cases] Unable to filter by Importance (fman)
- 0005219: [Bug Tracking System - TRAC Integration] TRAC Integration says "Bug ID does not exist on BTS!" (fman)
TestLink - 1.9.7 (2013 Q2 - bug fixing) (Scheduled For Release 2013-06-10)
==========================================================================
- 5587: NEW FEATURE [Users and Rights] Duplicate/Copy Role feature
- 5633: NEW FEATURE [Roles] Critic system roles will be not editable from GUI anymore
- 5650: NEW FEATURE Test Plan Design Report, Test Plan Execution Report refactoring
- 5613: NEW FEATURE Redmine Create issue from Testlink - Allow setting of issues attributes through XML configuration.
- 5611: NEW FEATURE [Test Specification Import] Create Test Cases from Mantis standard XML export format.
- 5600: NEW FEATURE [Reports - Failed/Blocked Test Cases] Reports - Failed/Blocked/NotRun - Export in spreadsheet format.
- 5588: NEW FEATURE [Reports - Failed/Blocked Test Cases]
Add Custom Fields (only for test cases) used on EXECUTION to the report.
- 5612: NEW FEATURE contribution : some minor issues and some enhancements in Test Plan Report
for multiplatforms testplan
- 5322: NEW FEATURE [Test Specification] Link to another test case via ID within TestLink.
- 5722: NEW FEATURE [Test Specification] Add a button to 'Add Another Test Case' ...
- 5724: NEW FEATURE [Test Specification] add option for quick access to execute feature
- 5725: NEW FEATURE [Test Spec. - Test Case Steps] Test Case Step - Create / Modify - Add new button 'Save & Exit'
- 3900: NEW FEATURE save- create step- copy step -cancel bar should be locked when editing a step in a test case
- 5723: NEW FEATURE [GUI] Move system wide operations under a new section
- 5660: [API - XMLRPC] XMLRPC API - directory layout changes
- 5599: [Test Execute] "Save and move to next" worked unexpectedly within a test suite after
test case IMPORT from XML without ORDER attribute
- 5667: [Test Execute - Filters] Filter by custom or non-custom field reflects on tree but not after
selecting a test suite in Test Execution mode
- 5674: [Test Execute - Filters] Test Case Execute - BULK MODE - Priority filter is OK on tree but
ignored on generation of right pane content
- 5673: [Test Execute - Filters] Test Case Execute - BULK MODE - Execution type filter is OK on tree but
ignored on generation of right pane content
- 5641: [Test Execute] ghost syntax for test case reuse is IGNORED on Test execute feature
- 5572: [Test Execute - Filters] Filter by Platforms - Wrong test case state count in test plan execution
- 5665: [Test Project Management] testproject class - method create() - interface changes + more features
- 5580: [Filters] Filters has no effect in Test Execution when same sets of test cases are assigned by Platform
- 5493: [Bug Tracking System - Mantis Integration] Mantis bug not visible - Integration via Database
- 5607: [Database MS-SQL] DB Access Error while deleting a test step in a testcase
- 5631: [Migration/Upgrade Testlink] Deleting a test step throws DB Access Error
- 5634: [Roles] User changes Test Project access from public to private, Test Project banishs from Test project view
- 5637: [Roles] User CREATES Test Project with access private, Test Project banishs from Test project view
- 5635: [Roles] User change Test PLAN access from public to private, Test PLAN disappears from Test PLAN view.
- 5627: [Test Plan - Assign Test Case Execution] Filter by build, when filter by result is ANY, always gets newest build.
- 5616: [Requirement to Test Case Assignment] Inconsistent assignment to requirement if test case is executed.
- 5632: [Bug Tracking Systems Integration] Issue tracker with blank config - issueTrackerView.php returns blank page
- 5614: [Test Specification] Test case Drag & Drop allows a Test case become children of Test Project - Wrong
- 5602: [Test Specification] Test Case Copy when step contains [ghost] - Value is copied instead of reference.
- 5601: [Test Execute - Edit notes & Custom Fields] Custom Fields of date type can not be edited - calendar is broken.
- 5645: [API - XMLRPC] XMLRPC api call getTestCasesForTestPlan() does not return tcase_name.
- 5586: [Test Specification Export] Test Specification Export - Add new option to DO NOT EXPORT Test Case External ID
- 5417: [Reports] Closed/Resolved issues are not considered Resolved AND THEN NOT COUNTED in TestLink
- 5573: [Reports] test cases assign to platform A show up in "test plan report" for All platforms
- 5577: [Reports] Requirements based Report is empty.
- 5566: [Test Execute - Filters] "Assigned to" does not work in "test execution" page.
- 5564: [User Interface General] When login name is ok but password is ko, feedback message is 'ok'.
- 5638: [Requirement Management] Combo box content when copying requirements and
there are duplicated req. spec with different parent
- 5592: [Test Specification Export]
keywords or custom fields are not imported on test suites element with an XML file exported from TL.
- 5596: [Bug Tracking System - Mantis Integration]
Mantis Bug generation from testlink fails if bug description
is larger than mantis permitted bug summary section. (I.E This Box)
- 5589: [Report - Test Cases with Custom Fields set on Execution]
Values for Custom Fields of type date and datetime are not formatted.
- 5565: [Bug Tracking System - Mantis Integration]
Integration Via Database - Information about bug is not displayed on table, on execution feature.
- 5562: [Reports - Test Cases Created x user]
Test Cases created per User - toolbar refresh button breaks filter behaivour.
TestLink - 1.9.6 (2013 Q1 - bug fixing) (Scheduled For Release 2013-03-10)
==========================================================================
- 0005440: NEW FEATURE [Reports] Test result matrix - add export on spreadsheet format (fman)
- 0005532: NEW FEATURE [Requirement Management] Specification: How to manage Frozen Req (fman)
- 0005446: NEW FEATURE [Users and Rights] User List - convert GUI to EXT-JS grid (fman)
- 0005537: NEW FEATURE [TL API] API - removePlatformFromTestPlan() (fman)
- 0005494: NEW FEATURE [TL API] API - addPlatformToTestPlan() (fman)
- 0005497: NEW FEATURE [TL API] API - getProjectPlatforms() (fman)
- 0005467: NEW FEATURE [Third party components] Integration of ckeditor 3.x (fman)
- 0005536: NEW FEATURE [Test Specification] Create Test Case in Test suite that has keywords, manage automatic inheritance (fman)
- 0005480: NEW FEATURE [Test Specification] Possibility to renumber steps to remove 'holes' created due to step delete. (fman)
- 0005452: NEW FEATURE [Requirement Management] Requirement View feature - add quick test case link / unlink (fman)
- 0005409: NEW FEATURE [Reports] Results by Tester per Build - direct link without login (fman)
- 0005408: NEW FEATURE [Reports] Test result matrix - direct link without login (fman)
- 0005411: NEW FEATURE [Reports] Charts - direct link without login (fman)
- 0005407: NEW FEATURE [Reports] General Test Plan Metrics - direct link without login (fman)
- 0005405: NEW FEATURE [Reports] metrics dashboard - direct link without login (fman)
- 0005485: [Database General] SQL Scripts for manual upgrade from 1.9.4 / 1.9.5 to 1.9.6 (fman)
- 0005523: [Requirement Management] Attachments to a frozen requirement can be deleted (fman)
- 0005541: [Test Execute - Filters] BULK Execution - When "Result" filter is used, no test cases show up in the right pane when user clicks on the test suite. (fman)
- 0005432: [Filters] Debug output when filtering on test specification page (fman)
- 0005533: [Requirement Management] Duplicates of Requirement Spec item on the dropdown list when copy requirements (fman)
- 0005538: [Assign Test Case Execution] Keyword "And/Or" options are not filtering tree/test suite contents correctly when multiple keywords are selected. (fman)
- 0005528: [Import Requirements - XML format] Importing a requirement with CF fails after the first time (fman)
- 0005287: [Test Plan - Assign Test Case Execution] Test Case Tree not available on right pane after multiple Keywords are used for filtering (fman)
- 0005076: [Test Execute] Unable to execute a test once Testlink has been integrated with FogBugz (fman)
- 0005529: [Test Plan - Add/Remove Test Cases] Filters are not applied to the 'Add Test Cases to Test Plan' list (fman)
- 0005524: [General] Creating build using test case user assignment from existing build. Newest build is not selected by default. (fman)
- 0005519: [Reports] Unassigned test cases to a platform show up in "test plan report" (fman)
- 0005464: [Database MS-SQL] DB Access error after deleting events from Event view (SQL server 2008) (fman)
- 0005520: [Test Plan Management] Deactivating a testplan renders any access to it impossible (fman)
- 0005518: [Test Plan Management] error message while trying to activate existing inactive Test Plans. (fman)
- 0005517: [Bug Tracking System - JIRA Integration] Create Issue (SOAP) fails due to required attributes (not managed yet on TestLink) (fman)
- 0005505: [Metrics Dashboard] 1.9.6 (2013 Q1): If the API Key is missing due to configuration or not user generated place an appropriate error message (fman)
- 0005503: [Reports] DB Access Error during reporting with EXEC_TIME custom fields (MSSQL, CF, Reports) (fman)
- 0005481: [Charts] Error in pie chart for platforms without testcases (fman)
- 0005454: [Bug Tracking System - Bugzilla Integration] [Bugzilla XML-RPC]: Add Bug & Create Issue, both are not working. (fman)
- 0005486: [Test Project Management] Deleting Test project do not delete testproject_issuetracker association (fman)
- 0005476: [Test Specification] Direct link to testcase where TC ID prefix contains an '&' (the ampersand symbol), does not link (fman)
- 0005460: [Reports] CF_EXEC_TIME - Execution time does not show in reports for test suite. (fman)
- 0005457: [Reports] Incorrect data in "Report by tester per build" (fman)
- 0005465: [Test Plan Management] Inactive test plan are not displayed on Test management (fman)
- 0005425: [Test Execute - 'Save and move to next'] Access TO EXECUTION FROM 'Test Case Assigned to me' - Issues with Save and move to next" returns to the same case (fman)
- 0005401: [Reports] Closed redmine issues are not considered Resolved in TestLink (fman)
- 0005453: [Reports - Failed/Blocked Test Cases] Test Case with and WITHOUT tester assignment and computed - Help said ONLY WITH ASSIGNMENT (fman)
- 0005451: [Reports] Test Plan WITH 2 or more PLATFORMS - Test Cases Without Tester Assignment provide wrong result (fman)
- 0005444: [Localization] Localization files for es_ES (fman)
- 0005404: [Filters] Test Specification Test case Filters does not show all slected test id (fman)
- 0005309: [Export/Import] Test case summary and Test case ID getting duplicated->import the Test specification XML file inside subtree (fman)
- 0005442: [Requirement Management] Deleting a req spec, leaves record on nodes hierachy regarding req spec revision (fman)
- 0005439: [Test Specification] login on timeout when editing TEST SUITES to avoid data loss not working (fman)
- 0005433: [User Interface General] "BUG Management" links not displayed in Firefox v17.0.1 (fman)
- 0005427: [Bug Tracking System - JIRA Integration] There is no 'jiradbInterface' class anymore available ? (fman)
- 0005410: [Reports] Test Cases without Tester Assignment - Crash (fman)
- 0005407: [Reports] General Test Plan Metrics - direct link without login (fman)
- 0005405: [Reports] metrics dashboard - direct link without login (fman)
- 0005491: [Export/Import] DB Access Error when import test case XML with CF (fman)
53 of 53 issue(s) resolved.
TestLink - 1.9.5 (2012 Q4 - bug fixing) (Scheduled For Release 2012-12-10)
================================================================================
- 0005350: [Bug Tracking Systems Integration] Bug Tracking Integration - Create Issue with JUST ONE CLICK (fman)
- 0005347: [Bug Tracking System - Mantis Integration] Mantis SOAP INTERFACE - Create Issue from TestLink (fman)
- 0005349: [Bug Tracking System - Bugzilla Integration] Bugzilla XMLRPC INTERFACE - Create Issue from TestLink (fman)
- 0005351: [Bug Tracking System - Mantis Integration] JIRA SOAP INTERFACE - Create Issue from TestLink (fman)
- 0005356: [Bug Tracking System - FogBugz Integration] FOGBUGZ REST INTERFACE - Create Issue from TestLink (fman)
- 0005358: [Bug Tracking System - Youtrack Integration] YOUTRACK REST INTERFACE - Create Issue from TestLink (fman)
- 0005375: [Bug Tracking Systems Integration] Issue Tracker List - add option to check connection status (fman)
- 0005386: [Users and Rights] Test Plan management - user can manage Private Test plan where she/he has no role assigned (fman)
- 0005385: [Test Project Management] test project list - add information about issue tracker (fman)
- 0005383: [Issue Tracker management] Issue Tracker List - CheckRights do not check for issue management right (fman)
- 0005384: [Issue Tracker management] User with only issuetracker view right CAN NOT ACCESS issue tracker list from MAIN PAGE (fman)
- 0005382: [Assign Test Case Execution] Priority is not shown in folder view when assigning test cases (fman)
- 0005316: [Reports] "Test Cases with Custom Fields set on Execute" - Report NOT DISPLAYED if CUSTOM FIELD NAME contains DOT (fman)
- 0005352: [Bug Tracking System - Redmine Integration] REDMINE REST INTERFACE - Create Issue from TestLink (fman)
- 0005359: [User Interface General] FCKEditor doesn't load in Firefox 17 (fman)
- 0005344: [Assign Test Case Execution] BULK EXECUTION - Tester A can execute test case that assigned to Tester B (fman)
- 0004998: [New Feature] Test spec: Filter to display ONLY Active testcases (asimon)
- 0005304: [Export/Import] import of simple XML results file fails : external_id is not recognized (fman)
- 0005301: [Issue Tracker management] Wrong bracket (fman)
- 0005293: [Reports] (JIRA Integration) - Bugs per Test Case do not display bug summary. (fman)
- 0005290: [Bug Tracking Systems Integration] Doesn´t show description of bugs from BTS (JIRA) (fman)
- 0005257: [Import results XML format] Testcase exported for id/external id not able to import same for result update (fman)
- 0005294: [Test Plan - Add/Remove Test Cases] It is not possible to remove an inactive tc version from a testplan with platforms (asimon)
- 0005288: [Reports] Print importance/priority when printing test spec/plan (asimon)
- 0005284: [Assign Test Case Execution] Filtering by the value of custom fields is not working on tester assignment (asimon)
- 0005272: [Reports] General Test Plan Metrics / Overall Build Status / Not Run is not for build but global. (fman)
- 0005270: [Test Plan - Add/Remove Test Cases] Doesn't show Lightning icon in executed test case (fman)
- 0005256: [Reports] Test Report - Test plan WITH PLATFORMS - Tree menu only show "Not Run" test case count in "Document options" page (fman)
- 0005265: [Test Specification] Test case search displays only the first version of all test cases (asimon)
- 0005332: [Reports] Generating Test Report with "Metric' causes DB error (kinow)
- 0005281: [Bug Tracking Systems Integration] On list view add check to environment (example SOAP ext is enabled?) and display status (fman)
TestLink - 1.9.4 (2012 Q3 - bug fixing) (Scheduled For Release 2012-09-02)
================================================================================
- 0004904: [Bug Tracking Systems Integration] integrate with ITS on test project basis (fman) - work in progress.
- 0005172: [Bug Tracking Systems Integration] execHistory.php refactor due to integrate with ITS on test project basis (fman)
- 0004977: [Security] CSRF - Advisory ID: HTB23088 - Reference: https://www.htbridge.com/advisory/HTB23088 [^] (kinow) - work in progress.
- 0005179: [Reports] Bugs Per Test Case - Call to undefined method (fman)
- 0005190: [Test Project Management] Copy Test projects - tester assignments to testplan+build are not copied (fman)
- 0005175: [Requirement to Test Case Assignment] Req Spec combo box - minor gui improvement (fman)
- 0005173: [General] resultsByStatus.php/ resultsByStatus.tpl - refactoring (fman)
- 0005166: [Database MS-SQL] Test Cases without Tester Assignment - MSSQL (fman)
- 0005165: [Database MS-SQL] Issues with DISTINCT CLAUSE on TEXT field (fman)
- 0005164: [Test Project Management] Edit test project with name conflict - content of 'Project description' become EMPTY (fman)
- 0004898: [Database MS-SQL] MSSQL - Add support for SQLSRV drivers needed for PHP on WINDOWS version 5.3 and higher (fman)
- 0005162: [Reports] "Build" and "Platform" swapped in "ResultsByStatus" (fman)
- 0005159: [Export/Import] importing duplicate test suites (with option 'Create a new test case with different title') =>test case id is getting duplicated (fman)
- 0005158: [Test Execute] [1.9.4 PREVIEW]: Test Execution-> Filter by Execution type ( Manual, Automated) is not working (fman)
- 0005156: [Issue Tracker management] Display test project linked to issue tracker, when editing (fman)
- 0005155: [Test Specification] [1.9.4 Preview] Dead link in generated test case summary after source requirement deletion (fman)
- 0005154: [User Interface Layout] [1.9.4 Preview] Project dropdown list out of toolbar with IE7 (fman)
- 0005152: [General] [1.9.4 Preview]: Reappearing "NetworkError: 404 Not Found - http://demo.testlink.org/tlqarepo/gui/themes/default/css/custom.css" [^] (fman)
- 0004854: [Test Execute] Save and Next - Issues with display CF for test plan design - always EMPTY (fman)
- 0004891: [Database MS-SQL] Custom fields tables (custom_fields, custom*) Column data type definition differs between mySQL and MSSQL (fman)
- 0004842: [Test Specification] Test Case search - add check of user rights (fman)
- 0004445: [Test Specification] Test Suite Deletion not working in Test Specs (fman)
- 0005139: [Internal issue] PHP 5.3 deprecated functions (fman)
- 0004958: [Charts] General Test Plan Metrics shows white page - Bug tracking integration enabled (fman)
- 0004888: [Test Plan (builds, milestones, test assign)] Unable to update test plan with last version of testcase (fman)
- 0005148: [Security] http://itsecuritysolutions.org/2012-08-13-TestLink-1.9.3-multiple-vulnerabilities/ [^] (fman)
- 0005147: [Security] metasploit - TestLink v1.9.3 Arbitrary File Upload Vulnerability (fman)
- 0004992: [Reports] Reports - Results by Tester per Build - refactoring (fman)
- 0004990: [Reports] Reports - Test Case Assignment Overview - refactoring (fman)
- 0005044: [Charts] Charts - refactor results by Platforms (fman)
- 0004914: [Database General] Create View - tcversions_last_active (fman)
- 0004969: [New Feature] Add Setting to Force HTTPS (fman)
- 0004905: [Assign Test Case Execution] Test Case Tester Assignment - filters dont work properly for 'Assigned to' Field (fman)
- 0005090: [Test Plan (builds, milestones, test assign)] method getLinkedForTestUrgencyTree() (fman)
- 0005142: [Test Execute] [1.9.4 Preview] : Test Execution : Some "Result" on "build" filters are not working (fman)
- 0005069: [Test Execute - 'Save and move to next'] "Save and move to next" does not work when Execution feature is opened on a POP-UP window (fman)
- 0004465: [Test Execute - 'Save and move to next'] Problem with automatique sequence of test cases when accessed from "Test Cases Assigned to me" (fman)
- 0003987: [General] Contribution - Add attachments to a Test Plan (kinow)
- 0005127: [Reports] Requirements based report - refactoring (fman)
- 0005132: [Test Execute] [1.9.4 PREVIEW] : Executed test case colors are not displayed in Left frame tree (fman)
- 0005131: [Test Execute] [1.9.4 PREVIEW] Test Execution Filters : "Not Run" Result Filter is not working (fman)
- 0004819: [Filters] Filtering execution by "Not Run" on "ALL Builds" shows too few results (fman)
- 0005129: [Users and Rights] $tlCfg->exec_cfg->edit_notes needs to consider also if user CAN EXECUTE the TEST CASE (fman)
- 0005130: [Users and Rights] Possibility to manage attachments on EXECUTION needs to consider also if user CAN EXECUTE the TEST CASE (fman)
- 0004342: [Users and Rights] Security problem with multiple Testlink installations on the same server (fman)
- 0004975: [Reports] Not run tests are not counted in "Requirements based Report" (fman)
- 0005126: [Reports] Requirements based report - display context on results page (fman)
- 0005121: [Test Specification] [1.9.4 PREVIEW] Link to test case execution edit page is invalid (fman)