15
0
forked from pool/python-WSME

Accepting request 173723 from home:dirkmueller:branches:devel:languages:python

- update to 0.5b2: 
  * Changed the way datas of complex types are stored. In previous
  versions, an attribute was added to the type for each attribute,
  its name being the attribute name prefixed with ‘_’.
  Starting with this version, a single attribute _wsme_dataholder
  is added to the instance.
  * Add a special type ‘HostRequest’ that allow a function to 
  ask for the host framework request object in its arguments.
  * Pecan adapter: Debug mode (which returns the exception 
  tracebacks to the client) can be enabled by the pecan 
  application configuration.
  * Fix: the cornice adapter was not usable.
  * Fix: Submodules of wsmeext were missing in the packages.
  * Fix: The demo app was still depending on the WSME-Soap package (which has been merged into WSME in 0.5b1).
  * Fix: A function with only on ‘body’ parameter would fail when being called.
  * Fix: Missing arguments were poorly reported by the frameworks adapters.

OBS-URL: https://build.opensuse.org/request/show/173723
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-WSME?expand=0&rev=4
This commit is contained in:
Sascha Peilicke
2013-04-29 13:26:53 +00:00
committed by Git OBS Bridge
parent 7556220016
commit 3e5666f883
4 changed files with 30 additions and 9 deletions

View File

@@ -1,3 +1,23 @@
-------------------------------------------------------------------
Mon Apr 29 11:27:37 UTC 2013 - dmueller@suse.com
- update to 0.5b2:
* Changed the way datas of complex types are stored. In previous
versions, an attribute was added to the type for each attribute,
its name being the attribute name prefixed with _.
Starting with this version, a single attribute _wsme_dataholder
is added to the instance.
* Add a special type HostRequest that allow a function to
ask for the host framework request object in its arguments.
* Pecan adapter: Debug mode (which returns the exception
tracebacks to the client) can be enabled by the pecan
application configuration.
* Fix: the cornice adapter was not usable.
* Fix: Submodules of wsmeext were missing in the packages.
* Fix: The demo app was still depending on the WSME-Soap package (which has been merged into WSME in 0.5b1).
* Fix: A function with only on body parameter would fail when being called.
* Fix: Missing arguments were poorly reported by the frameworks adapters.
-------------------------------------------------------------------
Fri Feb 22 12:40:02 UTC 2013 - saschpe@suse.de