-
Notifications
You must be signed in to change notification settings - Fork 12
/
release-notes-18.12.01.html
1430 lines (1423 loc) · 101 KB
/
release-notes-18.12.01.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>
<html lang="en">
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<head>
<meta charset="utf-8">
<title>The Apache OFBiz® Project - Release Notes 18.12.01</title>
<meta name="Description" content="OFBiz is an open source enterprise automation software project licensed under the Apache License. It means you are not alone and can work with many others." />
<meta name="Robots" content="index,follow" />
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- CSS
================================================== -->
<!-- local fonts -->
<link type="text/css" id="fonts" rel="stylesheet" href="/css/fonts.css">
<!-- Bootstrap -->
<link type="text/css" rel="stylesheet" href="/bootstrap/css/bootstrap.min.css">
<!-- plugin css -->
<link rel="stylesheet" type="text/css" href="/js/plugins/pretty-photo/css/prettyPhoto.css" />
<link rel="stylesheet" type="text/css" href="/js/plugins/rs-plugin/css/settings.css" media="screen" />
<link type="text/css" rel="stylesheet" href="/js/plugins/hoverdir/css/style.css">
<!-- icon fonts -->
<link type="text/css" rel="stylesheet" href="/font-icons/custom-icons/css/custom-icons.css">
<link type="text/css" rel="stylesheet" href="/font-icons/custom-icons/css/custom-icons-ie7.css">
<!-- Custom css -->
<link type="text/css" rel="stylesheet" href="/css/layout.css">
<link type="text/css" id="colors" rel="stylesheet" href="/css/colors.css">
<!--[if lt IE 9]><script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<!--[if gte IE 9]><style type="text/css">.iconBig, .active, .hover a , .Shover a { filter: none !important; } </style> <![endif]-->
<script src="js/modernizr-2.6.1.min.js"></script>
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="/images/favicon.ico">
<link rel="apple-touch-icon" href="/images/apple-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="/images/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="/images/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="144x144" href="/images/apple-icon-144x144.png">
</head>
<body>
<!-- header -->
<header id="mainHeader" class="clearfix">
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container"> <a href="index.html" class="brand"><img src="images/ofbiz_logo.png" alt="Apache OFBiz Logo"/></a>
<nav id="mainMenu" class="clearfix">
<ul>
<li><a href="index.html" class="firstLevel">Home</a></li>
<li><a href="#" class="firstLevel">Getting Started</a>
<ul>
<li><a href="developers.html" class="">Developers</a></li>
<li><a href="business-users.html" class="last">Business Users</a></li>
</ul>
</li>
<li><a href="#" class="firstLevel">News</a>
<ul>
<li><a href="//blogs.apache.org/ofbiz/" target="external" class="last">Blog</a></li>
</ul>
</li>
<li><a href="#" class="firstLevel">Documentation</a>
<ul>
<li><a href="//cwiki.apache.org/confluence/display/OFBIZ/Documentation" target="external" class="">User Documentation</a></li>
<li><a href="//cwiki.apache.org/confluence/display/OFBIZ/Technical+Documentation" target="external" class="">Technical Documentation</a></li>
<li><a href="//cwiki.apache.org/confluence/display/OFBIZ/Home" target="external" class="">Wiki</a></li>
<li><a href="#" class="firstLevel">API Reference</a>
<ul>
<li title="Trunk API">
<a href="https://nightlies.apache.org/ofbiz/trunk/javadoc/" target="external">Trunk API</a></li>
</li>
<li title="Stable release API">
<a href="https://nightlies.apache.org/ofbiz/stable/javadoc/" target="external">Stable Release API</a></li>
</li>
<li title="Next release API">
<a href="https://nightlies.apache.org/ofbiz/next/javadoc/" target="external">Next Release API</a></li>
</li>
</ul>
</li>
</ul>
</li>
<li><a href="#" class="firstLevel">Community</a>
<ul>
<li><a href="getting-involved.html">Getting Involved</a></li>
<li><a href="mailing-lists.html">Mailing Lists</a></li>
<li><a href="source-repositories.html">Source Repository</a></li>
<li><a href="download.html">Downloads</a></li>
<li><a href="https://s.apache.org/dsj2p" target="external" >Issue Tracker</a></li>
<li><a href="faqs.html" class="last">FAQ</a></li>
</ul>
</li>
<li><a href="ofbiz-demos.html" class="firstLevel">Demos</a></li>
<li><a href="//www.youtube.com/user/ofbiz" class="icon-play socialIcon tips" target="external" title="follow us on Youtube"><span>Youtube</span></a></li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<!-- header -->
<!-- globalWrapper -->
<div id="globalWrapper">
<!-- page content -->
<section id="content" class="fullWidth">
<header class="headerPage">
<div class="container clearfix">
<div class="row">
<h1 class="span8">Release Notes 18.12.01</h1>
<div class="span4" id="navTrail"> <a href="index.html" class="homeLink">home</a><span>/</span><a href="download.html">Download</a><span>/</span><span class="current">Release Notes 18.12.01</span> </div>
</div>
</div>
</header>
<section id="content" class="features" >
<div class="slice clearfix">
<div class="container">
<div class="row">
<div>
<p>Apache OFBiz® 18.12.01, released on October 2021, is the first release of the 18.12 series, that has been stabilized since December 2018.</p>
<h2> Sub-task
</h2>
<ul>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-3499'>OFBIZ-3499</a>] - help requires content component
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-4361'>OFBIZ-4361</a>] - Any ecommerce user has the ability to reset anothers password (including admin) via "Forget Your Password"
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5444'>OFBIZ-5444</a>] - Create patch for removal of IDEAL code in framework
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5445'>OFBIZ-5445</a>] - Have eCommerce component reflect the new situation re iDEAL
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6655'>OFBIZ-6655</a>] - Add session tracking mode and make cookie secure
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6946'>OFBIZ-6946</a>] - Remove ftl dependency in order on ecommerce
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7246'>OFBIZ-7246</a>] - Workeffort : Arrange UI labels in alphabetic order
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7325'>OFBIZ-7325</a>] - Ecommerce : Arrange UI Labels in alphabetic order according to best practice.
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7670'>OFBIZ-7670</a>] - OFBIZ-7517:SpecialPurpose/ecommerce: Correct all the checkboxes and radio buttons in all the ecommerce FTLs.
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7738'>OFBIZ-7738</a>] - OFBIZ-7471: Improve all the service level error messages for missing required field for workeffort component
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8929'>OFBIZ-8929</a>] - OFBIZ-7520: Consistency and Readability improvements for log tag
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8930'>OFBIZ-8930</a>] - OFBIZ-7520: Consistency and Readability improvements for option (form widget) tag
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8965'>OFBIZ-8965</a>] - OFBIZ-7520: Consistency and Readability improvements for event tag (controller.xml)
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8972'>OFBIZ-8972</a>] - OFBIZ-7520: Consistency and Readability improvements for include-menu tag
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8991'>OFBIZ-8991</a>] - OFBIZ-7520: Consistency and Readability improvements for condition tag
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9089'>OFBIZ-9089</a>] - Unit test case for service - createProductFeatureType
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9522'>OFBIZ-9522</a>] - User should be notified with success message on creating shopping list in ecommerce component
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9533'>OFBIZ-9533</a>] - User should be notified with success message on MRP run in manufacturing component
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9585'>OFBIZ-9585</a>] - Convert createContactList service from simple to entity-auto
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9804'>OFBIZ-9804</a>] - Link in verification email for Newsletter gives security error
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9844'>OFBIZ-9844</a>] - Replace Inline js with External js in renderTextField macro
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9846'>OFBIZ-9846</a>] - Replace Inline js with External js in renderFormClose macro
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9848'>OFBIZ-9848</a>] - Replace Inline js with External js in renderDateTimeField macro
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9849'>OFBIZ-9849</a>] - Replace Inline js with External js in renderDropDownField macro
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9850'>OFBIZ-9850</a>] - Replace Inline js with External js in renderDateFindField macro
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9853'>OFBIZ-9853</a>] - Replace Inline js with External js in renderFieldGroupOpen macro
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9973'>OFBIZ-9973</a>] - [FB] Find Security Bugs
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9986'>OFBIZ-9986</a>] - Convert InvoiceServices.xml mini lang to groovy
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10031'>OFBIZ-10031</a>] - Convert CategoryServices.xml mini lang to groovy
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10113'>OFBIZ-10113</a>] - Replace Asm select plugin with Select2.
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10214'>OFBIZ-10214</a>] - Update build.gradle to the latest dependencies
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10254'>OFBIZ-10254</a>] - Create Empty Document templates for Human Resources Documentation
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10257'>OFBIZ-10257</a>] - Add Document Content: hr-employee-evaluations.adoc
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10258'>OFBIZ-10258</a>] - Add Document Content: hr-glossary.adoc
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10259'>OFBIZ-10259</a>] - Add Document Content: hr-employee-positions.adoc
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10260'>OFBIZ-10260</a>] - Add Document Content: hr-employees.adoc
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10261'>OFBIZ-10261</a>] - Add Document Content: hr-employments.adoc
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10263'>OFBIZ-10263</a>] - Add Document Content: hr-positions.adoc
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10264'>OFBIZ-10264</a>] - Add Document Content: hr-qualifications.adoc
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10265'>OFBIZ-10265</a>] - Add Document Content: hr-recruitment.adoc
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10266'>OFBIZ-10266</a>] - Add Document Content: hr-skills.adoc
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10267'>OFBIZ-10267</a>] - Add Document Content: hr-resumes.adoc
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10269'>OFBIZ-10269</a>] - Add Document Content: hr-leave.adoc
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10270'>OFBIZ-10270</a>] - Add Document Content: hr-security.adoc
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10332'>OFBIZ-10332</a>] - Standardise layout for Order
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10334'>OFBIZ-10334</a>] - Standardise layout for Party
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10380'>OFBIZ-10380</a>] - Convert facility party related services from simple to entity-auto
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10395'>OFBIZ-10395</a>] - Convert Requirement related services from simple to entity-auto
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10401'>OFBIZ-10401</a>] - Migrate createContent service from Minilang to Entity Auto
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10408'>OFBIZ-10408</a>] - Remove entity suffix from title of all entities
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10415'>OFBIZ-10415</a>] - Update Solr and Lucene from 7.2.1 to Solr 7.3.1 for security reason (CVE-2018-8010)
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10534'>OFBIZ-10534</a>] - 'Reserve After Date' for order items
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10562'>OFBIZ-10562</a>] - Document the automated authentification from a domain to another
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10564'>OFBIZ-10564</a>] - Create an empty document templates for webapp socumentation
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10678'>OFBIZ-10678</a>] - CLONE - Check embedded Javascript libs vulnerabilities using retire.js
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10758'>OFBIZ-10758</a>] - Replace jQuery.bind() with jQuery.on()
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10759'>OFBIZ-10759</a>] - Replace document.write() occurrences with some legitimate code
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10770'>OFBIZ-10770</a>] - Update Apache commons-fileupload to last version (CVE-2019-0189)
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10837'>OFBIZ-10837</a>] - Improve ObjectInputStream class (CVE-2019-0189)
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10849'>OFBIZ-10849</a>] - UI issue on ecommerce main page
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10873'>OFBIZ-10873</a>] - Update Tomcat to 9.0.16 due to CVE-2019-0199
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10920'>OFBIZ-10920</a>] - Update Tomcat to 9.0.18 due to CVE-2019-0232
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10930'>OFBIZ-10930</a>] - Stores can't be modified at ofbizsetup/control/updateProductStore
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11006'>OFBIZ-11006</a>] - Create customer request screen breaks when entering special characters (CVE-2019-10074)
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11033'>OFBIZ-11033</a>] - service 'loadSalesOrderItemFact' has hard coded currencyUomId
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11150'>OFBIZ-11150</a>] - Form widget field with input-method="time-dropdown" unable to understand the default time
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11171'>OFBIZ-11171</a>] - Same content uploaded twice, if refresh the page after uploading the content
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11195'>OFBIZ-11195</a>] - XML Entity Injection in webtools/control/entityImport
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11196'>OFBIZ-11196</a>] - Path Traversal in webtools/control/FetchLogs and ViewFile
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11197'>OFBIZ-11197</a>] - Arbitrary Code Execution
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11276'>OFBIZ-11276</a>] - Update the SvnCheckout Gradle task to use Github svn repo
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11284'>OFBIZ-11284</a>] - We have build problems in branches with plugins
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11304'>OFBIZ-11304</a>] - Install a Checkstyle pre-push (on every committer machine?)
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11325'>OFBIZ-11325</a>] - Fixed the issue on party page that will upload the data each time after refreshing the page.
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11349'>OFBIZ-11349</a>] - The "stream" request-map in ecommerce and commonext controllers requires authentication
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11470'>OFBIZ-11470</a>] - Ensure that the SameSite attribute is set to 'strict' for all cookies. (CVE-2019-0235)
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11477'>OFBIZ-11477</a>] - Improve Web Content Caching
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11583'>OFBIZ-11583</a>] - Prevent Host Header Injection (CVE-2019-12425)
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11709'>OFBIZ-11709</a>] - Prevent FreeMarker Template Injection (SSTI)
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11716'>OFBIZ-11716</a>] - Apache OFBiz unsafe deserialization of XMLRPC arguments (CVE-2020-9496)
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11752'>OFBIZ-11752</a>] - CLONE - Check embedded Javascript libs vulnerabilities using retire.js
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11836'>OFBIZ-11836</a>] - IDOR vulnerability in the order processing feature in ecommerce component (CVE-2020-13923)
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11840'>OFBIZ-11840</a>] - Reflected XSS in content component
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11848'>OFBIZ-11848</a>] - Upgrade Tomcat from 9.0.34 to 9.0.36 (CVE-2020-11996)
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11871'>OFBIZ-11871</a>] - Server-Side Template Injection using Static
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11948'>OFBIZ-11948</a>] - Remote Code Execution (File Upload) Vulnerability
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11949'>OFBIZ-11949</a>] - Local File Inclusion vulnerability
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12055'>OFBIZ-12055</a>] - Prevent possible post-auth RCE from webtools/control/ProgramExport
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12056'>OFBIZ-12056</a>] - Prevent Zip Slip vulnerability
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12057'>OFBIZ-12057</a>] - Prevent arbitary file write using webtools/control/EntitySQLProcessor.
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12080'>OFBIZ-12080</a>] - Secure the uploads
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12096'>OFBIZ-12096</a>] - Post-auth XSS vulnerability at catalog/control/EditProductPromo
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12098'>OFBIZ-12098</a>] - Make ruleName field in PriceForms.xml#AddPriceRules safe
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12165'>OFBIZ-12165</a>] - Upgrade Tomcat from 9.0.41 to 9.0.43
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12195'>OFBIZ-12195</a>] - webtools/control/threadList no longer works on trunk (only)
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12205'>OFBIZ-12205</a>] - Upgrade Apache PDFBox to 2.0.23 because of CVE-2021-27807 and CVE-2021-27906
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12212'>OFBIZ-12212</a>] - Comment out the SOAP and HTTP engines - Fix [CVE-2021-30128]
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12216'>OFBIZ-12216</a>] - Fixed UtilObject class [CVE-2021-29200]
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12221'>OFBIZ-12221</a>] - Fixed ObjectInputStream denyList [CVE-2021-30128]
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12256'>OFBIZ-12256</a>] - Update PDFBox to 2.0.24 because of CVE-2021-31811 & CVE-2021-31812
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12297'>OFBIZ-12297</a>] - Wrong uploaded file checked in Image Management [CVE-2021-37608]
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12301'>OFBIZ-12301</a>] - SecuredUpload::isValidTextFile wrong check with uppercase
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12304'>OFBIZ-12304</a>] - Found a new XXE (XML External Entity Injection) vulnerability in EntityImport
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12306'>OFBIZ-12306</a>] - Found a new XXE (XML External Entity Injection) vulnerability in ArtifactInfo
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12307'>OFBIZ-12307</a>] - CVE-2021-37608 vulnerability bypass
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12316'>OFBIZ-12316</a>] - The Solr version included in OFBiz has an SSRF vulnerability (CVE-2021-27905)
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12332'>OFBIZ-12332</a>] - post-auth Remote Code Execution Vulnerability
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12337'>OFBIZ-12337</a>] - [SECURITY] CVE-2021-42340 Apache Tomcat DoS
</li>
</ul>
<h2> Bug
</h2>
<ul>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-2618'>OFBIZ-2618</a>] - double forward slashes in ecommerce emails
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-4514'>OFBIZ-4514</a>] - Taxes are not handled correctly when creating accounting transactions from purchase invoices
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5254'>OFBIZ-5254</a>] - Services allow arbitrary HTML for parameters with allow-html set to "safe"
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5409'>OFBIZ-5409</a>] - JSON Response does not set http status on error
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6330'>OFBIZ-6330</a>] - The invoiceTaxTotal value is missing from createAcctgTransForPurchaseInvoice service
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6408'>OFBIZ-6408</a>] - Adding a group order generates an error
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6993'>OFBIZ-6993</a>] - Cannot find the declaration of element 'web-app' in version 3.0 files.
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7249'>OFBIZ-7249</a>] - Error on removing scrum members
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7473'>OFBIZ-7473</a>] - Induce Model XML from Database throws exception
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7610'>OFBIZ-7610</a>] - Product Price set based on 'Purchase Price Agreement' isn't honoured while same is used during ordering
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7664'>OFBIZ-7664</a>] - Inconsistencies on the title and the label on button of create forms.
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7816'>OFBIZ-7816</a>] - Profile of contact person not shown on quick add of contact in SFA
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8302'>OFBIZ-8302</a>] - Sorting of lists generates undesired results
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-8459'>OFBIZ-8459</a>] - InventoryItemStatus is not updated to INV_PROMISED status while creating sales order for serialized product
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9299'>OFBIZ-9299</a>] - Logo image not showing on party profile
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9379'>OFBIZ-9379</a>] - No definition found for view with name [setLocaleFromBrowser]
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9476'>OFBIZ-9476</a>] - UI issue in payment lookup.
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9478'>OFBIZ-9478</a>] - RequestHandlerException in dataResource and fixed asset lookup.
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9642'>OFBIZ-9642</a>] - Product tags section displays 'Update' button, despite of having no results
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9658'>OFBIZ-9658</a>] - Issue while redirecting to Request Detail Screen from View Communication Event
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9677'>OFBIZ-9677</a>] - In packing, only use reservations with stock on hand
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9687'>OFBIZ-9687</a>] - Bug in order manager main page when using Arab language
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9855'>OFBIZ-9855</a>] - Using try-with-resources with File IO Objects.
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9867'>OFBIZ-9867</a>] - <description> of <visual-theme> in Theme.xml does not work
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9898'>OFBIZ-9898</a>] - Incorrect success message after creating customer
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9901'>OFBIZ-9901</a>] - Unable to create event in SFA component
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9908'>OFBIZ-9908</a>] - Quick Add button for shopping list on Orderentry screen is not working
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9997'>OFBIZ-9997</a>] - Replace request-redirect w/ no redirect-param attribute by request-redirect-noparam
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10054'>OFBIZ-10054</a>] - Product content management screen doesn't validate trusted users' input
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10173'>OFBIZ-10173</a>] - Add/Modify Calender Event Screen is Broken
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10183'>OFBIZ-10183</a>] - Error on My Portal > Request Overview Page
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10187'>OFBIZ-10187</a>] - OWASP sanitizer breaks proper rendering of HTML code
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10205'>OFBIZ-10205</a>] - The setToComplete of ofbizsetup run in error when running demo General Chart Of Accounts.
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10210'>OFBIZ-10210</a>] - Values are not aligned with column over EditShoppingList Screen
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10243'>OFBIZ-10243</a>] - Error in service definition for deleteOrderHeaderWorkEffort
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10244'>OFBIZ-10244</a>] - french typo fix
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10274'>OFBIZ-10274</a>] - Wrong locale/fallbackLocale logic in CategoryContentWrapper leads to unavailable alternate locale content
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10275'>OFBIZ-10275</a>] - UtilCodec URL decoding breaks values with german umlauts
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10276'>OFBIZ-10276</a>] - Theme screens do not load properly
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10281'>OFBIZ-10281</a>] - HttpClient failed to return the error result
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10284'>OFBIZ-10284</a>] - Handling tenant in XmlRpcEventHandler
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10298'>OFBIZ-10298</a>] - Fluent API Bug in getFieldList()
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10301'>OFBIZ-10301</a>] - loadCartFromOrder changes order date even when updating order items
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10302'>OFBIZ-10302</a>] - Display/functionality improvement in findParty of OOTB regarding classification group
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10308'>OFBIZ-10308</a>] - Financial account transaction --> accounting transaction
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10310'>OFBIZ-10310</a>] - Issue with Status of invoice
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10327'>OFBIZ-10327</a>] - CatalogServices #createProductCategoryAttribute doesn't check for existing attributes
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10328'>OFBIZ-10328</a>] - CatalogServices #duplicateProductCategory doesn't check for existing categories
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10356'>OFBIZ-10356</a>] - Display of entities in text input field for Product Name
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10369'>OFBIZ-10369</a>] - ConfigXMLReader - Events are not executed in the order defined
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10374'>OFBIZ-10374</a>] - Existing BILLING_LOCATION record of party should expire while creating a new one
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10426'>OFBIZ-10426</a>] - When creating blog or forums, it failed to save
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10437'>OFBIZ-10437</a>] - <#if containerId?has_content> id="${containerId}"</#if> is missed in renderFormOpen
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10459'>OFBIZ-10459</a>] - Freemarker error on shopping list page on eCommerce storefront
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10466'>OFBIZ-10466</a>] - UI issue on blog screens on storefront
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10473'>OFBIZ-10473</a>] - Upper case styling for buttontext in Tomahawk theme causing wrong behaviour for alphabetical index of the service engine page
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10489'>OFBIZ-10489</a>] - Unnecessary ship groups in orders
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10501'>OFBIZ-10501</a>] - Unable to create new facility when DB has no facility
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10506'>OFBIZ-10506</a>] - Initial set of hasLoogedOut flag when logging in
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10532'>OFBIZ-10532</a>] - Default value flags not working for configurable and variant products at the time of order entry
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10535'>OFBIZ-10535</a>] - Configurable PC: adding or verifying does not work, maybe more issues...
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10536'>OFBIZ-10536</a>] - Giant Widget with variant explosion: a "Select Unit of Measure" dropdown box appears with no reason.
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10538'>OFBIZ-10538</a>] - Promised Datetime & Current Promised Date values not getting updated in OISGIR Entity
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10539'>OFBIZ-10539</a>] - Issue with opening a page via bookmark when the user is logged out
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10583'>OFBIZ-10583</a>] - Issue while creating any new event
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10585'>OFBIZ-10585</a>] - Production run not created for marketing package auto type product if component inventory is not available
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10617'>OFBIZ-10617</a>] - ECommerce landing page breaks if popular category does not exists
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10620'>OFBIZ-10620</a>] - Invoice date is not displayed on findInvoice screen
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10635'>OFBIZ-10635</a>] - Correct behaviour of Autologin cookies
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10666'>OFBIZ-10666</a>] - User's name is displayed on ecommerce even after user logs out
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10669'>OFBIZ-10669</a>] - Getting Insecure connection error while navigating from product link
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10671'>OFBIZ-10671</a>] - Error message is displayed when user having space in username logs in at ecommerce
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10675'>OFBIZ-10675</a>] - createGlReconciliation throws an error
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10680'>OFBIZ-10680</a>] - partyId misses in EditEftAccount.ftl (party) when you create an EFT account from the quick finalize page
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10706'>OFBIZ-10706</a>] - EmailServices.sendMail causes a NPE, when sendFrom is missing
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10707'>OFBIZ-10707</a>] - ListLocales throws StringIndexOutOfBounds Exception under Java 1.8.0_181
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10727'>OFBIZ-10727</a>] - Service failed to mark expired authorized payments of Authorize.net as void
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10735'>OFBIZ-10735</a>] - Unable to add survey product to cart in order entry form
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10738'>OFBIZ-10738</a>] - Product image is not displayed on showcart page of ecommerce
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10741'>OFBIZ-10741</a>] - Blank page is displayed on ecommerce
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10743'>OFBIZ-10743</a>] - Error message is populating while clicking on product barcode
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10765'>OFBIZ-10765</a>] - Failed registration for virtual hosts with similar mount points
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10766'>OFBIZ-10766</a>] - Impossible secure and autologin cookie names when mountpoint contains a slash inside its name
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10791'>OFBIZ-10791</a>] - Unable to add product (of ASSET_USAGE type) in order
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10794'>OFBIZ-10794</a>] - Promotion condition/action type of few promotion not showing
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10796'>OFBIZ-10796</a>] - Check run payment(A/P) transactions not getting available for reconciliation
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10797'>OFBIZ-10797</a>] - CSS Styling for Party Content progress bar is wrong in multiple theme
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10798'>OFBIZ-10798</a>] - Unable to add item in shopping list from Quick Add
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10800'>OFBIZ-10800</a>] - Unable to remove items from onePageCheckout screen of ecommerce
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10802'>OFBIZ-10802</a>] - UserLoginPasswordHistory is not maintaining password as present in UserLogin.
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10814'>OFBIZ-10814</a>] - Error parsing JWT
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10816'>OFBIZ-10816</a>] - URL not encoding in FTL
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10833'>OFBIZ-10833</a>] - CMS add content not working
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10834'>OFBIZ-10834</a>] - Uploading image to data resource
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10836'>OFBIZ-10836</a>] - Add To Order button not working on shopping list screen
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10842'>OFBIZ-10842</a>] - No userLogin given in calculateProductPrice service call context
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10844'>OFBIZ-10844</a>] - Ecommerce AnonContactus.ftl doesn't work
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10847'>OFBIZ-10847</a>] - Issue in order history promotion
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10850'>OFBIZ-10850</a>] - User is unable to create return
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10852'>OFBIZ-10852</a>] - Error message is displayed in shopping cart when click on recalculate cart link
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10853'>OFBIZ-10853</a>] - AutoDescription of promotion showing invalid text
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10856'>OFBIZ-10856</a>] - Customer Party getting set as 'organizationPartyId' in one the Account transaction for Customer Invoice
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10858'>OFBIZ-10858</a>] - Last Categories section is blank
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10870'>OFBIZ-10870</a>] - Updating productprice results in error
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10876'>OFBIZ-10876</a>] - Run MRP fails, Incompatible class
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10882'>OFBIZ-10882</a>] - Error message is displayed while click on create new quotes.
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10883'>OFBIZ-10883</a>] - Picklist is in Input status even after order is completed
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10885'>OFBIZ-10885</a>] - Blank page appears after using Tell-A-Friend functionality while adding item to cart
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10886'>OFBIZ-10886</a>] - Unable to create new quote from cart at eCommerce store
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10890'>OFBIZ-10890</a>] - Requesthandler exception is showing after clicking cancel/done button on editPerson screen
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10891'>OFBIZ-10891</a>] - Send me this every month link is not working in order items section.
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10895'>OFBIZ-10895</a>] - Unknown request [images]; this request does not exist or cannot be called directly.
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10900'>OFBIZ-10900</a>] - Agreement overview does not show names of parties
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10904'>OFBIZ-10904</a>] - Creating custom Time Period does not show in party time period
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10906'>OFBIZ-10906</a>] - When add item on shopping cart, we lost orderItemAttributes
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10913'>OFBIZ-10913</a>] - FindTask does not allow for all statuses possible to be selected
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10914'>OFBIZ-10914</a>] - Fitering on StatusId in FindTask does not work
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10915'>OFBIZ-10915</a>] - Terminal automatically scrolls down on never ending tasks with the new console
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10926'>OFBIZ-10926</a>] - Update an order linked to an other order lost relation
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10927'>OFBIZ-10927</a>] - Can't set (expected) start and end date of project when creating a project
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10929'>OFBIZ-10929</a>] - Duplicate a ShoppingCartItem didn't propage OrderItemAttributes
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10932'>OFBIZ-10932</a>] - Updating an OrderItem loses supplierProductId
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10940'>OFBIZ-10940</a>] - Ensure html verbosity is following general setup
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10942'>OFBIZ-10942</a>] - User depersonation do not clean out impersonated user session.
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10959'>OFBIZ-10959</a>] - Enable entity timestamp fields
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10961'>OFBIZ-10961</a>] - Shortkeys missing on WebPOS
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10967'>OFBIZ-10967</a>] - Remove link is not working in shopping list
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10969'>OFBIZ-10969</a>] - Unable to create Employments
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10975'>OFBIZ-10975</a>] - Buttons on edit credit card page are shown twice
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10978'>OFBIZ-10978</a>] - Unable to find any product in Quick Add functionality
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11009'>OFBIZ-11009</a>] - Update invoice item looses invoice context
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11010'>OFBIZ-11010</a>] - Touch F8 in webpos does not work and generate an error
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11013'>OFBIZ-11013</a>] - Scrum parties don't have partyTypeId set
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11018'>OFBIZ-11018</a>] - Redirection of pathAlias to aliasTo does not work properly
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11021'>OFBIZ-11021</a>] - The drop-ship process behaves incorrectly when a combination of drop-ship and non-drop-ship products are added into the cart
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11022'>OFBIZ-11022</a>] - Edit WebSite Path Alias is not working
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11028'>OFBIZ-11028</a>] - field emplFromDate is forgot in PayHistory entity
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11029'>OFBIZ-11029</a>] - Issue in function getVariantSelectionFeatures of ProductWorker.java
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11038'>OFBIZ-11038</a>] - Unable to view a PartyContent on view profile page of a party
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11040'>OFBIZ-11040</a>] - Manage EECAs on delegator.removeBy
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11041'>OFBIZ-11041</a>] - Incorrect findByCount on DynamicView with groupBy and selected field
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11047'>OFBIZ-11047</a>] - It's impossible to create more than 1 ProductManufacturingRule
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11048'>OFBIZ-11048</a>] - When you select a ProductManufacturingRule if several exist only the one selected will show multiple times in the list
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11049'>OFBIZ-11049</a>] - massPrintOrders does not work
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11052'>OFBIZ-11052</a>] - Mass actions in FindOrders.ftl don't keep parameters
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11056'>OFBIZ-11056</a>] - Fix duplicate entry in paramWithSuffix
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11058'>OFBIZ-11058</a>] - Issue in creating promotion action
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11059'>OFBIZ-11059</a>] - Runtime error exceptions at Leads page
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11068'>OFBIZ-11068</a>] - Error while CSR creates a return.
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11071'>OFBIZ-11071</a>] - Gradle eclipse task - classpath modification (Add exclusion for <OFBiz>/framework/base/config and <OFBiz>/framework/base/dtd)
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11078'>OFBIZ-11078</a>] - Decrypt a field on embedded entity-view failed
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11108'>OFBIZ-11108</a>] - Freemarker error on reviewProduct page on storefront
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11109'>OFBIZ-11109</a>] - Getting an error while creating event from SFA without providing event name
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11113'>OFBIZ-11113</a>] - “At least one phone number is required below” message should be uneditable while creating new customer using partymgr
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11119'>OFBIZ-11119</a>] - Sales By Store Report not working
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11121'>OFBIZ-11121</a>] - Order status history should show party id instead of login id .
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11123'>OFBIZ-11123</a>] - NotSerializableException after uploading images to an order
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11125'>OFBIZ-11125</a>] - No proper error message displayed if user misses to select entities
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11144'>OFBIZ-11144</a>] - Create Exchange Order button on Return screen is distorted
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11146'>OFBIZ-11146</a>] - favicon.ico missing for LookupDecorator
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11148'>OFBIZ-11148</a>] - In Product Image Management uploading file fails due to missing StatusValidChange
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11156'>OFBIZ-11156</a>] - Issue loading solr component (JNDI timeout)
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11160'>OFBIZ-11160</a>] - Add button for 'Gift Message is shown on completed order
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11168'>OFBIZ-11168</a>] - Issue in creating promotion action
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11170'>OFBIZ-11170</a>] - UiLabel is missing for Web Analytics Type on content component
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11175'>OFBIZ-11175</a>] - CategoryServices returns null when opening Product main page
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11186'>OFBIZ-11186</a>] - Fix syntax error on groovy
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11201'>OFBIZ-11201</a>] - Error in log when looking for parties at partymgr/control/main
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11207'>OFBIZ-11207</a>] - Send upload form with even-update-area doesn't works
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11211'>OFBIZ-11211</a>] - Fix multi modal opening
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11212'>OFBIZ-11212</a>] - Default option for ModelFormField.DateFindField doesn't work
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11215'>OFBIZ-11215</a>] - Email password is not working
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11221'>OFBIZ-11221</a>] - Wrong heading on creating quote under order component.
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11223'>OFBIZ-11223</a>] - User should not be directed to main page after adding product to cart from showcart page
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11226'>OFBIZ-11226</a>] - Issue with "User name filed" while creating the new user
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11230'>OFBIZ-11230</a>] - EditExample always update status, because current Status not shown
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11231'>OFBIZ-11231</a>] - Order Status History section broken for anonymous order
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11246'>OFBIZ-11246</a>] - The createTaskContent request does not work
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11252'>OFBIZ-11252</a>] - FTL error for purchase order with Bulk Item Type
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11259'>OFBIZ-11259</a>] - SOAPService does not work
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11265'>OFBIZ-11265</a>] - Getting policy error while editing html text data using cms
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11267'>OFBIZ-11267</a>] - baseEcommerceSecureUrl does not work in ecomseo.
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11278'>OFBIZ-11278</a>] - SeoContextFilter.java is not able to handle query strings
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11281'>OFBIZ-11281</a>] - Possible Nullpointer in StringUtil#strToMap
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11283'>OFBIZ-11283</a>] - Number problem cancelling order item
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11291'>OFBIZ-11291</a>] - Alternate KeyWord Thesaurus functionality does not work properly
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11294'>OFBIZ-11294</a>] - EntityQuery queryCount is throwing error with distinct method
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11312'>OFBIZ-11312</a>] - DatabaseUtil.getColumnInfo(...) does not retrieve primary keys due to connection-locks
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11316'>OFBIZ-11316</a>] - Bug when order contains adjustments with NULL amount
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11318'>OFBIZ-11318</a>] - Unable to continue to Step 3 in One Page Checkout
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11320'>OFBIZ-11320</a>] - updatePassword does not save optional parameter requirePasswordChange
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11329'>OFBIZ-11329</a>] - setUserTimeZone should ran only once based on error
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11340'>OFBIZ-11340</a>] - Crashed Scheduled jobs are not getting rescheduled with temporal expression
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11342'>OFBIZ-11342</a>] - Error in user impersonation with sub permission
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11356'>OFBIZ-11356</a>] - FindOrders.ftl: paginateOrderList does not find orders on next page
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11385'>OFBIZ-11385</a>] - Possible NPE in DatabaseUtil.getColumnInfo(...)
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11396'>OFBIZ-11396</a>] - replaceFirst sensible to variable pattern
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11398'>OFBIZ-11398</a>] - Issue with creating SEO CATEGORIES/PRODUCTS from catalog manager
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11400'>OFBIZ-11400</a>] - Product Images not rendering on One Page Checkout
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11401'>OFBIZ-11401</a>] - getEntityRefData service has a weird issue
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11410'>OFBIZ-11410</a>] - Agreement Item can't be removed.
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11441'>OFBIZ-11441</a>] - createMissingCategoryAndProductAltUrls service misses a transaction
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11448'>OFBIZ-11448</a>] - Potential Nullpointer in ErrorPage.ftl
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11451'>OFBIZ-11451</a>] - ofbiz-plugins repo does not have our license
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11466'>OFBIZ-11466</a>] - CommonTheme has a dependency on Flatgrey application.js
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11534'>OFBIZ-11534</a>] - Error in uploading very large files, ie >2MB
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11573'>OFBIZ-11573</a>] - Incorrect column alias in EntitySQLProcessor for sql query working with mysql
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11582'>OFBIZ-11582</a>] - Required fields for party content upload are not checked
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11597'>OFBIZ-11597</a>] - Error removing an uploaded party content
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11601'>OFBIZ-11601</a>] - Build failed due to gradle-svntools-plugin dependency
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11606'>OFBIZ-11606</a>] - Compound-widget not works with condition
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11633'>OFBIZ-11633</a>] - PartyProfileContent.js does not work
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11668'>OFBIZ-11668</a>] - startup-service does not work without runtime-data-id
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11680'>OFBIZ-11680</a>] - ViewQuoteProfit shows fields in wrong order
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11681'>OFBIZ-11681</a>] - ListParty does not show middleName
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11684'>OFBIZ-11684</a>] - Form to add an employee position doesn't function properly when invoked from Humanres tree
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11714'>OFBIZ-11714</a>] - Issue with redirect queryParameters when the user is logged out
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11734'>OFBIZ-11734</a>] - View Image button on order view page fails to render the image
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11735'>OFBIZ-11735</a>] - Product link on Order confirmation page is not responding
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11743'>OFBIZ-11743</a>] - Multiple menu item link parameters get lost if link type is layered-modal
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11745'>OFBIZ-11745</a>] - plugins in common-theme/webapp/common/js is not monitored by git
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11785'>OFBIZ-11785</a>] - ViewShipment in facility does not show phone details
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11787'>OFBIZ-11787</a>] - Overview of shipments shows links to edit shipment. Should point to viewshipment
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11788'>OFBIZ-11788</a>] - Edit button(s) are shown for shipments received or shipped
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11796'>OFBIZ-11796</a>] - Unnecessary iterations for all productFacilities in setLastInventoryCount
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11822'>OFBIZ-11822</a>] - Double encoded urls are not being decoded
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11838'>OFBIZ-11838</a>] - One page checkout is broken because of ordermgr::getAssociatedStateList
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11842'>OFBIZ-11842</a>] - Failed to load PDF document after 'Quick checkout'
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11858'>OFBIZ-11858</a>] - Console warning related to OrderHeader caching
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11862'>OFBIZ-11862</a>] - BigDecimal casting in Groovy
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11906'>OFBIZ-11906</a>] - product summary looks bad in the promotion products list
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11910'>OFBIZ-11910</a>] - product summary cards don't have uniform height
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11920'>OFBIZ-11920</a>] - Distorted Final Checkout Review page when Credit card is selected as Payment option
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11928'>OFBIZ-11928</a>] - Explode items not handling tax and adjustments properly
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11943'>OFBIZ-11943</a>] - Makes Cancel/Done buttons used in payment methods screens from SFA profile work as in "Create EFT Account" screen
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11967'>OFBIZ-11967</a>] - wrong maxheapsize
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11970'>OFBIZ-11970</a>] - Add to cart is not working for products with selectable features
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11971'>OFBIZ-11971</a>] - Incorrect data for InvoiceItemTypeMap and ReturnItemTypeMap
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11972'>OFBIZ-11972</a>] - wrong quote marks
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11976'>OFBIZ-11976</a>] - svg files not removed on clean
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11977'>OFBIZ-11977</a>] - multiflex css is linking to wrong location
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11978'>OFBIZ-11978</a>] - "cart" should be "card"
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11984'>OFBIZ-11984</a>] - MessagingException in sendShipmentScheduledNotification service
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11993'>OFBIZ-11993</a>] - display/selection of unit of measure is broken/plugins
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12014'>OFBIZ-12014</a>] - Error while decoding url parameters with percent character
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12016'>OFBIZ-12016</a>] - DiskFileItem as request attribute creates problems
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12019'>OFBIZ-12019</a>] - variant product selection trashes image
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12023'>OFBIZ-12023</a>] - Label issue on List Companies page
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12026'>OFBIZ-12026</a>] - Hyperlink title under form widget doesn't support character encoding for special characters
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12039'>OFBIZ-12039</a>] - Flexible reports use an old noNamespaceSchemaLocation
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12044'>OFBIZ-12044</a>] - Issue: Displaying company and product information at product backlog, subcomponent of Scrum Application
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12045'>OFBIZ-12045</a>] - Single product tile is displayed on one row in product search
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12046'>OFBIZ-12046</a>] - Edit record in product promotion, "Promotion Last Modified Date" is invalid, but don't notice to user
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12047'>OFBIZ-12047</a>] - Remove _PREVIOUS_REQUEST_ Session Attribute on non-authentication pages
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12050'>OFBIZ-12050</a>] - NotSerializableException using uploadPartyContentFile service
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12068'>OFBIZ-12068</a>] - Order processing issue for dropship only products
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12078'>OFBIZ-12078</a>] - Remove hardcoded product category on CategoryWorker.getCatalogTopCategory
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12082'>OFBIZ-12082</a>] - Unique form names for promo actions
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12087'>OFBIZ-12087</a>] - Lucene TopScoreDocCollector::create wrong call the 2 in Search.groovy scripts
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12100'>OFBIZ-12100</a>] - Gradle build of 17.12.04 crashes on Centos 8
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12101'>OFBIZ-12101</a>] - partymgr fails to upload image
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12108'>OFBIZ-12108</a>] - Invalid Currency symbol in income statement csv export
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12110'>OFBIZ-12110</a>] - Overlapped labels in Accounting transaction pdf export
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12140'>OFBIZ-12140</a>] - Ampersand in Party not displayed correctly
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12142'>OFBIZ-12142</a>] - Creating a new Customer create a wrong record in CommunicationEvent
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12143'>OFBIZ-12143</a>] - Incorrect mapping for Lookup Purchase Order
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12153'>OFBIZ-12153</a>] - Error in deleting Financial Account
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12164'>OFBIZ-12164</a>] - NPE in Party/My Communications
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12173'>OFBIZ-12173</a>] - Visit disabling causes NullPointerException on ecomm groovy script
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12175'>OFBIZ-12175</a>] - Party Export/Import not congruent
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12177'>OFBIZ-12177</a>] - Possibly currency display bug in "Find Invoices"
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12182'>OFBIZ-12182</a>] - Bypass Java GString to String conversion in ObjectType::simpleTypeOrObjectConvert
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12187'>OFBIZ-12187</a>] - Error while running MRP
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12189'>OFBIZ-12189</a>] - Exception error on ecommerce portal while trying to register new user
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12191'>OFBIZ-12191</a>] - Bug preventing proper explosion of BOM containing virtual nodes
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12193'>OFBIZ-12193</a>] - Cant search ViewEntity InventoryItemDetailForSum
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12198'>OFBIZ-12198</a>] - EditFinAccountReconciliations does not work
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12210'>OFBIZ-12210</a>] - orderStatus.changeReason not set when orderItem is cancelled
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12211'>OFBIZ-12211</a>] - addImageForProduct fails
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12222'>OFBIZ-12222</a>] - Error while deleting a Facility because of an existing FacilityLocationGeoPoint
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12228'>OFBIZ-12228</a>] - Setup instructions don't work
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12229'>OFBIZ-12229</a>] - Error page shown when clicking on a product Id in the purchase order page
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12233'>OFBIZ-12233</a>] - Plugin not showing in menu due to permission
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12236'>OFBIZ-12236</a>] - Incorrect price for selected variant shown
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12247'>OFBIZ-12247</a>] - Allow to pass a Google API key for geolocation
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12249'>OFBIZ-12249</a>] - Unexpected decoding of url encoded textarea data after submission
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12250'>OFBIZ-12250</a>] - Failed to update work effort child
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12253'>OFBIZ-12253</a>] - Show WorkEffort names in FindWorkEffort page
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12254'>OFBIZ-12254</a>] - XSS vulnerability for ListWorkEfforts form
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12258'>OFBIZ-12258</a>] - Adding tel protocol in CustomPermissivePolicy is not working
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12259'>OFBIZ-12259</a>] - SeoConfigUtil does not maintaince char-replace-order
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12273'>OFBIZ-12273</a>] - IndexOutOfBoundsException on Entity Import
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12280'>OFBIZ-12280</a>] - Upgrade Tomcat from 9.0.43 to 9.0.48 (due to CVEs-2021-30037/30639/30640)
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12281'>OFBIZ-12281</a>] - Static initialization vectors for encryption
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12286'>OFBIZ-12286</a>] - Changes in dtds or parsers coused ofbiz build to crash
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12289'>OFBIZ-12289</a>] - bug on button from catalog to party associated
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12290'>OFBIZ-12290</a>] - GL Reconciliation unable to be edited
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12305'>OFBIZ-12305</a>] - Groovy Program sandbox bypass
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-12322'>OFBIZ-12322</a>] - Groovy DSL failed to use 'run service' from an event call
</li>
</ul>
<h2> New Feature
</h2>
<ul>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-5048'>OFBIZ-5048</a>] - Multi Part Input Parameters not Available in Groovy Event
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7482'>OFBIZ-7482</a>] - Deposit price support
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7713'>OFBIZ-7713</a>] - Introduce a quick way for adding Sales Price agreements with customers for any specific product from Catalog
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9558'>OFBIZ-9558</a>] - Manage deprecated service on the ModelService
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9833'>OFBIZ-9833</a>] - Token Based Authentication
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10171'>OFBIZ-10171</a>] - Implement and Apply Return Lookup
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10188'>OFBIZ-10188</a>] - Add new FileUtil methods for zip management
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10227'>OFBIZ-10227</a>] - Use agreement on drop shipment process
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10307'>OFBIZ-10307</a>] - Navigate from a domain to another with automated signed in authentication
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10368'>OFBIZ-10368</a>] - Implement Depends on support for Component Loading.
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-10372'>OFBIZ-10372</a>] - Calculate estimated shipment delivery time
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11094'>OFBIZ-11094</a>] - Buildbot RAT for releases branches
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11333'>OFBIZ-11333</a>] - Cookie Consent In E-Commerce
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-11691'>OFBIZ-11691</a>] - Create a simple INSTALL file with minimum installation information and redirection to more documentation
</li>
</ul>
<h2> Improvement
</h2>
<ul>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-3907'>OFBIZ-3907</a>] - Product Promo Worker description patch
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6206'>OFBIZ-6206</a>] - The "always" log level in minilang is logged as FATAL
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-6510'>OFBIZ-6510</a>] - Replace webtools/control/view/ModelInduceFromDb with widgets
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7037'>OFBIZ-7037</a>] - Have QRCodeServices.java use EntityUtilProperties
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7520'>OFBIZ-7520</a>] - Minilang code readability and consistency improvements
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7598'>OFBIZ-7598</a>] - Empty header row should not render if list to render in file is empty
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-7627'>OFBIZ-7627</a>] - Workeffort Agreement Appls redirect to wrong page and also gives error
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9085'>OFBIZ-9085</a>] - Add Option to update Facility Party Role on Edit Facility Party Role screen.
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9254'>OFBIZ-9254</a>] - Inconsistent String Comparisons
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9376'>OFBIZ-9376</a>] - Add shipmentId list to quickshippurchaseorder return parameters
</li>
<li>[<a href='https://issues.apache.org/jira/browse/OFBIZ-9501'>OFBIZ-9501</a>] - Move all data in applications to the datamodel component