forked from SmartBear/soapui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RELEASENOTES.txt
1437 lines (1189 loc) · 71.4 KB
/
RELEASENOTES.txt
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
# SoapUI 5.1.0
#### Released 2014-07-15 ####
### Major new features ###
* (Pro only) New plugin manager to easily find and install/update SoapUI Pro plugins from a central repository
* REST Mock as WAR - Easily deploy REST MockServices as WAR on any application container.
* Native support for JSON response
* JSONPath assertions when response is JSON
* Easy to find Pro features and sample projects through starter page
* Outline editor available on form view (when request has a payload)
### Bugs fixed ###
* Mock Response test step fails (SOAP-2207)
* (Pro only) REST discovery/ New REST mock service missing in composite project menu (SOAP-2266)
* Code Execution Vulnerability with Property Transfers (SOAP-2355)
* WS-security config ignores signature key identifier type "Issuer Name and Serial Number" (SOAP-2347)
* Mock response step fails in 5.0 (SOAP-2207)
* Mock response test step is not editable (SOAP-2202)
* No sub menus in REST Mock Response Get Data (SOAP-2186)
* The http status code in response doesn't work in REST mock service (SOAP-2356)
* (Pro only) SoapUI still ask for a license after you have successfully entered a license and restarted (SOAP-2185)
* (Pro only) Editor windows open in random places and random sizes when desktop type equals default (SOAP-2178)
* REST Mock does not read the payload (SOAP-2173)
* Script assertion play button does not work (SOAP-2161)
* Content-Length header is missing in response from REST mock service (SOAP-2015)
* log.info no longer go to the global-groovy.log (SOAP-1938)
* Drag and drop to a test case not working (SOAP-1936)
* OAuth 2 advance configurations dialog shows all options in CAPS (SOAP-1845)
* Wildcard in XPath match assertion only works with * and no additional characters. (SOAP-1299)
* JDBC configuration requires a DB password (SOAP-493)
* (Pro only) Changing environments does not change the associated JDBC connection string in various JDBC test steps (SOAP-268)
* (Pro only) Composite project duplicate test cases (SOAP-685)
* (Pro only) Project changes are not being saved, because of "Failed to delete temporary project file" in error log. (SOAP-995)
* (Pro only) Order of Test-Suites in element.order file is not followed when composite project is opened in SoapUI Pro (SOAP-1762)
* (Pro only) Composite projects containing multiple REST resources with the same name breaks when saving. (SOAP-1874)
* (Pro only) Item ID's in composite project files are being changed. (SOAP-1381)
* Stubbed dialogs show extended info (SOAP-2256)
### Updated libraries ###
* Updated to JRE 7u55
* Removed joda-time
* Updated junit to 4.11
* Introduced Jayway's json-path 0.9.1
* Introduced jackson-databind, jackson-annotations and jackson-core 2.1.0
* Introduced org.reflections:reflections 0.9.9-RC1
* Introduced gson 1.4
* Introduced commons-vfs2 2.0
* Introduced jsch 0.1.42
* Introduced jzlib 1.0.7
* Introduced commons-net 2.2
* Introduced jackrabbit-jcr-commons 1.5.2
* Introduced jcr 1.0
* (Pro only) Replaced jexcelapi with Apache POI
-------------------------------------------------------------------------------
# SoapUI 5.0.0
#### Released 2014-04-09 ####
### Major new features ###
* REST Mocking - Easily create REST MockServices without scripting and test unavailable/prototype APIs.
* OAuth 2.0 support - Test APIs using OAuth 2.0, group different OAuth 2.0 credentials into profiles, and automate your OAuth 2.0 tests to integrate with other build tools.
* (Pro only) REST Discovery - Quickly get your undocumented API under test by recording your interactions with the API.
* (Pro only) REST Test Suite Builder - Automatically create test suites from your recorded interactions with the API, making sure you test the right requests.
* (Pro only) REST Discovery + REST Mocking - Seamlessly create REST Mocks using responses from REST Discovery recordings.
### Bugs fixed ###
* XSDs now exposed correctly for MockServices in subdirectories (SOAP-1313)
* Memory log panel now shows correct total memory for sizes above 2GB (SOAP-1574)
* It is now possible to sign the BinarySecurityToken when creating a WSS signature entry (SOAPUI-4586/SOAP-1097, contribution from Willem Salembier)
* The resource editor and request editor views are now better synced (SOAP-830)
* Improved the behavior of the request view's pop-up parameter table (SOAP-845)
* Added missing hint text from the "New REST Resource" dialog (SOAP-1102)
* Removed some duplicate library archives. (SOAP-1195)
* Importing WSDL protected by Basic HTTP Authentication is now possible again (SOAP-1331)
* XML conversion no longer fails for JSON value whose name starts with digit (SOAP-1405)
* Starter page now resizes correctly also on Mac OS X (SOAP-1212)
* Redirect requests no longer ignore manually configured proxy settings (SOAP-1208)
* Fixed several minor issues with JSON when using WADL files with a schema (SOAP-1219)
* Fixed NullPointerException when asserting schema compliance on XSDs (SOAP-1229)
* It is once again possible to create new REST test steps despite having REST services with duplicated names. (SOAP-1239)
* Fixed custom properties not working with REST test steps that were using a JMS endpoint (SOAP-1251)
* Fixed SecurityTestRunner not creating reports on Mac OS X (SOAP-1278)
* Improved compatibility with MTOM and WCF (SOAP-1316)
* Removed unnecessary "Failed to delete temporary project file" warnings. (SOAP-1338)
* Export project to zip file no longer shows error message (SOAP-1948)
* SSLContext is now configurable using the system property soapui.sslcontext.algorithm (SOAP-2013)
* Wide Unicode char no longer causes CharConversionException on import (SOAP-1752)
* (Pro only) Fixed the maven plugin crashing when executing a project containing a Message Content Assertion (SOAP-1348)
* (Pro only) Fixed unnecessary 500 ms delay in data-driven tests (SOAP-769)
* (Pro only) Fixed issue where data-driven REST tests sometimes picked up the wrong data (SOAP-722)
* (Pro only) JSON is no longer converted to XML in some cases (SOAP-1219)
### Improvements ###
* Introduced Script class for internal grouping of constants (Contribution from Marc Paquette)
* Added a (non-GUI) setting to control starting the Cajo server on startup (Contribution from Marc Paquette)
* Improved file chooser behavior in certain scenarios (Contribution from Marc Paquette)
* Added missing soapui.logroot configuration to the log4j definition of the GLOBAL_GROOVY_LOG (Contribution from Michael Ottati)
* IdleConnectionHandler is now correctly stopped (Contribution from Christoph Thelen)
* Normalize pathname for listeners, factories and root (SOAP-1424, Contribution from Marc Paquette)
### Updated libraries ###
* proxy-vole 20131209 (SOAP-1208)
* rsyntaxtextarea 2.5.0 (SOAP-1425)
* commons-io 2.4
* wss4j 1.6.14
-------------------------------------------------------------------------------
# SoapUI 4.6.4
#### Released 2014-01-14 ####
### Bugs fixed ###
* (Pro only) Problem with renaming services when using environments (SOAP-1245)
* (Pro only) Form view stops working when test step is moved (SOAP-722)
* Some HTTP requests slowed down by automatic proxy configuration (SOAP-1264)
* Security vulnerability on WSDL/WADL import (SOAP-1252) - see MITRE, CVE-2014-1202
* Problem adding REST test step when two services have the same name (SOAP-1239)
-------------------------------------------------------------------------------
# SoapUI 4.6.3
#### Released 2013-12-18 ####
### Bugs fixed ###
* Fixed NTLM authentication not working under certain conditions (SOAP-1021) (Note: If you are using Kerberos authentication, you will have to re-select authentication method in the "auth" tab)
* JDBC Request test step add\delete properties table is broken (SOAP-1144)
* AMF Request test step add\delete properties table is broken (SOAP-1060)
* Request body not copied to test step when creating from POST/PUT REST request (SOAP-1098)
* Security tests ignores endpoint, host and environment parameters in command line tool (SOAP-1190)
* XPATH assertion should show XPATH in error message (SOAP-1155)
* ⌘+Q on mac quits without saving (SOAP-1106)
-------------------------------------------------------------------------------
# SoapUI 4.6.2
#### Released 2013-12-02 ####
### Major New Feature ###
Proxy settings can now be auto-detected (SOAP-454)
### Bugs fixed ###
* Deleting a mid level resource while request editor of child resource is open freezes the GUI (SOAP-854)
* Can not deploy project as war (SOAP-906)
* REST resource base path is duplicated each time Request is opened (SOAP-941)
* Test Step editor parameter table value column heading is wrong (SOAP-856)
* Mock services packaged as WAR files don't work across different OSes. (SOAP-976)
* REST parameter order not saved in Request Editor (SOAP-594)
* Error while creating a Data Export report (SOAP-928)
* Endpoint not sent in WS-RM exchange (SOAP-816)
* Conditional property expansion not working (SOAP-677)
* Mock service returns incorrect content type for CSS files (SOAP-966)
* Incorrect logging from FileFormField (SOAP-909) ( Contribution from Marc Paquette)
* Break statement missing in case SEPARATOR (SOAP-910) ( Contribution from Marc Paquette)
* LoadUI and Hermes installers cannot be started from SoapUI installer (SOAP-1069)
### Improvements ###
* SoapUI now remembers window position and size after relaunch (SOAP-885)
* One-click dialogs to add REST resources (SOAP-344 and SOAP-398)
* Improved default window and Request Editor size (SOAP-679)
* Unnecessary elements removed from GUI
* Endpoints are now sorted alphanumerically (SOAP-983) ( Contribution from Vincent Frison)
* Look and feel improvements on Mac OS
* Less confusing GUI for REST template (path) parameters
### Updated libraries ###
* Groovy 2.1.7 (SOAP-630)
* proxy-vole 20121203 (SOAP-454)
-------------------------------------------------------------------------------
# SoapUI 4.6.1
#### Released 2013-10-24 ####
### Major New Feature ###
* All parameters editable on top URI bar (SOAP-671)
* Better control and feedback when editing parent resource from child
* Better synchronization of editors regarding parameters. Add new parameter simplified.
* Retina support for SoapUI on OS X (SOAP-655)
### Known Issue ###
* Template parameter not synched from method to top URI bar (SOAP-834)
### Bugs fixed ###
* Editing resource params from the properties tab doesn't set default value (SOAP-841)
* Should not be possible to change the method in REST test steps (SOAP-833)
* SoapUI didn’t support SPNEGO/Kerberos authentication in a good way (SOAP-445)
* Double Encoded URIs (SOAP-697)
* Child resources don't show complete path in Resource field (SOAP-622)
* Can't write to Excel DataSinks when using a template file (SOAP-680)
* Easy way to get binary content of response (SOAP-747)
* Change color of CDATA section in editor (SOAP-749)
* JVM crash on latest OS X when running test ( SOAP-459)
* Closes without saving if save folder selection cancelled (SOAP-653)
* Wrap search and Whole word options in find/replace dialog do nothing (SOAP-158)
### Minor improvements ###
* Add installer for 64 bit Linux (SOAP-670)
* New REST Project from a WADL dialog (SOAP-348)
* Solve the duplicate project name issue (SOAP-638)
* Automate maven plugin release process (SOAP-599)
* Should be able to use ws-s truststore without password (SOAP-751)
### Updated libraries ###
* Updated to JRE 7u40
-------------------------------------------------------------------------------
## version 4.6.0 - 2013-09-16
### Major New Feature ###
* Pragmatic REST (SOAP-342)
** Create a REST project with REST request easily using only a URI as input
** Automatic split of a REST URI into Endpoint, Resource and Query
** Automatic extraction of template parameters and query parameters
** Automatic level and style assignment of parameters
** Simplified editing of parameters
** Simplified selection of Method
### Known Issue ###
* Resource field parameter changes are not synched with the parameter table (SOAP-621 )
### Bugs fixed ###
* Exporting WADL doesn't export changes that were made (SOAPUI-4620)
* REST load tests taking too long to run if a small Test Delay is set (SOAPUI-4668)
* (Pro only) JDBC test step fails to reflect changes on environment (SOAP-431)
* HTTP Tunnel monitor drops the http protocol version (always uses HTTP/1.1) (SOAP-354)
* JDBC connection wizard for DB2 does not add semi colon at end of connection string (SOAP-472)
* Add -Dfile.encoding=UTF8 to start file jvm parameters (SOAP-461)
* Assertion TestStep editor cannot be reopened after entering invalid "assertion field" value (SOAP-331)
* Remove the word "TestCase" from tabs with names "TestCase Coverage", "TestCase Requirements", etc. (SOAP-460)
* Start page hides other desktop panels on Mac (SOAP-446)
* Cant run security tests on "HTTP Test Request" test step (SOAP-442)
* (Pro only) JDBC test step fails to reflect changes on environment (SOAP-431)
* Stabilize soapui maven plugin tester (SOAP-369)
* Xpath button more visible (SOAP-164)
### Minor improvements
* (Pro only) Improved error message when trying to load an XLSX DataSource (SOAP-330)
* (Pro only) List box rather than text field for selecting report type (SOAP-279)
* (Pro only) Improved GUI for Generating XPath in Property transfer panel (SOAP-311)
* Property expansion now works for HTTP header names (SOAP-450)
* Broken module link in documentation (SOAP-421 )
* Show License is now Show EULA (SOAP-109)
* SoapUI installer pointed to old version of LoadUI installer (SOAP-397)
-------------------------------------------------------------------------------
## version 4.5.2 - 2013-05-22
### Build improvements ###
* Build system upgraded from maven 1 to maven 3.
* All the distributions now come bundled with the same JRE version.
### Bugs fixed ###
* HTTP Session ID kept across test cases if "Maintain HTTP Session" is checked (SOAPUI-4425).
* Encoded REST URLs no longer get decoded unintentionally (SOAPUI-4594)
* HTTP headers are no longer copied back to the request until after redirection (SOAPUI-3607).
* Windows 32-bit users no longer receive an error message when doing web recording (SOAP-68).
* Fixed ClassCastException when using HTTPS with self-signed certificates (SOAPUI-3918).
* The command line TestRunner now correctly generates TXT reports (SOAPUI-4501).
* (Pro) Fixed NTLM authentication (SOAPUI-4273).
* Fixed loading of schemas to use array correctly (SOAPUI-4512).
* Added jar-file filtering of protection jars (SOAP-20)
* Fixed endless loop during schema loading when opening the add assertion panel (SOAPUI-4375).
* Fixed classloading issues (SOAP-24).
* SSL Info tab is no longer always inactive (SOAPUI-4395)
* Fixed minor spelling mistakes and propagation of HTTP Sessions in RunTestCase invocation (SOAP-26).
* Preferences are now automatically saved when clicking "OK" in the preferences dialog (SOAP-118).
* URL encoder no longer also encodes the path itself (SOAPUI-4601, SOAPUI-3032, SOAP-121).
* The "Case sensitive" option in the find/replace dialog now works correctly (SOAP-132).
* Native look & feel is now enabled by default on Mac OS X (SOAP-115).
* If you're experiencing problems with not being able to close the starter page, change your screen resolution.
## version 4.5.1 - 2012-06-27
### Bugs fixed
- Added the GetData feature to the editable fields of the Message Content Assertion feature.
- Improved the new licensing model to improve user experience with activating and managing the SoapUI license including providing an excel license key registry file.
- Added the ability to search for data in the response editors.
- Enhanced the request’s authorization tab to guide the user when configuring for either pre-emptive or NTLM/Kerberos security
- Defined test environments can be renamed.
- Improved load testing when using jdbc datasource.
- Improved the Test On Demand feature to incorporate the use of the Assertion.
- Improved XQuery and XPath wildcard match handling to match whole or portions of values.
- Fixed the HTTP raw request view to include all headers as listed in the HTTP log.
- Corrected the response editor Right Click menu to include additional editor management options.
- Fixed SOAP Fault and Not SOAP Fault to evaluate correctly.
- Fixed the NPE error in the getPropertyValue in WsdlProjectPro of the SoapUI API.
- Fixed the cut and copy feature in the response editors.
- Fixed the SAML XML editor window in the WS-Security form so it is no longer read only.
- Fixed the ability to open a P12 keystore when using WS-Security.
- Fixed the Mock Service response editor so that it is editable.
- Fixed SoapUI so it can now use the correct number, as defined, of concurrent connections/sockets.
- Fixed the REST URL encoding for GET requests .
- Fixed the ClassCastException error when upgrading 4.0.1 projects to 4.5.0.
-------------------------------------------------------------------------------
## version 4.5- 2012-03-28: The Big Ears Release
Please see http://soapui.org/About-SoapUI/whats-new-in-soapui-45.html for an overview
of all the new great features and more details on fixes in the final release!
Major New Features:
- Test Debugging (Pro)
- Assertion TestSteps (Pro)
- Message Content Assertion (Pro)
- TestOnDemand. Run your tests from the Cloud
- Multi Environment Support (Pro)
- Floating Licenses (Pro)
Minor Improvements
- HTTP Monitor now works for all HTTP Methods
- Improved the XPath Assertion to support wildcards within elements
- Improved the XQuery Assertion to support wildcards within elements
- Added possibility to override JUnitReportCollector for creating custom JUnit style reports
- Enlarged the controls in Security Test
- Added support for SAML 2
- Added support for NTLM 2 and Kerberos
- Added line numbers when having a Groovy Null Pointer
Bug Fixes
- Changed SOAP message to put elements in WSDL Defined proper sequence of when when elements were of complex type
- Updates to Schema Compliance
- Fixes to WSDL handling that was changed between 3.6.1 and 4.0.0
- Under some ciscumstances you could get NullPointerException when doing a Show Message - Exchange for XML Bomb security test
- Fixes to TestRunner for the HTTP test step when using 3.0.1 project files in 4.0.0
Fixed a SoapUI Pro Testrunner bug, When you overrode Global Properties you could get a ClassCastException
- Under some circumstance a HTTP Redirect with path as location was not followed correctly
- When trying to export Complex Project with many external dependencies you could get a Null pointer
- Fixed and error loading WSDLs containing UTF-8 Characters
- Corrected JDBC connections when the uses used regexp in configurations
- Fixed NPEs when the users tried to start JMS in the context menu of a project
- Fixed contains assertion to work with multi lines
- Fixed issues with the maven2 plugin dependencies
- The maven2 plugin would fail for composite projects if global properties were specified
- Fixed SoapUI problems on Java 7
- Made Datasource Row or Column windows to be resizable
- Optional recursive elements or types were not shown in form editor
- Under some conditions it was not possible to delete multiple assertions using the keyboard delete button
- REST TestSteps weren't saving their assigned REST Resource and Method in some cases
- Small Spelling and Language fixes...
- Under some conditions the password in service endpoints and environments could be visible to the end user
- Testcase that contains " (quotation mark) in its label weren't executed in composite projects
- Fixed a problem where a combination of SoapUI composite project and SVN when renaming test suites
- Custom Assertion weren't visible in the list of available assertions
- Corrected Mock War Packaging Issues
- Pre encoded endpoints setting wasn't working for REST or HTTP URLs
- REST URLs weren't calculated correctly when endPoints had context
- Importing WADL generated by SoapUI could break method names
- Fixed GUI glitches for Assertion Display and Highlighting of List Items
- Form view did not not create container elements for sequence of complex type containing only attributes
- You could get a stackoverflow when calling selectFromCurrent from script assertion
- The empty report template was missing language="groovy" attribute which gave the reporting engine issues
- The Execution of Parallel TestCases in the Command Line runner did not execute any of the tests
- If response message contains the text "\u0000" then the Outline view did not work anymore
- NPE when creating Command Line report for failed REST requests
- Corrected an inconsistent numbering of TestStep index
-------------------------------------------------------------------------------
## 4.0.1 Bugs Fixed - 2011-09-12
Please see http://soapui.org/About-SoapUI/soapui-40-bugs-fixed.html for an overview
of the bugs fixed in this release.
-------------------------------------------------------------------------------
##4.0 The Security Release - 2011-06-14
Please see http://www.soapui.org/About-SoapUI/whats-new-in-soapui-40.html for an overview
of all the new great features and more details on fixes in the final release!
-------------------------------------------------------------------------------
##4.0 beta 2 - 2011-05-31
###Major New Features:
- Added a "Fuzzing Scan" to the list of Security Scans
- Improved Command-line Security-Test runner to support all TestCase Runner options and custom JUnit-Style report (Security, Automation)
- Added wargenerator command-line utility that creates war files from soapui projects
###Minor Improvements
- Added option to run Security Scans only once in TestCase with complex flow logic (Security)
- Fixed all password fields in SoapUI to use masked input (Functional Testing)
- Improved feedback in Security Test log (Security)
- Added new wargenerator command-line utility for generating war files for a Project (Mocking, Automation)
- General UI Improvements
###Bug Fixes
- Generated WAR files now work on WebLogic
- Fixed syncing of file system with composite projects and non-alphanumeric characters in TestCase names
- Fixed ignoring of DataSource StartRow with shared DataSources
- Fixed inserting of new TestSteps to be after selected TestStep
- Fixed correct generation of loadUI Tests from SoapUI Simple Strategy LoadTests
- Fixed saving of project file when syncing to loadUI
- REST Coverage was not being calculated correctly for child resources
###Library Updates
- Jasper Reports 4.0.2
- Jetty 6.1.26
-------------------------------------------------------------------------------
##4.0 beta1 - 2011-05-17
###Major New Feature:
- Security Testing for scanning your target services for common functional vulnerabilities:
- SQL Injection
- XPath Injection
- Boundary Scan
- Invalid Datatype
- Cross Site Scripting
- XML Bomb
- Malicious Attachment
- Malformed XML
- Custom Scan
###Minor New Features:
- Introduced factory extension mechanism for easily adding your own TestSteps, Assertions, etc. (Ecosystem)
- Added possibility to override JUnitReportCollector for creating custom JUnit style reports (Analytics)
- Added possibility to ignore XML comments in XPath assertions (Functional Testing)
- Improved error messages when WSDL loading fails (Technology Support)
- Added custom multi-value delimiter for REST parameter values (Functional Testing)
- Added global setting for normalizing forward slashes (which was always performed previously) (Functional Testing)
- Added support for property expansions in output folder for command-line runners (Automation)
- Improved WADL importer support for referenced representations and parameters (Technology Support)
- Added adding of Quotes to File DataSink (Functional Testing)
- Added Digest Algorithm setting to WS-Security Signature entry (Technology Support)
- Improved handling of internal errors in Schema Validation (Functional Testing)
- Added encoding property to File DataSink (if you need to write files with some other charset than the system one) (Functional Testing)
- Improved creation of CSV Files in File DataSink (Functional Testing)
- Improved installer to install the tutorials in custom location (Ecosystem)
- Improved installer to install the Browser Component in SoapUI directory instead of local profile (Ecosystem)
- Improved error messages when trying to install a Renewal license over a Trial (Ecosystem)
- Improved REST Resource resolution for REST TestRequests when there are multiple resources with the same path (Functional Testing)
- Improved Redirect handling to always use GET (Functional Testing)
- General Stability and Performance improvements
###Bugs Fixed:
- Fixed duplicate retrieval of web pages when BrowserComponent was enabled
- Fixed support for Composite projects in MockAsWar functionality
- Fixed Composite Projects with regard to renaming of REST Resources and Services
- Fixed double encoding of Template URL parameters
- Fixed forward-slashes in WAR file create by DeployAsWar and removed unnecessary jars
- Fixed support for composite projects in DeployAsWar packaging
- Fixed Reliable Messaging sequence identifier
- Fixed loading of XSDs and WSDLs with leading or trailing whitespace
- Fixed loading of projects with filenames containing non-URL characters
- Fixed incorrect replacing of SOAP Header content when updating a WSDL with Header definitions
- Fixed normalization of filenames when exporting TestCases or TestSuites
- Fixed synchronization of shared File DataSinks
- Fixed combo-box editor in Mode column for Service Endpoints for REST services
- Fixed automatic setting of WS-A version when WS-RM version 1.0 is selected
- Fixed normalization of column names to XML names when generating XML from a JDBC ResultSet
- Fixed wildcards for CDATA sections in the XPath Contains assertion
- Fixed error when running MockServices containing definition parts with unexpected content types
- Fixed potential NPEs in DataSource cleanup and StringList constructors
- Fixed QName extraction of REST Request Representations
- Fixed Null Pointer Exception in HTTP and REST request editor when Browser Component is disabled
- Fixed truncating of property values when writing to Excel DataSink if they are over 32k and also added corresponding warning to SoapUI log
- Fixed crash on extremely large tooltips; internal limit now set to 500 characters for tooltips in the outline editor showing node values
- Fixed width of XPath Assertion configuration dialog to show the "Select Content" options
- Fixed WADL importing of child resources with same path; these are now merged into a single resource
- Fixed layouting of DataSink and DataSource config panels and fixed GroovyD DataSource/DataSink editors and Get Data popups
- Fixed handling of WADL parameters with non XSD types in the SoapUI Pro Form Editor
- Fixed double encoding of Template URL parameters
- Fixed forward-slashes in WAR file create by DeployAsWar and removed unnecessary jars
- Fixed Raw view for JDBC Requests to show expanded variables
- Fixed incorrect TestSuite Jasper Report Template
- Fixed duplicate saving of standard projects in pro version
###Updated Libraries:
- JXBrowser 2.8
- Groovy 1.8.0
- Bundled JRE 1.6.0_25
-------------------------------------------------------------------------------
2010-10-18 : 3.6.1
Major New Features:
- None!
Minor New Features:
- Improved SoapUI <-> loadUI integration (loadUI)
- automatic detection of paths
- improved component generation
- Multiple Parameter value support for REST requests (REST)
Bugs Fixed:
- Improved Web Recording with Forms (Web)
- Fixed HTTP Header overrides (SoapUI)
- Command-line runners don't execute all tests on misspelling (Automation)
- Multiple spelling and usability issues (SoapUI)
- File DataSink IOException (Functional Testing)
- Project Script Library now works on project load (Scripting)
Updated Libraries:
- Groovy 1.7.5
-------------------------------------------------------------------------------
2010-09-14 : 3.6
Major New Features:
- loadUI Integration
- Web Testing and Recording
- Manual TestStep
Minor New Features:
- Improved WADL importer
- Improved viewing of attachments
- Improved support for huge file attachments (>200mb)
- Fixed many memory leaks for long-running tests
- Added support for project-level script libraries
- Added setting to enable wordwrap in Raw message views
- Increased default memory setting in .sh files
- Added action to clear the current Workspace
- Added option to show namespaces in refactoring wizard
- Improved web-recording functionality:
- wizards for generating web tests when creating new projects
- possibility to exclude HTTP Headers
- support for multiple recording sessions
Improved loadUI project generation from functional TestCases
Major bugs fixed:
- Fixed adding of HTTP Query Parameters
- Fixed JDBC Assertions to handle connection errors
- Several fixes to JDBC-connection related functionality
- Fixed showing of passwords in UI
- Several UI cleanups and minor bug-fixes
- Fixed preview of -f argument in runner dialogs
- Fixed usage of correct soap version when refactoring
- Fixed parameter resolving in script properties
- Fixed saving of reordered TestCases
- Fixed SSL Support for SoapUI TestCases in loadUI
- Fixed bundling of external resources in generated War files
- Fixed all code-generation to work from command-line tools
Updated Libraries:
- Groovy 1.7.4
- JxBrowser 2.4
-------------------------------------------------------------------------------
2010-04-09 : 3.5.1
SoapUI 3.5.1 is mainly a bug-fix release with dozens of minor improvements and
fixes:
- Added support for JMS Message Selector to filter messages with arbitrary queries
- Added support for sending and receiving BytesMessages for SOAP requests
- Added option to propagate SOAPAction as JMS Property
- Added support for WS-Addressing and WS-Security for outgoing JMS messages
- Received MapMessages are converted to XML
- Added initial support for importing SOAP/JMS and TIBCO/JMS bindings
- Added ResponseAsXml property for accessing XML results for JDBC and AMF TestSteps
- Many many memory fixes
- Added a "Discard" Response property to all requests that allow for improved memory mgmt
- Improved multi-threaded dispatching in SOAP Monitor
- Fixed cloning of property-transfers to include all settings
- Fixed property-transfer logic when source is empty
- Added UI Setting to disable tooltips
- Added property-expansion support in SLA Assertion
- Fixed Conditional Goto to work with all Sampler TestSteps
- Fixed keeping of whitespaces in XML generated from JDBC results
- Added SOAP Request assertion for MockResponse TestSteps
- Fixed closing of opened files in MockEngine
- Fixed Find-and-Replace
- Added multi-actions for enabling and disabling TestSteps, TestCases and TestSuites
- Fixed forward slashed in .sh launchers
- Improved moving of TestSteps
- Improved generation of XPath statements to always include namespaces
- Fixed JDBC Connection errors with missing password
- Fixed incorrect JDBC Connection string templates
- Added missing actions in menus
- Improved error-logging from event-handlers
- Added TestSuiteRequirements Reporting DataSource
- Fixed DataSources to detect changes in configuration and re-initialize if neccessary
- Spelling mistakes...
- Updated Groovy to 1.7.2 (Library)
- and more minor fixes..
Thanks to all our customers and users for once again helping us make SoapUI and SoapUI Pro even better!
-------------------------------------------------------------------------------
2010-03-01 : 3.5 - the Protocol Release
SoapUI 3.5 adds support for JMS, JDBC and AMF for both functional and load-testing
Major New Features
JDBC Testing (Protocol)
- A JDBC TestStep has been added for functional database testing, all standard xml
and xpath related functionality applies to query results (assertions, transfers, etc).
JMS Testing (Protocol)
- A JMS protocol has been added for sending and receiving both text (SOAP,etc) and
binary messages via JMS. Provider configuration and extended JMS monitoring and
debugging functionality is provided via the HermesJMS integration.
AMF Testing (Protocol)
- An AMF TestStep has been added for functional and load testing of Flex server
applications, all standard xml and xpath related functionality applies to response
messages (assertions, transfers, etc).
- Query Builder (Data Driven testing)
Component for visually building Database queries used in the JDBC Teststep and
JDBC related DataSources and DataSinks.
- Deploy as War (Mocking)
SoapUI Projects can now be packaged as WAR files to be deployed on any standard
servlet container, which will host the contained MockServices and display a simple
Web interface for statistics, log output, etc.
Minor new features
- Greatly improved performance of Excel DataSource/DataSinks (Functional Testing)
- Greatly improved performance of script library (General)
- added global option to disable proxy (General)
- improved automatic adding of template parameters to rest resources (REST)
- added raw-message-size settings (General)
- improved update-interface stability (General)
- improved thread-stability related to endpoints during loadtests (LoadTesting)
- improved statistics calculation during loadtests (LoadTesting)
- Pressing return in httprequest endpoint field submits request (User Interface)
- Added timeout property at request level (General)
- RunTestCase TestStep improvements: (Functional Testing)
o Copy LoadTest Properties
o Copy HTTPSession
o Ignore Empty
- Added caching of WSDL Credentials (SOAP)
- Improved performance of script-property-expansions (General)
- Added -A option to TestCase runner; for exporting of all results using folders
instead of long filenames (Test Automation)
- memory improvements (General)
- improved XML generation from HTML (REST)
- allowed rename of rest services from properties panel (REST)
- Renamed porttype property to "Name" in interface properties (WSDL)
- Improved Mock-related APIs to allow rewriting of incoming requests (Mocking)
- Forced redirect functionality for PUT and POST requests (REST)
- Improved TestRun Log output at TestSuite and Project levels (Functional Testing)
- Added "RemoveEmptyXsiNil" and "RemoveEmptyRecursive" config properties for removal of empty content (WSDL)
- Fixed handling of long property/testcase popup/drop-down menus (User Interface)
- Added getter and setter for ExcelDataSource.ignoreEmpty property (API)
- changed forum-search to use forums and not google (User Interface)
- set minimum toolbar size for better resizing of splitpanels (User Interface)
- added check that files in schema directory are actually schemas (General)
Major bugs fixed:
- fixed save-all to keep track of project count (User Interface)
- fixed adding of method parameters from rest request, method and resource views (REST)
- fixed setting of media-type for Form-submits (REST)
- removed automatic XML-formatting of rest request bodies (REST)
- fixed thread-override and multiple formats in launch-loadtest-runner dialog (LoadTesting)
- fixed resetting of threadcount from canceled burst strategy (LoadTesting)
- Fixed endpoint updating in service endpoints table (REST,WSDL)
- Fixed saving of loadtest limit type (LoadTesting)
- Fixed escaping of property-expansions with double $ (Properties/Scripting) (General)
- Fixed TestSuite count in simple TestCaseRunner output (Test Automation)
- Fixed filename creation for Composite projects (General)
- Fixed script-strategy to use project scripting language (Load Testing)
- Moved demo script files to correct folders (General)
- Ordered output of LoadTestStatistics export (LoadTesting)
- Fixed CSV Data Export with subreports (Reporting)
- MockService synchronization issues during high load (Mocking)
- Fixed SOAP-Action in Content-Type for WS-A and MTOM requests (SOAP)
- FixedRateLoadStrategy now ignores the Thread Startup Delay option (Load Testing)
- fixed setting of nilable on missing elements in form editor (SOAP)
- removed unneccessary formatting of REST xml responses (REST)
Updated libraries:
- Groovy 1.7
- Not-yet-commons-ssl-0.11
- Jexcel-api-2.6.12
- Jasper 3.6.2
- Saxon 9.1.0.8
- Jetty 6.1.22
As always we owe our users and the community so much for all their help and support! Thank you all!
Beta2 fixes:
- JXBrowser 1.4 update
- Groovy 1.7.0 update
- JDK 1.6_18 update
- Hermes 1.14 update (http://hermesjms.com/confluence/display/HJMS/Release+Notes)
- Support for named parameters in SQL queries and Stored Procedure calls
- Support for JMS Session authentication
- Improved JMS endpoint naming scheme
- Added durableSubscriber and ClientID to JMS Request Inspector
- Added fetchSize property to JDBC TestStep
- Fixed inlining of attachments if inline files is enabled
- Improved Delay TestStep execution timing
- Fixed automatic GC to run for command-line tools also
- Fixed elapsed time to show correct value in LoadTest output
- Fixed synchronization of Table Inspector and XML Editor Views
- Added JDBC Assertions
- Added build-checksum to nightly builds
- Improved session-handling for AMF Requests
- Added soapui.scripting.library system property to override script library path from commandline
- Added possibility to override Jetty Connector properties via soapui.mock.connector.XX system properties
- Fixed bugs related to REST parameter reordering and inheritance
Final Release fixes:
- Fixed times precision in Junit reports to be up to 3 decimals
- Updated IDW dependency to 1.6.1
- Updated Groovy to 1.7.1
- Update JasperReports to 3.7.1
- Fixed TestStepResults for WSS processed requests to contain the unprocessed request in the requestContent property
- Addes ResponseAsXml properties to JDBC and AMF TestSteps
- Fixed TIBCO EMS support
- Removed a bunch of memory-leaks
- Fixed LoadTest Reports for LoadTests with long names
- Introduced soapui.mtom.strict system property for enabling strict MTOM processing
- Fixed command-line TestCase runners to not ignore Fail on Abort setting
- Fixed restore of ignoreNamespacePrefixes in XPath assertions
- Fixed success indicator of MockResponse TestSteps
- Added uninstall of Hermes to Uninstaller
- Fixed endpoint in SOAP Monitor tunnel mode
- Improved command-line scripts on linux / mac
- Added page in mac/linux installers to disable JXBrowser component
- Fixed Script Assertion editor to update on OK and added Cancel button
- Added JMS Message Selector field to JMS properties Inspector
-------------------------------------------------------------------------------
2009-08-09 : 3.0.1 release
bug-fixes galore! and a bunch of improvements :-)
- Updated installers for Mac, Linux and 64-bit Windows (without JRE)
- Updated components/libraries: JXBrowser 1.3 + hotfixes, Groovy 1.6.4, WSS4j 1.5.8, XML-Sec 1.4.3,
Bouncycastle 1.43, JTidy r820
- Fixed Java 1.5 compatibility
- Updated Launch-dialogs to support all current command-line options
- Null-pointer fixes in WS-Security handling
- Fixed sorting of properties
- Fixes related to names containing leading/trailing spaces
- WSDL-loading-related fixes (redirects and schema overrides)
- REST-related fixes and improvements
- New: Possibility to insert file as base64 encoded string (Thank you Cory!)
- New: Groovy scripts are now run in seperate thread when running in TestStep editor (Thank you Piotr!)
- New: MockServices now don't require SOAP Action by default (Thank you azl!)
- New and experimental: Deploy as WAR (from Project menu), packages the project as a WAR file for running
MockServices inside an existing servlet container.
- and many more fixes..
Who can we thank more than our customers and users? no-one! Thank you all!
/eviware-soapui-team
-------------------------------------------------------------------------------
2009-07-06 : 3.0 final release
Please check out http://www.soapui.org/new_and_noteworthy_3_0.html for all the details on this release!
/eviware-soapui-team
-------------------------------------------------------------------------------
2008-11-18 : 2.5 Final
A bunch of bug-fixes and minor improvements, thanks to our awesome customers and
community for testing and reporting... we owe you another great release!
/eviware-soapui-team
-------------------------------------------------------------------------------
2008-11-05 : 2.5 beta2 release
A bunch of improvements and fixes:
- Much Improved WS-Addressing support
- SOAP-Monitor now support HTTP Tunnel now with SSL support (replaces TCP-Tunnel in 2.0.2)
- REST improvements
- Improved REST Representation handling
- Option to not URL-Encode parameter values
- Mock-related improvements
- MockResponseStep -> open sourced from SoapUI Pro, load-test/sync improvements
- MockOperation Query Dispatch
- MockService wire log
- Improved MockService dispatching; support for handling responses and faults
- New Request options:
- Entitize option for Requests
- Option to follow redirects
- MTOM improvements (not require binary datatype)
- Property-Transfer Improvements (entitize, transfer child-nodes)
- Improved Resolve Dialog / Logic
- Command-line improvements
- Fixed command-line runners to run from other directories
- Added -G and -P command-line switches to command-line runners
- Scripting-related:
- Updated to groovy 1.5.7
- Much Improved Groovy Editor
- And a slew of bug-fixes minor improvements thanks to all our great customers and community!
Thanks to all of you!
-------------------------------------------------------------------------------
2008-09-26 : 2.5-beta1 release!
Finally a new version!
- REST/HTTP Support
- WADL import / export / generation
- JSON/HTML to XML conversion for assertions, transfers, etc..
- REST / HTTP Request TestStep
- Generate both code and documentation for WADLs
- WS-Addressing support
- Request, MockResponse, Assertion
- MockService improvements
- onRequest / afterRequest scripts
- improved WSDL exposure with ?WSDL endpoint
- docroot for serving static content
- HEAD request support
- Encrypted Project Files and hidden password fields
- LoadTest before/afterRun scripts
- Import/Export TestCases/TestSuites for sharing
- Relative paths to project resources
- Improved SOAP Monitor now supports keep-alive and chunked encoding
- Dump-File for response message automatically saves responses to a local file
- Unique keystores on request-level
- Improved XPath Contains Assertion with option to ignore namespace prefixes
- Improved compression algorithm support
- Extended HTTP-related settings
- ..
Backup your existing projects before testing and please don't hesitate to contact
us if you have any issues, suggestions, complaints, etc!
-------------------------------------------------------------------------------
2008-01-28 : 2.0.2 bug-fix release
Some more bugfixes and improvements:
- Fixed -n option for commandline LoadTestRunner (was incorrectly -h)
- Fixed internal initialization of copied/cloned testcases/teststeps and during loadtesting
- Improved Aut/Header inspectors to be visible for form/overview views
- Fixed quoting of SOAP 1.2 Action in content-type header
- Improved opening of local files in external browser (reports, etc)
- Fixed initialization of custom RequestFilters
- Fixed script-evaluation in MockResponses to allow modification of the responseContent
- Fixed logging/display of failed MockRequests
- Fixed caching of external WSDLs in SchemaComplianceAssertion if another URL was used
- Fixed attribute handling with wildcards
- Fixed NPE on empty response messages
- Fixed a number of typos
- Updated to trunk version of XMLBeans which fixes corruption of project-files on save
- Updated to full version of xercesImpl 2.9.1 for full JAXP functionality
- etc..
As always thanks to you all reporting for making SoapUI better and better!
-------------------------------------------------------------------------------
2008-01-15 : 2.0.1 bug-fix release
A large number of important bug-fixes and a small number of improvements:
- Updated Groovy to 1.5.1
- Fixed Keystore-initialization to use specified provider
- Fixed NPE when initializing properties
- Fixed corruption of PropertyTransfer, ConditionalGoto and RunTestCase teststeps
- Fixed invalid Regular Expression in XSDs to get discarded and show a warning
- Fixed parallell execution of TestCases in TestSuites
- Fixed encoding-problems when compiling Groovy Scripts
- Added support for %20 as space-delimiter in command-line arguments (for unix/linux)
- Fixed check to recreate messages when updating interface
- Fixed global properties as PropertyTransfer targets
- Fixed NPE:s in related to TestCase and MockService logs
- Fixed DnD of requests to TestCases
- Memory fixes
- etc..
SoapUI Pro
- Fixed generation of indexed XPath expressions
- Fixed refactoring issues with namespaces and multiple updates
- Improved WSDL Coverage:
- Added possibility to exclude elements from coverage calculation
- Fixed handling of empty elements
- Moved settings to be at project-level
- Added option to skip to closing DataSource Loop when no data is available in a DataSource
TestStep
- Improved import/export of requirements to include testcases and links
- etc..
-------------------------------------------------------------------------------
2007-12-12 : 2.0 final release!
A bunch of minor improvements and a large number of bug-fixes made it into the final
release - thanks to all who have reported, tested and helped us out!
-------------------------------------------------------------------------------
2007-12-02 : 2.0 beta2 release!
Overhauled WS-Security support and many minor improvements;
- WS-Security support has been greatly enhanced and is now managed at Project-level for
application to Requests, MockServices/Responses and SOAP Monitors
- Raw message viewer for viewing actual data sent/received
- Aut Request inspector for editing authentication-related settings
- Interface Viewer has been extended with new Overview, Endpoints and WS-I Compliance tabs
- LoadTests can now continuously export statistics for post-processing
- Improved Message-Inspector for logged messages
- TestRun Log has been visually improved
-------------------------------------------------------------------------------
2007-11-14 : 2.0 beta1 Release!
This is the first beta of SoapUI 2.0, boasting a large number of new features. Please backup
your existing project-files before testing and report any issues at the sourceforge forums.
* Improved WS-Security support;
- messages can now be signed
- messages can be encrypted
- support for SAML Assertion insertion
- will be further improved for final release
* Built in SOAP Monitor for capturing live traffic
- tunnel / proxy modes
- create request, testcases and mockservices from recorded traffic
* Setup/Teardown scripts can now be specified for both TestCases and TestSuites
* Run TestCase teststep allows parameterized running of testcases from with a testcase
with return properties
* Enabled/Disable Assertions / TestCases / TestSuites
* MockService improvements:
- SSL support
- Mocked wsdls are now exposed via a (very) simple web-interface
- Start/Stop scripts
* New Project Overview
- Project metrics
- Load/Save scripts
* TestSuite Editor run log
* Much improved property-handling;
- properties can now be specified at testcase, testsuite, project and global level
- property-expansions and property-transfers have been extended accordingly
- drag-and-drop for creating property-expansions
- properties can be shown in navigator tree
- property-refactoring; renaming properties updates associated property expansions
* TestCase Log improvements:
- limit output and logged results to preserve memory under long-running tests
- generate MockServices from TestCase execution
* And many more minor improvements..
- "Start Minimized" action for MockSerivces
- UI improvements
- Auto-save open-sourced
-------------------------------------------------------------------------------
2007-09-26 : 1.7.6 Release!
The intermediary 1.7.6 release focuses on general functionality and many UI improvements
Improvements:
* Default authentication settings on endpoint level
* XQuery support in assertions and property-transfers
* Dialogs for launching command-line runners
* Apache CXF wsdl2java integration
* Regular expression support in Contains/NotContains assertions
* Improved editors with line-numbers, find-and-replace, etc..
* Greatly improved project/workspace management including support for open/closed projects
* Support for remote projects over http(s)
* Improved/laxed up MTOM functionality
* Global/System-property access in property-expansions
* Very preliminary and inital extension API
* And a large number of UI improvements and minor adjustements
Bug-Fixes:
* Much-improved support for one-way operations
* Property Expansion is now supported in Conditional Goto Steps XPath
* Fixed save of empty properties in Properties Step
* Fixed URL decoding of WSDL port locations
* Fixed correct setting of SOAPAction / Content-Type headers for SOAP 1.2
* Mockservice fault with http response code 500
* Generate TestSuite does not use existing Requests
* OutOfMemory error when creating backup requests
As always we are grateful to our enthusiastic users! You Rock!
-------------------------------------------------------------------------------
2007-08-06 : 1.7.5 Final!
The final release of SoapUI 1.7.5 adds a small number of features and fixes a number
of bugs:
Improvements:
* Action to change the operation of a TestRequest.
* Improved MockService log with own toolbar and options to set size and clear.
* Possibility to set the local address both globally and on a request level.
* Option to pretty-print project files for easier SCM integration.
* Added requestContext variable to MockOperation-dispatch scripts allowing for thread-safe passing of
values from dispatch script to response script
* Added option to enable interactive utilities when running from command-line.