Add release notes for 0.3.2 release

This commit is contained in:
jortel 2008-11-06 15:27:34 +00:00
parent c6b00e77b8
commit 31ff5f9622
4 changed files with 48 additions and 6 deletions

25
README
View File

@ -1176,4 +1176,27 @@ version 0.3.1 (10-1-08):
when invoking then without the port qualification will work just fine in almost every
case. So, why not just allow suds to select the port. Let's not make the user do it
when it's not necessary. In most cases, uses on 0.2.9 and earlier will not have to
update there code when moving to 0.3.1 as they might have in 0.3.
update there code when moving to 0.3.1 as they might have in 0.3.
version 0.3.2 (11-7-08):
* SOAP {{{MultiRef}}} support ''(1st pass added r300)''
* Add support for new schema tags:
* <xs:include/>
* <xs:simpleContent/>
* <xs:group/>
* <xs:attributeGroup/>
* Added support for new xs <--> python type conversions:
* xs:int
* xs:long
* xs:float
* xs:double
* Revise marshaller and binding to further sharpen the namespacing of nodes produced.
* Infinite recursion fixed in ''xsd'' package dereference() during schema loading.
* Add support for <wsdl:import/> of schema files into the wsdl root <definitions/>.
* Fix double encoding of (&)
* Add Client API:
* setheaders() - same as keyword but works for all invocations.
* addprefix() - mapping of namespace prefixes.
* setlocation() - Override the location in the wsdl; same as keyword except for all calls.
* Add proper namespace prefix for soap headers.
* Fixed Tickets: #5, #12, #34, #37, #40,#44, #45, #46, #48

View File

@ -39,6 +39,7 @@ rpm: dist
rpmbuild -ba $(SPEC)
cp /usr/src/redhat/RPMS/noarch/python-suds*.rpm dist
cp /usr/src/redhat/SRPMS/python-suds*.rpm dist
rpmlint -i dist/python-*.rpm
release: rpm docs
scp dist/python*.tar.gz fedorahosted.org:suds

View File

@ -57,10 +57,28 @@ rm -rf $RPM_BUILD_ROOT
%doc README LICENSE
%changelog
* Fri Nov 03 2008 jortel <jortel@redhat.com> - 0.3.2-1
- New Features.
- Bug Fixes.
- See release notes in README.
* Fri Nov 06 2008 jortel <jortel@redhat.com> - 0.3.2-1
- Add SOAP MultiRef support
- Add support for new schema tags:
<xs:include/>
<xs:simpleContent/>
<xs:group/>
<xs:attributeGroup/>
- Added support for new xs <--> python type conversions:
xs:int
xs:long
xs:float
xs:double
- Revise marshaller and binding to further sharpen the namespacing of nodes produced.
- Infinite recursion fixed in ''xsd'' package dereference() during schema loading.
- Add support for <wsdl:import/> of schema files into the wsdl root <definitions/>.
- Fix double encoding of (&)
- Add Client API:
setheaders() - Same as keyword but works for all invocations.
addprefix() - Mapping of namespace prefixes.
setlocation() - Override the location in the wsdl.
- Add proper namespace prefix for soap headers.
- Fixed Tickets: #5, #12, #34, #37, #40,#44, #45, #46, #48
* Fri Nov 03 2008 jortel <jortel@redhat.com> - 0.3.1-5
- Add LICENSE to %%doc.

View File

@ -36,7 +36,7 @@ from suds.xsd.sxbasic import Import
Import.bind('http://schemas.xmlsoap.org/soap/encoding/')
#logging.getLogger('suds.client').setLevel(logging.DEBUG)
logging.getLogger('suds.client').setLevel(logging.DEBUG)
def start(url):
global errors