~canonical-sysadmins/wordpress/openstack-objectstorage-k8s

« back to all changes in this revision

Viewing changes to vendor/guzzlehttp/streams/CHANGELOG.rst

  • Committer: Jacek Nykis
  • Date: 2015-02-11 15:35:31 UTC
  • Revision ID: jacek.nykis@canonical.com-20150211153531-hmy6zi0ov2qfkl0b
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
=========
 
2
Changelog
 
3
=========
 
4
 
 
5
2.1.0 (2014-08-17)
 
6
------------------
 
7
 
 
8
* Added an InflateStream to inflate gzipped or deflated content.
 
9
* Added ``flush`` to stream wrapper.
 
10
* Added the ability to easily register the GuzzleStreamWrapper if needed.
 
11
 
 
12
2.0.0 (2014-08-16)
 
13
------------------
 
14
 
 
15
* Deprecated functions.php and moved all of those methods to
 
16
  ``GuzzleHttp\Streams\Utils``. Use ``GuzzleHttp\Stream\Stream::factory()``
 
17
  instead of ``GuzzleHttp\Stream\create()`` to create new streams.
 
18
* Added ``flush()`` to ``StreamInterface``. This method is used to flush any
 
19
  underlying stream write buffers.
 
20
* Added ``FnStream`` to easily decorate stream behavior with callables.
 
21
* ``Utils::hash`` now throws an exception when the stream cannot seek to 0.
 
22
 
 
23
1.5.1 (2014-09-10)
 
24
------------------
 
25
 
 
26
* Stream metadata is grabbed from the underlying stream each time
 
27
  ``getMetadata`` is called rather than returning a value from a cache.
 
28
* Properly closing all underlying streams when AppendStream is closed.
 
29
* Seek functions no longer throw exceptions.
 
30
* LazyOpenStream now correctly returns the underlying stream resource when
 
31
  detached.
 
32
 
 
33
1.5.0 (2014-08-07)
 
34
------------------
 
35
 
 
36
* Added ``Stream\safe_open`` to open stream resources and throw exceptions
 
37
  instead of raising errors.
 
38
 
 
39
1.4.0 (2014-07-19)
 
40
------------------
 
41
 
 
42
* Added a LazyOpenStream
 
43
 
 
44
1.3.0 (2014-07-15)
 
45
------------------
 
46
 
 
47
* Added an AppendStream to stream over multiple stream one after the other.
 
48
 
 
49
1.2.0 (2014-07-15)
 
50
------------------
 
51
 
 
52
* Updated the ``detach()`` method to return the underlying stream resource or
 
53
  ``null`` if it does not wrap a resource.
 
54
* Multiple fixes for how streams behave when the underlying resource is
 
55
  detached
 
56
* Do not clear statcache when a stream does not have a 'uri'
 
57
* Added a fix to LimitStream
 
58
* Added a condition to ensure that functions.php can be required multiple times