You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2019/12/21 21:53:13 UTC

[libcloud] branch trunk updated (9ce7d84 -> b8b2855)

This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a change to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git.


    from 9ce7d84  Update docs.
     new 43f1641  Update upgrade notes.
     new b8b2855  Indicate we are working on v2.8.0-dev.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 docs/upgrade_notes.rst | 16 ++++++++++++++++
 libcloud/__init__.py   |  2 +-
 2 files changed, 17 insertions(+), 1 deletion(-)


[libcloud] 01/02: Update upgrade notes.

Posted by to...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git

commit 43f1641b52bbbb9f9571699830fcccfb3c71a141
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Sat Dec 21 22:41:22 2019 +0100

    Update upgrade notes.
---
 docs/upgrade_notes.rst | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/docs/upgrade_notes.rst b/docs/upgrade_notes.rst
index 6ad0b5c..a7bc4b4 100644
--- a/docs/upgrade_notes.rst
+++ b/docs/upgrade_notes.rst
@@ -5,6 +5,22 @@ This page describes how to upgrade from a previous version to a new version
 which contains backward incompatible or semi-incompatible changes and how to
 preserve the old behavior when this is possible.
 
+Libcloud 2.8.0
+--------------
+
+* ``deploy_node()`` method in the GCE driver has been updated so it complies
+  with the base compute API.
+
+  This means that the method now takes the same argument as the base
+  ``deploy_node()`` method (``deployment``, ``ssh_username``, ``ssh_port``,
+  etc.) plus all the keyword arguments which are supported by the
+  ``create_node()`` method.
+
+* ``group_name`` keyword argument in the ``create_node()`` method in the
+  Abiquo driver has been renamed to ``ex_group_name`` to comply with the
+  convention for naming non-standard arguments (arguments which are not
+  part of the standard compute API).
+
 Libcloud 2.7.0
 --------------
 


[libcloud] 02/02: Indicate we are working on v2.8.0-dev.

Posted by to...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git

commit b8b28552f4a03563e293293e534134443b351fb2
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Sat Dec 21 22:41:39 2019 +0100

    Indicate we are working on v2.8.0-dev.
---
 libcloud/__init__.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libcloud/__init__.py b/libcloud/__init__.py
index 998d3d7..d3253fd 100644
--- a/libcloud/__init__.py
+++ b/libcloud/__init__.py
@@ -46,7 +46,7 @@ __all__ = [
     'enable_debug'
 ]
 
-__version__ = '2.7.0'
+__version__ = '2.8.0-dev'
 
 
 def enable_debug(fo):