Package Release Info

python-restkit-4.2.2-bp151.3.1

Update Info: Base Release
Available in Package Hub : 15 SP1

platforms

AArch64
ppc64le
s390x
x86-64

subpackages

python-restkit

Change Logs

Version: 4.2.2-bp150.1.5
* Fri Feb 09 2018 tbechtold@suse.com
- Set PYTHONPATH to fix doc build
* Sun Nov 24 2013 p.drouand@gmail.com
- Update to version 4.2.2
  + ChangeLog hasn't been updated for this version
- Generate documentation with Sphinx and add it in package
* Mon Oct 28 2013 speilicke@suse.com
- Don't install global "tests" module into python_sitelib
* Thu Oct 24 2013 speilicke@suse.com
- Require python-setuptools instead of distribute (upstreams merged)
* Sat Feb 09 2013 p.drouand@gmail.com
- Update to version 4.2.1:
  * No changelog available
* Thu Jan 24 2013 p.drouand@gmail.com
- Update to version 4.2.0:
  * No changelog available
* Mon Feb 13 2012 jfunk@funktronics.ca
- Update to version 4.1.2:
  * set content-length if provided
  * Fix bad http-parser version requirement
* Thu Feb 02 2012 saschpe@suse.de
- Fix version and add requirement on python-socketpool
* Tue Jan 31 2012 saschpe@suse.de
- Simplified macro usage
- Update to version 4.1.1:
  * fix connection reusing. When connection is closed or an EPIPE/EAGAIN error happen, we now retry it.
  * fix wgsi_proxy contrib
  * fix examples
- Changes from version 3.0.0:
  * Replace the socket pool by socketpool improve connection handling and better management of gevent & eventlet.
  * Fix NoMoreData issue
  * Fix SSL connections
  * multipart forms: quote is now configurable & flush size cache
* Thu Dec 08 2011 jfunk@funktronics.ca
- Update to 3.3.2
  - add support for multivalue field in multipart
  - form_encode can now accept arbitrary items
  - fix proxy handling in client
* Fri Sep 23 2011 saschpe@suse.de
- Update to 3.3.1:
  *
* Mon Jun 20 2011 jfunk@funktronics.ca
- Update to 3.3.0
  - New HTTP parser, using python http-parser in C based on http-parser from
    Ryan Dahl
  - Fix UnboundLocalError
  - Sync oauth with last python-oauth2 (fix POST & encoding issues)
  - Improve sending
- 3.2.1
  - Fix sending on linux
* Thu Mar 10 2011 jfunk@funktronics.ca
- Update to 3.2.0
  - Some deep rewrite of the client. Requests and Connections are now
    maintened in their own instances, so we don't rely on client instance to
    close or release the connection. Also we don't pass local variable to
    handle a request. At the end each requests are more isolated and we are
    fully threadsafe.
  - Improve error report.
  - Handle case where the connection is closed but the OS still accept
    sending. From the man: "When the message does not fit into the send buffer
    of the socket, send() normally blocks, unless the socket has been placed
    in nonblocking I/O mode.""" . Spotted by loftus on irc. Thanks.
- Breaking changes
  - Rewrite filters handling. We now pass a request instance to the on_request
    filters. If a request filter return a response, we stop to perform here.
    response filters accept now the response and request instances as
    arguments. There is no more on_connect filters (it was a bad idea)
  - Proxy support. Proxies are now supported by passing the argument
    "use_proxy=True" to client, request and resources objects.
* Thu Feb 03 2011 jfunk@funktronics.ca
- Update to 3.0.1
  - New Connection management: Better concurrency handling and idle
    connections are now closed after a time
  - Improved Client
  - Fix redirect
  - Better error handling
  - Timeout can now be set on each request.
  - Major refactoring. consolidation of some module, ease the HTTP parser code
  - Fix timeout errors
* Tue Jan 25 2011 saschpe@suse.de
- Update to 2.3.3
* Wed Mar 17 2010 jfunk@funktronics.ca
- Update to 1.2.1
* Sat Jan 09 2010 jfunk@funktronics.ca
- Update to 0.9.3
  - fix distribute line
  - don't release connection if it need to be closed.
  - add tests with big upload. and multiple Post serialised.
* Mon Dec 14 2009 jfunk@funktronics.ca
- Update to 0.9.2
  - Make sure restkit works with multiprocess. fix eventlet.
* Tue Dec 08 2009 jfunk@funktronics.ca
- Update to 0.9.1
  - fix ResponseStream. buffer read
* Mon Dec 07 2009 jfunk@funktronics.ca
- Update to 0.9
  - New response object. Now a `restkit.Resource` and `restkit.RestClient`
    return an  `restkit.HTTPResponse` instance and no longer an unicode. The
    HTTPResponse allow you to get all in one the headers, the body and allow
    you to stream it by using the property `body_file` which give you a
    `fileobject`
  - Fix in spool class. Reuse spool across all objects. It doesn't use Queue
    anymore since collection.deque is already threadsafe
  - Change in WebOb helper. Now you have to use
    `restkit.ext.webob_helper.wrap_exceptions` to use WebOb extensions.
  - Fix eventlet extension.