- Update to new upstream release 2.8.30

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/gsoap?expand=0&rev=58
This commit is contained in:
2016-04-04 07:55:56 +00:00
committed by Git OBS Bridge
parent 919b29c57a
commit 6224b669eb
7 changed files with 58 additions and 73 deletions

View File

@@ -1,3 +1,51 @@
-------------------------------------------------------------------
Mon Apr 4 07:49:55 UTC 2016 - jengelh@inai.de
- Update to new upstream release 2.8.30
* Added backtick XML tag name syntax to interface files for
soapcpp2, which allows for the overriding of the translated tag
names of struct/class members and service operation parameters,
see the [Data Bindings
documentation](http://www.genivia.com/doc/databinding/html#toxsd9-5).
Older gSOAP versions do not support the backtick tag in the
generated WSDL and schemas (messages are OK).
* Added macro `SOAP_MAXLEVEL` to trigger `SOAP_LEVEL` error when
XML nesting level of inbound XML exceeds the value of
`SOAP_MAXLEVEL`. Default value is 10000. Redefine `SOAP_MAXLEVEL`
as needed, with lower values to restrict XML nesting depth for
receivers to accept.
* Added macro `SOAP_MAXLENGTH` to trigger `SOAP_LENGTH` content
length error when string content in inbound XML exceeds the value
of `SOAP_MAXLENGTH`. Applies to strings that are potentially
unbounded, i.e. that are not already constrained by XML
validation maxLength constaints (which could be larger than
`SOAP_MAXLENGTH`). Default value is zero (0) which means that
string length is unconstrained if XML validation maxLength is not
given. Redefine `SOAP_MAXLENGTH` as needed, with lower values to
restrict string lengths for receivers to accept.
* Added macro `SOAP_MAXOCCURS` to trigger `SOAP_OCCURS` content
error when array and container lengths exceed the value of
`SOAP_MAXOCCURS`. Must be greater than zero (0). Default value is
100000. Redefine `SOAP_MAXOCCURS` as needed, with lower values to
restrict array and container lengths for receivers to accept.
* Updated wsdl2h WS-Policy processing to include WS-RM protocol
versioning.
* Improved soapcpp2 generation of WSDL and XSD for unqualified
C/C++ types or when mixing qualified and unqualified C/C++ types
and type names.
* Changed soapcpp2 default behavior for generating WSDL and XSD
files with *`elementFormDefault="unqualified"`* from the old
default behavior with *`elementFormDefault="qualified"`*
* Fixed soapcpp2 crash with enum constants > 255 due to libc
`isalpha` crashing on some Linux systems.
* Fixed `import/wsp.h` soapcpp2 compilation error.
* Fixed soapcpp2 option `-w` that may cause a message response
element tag name inconsistency with SOAP doc/lit style.
* Fixed deserialization issue with dynamic arrays of STL
containers/smart-pointers (i.e. a pointer to an array of
containers/smart-pointers, which is an unlikely combination to
use, but should work).
-------------------------------------------------------------------
Tue Mar 22 09:38:28 UTC 2016 - jengelh@inai.de