forked from apache/jmeter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchanges.html
More file actions
1514 lines (1015 loc) · 30.5 KB
/
Copy pathchanges.html
File metadata and controls
1514 lines (1015 loc) · 30.5 KB
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!-- Content Stylesheet for Site -->
<!-- start the processing -->
<!-- ====================================================================== -->
<!-- Main Page Section -->
<!-- ====================================================================== -->
<html>
<head>
<link rel="stylesheet" type="text/css" href="./css/style.css"/>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<meta name="author" value="JMeter developers">
<meta name="email" value="dev AT jmeter.apache.org">
<title>Apache JMeter - Changes</title>
</head>
<body bgcolor="#ffffff" text="#000000" link="#525D76">
<table border="0" cellspacing="0">
<!-- TOP IMAGE -->
<tr>
<td>
<!-- Need to specify height otherwise iframe seems to grab extra -->
<iframe src="http://www.apache.org/ads/halfbanner.html" height="102"
style="border-width:0; float: left" frameborder="0" scrolling="no"></iframe>
</td>
<td align="left">
<a href="http://www.apache.org"><img title="Apache Software Foundation" width="387" height="100" src="./images/asf-logo.gif" border="0"/></a>
</td>
<td align="right">
<a href="http://jmeter.apache.org/"><img width="221" height="102" src="./images/logo.jpg" alt="Apache JMeter" title="Apache JMeter" border="0"/></a>
</td>
</tr>
</table>
<table border="0" width="100%" cellspacing="4">
<tr><td colspan="2">
<hr noshade size="1"/>
</td></tr>
<tr>
<!-- LEFT SIDE NAVIGATION -->
<td width="20%" valign="top" nowrap="true">
<p><strong>About</strong></p>
<ul>
<li><a href="./index.html">Overview</a>
</li>
<li><a href="./changes.html">Changes</a>
</li>
<li><a href="./issues.html">Issues</a>
</li>
<li><a href="http://www.apache.org/licenses/">License</a>
</li>
<li><a href="http://wiki.apache.org/jmeter/JMeterCommitters">Contributors</a>
</li>
</ul>
<p><strong>Download</strong></p>
<ul>
<li><a href="./download_jmeter.cgi">Download Releases</a>
</li>
<li><a href="./nightly.html">Developer (Nightly) Builds</a>
</li>
</ul>
<p><strong>Documentation</strong></p>
<ul>
<li><a href="./usermanual/index.html">User Manual</a>
</li>
<li><a href="./usermanual/component_reference.html">Component Reference</a>
</li>
<li><a href="./usermanual/functions.html">Functions Reference</a>
</li>
<li><a href="./api/index.html">Javadocs</a>
</li>
<li><a href="./localising/index.html">Localisation (Translator's Guide)</a>
</li>
<li><a href="./building.html">Building JMeter and Add-Ons</a>
</li>
<li><a href="http://wiki.apache.org/jmeter">JMeter Wiki</a>
</li>
<li><a href="http://wiki.apache.org/jmeter/JMeterFAQ">FAQ (Wiki)</a>
</li>
</ul>
<p><strong>Tutorials (PDF format)</strong></p>
<ul>
<li><a href="./usermanual/jmeter_distributed_testing_step_by_step.pdf">Distributed Testing</a>
</li>
<li><a href="./usermanual/jmeter_proxy_step_by_step.pdf">Recording Tests</a>
</li>
<li><a href="./usermanual/junitsampler_tutorial.pdf">JUnit Sampler</a>
</li>
<li><a href="./usermanual/jmeter_accesslog_sampler_step_by_step.pdf">Access Log Sampler</a>
</li>
<li><a href="./extending/jmeter_tutorial.pdf">Extending JMeter</a>
</li>
</ul>
<p><strong>Community</strong></p>
<ul>
<li><a href="http://www.apache.org/foundation/getinvolved.html">Get Involved</a>
</li>
<li><a href="./mail.html">Mailing Lists</a>
</li>
<li><a href="./svnindex.html">SVN Repositories</a>
</li>
</ul>
<p><strong>Foundation</strong></p>
<ul>
<li><a href="http://www.apache.org/">ASF</a>
</li>
<li><a href="http://www.apache.org/foundation/sponsorship.html">Sponsorship</a>
</li>
<li><a href="http://www.apache.org/foundation/thanks.html">Thanks</a>
</li>
</ul>
</td>
<td width="80%" align="left" valign="top">
<br>
<table border="0" cellspacing="0" cellpadding="2" width="100%">
<tr><td bgcolor="#525D76">
<font color="#ffffff" face="arial,helvetica,sanserif">
<strong>Changes</strong></font>
</td></tr>
<tr><td>
<blockquote>
<p>
<table border="1" bgcolor="#bbbb00" width="50%" cellspacing="0" cellpadding="2">
<tr><td>
<b>
This page details the changes made in the current version only.
</b>
<br>
Earlier changes are detailed in the
<a href="changes_history.html">
History of Previous Changes
</a>
.
</td></tr>
</table>
</p>
<h1>
Version 2.6
</h1>
<h2>
New and Noteworthy
</h2>
<h3>
Toolbar
</h3>
<p>
A new toolbar on JMeter's main window
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='986' height='91' src="./images/screenshots/changes/01_toolbar.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
JMeter start test button
</h3>
<p>
A new menu option and button allow to start a test ignoring the Pause Timers
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='201' height='58' src="./images/screenshots/changes/02_ignore_pause_timers.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
JMeter GUI Look and Feel
</h3>
<p>
Allow System or CrossPlatform LAF to be set from options menu
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='373' height='162' src="./images/screenshots/changes/03_look_and_feel.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
JMeter GUI - duplicate node
</h3>
<p>
Add "duplicate node" in context menu
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='323' height='136' src="./images/screenshots/changes/04_duplicate_context_menu.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
JMeter tree view - search facility
</h3>
<p>
Functionality to search by keyword in Samplers Tree View
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='554' height='219' src="./images/screenshots/changes/05_search_tree.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
HTTP Request - raw request pane
</h3>
<p>
Improve HTTP Request GUI to better show parameters without name (GWT RPC request or SOAP request for example)
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='759' height='461' src="./images/screenshots/changes/06_post_data.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
HTTP Request - other changes
</h3>
<p>
<ul>
<li>
Allow multiple selection in arguments panel
</li>
<li>
Allow to add (paste) entries from the clipboard to an arguments list
</li>
<li>
Ability to move variables up or down in HTTP Request
</li>
</ul>
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='875' height='218' src="./images/screenshots/changes/07_multiple_selection_params.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
HTTP Request - file protocol
</h3>
<p>
Better support for file: protocol in HTTP sampler
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='489' height='662' src="./images/screenshots/changes/08_file_protocol.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<p>
Retrieve embedded resources with file: protocol
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='700' height='138' src="./images/screenshots/changes/09_file_protocol_embedded.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
HTTP Request - Ignore embedded resources failed
</h3>
<p>
Enable "ignore failed" for embedded resources
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='820' height='246' src="./images/screenshots/changes/26_ignore_child_failed.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<p>
Parent success with a embedded resource failed
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='590' height='214' src="./images/screenshots/changes/27_succes_with_child_failed.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
View Results in Table - child sample display
</h3>
<p>
Add option to TableVisualiser to display child samples instead of parent
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='911' height='619' src="./images/screenshots/changes/10_child_sampler.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
Key Store - multiple certificates
</h3>
<p>
Allowing multiple certificates (JKS)
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='324' height='166' src="./images/screenshots/changes/11_jks_keystore.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
Aggregate graph improvements
</h3>
<p>
Some improvements on Aggregate Graph Listener:
<ul>
<li>
new GUI for settings
</li>
<li>
dynamic graph size
</li>
<li>
allow to change fonts for title graph and legend
</li>
<li>
allow to change bar color (background and text values)
</li>
<li>
allow to draw or not bars outlines
</li>
<li>
allow to select only some samplers by a regexp filter
</li>
<li>
allow to define Y axis maximum scale
</li>
</ul>
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='850' height='411' src="./images/screenshots/changes/12_aggregate_graph_settings.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<p>
Aggregate Graph bar
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='851' height='506' src="./images/screenshots/changes/13_aggregate_graph_bar.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
Counter - new reset option
</h3>
<p>
Add an option to reset counter on each Thread Group iteration
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='345' height='257' src="./images/screenshots/changes/14_reset_counter.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
Functions
</h3>
<p>
<ul>
<li>
Add a new function __RandomString to generate random Strings
</li>
<li>
Add a new function __TestPlanName returning the name of the current "Test Plan"
</li>
<li>
Add a new function __machineIP returning IP address
</li>
<li>
Add a new function __jexl2 to support Jexl2
</li>
</ul>
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='697' height='236' src="./images/screenshots/changes/15_random_string.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
User Defined Variable improvements
</h3>
<p>
<ul>
<li>
Add a comment field in User Defined Variables
</li>
<li>
Allow to add (paste) entries from the clipboard to an arguments list
</li>
<li>
Ability to move up or down variables in User Defined Variables
</li>
</ul>
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='543' height='237' src="./images/screenshots/changes/16_udv_comments.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
View Results Tree
</h3>
<p>
In View Results Tree rather than showing just a message if the results are to big, show as much of the result as are configured
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='953' height='98' src="./images/screenshots/changes/17_vrt_max_size_display.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
Controllers - change elements
</h3>
<p>
Add ability to Change Controller elements
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='643' height='112' src="./images/screenshots/changes/18_change_ctl_type.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
JDBC pre- and post-processor
</h3>
<p>
Add JDBC pre- and post-processor
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='535' height='217' src="./images/screenshots/changes/19_jdbc_pre_post_proc.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
JDBC transaction isolation option
</h3>
<p>
Allow to set the transaction isolation in the JDBC Connection Configuration
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='437' height='351' src="./images/screenshots/changes/20_jdbc_trans_isolation.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
Poisson Timer
</h3>
<p>
Add a Poisson based timer
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='358' height='156' src="./images/screenshots/changes/21_poisson_timer.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
GUI and OS interaction
</h3>
<p>
Support for file Drag and Drop.
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='776' height='508' src="./images/screenshots/changes/22_drag_and_drop.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
Confirm Remove Dialog box
</h3>
<p>
Add a dialog box to confirm removing the element(s) when Remove action is called
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='583' height='210' src="./images/screenshots/changes/23_confirm_remove.png"><br>
<font size="-1"></font></td></tr></table></p>
The dialogue can be skipped by setting the JMeter property
<code>
confirm.delete.skip=true
</code>
</p>
<h3>
Remote batching support
</h3>
<p>
Use external store to hold samples during distributed testing,
Added DiskStore remote sample sender: like Hold, but saves samples to disk until end of test
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='998' height='273' src="./images/screenshots/changes/24_diskstore.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
JMS Subscriber sampler
</h3>
<p>
With JMS Subscriber, ability to use Selectors
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='705' height='297' src="./images/screenshots/changes/25_selector.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
New Logger Panel
</h3>
<p>
A new Log Viewer has been added to the GUI and can be enabled from menu Options > Log Viewer:
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='326' height='147' src="./images/screenshots/changes/28_loggerpanel_option.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<p>
This Log Viewer shows the jmeter.log file, and useful (for example) to debug BeanShell/BSF scripts:
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='953' height='466' src="./images/screenshots/changes/28_loggerpanel.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
The menu item Options / Choose Language is now fully functional
</h3>
<p>
The menu item Options / Choose Language now changes all the displayed text to the new language provided
all messages are translated. You can help on this by translating into your language.
</p>
<h3>
Legacy JMX and JTL Avalon format support restored
</h3>
<p>
Support for reading/writing the original Avalon XML format of JMX (script) and JTL (sample result) files was dropped in JMeter version 2.4.
JMeter can now read the Avalon format files again, however there is no support for saving files in the old format.
</p>
<h3>
JMeter jars available from Maven repository
</h3>
<p>
JMeter jars are now available from Maven repository.
</p>
<h2>
Known bugs
</h2>
<p>
The Include Controller has some problems in non-GUI mode (see Bugs 40671, 41286, 44973, 50898).
In particular, it can cause a NullPointerException if there are two include controllers with the same name.
</p>
<p>
The Once Only controller behaves correctly under a Thread Group or Loop Controller,
but otherwise its behaviour is not consistent (or clearly specified).
</p>
<p>
Listeners don't show iteration counts when a If Controller has a condition which is always false from the first iteration (see Bug 52496).
A workaround is to add a sampler at the same level as (or superior to) the If Controller.
For example a Test Action sampler with 0 wait time (which doesn't generate a sample),
or a Debug Sampler with all fields set to False (to reduce the sample size).
</p>
<h2>
Incompatible changes
</h2>
<p>
JMeter versions since 2.1 failed to create a container sample when loading embedded resources.
This has been corrected; can still revert to the Bug 51939 behaviour by setting the following property:
<code>
httpsampler.separate.container=false
</code>
</p>
<p>
Mirror server now uses default port 8081, was 8080 before 2.5.1.
</p>
<p>
TCP Sampler handles SocketTimeoutException, SocketException and InterruptedIOException differently since 2.6, when
these occurs, Sampler is marked as failed.
</p>
<p>
Sample Sender implementations now resolve their configuration on Client side since 2.6.
This behaviour can be changed with property sample_sender_client_configured (set it to false).
</p>
<p>
The HTTP User Parameter Modifier test element has been removed; it has been deprecated for a long time.
</p>
<h2>
Bug fixes
</h2>
<h3>
HTTP Samplers and Proxy
</h3>
<ul>
<li>
Bug 51932 - CacheManager does not handle cache-control header with any attributes after max-age
</li>
<li>
Bug 51918 - GZIP compressed traffic produces errors, when multiple connections allowed
</li>
<li>
Bug 51939 - Should generate new parent sample if necessary when retrieving embedded resources
</li>
<li>
Bug 51942 - Synchronisation issue on CacheManager when Concurrent Download is used
</li>
<li>
Bug 51957 - Concurrent get can hang if a task does not complete
</li>
<li>
Bug 51925 - Calling Stop on Test leaks executor threads when concurrent download of resources is on
</li>
<li>
Bug 51980 - HtmlParserHTMLParser double-counts images used in links
</li>
<li>
Bug 52064 - OutOfMemory Risk in CacheManager
</li>
<li>
Bug 51919 - Random ConcurrentModificationException or NoSuchElementException in CookieManager#removeMatchingCookies when using Concurrent Download
</li>
<li>
Bug 52126 - HttpClient4 does not clear cookies between iterations
</li>
<li>
Bug 52129 - Reported Body Size is wrong when using HTTP Client 4 and Keep Alive connection
</li>
<li>
Bug 52137 - Problems with HTTP Cache Manager
</li>
<li>
Bug 52221 - Nullpointer Exception with use Retrieve Embedded Resource without HTTP Cache Manager
</li>
<li>
Bug 52310 - variable in IPSource failed HTTP request if "Concurrent Pool Size" is enabled
</li>
<li>
Bug 52371 - API Incompatibility - Methods in HTTPSampler2 now require PostMethod instead of HttpMethod[Base]. Reverted to original types.
</li>
<li>
Bug 49950 - Proxy : IndexOutOfBoundsException when recording with Proxy server
</li>
<li>
Bug 52409 - HttpSamplerBase#errorResult modifies sampleResult passed as parameter;
fix code which assumes that a new instance is created (i.e. when adding a sub-sample)
</li>
<li>
Bug 52507 - Delete Http User Parameters modifier (deprecated, obsolete)
</li>
</ul>
<h3>
Other Samplers
</h3>
<ul>
<li>
Bug 51996 - JMS Initial Context leak newly created Context when Multiple Thread enter InitialContextFactory#lookupContext at the same time
</li>
<li>
Bug 51691 - Authorization does not work for JMS Publisher and JMS Subscriber
</li>
<li>
Bug 52036 - Durable Subscription fails with ActiveMQ due to missing clientId field
</li>
<li>
Bug 52044 - JMS Subscriber used with many threads leads to javax.naming.NamingException: Something already bound with ActiveMQ
</li>
<li>
Bug 52072 - LengthPrefixedBinaryTcpClientImpl may end a sample prematurely
</li>
<li>
Bug 52390 - AbstractJDBCTestElement:Memory leak and synchronization issue in perConnCache
</li>
</ul>
<h3>
Controllers
</h3>
<ul>
<li>
Bug 51865 - Infinite loop inside thread group does not work properly if "Start next loop after a Sample error" option set
</li>
<li>
Bug 51868 - A lot of exceptions in jmeter.log while using option "Start next loop" for thread
</li>
<li>
Bug 51866 - Counter under loop doesn't work properly if "Start next loop on error" option set for thread group
</li>
<li>
Bug 52296 - TransactionController + Children ThrouputController or InterleaveController leads to ERROR sampleEnd called twice java.lang.Throwable: Invalid call sequence when TPC does not run sample
</li>
<li>
Bug 52330 - With next-Loop-On-Error after error samples are not executed in next loop
</li>
</ul>
<h3>
Listeners
</h3>
<ul>
<li>
Bug 52357 - View results in Table does not allow for multiple result samples
</li>
<li>
Bug 52491 - Incorrect parsing of Post data parameters in Tree Listener / Http Request view
</li>
</ul>
<h3>
Assertions
</h3>
<ul>
<li>
Bug 52519 - XMLSchemaAssertion uses JMeter JVM file.encoding instead of response encoding
</li>
</ul>
<h3>
Functions
</h3>
<ul>
<li>
The CRLF example for the char function was wrong; CRLF=(0xD,0xA), not (0xC,0xA)
</li>
</ul>
<h3>
I18N
</h3>
<ul>
</ul>
<h3>
General
</h3>
<ul>
<li>
Bug 51937 - JMeter does not handle missing TestPlan entry well
</li>
<li>
Bug 51988 - CSV Data Set Configuration does not resolve default delimiter for header parsing when variables field is empty
</li>
<li>
Bug 52003 - View Results Tree "Scroll automatically" does not scroll properly in case nodes are expanded
</li>
<li>
Bug 27112 - User Parameters should use scrollbars
</li>
<li>
Bug 52029 - Command-line shutdown only gets sent to last engine that was started
</li>
<li>
Bug 52093 - Toolbar ToolTips don't switch language
</li>
<li>
Bug 51733 - SyncTimer is messed up if you a interrupt a test plan
</li>
<li>
Bug 52118 - New toolbar : shutdown and stop buttons not disabled when no test is running
</li>
<li>
Bug 52125 - StatCalculator.addAll(StatCalculator calc) joins incorrect if there are more samples with the same response time in one of the TreeMap
</li>
<li>
Bug 52339 - JMeter Statistical mode in distributed testing shows wrong response time
</li>
<li>
Bug 52215 - Confusing synchronization in StatVisualizer, SummaryReport ,Summariser and issue in StatGraphVisualizer
</li>
<li>
Bug 52216 - TableVisualizer : currentData field is badly synchronized
</li>
<li>
Bug 52217 - ViewResultsFullVisualizer : Synchronization issues on root and treeModel
</li>
<li>
Bug 43294 - XPath Extractor namespace problems
</li>
<li>
Bug 52224 - TestBeanHelper does not support NOT_UNDEFINED == Boolean.FALSE
</li>
<li>
Bug 52279 - Switching to another language loses icons in Tree and logs error Can't obtain GUI class from ...
</li>
<li>
Bug 52280 - The menu item Options / Choose Language does not change all the displayed text to the new language
</li>
<li>
Bug 52376 - StatCalculator#addValue(T val, int sampleCount) should use long, not int
</li>
<li>
Bug 49374 - Encoding of embedded element URLs depend on the file.encoding property
</li>
<li>
Bug 52399 - URLRewritingModifier uses default file.encoding to match text content
</li>
<li>
Bug 50438 - code calculates average with integer math, expecting double value
</li>
<li>
Bug 52469 - Changes in Support of SSH-Tunneling of RMI traffic for Remote Testing
</li>
<li>
Bug 52466 - Upgrade Test Plan feature : NameUpdater does not upgrade properties
</li>