forked from apache/jmeter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchanges_history.html
19377 lines (13315 loc) · 570 KB
/
changes_history.html
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 SYSTEM "about:legacy-compat">
<html lang="en">
<head>
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-15">
<title>Apache JMeter
-
History of Previous Changes</title>
<meta name="author" value="JMeter developers">
<meta name="email" value="dev AT jmeter.apache.org">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Merriweather:400normal" rel="stylesheet" type="text/css">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="./css/new-style.css">
<link rel="apple-touch-icon-precomposed" href="./images/apple-touch-icon.png">
<link rel="icon" href="./images/favicon.png">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="./images/mstile-144x144.png">
<meta name="theme-color" content="#ffffff">
</head>
<body role="document">
<a href="#content" class="hidden">Main content</a>
<div class="header">
<!--
APACHE LOGO
-->
<div>
<a href="https://www.apache.org"><img title="Apache Software Foundation" class="asf-logo logo" src="./images/asf-logo.svg" alt="Logo ASF"></a>
</div>
<!--
PROJECT LOGO
-->
<div>
<a href="https://jmeter.apache.org/"><img class="logo" src="./images/logo.svg" alt="Apache JMeter"></a>
</div>
<div class="banner">
<a href="https://www.apache.org/events/current-event.html"><img src="https://www.apache.org/events/current-event-234x60.png" alt="Current Apache event teaser"></a>
<div class="clear"></div>
</div>
</div>
<div class="nav">
<ul class="menu">
<li onClick="return true">
<div class="menu-title">About</div>
<ul>
<li>
<a href="./index.html">Overview</a>
</li>
<li>
<a href="https://www.apache.org/licenses/">License</a>
</li>
</ul>
</li>
</ul>
<ul class="menu">
<li onClick="return true">
<div class="menu-title">Download</div>
<ul>
<li>
<a href="./download_jmeter.cgi">Download Releases</a>
</li>
<li>
<a href="./changes.html">Release Notes</a>
</li>
</ul>
</li>
</ul>
<ul class="menu">
<li onClick="return true">
<div class="menu-title">Documentation</div>
<ul>
<li>
<a href="./usermanual/get-started.html">Get Started</a>
</li>
<li>
<a href="./usermanual/index.html">User Manual</a>
</li>
<li>
<a href="./usermanual/best-practices.html">Best Practices</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="./usermanual/properties_reference.html">Properties Reference</a>
</li>
<li>
<a href="./changes_history.html">Change History</a>
</li>
<li>
<a href="./api/index.html">Javadocs</a>
</li>
<li>
<a href="https://wiki.apache.org/jmeter">JMeter Wiki</a>
</li>
<li>
<a href="https://wiki.apache.org/jmeter/JMeterFAQ">FAQ (Wiki)</a>
</li>
</ul>
</li>
</ul>
<ul class="menu">
<li onClick="return true">
<div class="menu-title">Tutorials</div>
<ul>
<li>
<a href="./usermanual/jmeter_distributed_testing_step_by_step.html">Distributed Testing</a>
</li>
<li>
<a href="./usermanual/jmeter_proxy_step_by_step.html">Recording Tests</a>
</li>
<li>
<a href="./usermanual/junitsampler_tutorial.html">JUnit Sampler</a>
</li>
<li>
<a href="./usermanual/jmeter_accesslog_sampler_step_by_step.html">Access Log Sampler</a>
</li>
<li>
<a href="./usermanual/jmeter_tutorial.html">Extending JMeter</a>
</li>
</ul>
</li>
</ul>
<ul class="menu">
<li onClick="return true">
<div class="menu-title">Community</div>
<ul>
<li>
<a href="./issues.html">Issue Tracking</a>
</li>
<li>
<a href="https://www.apache.org/security/">Security</a>
</li>
<li>
<a href="./mail.html">Mailing Lists</a>
</li>
<li>
<a href="./svnindex.html">Source Repositories</a>
</li>
<li>
<a href="./building.html">Building and Contributing</a>
</li>
<li>
<a href="https://projects.apache.org/project.html?jmeter">Project info at Apache</a>
</li>
<li>
<a href="https://wiki.apache.org/jmeter/JMeterCommitters">Contributors</a>
</li>
</ul>
</li>
</ul>
<ul class="menu">
<li onClick="return true">
<div class="menu-title">Foundation</div>
<ul>
<li>
<a href="https://www.apache.org/">The Apache Software Foundation (ASF)</a>
</li>
<li>
<a href="https://www.apache.org/foundation/getinvolved.html">Get Involved in the ASF</a>
</li>
<li>
<a href="https://www.apache.org/foundation/sponsorship.html">Sponsorship</a>
</li>
<li>
<a href="https://www.apache.org/foundation/thanks.html">Thanks</a>
</li>
</ul>
</li>
</ul>
</div>
<div class="main" id="content">
<div class="social-media">
<ul class="social-media-links">
<li class="twitter">
<a href="https://twitter.com/ApacheJMeter" title="Follow us on Twitter"><i class="fa fa-twitter" aria-hidden="true"></i>Twitter</a>
</li>
<li class="github">
<a href="https://github.com/apache/jmeter" title="Fork us on github"><i class="fa fa-github" aria-hidden="true"></i>github</a>
</li>
</ul>
</div>
<div class="section">
<h1>History of Previous Changes</h1>
<div class="clear"></div>
<div class="note">
<b>This page details the changes made in previous versions only.</b>
<br>
Current changes are detailed in <a href="changes.html">Changes</a>.
</div>
<div class="clear"></div>
<p>
<b>Changes sections are chronologically ordered from top (most recent) to bottom
(least recent)</b>
</p>
<h1>Version 3.3</h1>
<p>
Summary
</p>
<ul>
<li>
<a href="#New and Noteworthy">New and Noteworthy</a>
</li>
<li>
<a href="#Incompatible changes">Incompatible changes</a>
</li>
<li>
<a href="#Bug fixes">Bug fixes</a>
</li>
<li>
<a href="#Improvements">Improvements</a>
</li>
<li>
<a href="#Non-functional changes">Non-functional changes</a>
</li>
<li>
<a href="#Known problems and workarounds">Known problems and workarounds</a>
</li>
<li>
<a href="#Thanks">Thanks</a>
</li>
</ul>
<h2 class="ch_section" id="New and Noteworthy">New and Noteworthy</h2>
<div class="clear"></div>
<div class="note">JMeter does not yet support JAVA 9, next JMeter version will support it, you can help and follow progress on this item in <a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61529">
Bug
61529</a>.</div>
<div class="clear"></div>
<div class="clear"></div>
<div class="note">Using last minor version of JAVA 8 is advised to avoid facing any JDK bug.</div>
<div class="clear"></div>
<h3 class="ch_title">Core improvements</h3>
<p>HTTP Sampler now supports Brotli decompression.</p>
<p>CacheManager now completely supports Vary header.</p>
<p>InfluxDB BackendListener now supports sending results to InfluxDB through UDP protocol.
<figure>
<a href="./images/screenshots/changes/3.3/influxdb_udp.png"><img src="./images/screenshots/changes/3.3/influxdb_udp.png" width="825" height="328" alt=""></a>
<figcaption></figcaption>
</figure>
It has also been enhanced to send number of errors by response code and message for each transaction</p>
<p>TCP Sampler now computes latency, see <a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=60156">
Bug
60156</a>
</p>
<p>Upgraded dependencies to last available versions bringing performance improvements and bug fixes</p>
<p>Continued to improve the quality of our code and tests coverage. See <a href="https://builds.apache.org/analysis/overview?id=12927">Quality report</a>
</p>
<h3 class="ch_title">UX improvements</h3>
<p>More work has been done to better support HiDPI.</p>
<p>Some bugs, that crept in with the work on lowering the memory usage of View Results Tree, were fixed.</p>
<p>The constant <span class="code">DEFAULT_IMPLEMENTATION</span> was removed from CookieManager,
as it lost it purpose with the removal of the alternate HTTP Client implementation in the last release</p>
<p>JDBC Sampler UX has been improved by adding select boxes for drivers and validation queries.
<figure>
<a href="./images/screenshots/changes/3.3/jdbc_config_validation_driver_url.png"><img src="./images/screenshots/changes/3.3/jdbc_config_validation_driver_url.png" width="821" height="543" alt=""></a>
<figcaption></figcaption>
</figure>
<figure>
<a href="./images/screenshots/changes/3.3/jdbc_config_validation_query.png"><img src="./images/screenshots/changes/3.3/jdbc_config_validation_query.png" width="820" height="451" alt=""></a>
<figcaption></figcaption>
</figure>
</p>
<p>If Controller and While Controller UX have been improved
<figure>
<a href="./images/screenshots/changes/3.3/jmeter_if_controller.png"><img src="./images/screenshots/changes/3.3/jmeter_if_controller.png" width="821" height="348" alt=""></a>
<figcaption></figcaption>
</figure>
</p>
<h3 class="ch_title">Report/Dashboard improvements</h3>
A new Help menu item has been added to simplify configuration of report generation.
<figure>
<a href="./images/screenshots/changes/3.3/jmeter_export_transactions_menu.png"><img src="./images/screenshots/changes/3.3/jmeter_export_transactions_menu.png" width="491" height="455" alt=""></a>
<figcaption></figcaption>
</figure>
<figure>
<a href="./images/screenshots/changes/3.3/jmeter_export_transactions_result.png"><img src="./images/screenshots/changes/3.3/jmeter_export_transactions_result.png" width="609" height="188" alt=""></a>
<figcaption></figcaption>
</figure>
<h3 class="ch_title">Documentation improvements</h3>
Incorporated feedback about unclear documentation.
<h3 class="ch_title">Functions</h3>
<p>Function Helper Dialog: a new field that shows execution result has been added.
<figure>
<a href="./images/screenshots/changes/3.3/jmeter_function_result.png"><img src="./images/screenshots/changes/3.3/jmeter_function_result.png" width="693" height="344" alt=""></a>
<figcaption></figcaption>
</figure>
</p>
<p>New functions:</p>
<ul>
<li>
<span class="code"><a href="./usermanual/functions.html#__timeShift">__timeShift</a></span> - return a date in various formats with the specified amount of seconds/minutes/hours/days added.
<figure>
<a href="./images/screenshots/changes/3.3/jmeter_function_add_time.png"><img src="./images/screenshots/changes/3.3/jmeter_function_add_time.png" width="757" height="376" alt=""></a>
<figcaption></figcaption>
</figure>
</li>
<li>
<span class="code"><a href="./usermanual/functions.html#__RandomDate">__RandomDate</a></span> - generate random date within a specific date range.
<figure>
<a href="./images/screenshots/changes/3.3/jmeter_function_random_date.png"><img src="./images/screenshots/changes/3.3/jmeter_function_random_date.png" width="700" height="369" alt=""></a>
<figcaption></figcaption>
</figure>
</li>
</ul>
<h2 class="ch_section" id="Incompatible changes">Incompatible changes</h2>
<ul>
<li>In InfluxDbBackendListenerClient, <span class="code">statut</span> property has been renamed to <span class="code">status</span>
</li>
<li>In CookieManager, <span class="code">DEFAULT_POLICY</span> and <span class="code">DEFAULT_IMPLEMENTATION</span> constants are now private.
<div class="clear"></div>
<div class="note">If you're using <span class="code">ignorecookies</span> with HC3CookieHandler (< JMeter 3.1) configuration will be reset, ensure you put it back.</div>
<div class="clear"></div>
</li>
<li>JMeter will not truncate anymore by default responses exceeding 10 MB. If you want to enable this truncation, see property <span class="code">httpsampler.max_bytes_to_store_per_request</span>
</li>
<li>
<span class="code">org.apache.jmeter.protocol.tcp.sampler.TCPClient.read(InputStream)</span> has been deprecated in favor or org.apache.jmeter.protocol.tcp.sampler.TCPClient.read(InputStream, SampleResult),
ensure you update your implementation to be able to compute latency, see <a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=60156">
Bug
60156</a>
</li>
</ul>
<h3>Removed elements or functions</h3>
<ul>
<li>
<span class="code">_StringFromFile</span> function has been dropped, use <span class="code"><a href="./usermanual/functions.html#__StringFromFile">__StringFromFile</a></span> instead</li>
</ul>
<h2 class="ch_section" id="Improvements">Improvements</h2>
<h3>HTTP Samplers and Test Script Recorder</h3>
<ul>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61056">
Bug
61056</a>
-
HTTP : Support brotli decoding</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61135">
Bug
61135</a>
-
CookieManager : Drop Implementation select box and cleanup class</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61492">
Bug
61492</a>
-
HTTP(S) Test Script Recorder : Add the possibility to change the value of proxy.pause in the GUI</li>
</ul>
<h3>Other samplers</h3>
<ul>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61320">
Bug
61320</a>
-
Test Action : Set duration to <span class="code">0</span> by default</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61504">
Bug
61504</a>
-
JDBC Connection Configuration : Set Max Number of Connections to <span class="code">0</span> by default</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61505">
Bug
61505</a>
-
JDBC Connection Configuration : Set "Validation Query" to <span class="code">empty</span> by default to use <span class="code">isValid</span> method of JDBC driver</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61506">
Bug
61506</a>
-
JDBC Connection Configuration : Add a list for main databases validation queries for "Validation Query" attribute</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61507">
Bug
61507</a>
-
JDBC Connection Configuration : Add a list for main databases JDBC driver class name for "JDBC Driver class" attribute</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61525">
Bug
61525</a>
-
OS Process Sampler : Add browser button to Command and Working directory fields</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=60156">
Bug
60156</a>
-
TCPSampler : Latency is not measured for TCP Sampler. Contributed by Ubik Load Pack (support at ubikloadpack.com)</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61039">
Bug
61039</a>
-
CSV data set config : Add browser button to Filename field</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61527">
Bug
61527</a>
-
CSV data set config : Add a list for main file encoding values for File encoding attribute</li>
</ul>
<h3>Controllers</h3>
<ul>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61131">
Bug
61131</a>
-
IfController and WhileController : Improve UX</li>
</ul>
<h3>Listeners</h3>
<ul>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61167">
Bug
61167</a>
-
InfluxdbBackendListener : add number of errors by response code and message for each transaction</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61068">
Bug
61068</a>
-
Introduce property <span class="code">resultcollector.action_if_file_exists</span> to control the popup "File already exists" when starting a test</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61457">
Bug
61457</a>
-
InfluxDB backend listener client : Support sending result to InfluxDB through UDP protocol. Partly based on <a href="https://github.com/apache/jmeter/pull/302">
Pull request #302</a>
-
by Junlong Wu (github id mybreeze77)</li>
</ul>
<h3>Timers, Assertions, Config, Pre- & Post-Processors</h3>
<ul>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61176">
Bug
61176</a>
-
<a href="https://github.com/apache/jmeter/pull/298">
Pull request #298</a>
-
Cache responses that have <span class="code">vary</span> header in the <span class="code">CacheManager</span>.</li>
</ul>
<h3>Functions</h3>
<ul>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61040">
Bug
61040</a>
-
Add a time shifting function</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61126">
Bug
61126</a>
-
Function Helper Dialog : Add a field that shows execution result</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61508">
Bug
61508</a>
-
Add a random date within a specific date range function</li>
</ul>
<h3>I18N</h3>
<ul>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61509">
Bug
61509</a>
-
Better label/translation/documentation for labels start and max for Counter element</li>
</ul>
<h3>Report / Dashboard</h3>
<ul>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61481">
Bug
61481</a>
-
Help Menu Item to export transaction for Web report</li>
</ul>
<h3>General</h3>
<ul>
<li>When looking for classes in <span class="code">ActionRouter</span>, fall back to location of the jar,
where <span class="code">ActionRouter</span> is loaded from. Provided by Emilian Bold (emi at apache.org)</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61510">
Bug
61510</a>
-
Set 'Max Number of Connections' to <span class="code">0</span> into 'JDBC Connection Configuration' for the 'JDBC Load Test template'</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61399">
Bug
61399</a>
-
Make some bin and extras scripts Shellcheck compatible. Contributed by Wolfgang Wagner (internetwolf2000 at hotmail.com)</li>
</ul>
<h2 class="ch_section" id="Non-functional changes">Non-functional changes</h2>
<ul>
<li>Updated to groovy 2.4.12 (from 2.4.10)</li>
<li>Updated to caffeine 2.5.5 (from 2.4.0)</li>
<li>Updated to commons-jexl3 3.1 (from 3.0)</li>
<li>Updated to ph-css 5.0.4 (from 5.0.3)</li>
<li>Updated to ph-commons 8.6.6 (from 8.6.0)</li>
<li>Updated to log4j2 2.8.2 (from 2.8.1)</li>
<li>Updated to xmlgraphics-commons 2.2 (from 2.1)</li>
<li>Updated to jodd 3.8.6 (from 3.8.1)</li>
<li>Updated to xstream 1.4.10 (from 1.4.9)</li>
<li>Updated to Apache Tika 1.16 (from 1.14)</li>
<li>Updated to jsoup-1.10.3 (from 1.10.2)</li>
<li>Updated to commons-lang3 3.6 (from 3.5)</li>
<li>Updated to json-path 2.4.0 (from 2.2.0)</li>
<li>Updated to httpcore 4.4.7 (from 4.4.6)</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61438">
Bug
61438</a>
-
Change the cryptographic signature of packages from sha-1 to sha-512</li>
</ul>
<h2 class="ch_section" id="Bug fixes">Bug fixes</h2>
<h3>HTTP Samplers and Test Script Recorder</h3>
<ul>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61384">
Bug
61384</a>
-
Don't set the charset on enclosing <span class="code">multipart/form-data</span> header. It irritates some servers.<br>
The charset was added sometime back while refactoring to use a newer API of http client.
See <a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=56141">
Bug
56141</a>
-
for more info.</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61456">
Bug
61456</a>
-
<span class="code">java.lang.ArrayIndexOutOfBoundsException</span> when recording with JMeter and weird Basic Auth Authorization header</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61395">
Bug
61395</a>
-
Large server response truncation can impact recording</li>
</ul>
<h3>Other Samplers</h3>
<ul>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=60889">
Bug
60889</a>
-
JMeter JDBC sample calls <span class="code">SELECT USER()</span> when testing with MySQL JDBC due to <span class="code">Connection#toString</span> call for response headers.</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61259">
Bug
61259</a>
-
JDBC Request : since JMeter 3.0, when JDBC auto-commit is <span class="code">false</span>, a rollback statement happens each time a Request is executed. Partly contributed by Liu XP (liu_xp2003 at sina.com)</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61319">
Bug
61319</a>
-
Fix regression: SMTP Sampler could not send mails, when no attachments were specified.</li>
</ul>
<h3>Controllers</h3>
<ul>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61375">
Bug
61375</a>
-
Use system DNS resolver as last resort, when resolving entries in the static host table.</li>
</ul>
<h3>Listeners</h3>
<ul>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61005">
Bug
61005</a>
-
View Results Tree - Browser Response Data is not clearing</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61121">
Bug
61121</a>
-
InfluxdbBackendListenerClient: Only all percentiles are sent, not <span class="code">KO</span> and <span class="code">OK</span>
</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=60961">
Bug
60961</a>
-
Try to keep status of selected and expanded elements in View Results Tree when new elements are added.</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61198">
Bug
61198</a>
-
Backend Listener does not work properly in main script when included scripts also contain Backend Listener</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61493">
Bug
61493</a>
-
Max/Min threads are interchanged in Graphite and InfluxDB backend listener</li>
</ul>
<h3>Timers, Assertions, Config, Pre- & Post-Processors</h3>
<ul>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=58743">
Bug
58743</a>
-
<a href="https://github.com/apache/jmeter/pull/293">
Pull request #293</a>
-
TableEditor can't be saved, when using two or more instances. Bugfix provided by Emilian Bold (emi at apache.org)</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61314">
Bug
61314</a>
-
HTTP URL Re-writing Modifier doesn't replace existing <span class="code">jsessionid</span> in http sampler, but adds it to the end</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61336">
Bug
61336</a>
-
BeanShell Assertion : mistake in Chinese translation</li>
</ul>
<h3>Functions</h3>
<ul>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61258">
Bug
61258</a>
-
StringFromFile function is mentioned twice in the Function helper dialog</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61260">
Bug
61260</a>
-
<span class="code"><a href="./usermanual/functions.html#__XPath">__XPath</a></span> function returns null despite XPath checker founds matches</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=58876">
Bug
58876</a>
-
TestPlanName function returns <span class="code">null</span> for a newly saved Test Plan and uses previously opened one for a new one</li>
</ul>
<h3>I18N</h3>
<ul>
</ul>
<h3>Report / Dashboard</h3>
<ul>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61129">
Bug
61129</a>
-
Report/Dashboard : If response code is empty but a <span class="code">failureMessage</span> is present, Errors and Top 5 Errors are not accurate. Contributed by Ubik Load Pack (support at ubikloadpack.com)</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61151">
Bug
61151</a>
-
Report/Dashboard : Top 5 Errors by Sampler and Errors : If assertion contains html code, the html part is hidden</li>
</ul>
<h3>General</h3>
<ul>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=60743">
Bug
60743</a>
-
Stopping / Shutting down Test might create a deadlock due to HTTPCORE-446, fixed by HttpCore upgrade to 4.4.7</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=60994">
Bug
60994</a>
-
Fix some typo in comments or log messages. <a href="https://github.com/apache/jmeter/pull/289">
Pull request #289</a>,
and <a href="https://github.com/apache/jmeter/pull/290">
Pull request #290</a>
-
</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61011">
Bug
61011</a>
-
Replace occurrences count is not correct (Path and Host replacement are counted twice)</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61026">
Bug
61026</a>
-
Cannot run program "keytool": CreateProcess error=2 when starting JMeter 3.2 in GUI mode</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61054">
Bug
61054</a>
-
Endless loop in <span class="code">JOrphanUtils#replaceAllWithRegex</span> when regex is contained in replacement</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=60995">
Bug
60995</a>
-
HTTP Test Script Recorder: Port field is very small under some L&F</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61073">
Bug
61073</a>
-
HTTP(S) Test Script Recorder panel have some fields with bad size on HiDPI screen or GTK+ L&F on Linux/XWayland</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=57958">
Bug
57958</a>
-
Fix transaction sample not generated if thread stops/restarts. Implemented by Artem Fedorov (artem at blazemeter.com) and contributed by BlazeMeter Ltd.</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61050">
Bug
61050</a>
-
Handle uninitialized RessourceBundle more gracefully, when calling <span class="code">JMeterUtils#getResString</span>.</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61100">
Bug
61100</a>
-
Invalid GC Log Filename on Windows</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=57962">
Bug
57962</a>
-
Allow to use variables ( from User Defined Variables only ) in all listeners in slave mode</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61270">
Bug
61270</a>
-
Fixed width fonts too small in text areas to read under HiDPI (user manual bug)</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61292">
Bug
61292</a>
-
Make processing of samples in reporter more robust.</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61359">