Updated Branches: refs/heads/trunk af7352c2e -> c677de309
docs: Update upgrade notes, add a note about get_container change. Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/7f1ad37b Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/7f1ad37b Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/7f1ad37b Branch: refs/heads/trunk Commit: 7f1ad37b9c337afef950f7be7aef38fd5462ca94 Parents: af7352c Author: Tomaz Muraus <[email protected]> Authored: Fri Jan 17 04:55:47 2014 +0100 Committer: Tomaz Muraus <[email protected]> Committed: Fri Jan 17 04:55:47 2014 +0100 ---------------------------------------------------------------------- docs/upgrade_notes.rst | 15 +++++++++++++++ 1 file changed, 15 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/7f1ad37b/docs/upgrade_notes.rst ---------------------------------------------------------------------- diff --git a/docs/upgrade_notes.rst b/docs/upgrade_notes.rst index a527eb4..315cad9 100644 --- a/docs/upgrade_notes.rst +++ b/docs/upgrade_notes.rst @@ -632,6 +632,21 @@ In this release, this variable has been fully removed. For more information on how SSL certificate validation works in Libcloud, see the :doc:`SSL Certificate Validation </other/ssl-certificate-validation>` page. +get_container method changes in the S3 driver +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Previously, the ``get_container`` method in the S3 driver used a very +inefficient approach of using ``list_containers`` + late filterting. + +The code was changed to use a more efficient approach which means using +a single HTTP ``HEAD`` request. + +The only downside of this approach is that it doesn't return container +creation date. + +If you need the container creation date, you should use ``list_containers`` +method and do the later filtering yourself. + Libcloud 0.8 ------------
