forked from apache/jmeter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchanges.html
1696 lines (1327 loc) · 52.2 KB
/
changes.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
-
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>Changes</h1>
<style type="text/css"></style>
<div class="clear"></div>
<div class="note">
<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>.
</div>
<div class="clear"></div>
<h1>Version 4.0</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>
<h3 class="ch_title">Core improvements</h3>
<p>JMeter now supports JAVA 9.</p>
<p>New <a href="usermanual/component_reference.html#Boundary_Extractor"><span class="code">Boundary Extractor</span></a> element available which provides easy extraction with better performances
<figure>
<a href="./images/screenshots/changes/4.0/boundary_extractor.png"><img src="./images/screenshots/changes/4.0/boundary_extractor.png" width="1078" height="315" alt=""></a>
<figcaption></figcaption>
</figure>
</p>
<p>New <a href="usermanual/component_reference.html#JSON_Assertion"><span class="code">JSON Assertion</span></a> element available to assert on JSON responses.
<figure>
<a href="./images/screenshots/changes/4.0/json_assertion.png"><img src="./images/screenshots/changes/4.0/json_assertion.png" width="1095" height="307" alt=""></a>
<figcaption></figcaption>
</figure>
</p>
<p>New <a href="usermanual/component_reference.html#Precise_Throughput_Timer"><span class="code">Precise Throughput Timer</span></a> element available which produces Poisson arrivals with given constant throughput.
<figure>
<a href="./images/screenshots/changes/4.0/precise_throughput_timer.png"><img src="./images/screenshots/changes/4.0/precise_throughput_timer.png" width="1080" height="381" alt=""></a>
<figcaption></figcaption>
</figure>
</p>
<p>JMS Point-to-Point sampler has been enhanced with <span class="code">read</span>, <span class="code">browse</span>, <span class="code">clear</span> options.
<figure>
<a href="./images/screenshots/changes/4.0/jmsptp_communication_styles.png"><img src="./images/screenshots/changes/4.0/jmsptp_communication_styles.png" width="1080" height="489" alt=""></a>
<figcaption></figcaption>
</figure>
</p>
<p>Best property values are now selected on many Test Elements to ensure best practices are the defaults:
<ul>
<li>Newly added <span class="code">If Controller</span> now uses by default Expression which is the most performing option.
<figure>
<a href="./images/screenshots/changes/4.0/if_controller_condition.png"><img src="./images/screenshots/changes/4.0/if_controller_condition.png" width="716" height="248" alt=""></a>
<figcaption></figcaption>
</figure>
<figure>
<a href="./images/screenshots/changes/4.0/if_controller_expression.png"><img src="./images/screenshots/changes/4.0/if_controller_expression.png" width="717" height="251" alt=""></a>
<figcaption></figcaption>
</figure>
</li>
<li>Newly added JSR223 Test Element now cache compiled script by default if language used provides this feature.
<figure>
<a href="./images/screenshots/changes/4.0/jsr223_cache_compilation.png"><img src="./images/screenshots/changes/4.0/jsr223_cache_compilation.png" width="346" height="49" alt=""></a>
<figcaption></figcaption>
</figure>
</li>
</ul>
</p>
<p>
<a href="usermanual/component_reference.html#Loop_Controller"><span class="code">Loop controller</span></a> and
<a href="usermanual/component_reference.html#ForEach_Controller"><span class="code">ForEach Controller</span></a>
now expose their current iteration as a variable named <span class="code">__jm__<Name of your element>__idx</span> that
you can use like this for example for a Loop Controller named <span class="code">MyLoopController</span>:
<pre class="source">${__jm__<MyLoopController>__idx}</pre>.
See <a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61802">
Bug
61802</a>
</p>
<p>Cookies are now shown in View Results Tree during recording. They were previously always shown as empty.</p>
<p>
<a href="usermanual/component_reference.html#Response_Assertion"><span class="code">Response Assertion</span></a> now allows you to customize assertion message and assert on Request Data.
<figure>
<a href="./images/screenshots/changes/4.0/response_assertion_enhancements.png"><img src="./images/screenshots/changes/4.0/response_assertion_enhancements.png" width="909" height="617" alt=""></a>
<figcaption></figcaption>
</figure>
</p>
<h3 class="ch_title">UX improvements</h3>
<p>JMeter now uses <a href="https://github.com/bulenkov/Darcula">Darcula LAF</a> by default</p>
<p>Workbench has been dropped from UI, you can now use Non Test Elements as immediate children of Test Plan.
<figure>
<a href="./images/screenshots/changes/4.0/goodbye_workbench.png"><img src="./images/screenshots/changes/4.0/goodbye_workbench.png" width="282" height="144" alt=""></a>
<figcaption></figcaption>
</figure>
</p>
<p>Menu UX have been improved to make most used elements available more rapidly.
<figure>
<a href="./images/screenshots/changes/4.0/menu_organization.png"><img src="./images/screenshots/changes/4.0/menu_organization.png" width="711" height="322" alt=""></a>
<figcaption></figcaption>
</figure>
</p>
<p>HTTP(S) Test Script Recorder now allows you to name your transactions while recording in a more human readable way.
<figure>
<a href="./images/screenshots/changes/4.0/recorder_naming_samplers.png"><img src="./images/screenshots/changes/4.0/recorder_naming_samplers.png" width="1011" height="502" alt=""></a>
<figcaption></figcaption>
</figure>
</p>
<p></p>
<p>UX improvements made on, among the most notable :</p>
<ul>
<li>Module Controller informs user at least one Controller is required</li>
<li>Function Helper Dialog (The wizard that helps using and testing functions) has been improved in many fields.
<figure>
<a href="./images/screenshots/changes/4.0/function_helper_dialog_enhancements.png"><img src="./images/screenshots/changes/4.0/function_helper_dialog_enhancements.png" width="772" height="315" alt=""></a>
<figcaption></figcaption>
</figure>
</li>
<li>Switch Controller trims text to avoid issues when a space is introduced before/after name</li>
<li>Test Plan is now saved before running the test plan</li>
</ul>
<h3 class="ch_title">Functions</h3>
<p>New Function <a href="usermanual/functions.html#__digest"><span class="code">__digest</span></a> provides easy computing of SHA-XXX, MDX hashes:
<pre class="source">${__digest(MD5,Apache JMeter 4.0 rocks !,,,)}</pre> will return <span class="code">0e16c3ce9b6c9971c69ad685fd875d2b</span>
</p>
<p>New Function <a href="usermanual/functions.html#__dateTimeConvert"><span class="code">__dateTimeConvert</span></a> provides easy conversion between date formats:
<pre class="source">${__dateTimeConvert(01 Jan 2017,dd MMM yyyy,dd/MM/yyyy,)}</pre> will return <span class="code">01/01/2017</span>
</p>
<p>New Function <a href="usermanual/functions.html#__changeCase"><span class="code">__changeCase</span></a> provides ability to switch to Upper / Lower / Capitalized cases
<pre class="source">${__changeCase(Avaro omnia desunt\, inopi pauca\, sapienti nihil,UPPER,)}</pre> will return <span class="code">AVARO OMNIA DESUNT, INOPI PAUCA, SAPIENTI NIHIL</span>
</p>
<p>New Functions <a href="usermanual/functions.html#__isVarDefined"><span class="code">__isVarDefined</span></a>
and <a href="usermanual/functions.html#__isPropDefined"><span class="code">__isPropDefined</span></a> provide testing of properties and variables availability
<pre class="source">${__isPropDefined(START.HMS)}</pre> will return <span class="code">true</span>
<pre class="source">${__isVarDefined(JMeterThread.last_sample_ok)}</pre> will return <span class="code">true</span>
</p>
<h3 class="ch_title">Scripting and Plugin Development</h3>
<p>You can now call <span class="code">SampleResult#setIgnore()</span> if you don't want your sampler to be visible in results</p>
<p>
<span class="code">JavaSamplerContext</span> used by <span class="code">AbstractJavaSamplerClient</span> has been enhanced with new methods to easy plugin development.</p>
<p>JMeter now distributes additional Maven sources and javadoc artifacts into <a href="https://repo1.maven.org/maven2/org/apache/jmeter/ApacheJMeter_core/4.0/">Maven repository</a>
</p>
<p>Plugins can now register listeners to be notified when a Test Plan is opened/closed</p>
<h3 class="ch_title">Live Reporting and Web Report</h3>
<p>InfluxDB backend listener now allows you to add custom tags by adding them with prefix <span class="code">TAG_</span>, see <a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61794">
Bug
61794</a>
</p>
<p>In Web Report responseTime distribution graph is more precise</p>
<p>Some bugfixes have been made on report generation, see <a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61900">
Bug
61900</a>, <a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61900">
Bug
61900</a>61956, <a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61899">
Bug
61899</a>.
Graphs <i>Latency Vs Request</i> and <i>Response Time Vs Request</i> did not exceed 1000 RPS due to <a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61962">
Bug
61962</a>
</p>
<h3 class="ch_title">Configuration of JMeter environment</h3>
<p>JVM settings for the JMeter start scripts can be placed in a separate file (<span class="code">bin/setenv.sh</span> on Unix
and <span class="code">bin\setenv.bat</span> on Windows), that gets called on startup. The startup script
itself does not have to be edited anymore.</p>
<h2 class="ch_section" id="Incompatible changes">Incompatible changes</h2>
<ul>
<li>
<span class="code">Start time</span> and <span class="code">End date</span> of Thread Group have been removed, see <a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61549">
Bug
61549</a>
</li>
<li>In distributed testing, mode <span class="code">Hold</span> has been removed. Use alternative and more efficient modes</li>
<li>For 3<sup>rd</sup> party plugins, the following method in <span class="code">org.apache.jmeter.gui.tree.JMeterTreeNode</span> has been dropped for migration to Java 9 (<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61529">
Bug
61529</a>)
<pre class="source">public Enumeration<JMeterTreeNode> children()</pre>
</li>
<li>
<span class="code">tearDown Thread Group</span> will now run on stop and shutdown of a test by default. If you don't want this behaviour,
uncheck <span class="code">Run tearDown Thread Groups after shutdown of main threads</span> on <span class="code">Test Plan</span> element, see <a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61656">
Bug
61656</a>
</li>
<li>Properties <span class="code">sampleresult.getbytes.headers_size</span> and <span class="code">sampleresult.getbytes.body_real_size</span> have been dropped, see <a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61587">
Bug
61587</a>
</li>
<li>JMeter will now save your test plan whenever you run it. This behaviour can be controlled by property <span class="code">save_automatically_before_run</span>, see <a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61731">
Bug
61731</a>
</li>
<li>Workbench element has been dropped, you now directly add <span class="code">Non Test Element</span> as children of Test Plan. When loading a Test Plan that contains the element
JMeter will move the <span class="code">Mirror Server</span>, <span class="code">Property Display</span> and HTTP(s) <span class="code">Test Script Recorder</span> elements as direct children of Test Plan. For
any other element, it will create a <span class="code">Test Fragment</span> element called <span class="code">Workbench Test Fragment and move the elements in it</span>.</li>
<li>Following classes have been dropped (<span class="code">org.apache.jmeter.functions.util.ArgumentEncoder</span>, <span class="code">org.apache.jmeter.functions.util.ArgumentDecoder</span>), see <a href="https://github.com/apache/jmeter/pull/335">
Pull request #335</a>
</li>
<li>In JMS Point-to-Point sampler, setting timeout to 0 will now mean infinite timeout while previously it would be switched to 2000 ms, see <a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61829">
Bug
61829</a>
</li>
<li>When Assertions are at different scopes, they are executed starting with the most OUTER one to the most INNER one. See <a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61846">
Bug
61846</a>
</li>
<li>JMeter now starts by default using English locale. This change is due to missing translations in many supported languages.
You can change locale by modifying in jmeter and jmeter.bat (or preferably setenv.sh/setenv.bat) the <span class="code">JVM_ARGS</span> system property values.
We'd also be very grateful if you can contribute translations in supported languages.
</li>
<li>SwitchController now trims by default the content of switch to avoid issue related to unwanted spaces. See <a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61771">
Bug
61771</a>
</li>
<li>JMeter JVM heap settings have changed from <span class="code">-Xms512m -Xmx512m</span> to <span class="code">-Xms1g -Xmx1g</span>
</li>
</ul>
<h2 class="ch_section" id="Improvements">Improvements</h2>
<h3>HTTP Samplers and Test Script Recorder</h3>
<ul>
<li>
<a href="https://github.com/apache/jmeter/pull/316">
Pull request #316</a>
-
Warn about empty truststore loading. Contributed by Vincent Herilier (https://github.com/vherilier)</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61639">
Bug
61639</a>
-
HTTP(S) Test Script Recorder: In request filtering tab, uncheck by default "Notify Child Listeners of filtered samplers"</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61672">
Bug
61672</a>
-
HTTP(S) Test Script Recorder: Have the ability to choose the sampler name while keeping the ability to just add a prefix</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=53957">
Bug
53957</a>
-
HTTP Request: In Parameters tab, allow pasting of content coming from Firefox and Chrome (unparsed)</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61587">
Bug
61587</a>
-
Drop properties <span class="code">sampleresult.getbytes.headers_size</span> and <span class="code">sampleresult.getbytes.body_real_size</span>
</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61843">
Bug
61843</a>
-
HTTP(S) Test Script Recorder: Add SAN to JMeter generated CA Certificate. Contributed by Matthew Buckett</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61901">
Bug
61901</a>
-
Support for <span class="code">https.cipherSuites</span> System property. Contributed by Jeremy Arnold (jeremy at arnoldzoo.org)</li>
</ul>
<h3>Other samplers</h3>
<ul>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61544">
Bug
61544</a>
-
JMS Point-to-Point Sampler: Enhance communication styles with read, browse, clear. Based on a contribution by Benny van Wijngaarden (benny at smaragd-it.nl)</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61829">
Bug
61829</a>
-
JMS Point-to-Point: If Receive Queue is empty and a timeout is set, it is not taken into account. Contributed by Ubik Load Pack (support at ubikloadpack.com)</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61739">
Bug
61739</a>
-
Java Request / JavaSamplerClient: Improve <span class="code">org.apache.jmeter.protocol.java.sampler.JavaSamplerContext</span>
</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61762">
Bug
61762</a>
-
Start Next Thread Loop should be used everywhere</li>
</ul>
<h3>Controllers</h3>
<ul>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61675">
Bug
61675</a>
-
If Controller: Use expression by default and add a warning when the other mode is used. Contributed by Ubik Load Pack (support at ubikloadpack.com)</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61770">
Bug
61770</a>
-
Module Controller: Inform user in UI that he needs to have at least one Controller in his plan. Contributed by Ubik Load Pack (support at ubikloadpack.com)</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61771">
Bug
61771</a>
-
SwitchController: Switch field should be trimmed by safety</li>
</ul>
<h3>Listeners</h3>
<ul>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=57760">
Bug
57760</a>
-
View Results Tree: Cookie Header is wrongly shown as empty (no cookies) when viewing a recorder Sample Result. Contributed by Ubik Load Pack (support at ubikloadpack.com)</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61769">
Bug
61769</a>
-
View Results Tree: Use syntax highlighter in XPath Tester, JSON Path Tester and CSS/JQuery Tester. Contributed by Ubik Load Pack (support at ubikloadpack.com)</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61776">
Bug
61776</a>
-
View Results Tree: Expansion of <span class="code">Add expand/collapse all</span> menu in render XML view. Contributed by Maxime Chassagneux and Graham Russell</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61852">
Bug
61852</a>
-
View Results Tree: Add a Boundary Extractor Tester</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61794">
Bug
61794</a>
-
Influxdb backend: Add as many custom tags as wanted by just create new lines and prefix theirs name by "<span class="code">TAG_</span>" on the GUI 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=60213">
Bug
60213</a>
-
New component: Boundary based extractor</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61845">
Bug
61845</a>
-
New Component JSON Assertion based on AtlanBH JSON Path Assertion donated to JMeter-Plugins and migrated into JMeter core by Artem Fedorov (artem at blazemeter.com)</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61931">
Bug
61931</a>
-
New Component: Precise Throughput Timer, timer that produces Poisson arrivals with given constant throughput. Contributed by Vladimir Sitnikov (sitnikov.vladimir at gmail.com)</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61644">
Bug
61644</a>
-
HTTP Cache Manager: "Use Cache-Control/Expires header when processing GET requests" should be checked by default</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61645">
Bug
61645</a>
-
Response Assertion: Add ability to assert on Request Data</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=51140">
Bug
51140</a>
-
Response Assertion: add ability to set a specific error/failure message that is later shown in the Assertion Result. Contributed by Ubik Load Pack (support at ubikloadpack.com)</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61534">
Bug
61534</a>
-
Convert AssertionError to a failed assertion, allowing users to use assert in their code. Fixing a regression introduced in 3.2</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61756">
Bug
61756</a>
-
Extractors: Improve label name "Reference name" to make it clear what it makes</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61758">
Bug
61758</a>
-
<span class="code">Apply to:</span> field in Extractors, Assertions: When entering a value in <span class="code">JMeter Variable Name</span>, the radio box <span class="code">JMeter Variable Name</span> should be selected by default. Contributed by Ubik Load Pack (support at ubikloadpack.com)</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61846">
Bug
61846</a>
-
Scoped Assertion should follow same order of evaluation as Post Processors</li>
</ul>
<h3>Functions</h3>
<ul>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61724">
Bug
61724</a>
-
Add <span class="code">__digest</span> function to provide computing of Hashes (SHA-XXX, MDX). Based on a contribution by orimarko at gmail.com</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61735">
Bug
61735</a>
-
Add <span class="code">__dateTimeConvert</span> function to provide date formats conversions. Based on a contribution by orimarko at gmail.com</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61760">
Bug
61760</a>
-
Add <span class="code">__isPropDefined</span> and <span class="code">__isVarDefined</span> functions to know if property or variable exist. Contributed by orimarko at gmail.com</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61759">
Bug
61759</a>
-
Add <span class="code">__changeCase</span> function to change different cases of a string. Based on a contribution by orimarko at gmail.com</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61561">
Bug
61561</a>
-
Function helper dialog should display exception in result</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61738">
Bug
61738</a>
-
Function Helper Dialog: Add Copy in Generate and clarify labels. Contributed by Ubik Load Pack (support at ubikloadpack.com)</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=62027">
Bug
62027</a>
-
Help: Introduce property <span class="code">help.local</span> to allow choosing between local (offline) documentation and online documentation</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61593">
Bug
61593</a>
-
Remove Detail, Add, Add from Clipboard, Delete buttons in Function Helper GUI</li>
</ul>
<h3>I18N</h3>
<ul>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61606">
Bug
61606</a>
-
Translate button <span class="code">Browse…</span> in some elements (which use FileEditor class)</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61747">
Bug
61747</a>
-
HTTP(S) Test Script Recorder: add the missing doc to "Create transaction after request (ms)"</li>
</ul>
<h3>Report / Dashboard</h3>
<ul>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61871">
Bug
61871</a>
-
Reduce jmeter.reportgenerator.graph.responseTimeDistribution.property.set_granularity default value from 500ms to 100ms</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61879">
Bug
61879</a>
-
Remove useless files in HTML report template</li>
</ul>
<h3>General</h3>
<ul>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61591">
Bug
61591</a>
-
Drop Workbench from test tree. 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=61549">
Bug
61549</a>
-
Thread Group: Remove start and end date</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61529">
Bug
61529</a>
-
Migration to Java 9. Partly contributed by Ubik Load Pack (support at ubikloadpack.com)</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61709">
Bug
61709</a>
-
SampleResult: Add a method <span class="code">setIgnore()</span> to make JMeter ignore the SampleResult and not send it to listeners</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61806">
Bug
61806</a>
-
Allow to use <span class="code">SampleResult#setIgnore()</span> in post-processors and assertions script (JSR223 elements)</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61607">
Bug
61607</a>
-
Add browse button in all BeanShell elements to select BeanShell script</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61627">
Bug
61627</a>
-
Don't clear LogView anymore when clicking on Warning/Errors Indicator</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61629">
Bug
61629</a>
-
Add Think Times to Children menu should not consider disabled elements</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61655">
Bug
61655</a>
-
SampleSender: Drop HoldSampleSender implementation</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61656">
Bug
61656</a>
-
<span class="code">tearDown Thread Group</span> should run by default at stop or shutdown of test</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61659">
Bug
61659</a>
-
<span class="code">JMeterVariables#get()</span> should apply <span class="code">toString()</span> on non string objects</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61555">
Bug
61555</a>
-
Metaspace should be restricted as default</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61693">
Bug
61693</a>
-
JMeter aware of Docker (<span class="code">-XX:+UnlockExperimentalVMOptions</span> <span class="code">-XX:+UseCGroupMemoryLimitForHeap</span>)</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61694">
Bug
61694</a>
-
Add <span class="code">-server</span> option in <span class="code">jmeter.bat</span>
</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61697">
Bug
61697</a>
-
Introduce Darcula Look And Feel to make JMeter UI more attractive</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61704">
Bug
61704</a>
-
Toolbar: Improve a bit the right part</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61731">
Bug
61731</a>
-
Enhance Test plan Backup with option to save before run. Based on a contribution by orimarko at gmail.com</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61640">
Bug
61640</a>
-
JSR223 Test Elements: Enable by default caching. Contributed by Ubik Load Pack (support at ubikloadpack.com)</li>
<li>
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61785">
Bug
61785</a>
-
Add <span class="menuchoice"><span class="guimenuitem">Help</span> → <span class="guimenuitem">Useful links</span></span> to create issues and download nightly build</li>