1Changelog
2=========
3
4Changes in Apache Libcloud 3.4.1
5--------------------------------
6
7.. note::
8
9  Libcloud depends on the ``requests`` library for performing HTTP(s) requests.
10
11  Prior to ``requests`` v2.26.0, ``requests`` depended on ``chardet`` library
12  which is licensed under LGPL (requests library itself is licensed under the
13  Apache License 2.0 license).
14
15  Since Libcloud is not an application, but a library which is usually used
16  along many other libraries in the same (virtual) environment, we can't have
17  a strict dependency on requests >= 2.26.0 since that would break a lot of
18  installations where users already depend on and have an older version of
19  requests installed.
20
21  If you are using requests < 2.26.0 along the Libcloud library you are using
22  version of chardet library (chardet is a direct dependency of the requests
23  library) which license is not compatible with Apache Libcloud.
24
25  If using a LGPL dependency is a problem for your application, you should
26  ensure you are using requests >= 2.26.0.
27
28  It's also worth noting that Apache Libcloud doesn't bundle any 3rd party
29  dependencies with our release artifacts - we only provide source code
30  artifacts on our website.
31
32  When installing Libcloud from PyPi using pip, pip will also download and use
33  the latest version of requests without the problematic chardet dependency,
34  unless you already have older version of the requests library installed in
35  the same environment where you also want to use Libcloud - in that case,
36  Libcloud will use the dependency which is already available and installed.
37
38Common
39~~~~~~
40
41- Fix a regression which was inadvertently introduced in v3.4.0 which prevented
42  users from installing Libcloud under Python 3.5.
43
44  Also revert ``requests`` minimum version required change and relax the
45  minimum version requirement.
46
47  Previous change would prevent Libcloud from being installed in environments
48  where a conflicting (lower) version of requests library is required and
49  already installed.
50
51  As a library and not an application, Libcloud should specify as loose
52  requirements as possible to prevent issues with conflicting requirements
53  versions which could prevent Libcloud from being installed.
54  (GITHUB-1594)
55
56Changes in Apache Libcloud 3.4.0
57--------------------------------
58
59Common
60~~~~~~
61
62- Fix how we set HTTP request timeout on the underlying requests session
63  object. requests library has changed how timeout is set so our old
64  code had no affect.
65
66  (GITHUB-1575, GITHUB-1576)
67  [Dimitris Galanis - @dimgal1]
68
69- Update setup.py metadata and indicate we also support Python 3.10.
70
71- [Google] Update Google authentication code so so we don't try to contact
72  GCE metadata server when determining auth credentials type when oAuth 2.0 /
73  installed app type of credentials are used.
74
75  (GITHUB-1591, GITHUB-1621)
76
77  Reported by Veith Röthlingshöfer - @RunOrVeith.
78
79- [Google] Update Google authentication code so we don't try to retry failed
80  request when trying to determine if GCE metadata server is available when
81  retrying is enabled globally (either via module level constant or via
82  environment variable value).
83
84  This will speed up scenarios when trying is enabled globally, but GCE
85  metadata server is not available and different type of credentials are used
86  (e.g. oAuth 2).
87
88  (GITHUB-1591, GITHUB-1621)
89
90  Reported by Veith Röthlingshöfer - @RunOrVeith.
91
92- Update minimum ``requests`` version we require as part for install_requires
93  in setup.py to ``2.26.0`` when using Python >= 3.6.
94
95  This was done to avoid licensing issue with transitive dependency
96  (``chardet``).
97
98  NOTE: requests ``>=2.25.1`` will be used when using Python 3.5 since 2.26.0
99  doesn't support Python 3.5 anymore.
100
101  For more context, see https://github.com/psf/requests/pull/5797.
102  (GITHUB-1594)
103
104  Reported by Jarek Potiuk - @potiuk.
105
106- Update HTTP connection and request retry code to be more flexible so user
107  can specify and utilize custom retry logic which can be configured via
108  connection retryCls attribute
109  (``driver.connection.retryCls = MyRetryClass``).
110
111  (GITHUB-1558)
112  [Veith Röthlingshöfer - @RunOrVeith]
113
114- HTTP connection and request retry logic has been updated so we still respect
115  ``timeout`` argument when retrying requests due to rate limit being reached
116  errors. Previously, we would try to retry indefinitely on
117  ``RateLimitReachedError`` exceptions.
118
119Storage
120~~~~~~~
121
122- [Azure Blobs] Respect Content-Encoding, Content-Language and Cache-Control
123  headers when uploading blobs via stream.
124
125  Reported by Veith Röthlingshöfer - @RunOrVeith.
126  (GITHUB-1550)
127
128- [Azure Blobs] Enable the Azure storage driver to be used with
129  Azure Government, Azure China, and Azure Private Link by setting
130  the driver host argument to the endpoint suffix for the environment.
131
132  Reported by Melissa Kersh - @mkcello96
133  (GITHUB-1551)
134
135- [Local Storage] Optimize ``iterate_container_objects`` method to perform
136  early filtering if ``prefix`` argument is provided.
137  (GITHUB-1584)
138  [@Ido-Levi]
139
140Compute
141~~~~~~~
142
143- [Equinix Metal] Various improvements to the driver.
144
145  (GITHUB-1548)
146  [Dimitris Galanis - @dimgal1]
147
148- [OpenStack] Fix error getting non existing description of Ports.
149
150  (GITHUB-1543)
151  [Miguel Caballer - @micafer]
152
153- [Outscale] Various updates to the driver.
154  (GITHUB-1549)
155  [Tio Gobin - @tgn-outscale]
156
157- [Ovh] Fix driver so it doesn't throw if a node is in resizing state.
158  (GITHUB-1555)
159  [Rob Juffermans - @robjuffermans]
160
161- [OpenStack] Support volume v3 API endpoint in OpenStack driver.
162
163  (GITHUB-1561)
164  [Miguel Caballer - @micafer]
165
166- [GCE] Get accelerators field in the GCE machineType.
167
168  (GITHUB-1565)
169  [Miguel Caballer - @micafer]
170
171- [OpenStack] Support updating ``allowed_address_pairs`` on OpenStack ports
172  using ``ex_update_port`` method.
173  (GITHUB-1569)
174  [@dpeschman]
175
176- [OpenStack] Enable to get Volume Quota details in OpenStack driver.
177
178  (GITHUB-1586)
179  [Miguel Caballer - @micafer]
180
181- [OpenStack] Add disabled property to OpenStack images.
182
183  (GITHUB-1615)
184  [Miguel Caballer - @micafer]
185
186- [CloudSigma] Various updates, improvements and new functionality in the
187  driver (support for new regions, instance types, additional standard API an
188  extension methods, etc.).
189
190  (GITHUB-1558)
191  [Dimitris Galanis - @dimgal1]
192
193- [OpenStack] Add binding:host_id value to the OpenStack port information.
194  (GITHUB-1492)
195  [Miguel Caballer - @micafer]
196
197- [EC2] Add support for ``gp3`` and ``io2`` volume types. Also add
198  ``ex_throughput`` argument to the ``create_volume`` method.
199  (GITHUB-1596)
200  [Palash Gandhi - @palashgandhi]
201
202- [OpenStack] Add support for authenticating using application credentials.
203  (GITHUB-1597, GITHUB-1598)
204  [Daniela Bauer - @marianne013]
205
206- [OpenStack] Add support for using optional external cache for auth tokens
207
208  This cache can be shared by multiple processes which results in much less
209  tokens being allocated when many different instances / processes
210  are utilizing the same set of credentials.
211
212  This functionality can be used by implementing a custom cache class with
213  caching logic (e.g. storing cache context on a local filesystem, external
214  system such as Redis or similar) + using ``ex_auth_cache`` driver constructor
215  argument.
216  (GITHUB-1460, GITHUB-1557)
217  [@dpeschman]
218
219- [Vultr] Implement support for Vultr API v2 and update driver to use v2 by
220  default.
221  (GITHUB-1609, GITHUB-1610)
222  [Dimitris Galanis - @dimgal1]
223
224DNS
225~~~
226
227- [CloudFlare] Enable authentication via API Tokens.
228  [Clemens Wolff - @c-w]
229
230- [DigitalOcean] Fix ``create_record()`` and ``update_record()`` method and
231  pass ``None`` instead of string value ``null`` for priority, port and weight
232  parameters if they are not provided as method arguments.
233  (GITHUB-1570)
234  [Gasper Vozel - @karantan]
235
236- [NSOne] Fix MX records and root domain handling.
237  (GITHUB-1571)
238  [Gasper Vozel - @karantan]
239
240- [Vultr] Implement support for Vultr API v2 and update driver to use v2 by
241  default.
242  (GITHUB-1609, GITHUB-1610)
243  [Dimitris Galanis - @dimgal1]
244
245Other
246~~~~~
247
248- Fix ``python_requires`` setup.py metadata item value.
249  (GITHUB-1606)
250  [Michał Górny - @mgorny]
251
252- Update tox targets for unit tests to utilize ``pytest-xdist`` plugin to run
253  tests in parallel in multiple processes to speed up the test runs.
254  (GITHUB-1625)
255
256Changes in Apache Libcloud 3.3.1
257--------------------------------
258
259Compute
260~~~~~~~
261
262- [EC2] Fix a regression introduced in v3.3.0 which would break EC2 driver for
263  some regions because the driver would incorrectly try to use signature version
264  2 for all the regions whereas some newer regions require signature version 4
265  to be used.
266
267  If you are unable to upgrade, you can use the following workaround, as long
268  as you only use code which supports / works with authentication signature
269  algorithm version 4:
270
271  .. sourcecode:: python
272
273    import libcloud.common.aws
274    libcloud.common.aws.DEFAULT_SIGNATURE_VERSION = "4"
275
276    # Instantiate affected driver here...
277
278  Reported by @olegrtecno.
279  (GITHUB-1545, GITHUB-1546)
280
281- [EC2] Allow user to override which signature algorithm version is used for
282  authentication by passing ``signature_version`` keyword argument to the EC2
283  driver constructor.
284  (GITHUB-1546)
285
286Storage
287~~~~~~~
288
289- [Google Cloud Storage] Fix a bug and make sure we also correctly handle
290  scenario in ``get_object()`` method when the object size is returned in
291  ``x-goog-stored-content-length`` and not ``content-length`` header.
292
293  Reported by Veith Röthlingshöfer - @RunOrVeith.
294  (GITHUB-1544, GITHUB-1547)
295
296- [Google Cloud Storage] Update ``get_object()`` method and ensure
297  ``object.size`` attribute is an integer and not a string. This way it's
298  consistent with ``list_objects()`` method.
299  (GITHUB-1547)
300
301Changes in Apache Libcloud 3.3.0
302--------------------------------
303
304Common
305~~~~~~
306
307- Fix a bug which would cause some prepared requests with empty bodies to be
308  chunked which would cause some of the provider APIs such as OpenStack to
309  return HTTP 400 errors.
310  (GITHUB-1487, GITHUB-1488)
311  [Michael Spagon - @mspagon]
312
313- Optimize various code imports (remove unnecessary imports, make some lazy,
314  etc.), so now importing most of the modules is around ~20-40% faster (~70
315  vs ~140 ms) and in some cases such as EC2 driver even more.
316
317  Now majority of the import time is spent in importing ``requests`` library.
318  (GITHUB-1519)
319  [Tomaz Muraus]
320
321- ``libcloud.pricing.get_size_price()`` function has been updated so it only
322  caches pricing data in memory for the requested drivers.
323
324  This way we avoid caching data in memory for drivers which may never be
325  used.
326
327  If you want to revert to old behavior (cache pricing data for all the
328  drivers in memory), you can do that by passing ``cache_all=True`` argument
329  to that function or set ``libcloud.pricing.CACHE_ALL_PRICING_DATA`` module
330  level variable to ``True``.
331
332  Passing ``cache_all=True`` might come handy in situations where you know the
333  application will work with a lot of different drivers - this way you can
334  avoid multiple disk reads when requesting pricing data for different drivers.
335  (GITHUB-1519)
336  [Tomaz Muraus]
337
338- Advertise Python 3.9 support in setup.py.
339
340Compute
341~~~~~~~
342
343- [GCE] Fix ``ex_set_image_labels`` method using incorrect API path.
344  (GITHUB-1485)
345  [Poul Petersen - @petersen-poul]
346
347- [OpenStack] Fix error setting ``ex_force_XXX_url`` without setting
348  ``ex_force_base_url``.
349  (GITHUB-1492)
350  [Miguel Caballer - @micafer]
351
352- [EC2] Update supported EC2 regions and instance sizes and add support
353  for eu-north-1 region.
354  (GITHUB-1486)
355  [Arturo Noha - @r2ronoha]
356
357- [Ovh] Add support for multiple regions to the driver. User can select
358  a region (location) by passing ``location`` argument to the driver
359  constructor (e.g. ``location=ca``).
360  (GITHUB-1494)
361  [Dan Hunsaker - @danhunsaker]
362
363- [GCE] Add support for creating nodes without a service account associated
364  with them. Now when an empty list is passed for ``ex_service_accounts``
365  argument, VM will be created without service account attached.
366
367  For backward compatibility reasons, default value of ``None`` still means to
368  use a default service account.
369  (GITHUB-1497, GITHUB-1495)
370  [David Tomaschik - Matir]
371
372- [VSphere] Add new VMware VSphere driver which utilizes ``pyvmomi`` library
373  and works under Python 3.
374
375  If you want to use this driver, you need to install ``pyvmomi`` dependency -
376  ``pip install pyvmomi``
377  (GITHUB-1481)
378  [Eis D. Zaster - @Eis-D-Z]
379
380- [OpenStack] Enable to get Quota Set detail.
381  (GITHUB-1495)
382  [Miguel Caballer - @micafer]
383
384- [OpenStack] Add ex_get_size_extra_specs function to OpenStack driver.
385  (GITHUB-1517)
386  [Miguel Caballer - @micafer]
387
388- [OpenStack] Enable to get Neutron Quota details in OpenStack driver.
389  (GITHUB-1514)
390  [Miguel Caballer - @micafer]
391
392- [DigitalOcean] ``_node_node`` method now ensures ``image`` and ``size``
393  attributes are also set correctly and populated on the ``Node`` object.
394  (GITHUB-1507, GITHUB-1508)
395  [@sergerdn]
396
397- [Vultr] Make sure ``private_ips`` attribute on the ``Node`` object is
398  correctly populated when listing nodes. Also add additional values to the
399  ``node.extra`` dictionary.
400  (GITHUB-1506)
401  [@sergerdn]
402
403- [EC2] Optimize EC2 driver imports and move all the large constant files to
404  separate modules in ``libcloud/compute/constants/ec2_*.py`` files.
405
406  Previously all the constants were contained in
407  ``libcloud/compute/constants.py`` file. That file was imported when importing
408  EC2 driver which would add unnecessary import time and memory overhead in case
409  this data was not actually used.
410
411  Now most of the large imports are lazy and only happen when that data is
412  needed (aka when ``list_sizes()`` method is called).
413
414  ``libcloud/compute/constants.py`` file has also been removed.
415  (GITHUB-1519)
416  [Tomaz Muraus - @Kami]
417
418- [Packet / Equinix Metal] Packet driver has been renamed to Equinix Metal. If
419  your code uses Packet.net driver, you need to update it as per example in
420  Upgrade Notes documentation section.
421  (GITHUB-1511)
422  [Dimitris Galanis - @dimgal1]
423
424- [OutScale] Add various extension methods to the driver. For information on
425  available extenion methods, please refer to the driver documentation.
426  (GITHUB-1499)
427  [@tgn-outscale]
428
429- [Linode] Add support for Linode's API v4.
430  (GITHUB-1504)
431  [Dimitris Galanis - @dimgal1]
432
433Storage
434~~~~~~~
435
436- Deprecated ``lockfile`` library which is used by the Local Storage driver has
437  been replaced with ``fasteners`` library.
438  [Tomaz Muraus - @Kami]
439
440- [S3] Add support for ``us-gov-east-1`` region.
441  (GITHUB-1509, GITHUB-1510)
442  [Andy Spohn - @spohnan]
443
444- [DigitalOcean Spaces] Add support for sfo2 regon.
445  (GITHUB-1525)
446  [Cristian Rasch - @cristianrasch]
447
448- [MinIO] Add new driver for MinIO object storage (https://min.io).
449  (GITHUB-1528, GITHUB-1454)
450  [Tomaz Muraus - @Kami]
451
452- [S3] Update S3 and other drivers which are based on the S3 one (Google
453  Storage, RGW, MinIO) to correctly throw ``ContainerAlreadyExistsError`` if
454  container creation fails because container with this name already exists.
455
456  Previously in such scenario, ``InvalidContainerNameError`` exception which
457  does not comply with the Libcloud standard API was thrown.
458  (GITHUB-1528)
459  [Tomaz Muraus - @Kami]
460
461- Add new ``libcloud.common.base.ALLOW_PATH_DOUBLE_SLASHES`` module level
462  variable.
463
464  When this value is set to ``True`` (defaults to ``False`` for backward
465  compatibility reasons), Libcloud won't try to sanitize the URL path and
466  remove any double slashes.
467
468  In most cases, this won't matter and sanitzing double slashes is a safer
469  default, but in some cases such as S3, where double slashes can be a valid
470  path (e.g. ``/my-bucket//path1/file.txt``), this option may come handy.
471
472  When this variable is set to ``True``, behavior is also consistent with
473  Libcloud versions prior to v2.0.0.
474
475  Reported by Jonathan Hanson - @triplepoint.
476  (GITHUB-1529)
477  [Tomaz Muraus - @Kami]
478
479DNS
480~~~
481
482- [Common] Fix a bug with the header value returned by the
483  ``export_zone_to_bind_format`` method containing an invalid timestamp (value
484  for the minute part of the timestamp was wrong and contained month number
485  instead of the minutes value).
486
487  Reported by Kurt Schwehr - @schwehr.
488
489  (GITHUB-1500)
490  [Tomaz Muraus - @Kami]
491
492- [CloudFlare DNS] Add support for creating ``SSHFP`` records.
493  (GITHUB-1512, GITHUB-1513)
494  [Will Hughes - @insertjokehere]
495
496- [DigitalOcean] Update driver and make sure request data is sent as part of
497  HTTP request body on POST and PUT operations (previously it was sent as
498  part of query params).
499  (GITHUB-1505)
500  [Andrew Starr-Bochicchio - @andrewsomething]
501
502- [AuroraDNS] Throw correct exception on 403 authorization failed API error.
503  (GITHUB-1521, GITHUB-1522)
504  [Freek Dijkstra - @macfreek]
505
506- [Linode] Add support for Linode's API v4.
507  (GITHUB-1504)
508  [Dimitris Galanis - @dimgal1]
509
510- [CloudFlare] Update driver so it correctly throws
511  ``RecordAlreadyExists`` error on various error responses which represent
512  this error.
513  [Tomaz Muraus - @Kami]
514
515Changes in Apache Libcloud 3.2.0
516--------------------------------
517
518Common
519~~~~~~
520
521- ``libcloud.pricing.download_pricing_file`` function has been updated so it
522  tries to download latest ``pricing.json`` file from our public read-only S3
523  bucket.
524
525  We now run a daily job as part of our CI/CD which scrapes provider prices and
526  publishes the latest version of the ``pricing.json`` file to that bucket.
527
528  For more information, please see
529  https://libcloud.readthedocs.io/en/latest/compute/pricing.html.
530
531Compute
532~~~~~~~
533
534- [OpenStack] Add `ex_get_network()` to the OpenStack driver to make it
535  possible to retrieve a single network by using the ID.
536
537  (GITHUB-1474)
538  [Sander Roosingh - @SanderRoosingh]
539
540- [OpenStack] Fix pagination in the ``list_images()`` method and make sure
541  method returns all the images, even if the result is spread across multiple
542  pages.
543
544  (GITHUB-1467)
545  [Thomas Bechtold - @toabctl]
546
547- [GCE] Add script for scraping GCE pricing data and improve price addition in
548  ``_to_node_size`` method.
549  (GITHUB-1468)
550  [Eis D. Zaster - @Eis-D-Z]
551
552- [AWS EC2] Update script for scraping AWS EC2 pricing and update EC2 pricing
553  data.
554  (GITHUB-1469)
555  [Eis D. Zaster - @Eis-D-Z]
556
557- [Deployment] Add new ``wait_period`` argument to the ``deploy_node`` method
558  and default it to 5 seconds.
559
560  This argument tells Libcloud how long to wait between each poll interval when
561  waiting for a node to come online and have IP address assigned to it.
562
563  Previously this argument was not exposed to the end user and defaulted to 3
564  seconds which means it would be quite easy to reach rate limits with some
565  providers when spinning up many instances concurrently using the same
566  credentials.
567  [Tomaz Muraus - @Kami]
568
569- [Azure ARM] Add script for scraping Azure ARM instance pricing data.
570  (GITHUB-1470)
571  [Eis D. Zaster - @Eis-D-Z]
572
573- Update ``deploy_node()`` method to try to re-connect to the server if we
574  receive "SSH connection not active" error when trying to run a deployment
575  step.
576
577  In some scenarios, connection may get closed by the server for whatever
578  reason before finishing all the deployment steps and in this case only
579  re-connecting would help and result in a successful outcome.
580  [Tomaz Muraus - @Kami]
581
582- [Deployment] Make ``FileDeployment`` class much faster and more efficient
583  when working with large files or when running multiple ``FileDeployment``
584  steps on a single node.
585
586  This was achieved by implementing two changes on the ``ParamikoSSHClient``
587  class:
588
589  1. ``put()`` method now tries to re-use the existing open SFTP connection
590     if one already exists instead of re-creating a new one for each
591     ``put()`` call.
592  2. New ``putfo()`` method has been added to the ``ParamikoSSHClient`` class
593     which utilizes the underlying ``sftp.putfo()`` method.
594
595     This method doesn't need to buffer the whole file content in memory and
596     also supports pipelining which makes uploads much faster and more
597     efficient for larger files.
598
599  [Tomaz Muraus - @Kami]
600
601- [Deployment] Add ``__repr__()`` and ``__str__()`` methods to all the
602  Deployment classes.
603  [Tomaz Muraus - @Kami]
604
605- [Deployment] New ``keep_alive`` and ``use_compression`` arguments have been
606  added to the ``ParamikoSSHClient`` class constructor.
607
608  Right now those are not exposed yet to the ``deploy_node()`` method.
609  [Tomaz Muraus - @Kami]
610
611- [Deployment] Update ``ParamikoSSHClient.put()`` method so it returns a
612  correct path when commands are being executed on a Windows machine.
613
614  Also update related deployment classes so they correctly handle situation
615  when we are executing commands on a Windows server.
616  [Arthur Kamalov, Tomaz Muraus]
617
618- [Outscale] Add a new driver for the Outscale provider. Existing Outscale
619  driver utilizes the EC2 compatible API and this one utilizes native Outscale
620  API.
621  (GITHUB-1476)
622  [Tio Gobin - @tgn-outscale]
623
624- [KubeVirt] Add new methods for managing services which allows users to expose
625  ports for the VMs (``ex_list_services``, ``ex_create_service``,
626  ``ex_delete_service``).
627  (GITHUB-1478)
628  [Eis D. Zaster - @Eis-D-Z]
629
630Container
631~~~~~~~~~
632
633- [LXD] Add new methods for managing network and storage pool capabilities and
634  include other improvements in some of the existing methods.
635  (GITHUB-1477)
636  [Eis D. Zaster - @Eis-D-Z]
637
638Changes in Apache Libcloud 3.1.0
639--------------------------------
640
641Compute
642~~~~~~~
643
644- [GCE] Add latest Ubuntu image families (Ubuntu 20.04) to the driver.
645
646  (GITHUB-1449)
647  [Christopher Lambert - @XN137]
648
649- [DigitalOcean] Add ``location`` argument to the ``list_sizes()`` method.
650
651  NOTE: Location filtering is performed on the client.
652  (GITHUB-1455, GITHUB-1456)
653  [RobertH1993]
654
655- Fix ``deploy_node()`` so an exception is not thrown if any of the output
656  (stdout / stderr) produced by the deployment script contains a non-valid utf-8
657  character.
658
659  Previously, user would see an error similar to "Failed after 3 tries: 'utf-8'
660  codec can't decode byte 0xc0 in position 37: invalid start byte".
661
662  And now we simply ignore byte sequences which we can't decode and include
663  rest of the output which can be decoded.
664
665  (GITHUB-1459)
666  [Tomaz Muraus - @Kami]
667
668- Add new ``timeout`` argument to ``ScriptDeployment`` and
669  ``ScriptFileDeployment`` class constructor.
670
671  With this argument, user can specify an optional run timeout for that
672  deployment step run.
673  (GITHUB-1445)
674  [Tomaz Muraus - @Kami]
675
676- [GiG G8] Fix retry functionality when creating port forwards and add support
677  for automatically refresing the JWT auth token inside the connection class if
678  it's about to expire in 60 seconds or less.
679  (GITHUB-1465)
680  [Jo De Boeck - @grimpy]
681
682- [Azure ARM] Update ``create_node`` so an exception is thrown if user passes
683  ``ex_use_managed_disks=False``, but doesn't provide a value for the
684  ``ex_storage_account`` argument.
685  (GITHUB-1448)
686  [@antoinebourayne]
687
688Storage
689~~~~~~~
690
691- [AWS S3] Make sure driver works correctly for objects with ``~`` in the name.
692
693  Now when sanitizing the object name, we don't url encode ``~`` character.
694
695  Reported by Michael Militzer - @mmilitzer.
696  (GITHUB-1452, GITHUB-1457)
697  [Tomaz Muraus]
698
699DNS
700~~~
701
702- [CloudFlare] Update driver to include the whole error chain the thrown
703  exception message field.
704
705  This makes various issues easier to debug since the whole error context is
706  included.
707  [Tomaz Muraus]
708
709- [Gandi Live, CloudFlare, GCE] Add support for managing ``CAA`` record types.
710
711  When creating a ``CAA`` record, data field needs to be in the following
712  format:
713
714  ``<flags> <tag> <domain name>``
715
716  For example:
717
718  - ``0 issue caa.example.com``
719  - ``0 issuewild caa.example.com``
720  - ``0 iodef https://example.com/reports``
721
722  (GITHUB-1463, GITHUB-1464)
723  [Tomaz Muraus]
724
725- [Gandi Live] Don't throw if ``extra['rrset_ttl']`` argument is not passed
726  to the ``create_record`` method.
727  (GITHUB-1463)
728  [Tomaz Muraus]
729
730Other
731~~~~~
732
733- Update ``contrib/Dockerfile`` which can be used for running tests so
734  it only run tests with Python versions we support. This means dropping
735  support for Python < 3.5 and adding support for Python 3.7 and 3.8.
736
737  Also update it to use a more recent Ubuntu version (18.04) and Python 3
738  for running tox target.
739  (GITHUB-1451)
740  [Tomaz Muraus - @Kami, HuiFeng Tang - @99Kies]
741
742Changes in Apache Libcloud 3.0.0
743--------------------------------
744
745Common
746~~~~~~
747
748- Make sure ``auth_user_info`` variable on the OpenStack identify connection
749  class is populated when using auth version ``3.x_password`` and
750  ``3.x_oidc_access_token``.
751
752  (GITHUB-1436)
753  [@lln-ijinus, Tomaz Muraus)
754
755- [OpenStack] Update OpenStack identity driver so a custom project can be
756  selected using ``domain_name`` keyword argument containing a project id.
757
758  Previously this argument value could only contain a project name, now the
759  value will be checked against project name and id.
760
761  (GITHUB-1439)
762  [Miguel Caballer - @micafer]
763
764Compute
765~~~~~~~
766
767- [GCE] Update ``create_node()`` method so it throws an exception if node
768  location can't be inferred and location is not specified by the user (
769  either by passing ``datacenter`` constructor argument or by passing
770  ``location`` argument to the method).
771
772  Reported by Kevin K. - @kbknapp.
773  (GITHUB-1443)
774  [Tomaz Muraus]
775
776- [GCE] Update ``ex_get_disktype`` method so it works if ``zone`` argument is
777  not set.
778  (GITHUB-1443)
779  [Tomaz Muraus]
780
781- [GiG G8] Add new driver for GiG G8 provider (https://gig.tech/).
782  (GITHUB-1437)
783  [Jo De Boeck - @grimpy]
784
785- Add new ``at_exit_func`` argument to ``deploy_node()`` method. With this
786  argument user can specify which function will be called before exiting
787  with the created node in question if the deploy process has been canceled
788  after the node has been created, but before the method has fully finished.
789
790  This comes handy since it simplifies various cleanup scenarios.
791  (GITHUB-1445)
792  [Tomaz Muraus - @Kami]
793
794- [OpenStack] Fix auto assignment of volume device when using device name
795  ``auto`` in the ``attach_volume`` method.
796  (GITHUB-1444)
797  [Joshua Hesketh - @jhesketh]
798
799- [Kamatera] Add new driver for Kamatera provider (https://www.kamatera.com).
800  (GITHUB-1442)
801  [Ori Hoch - @OriHoch]
802
803Storage
804~~~~~~~
805
806- Add new ``download_object_range`` and ``download_object_range_as_stream``
807  methods for downloading part of the object content (aka range downloads) to
808  the base storage API.
809
810  Currently those methods are implemented for the local storage Azure Blobs,
811  CloudFiles, S3 and any other provider driver which is based on the S3 one
812  (such as Google Storage and DigitalOcean Spaces).
813  (GITHUB-1431)
814  [Tomaz Muraus]
815
816- Add type annotations for the base storage API.
817  (GITHUB-1410)
818  [Clemens Wolff - @c-w]
819
820- [Google Storage] Update the driver so it supports service account HMAC
821  credentials.
822
823  There was a bug in the code where we used the user id length check to
824  determine the account type and that code check didn't take service
825  account HMAC credentials (which contain a longer string) into account.
826
827  Reported by Patrick Mézard - pmezard.
828  (GITHUB-1437, GITHUB-1440)
829  [Yoan Tournade - @MonsieurV]
830
831DNS
832~~~
833
834- Add type annotations for the base DNS API.
835  (GITHUB-1434)
836  [Tomaz Muraus]
837
838Container
839~~~~~~~~~
840
841- [Kubernetes] Add support for the client certificate and static token based
842  authentication to the driver.
843  (GITHUB-1421)
844  [Tomaz Muraus]
845
846- Add type annotations for the base container API.
847  (GITHUB-1435)
848  [Tomaz Muraus]
849
850
851Changes in Apache Libcloud v2.8.3
852---------------------------------
853
854Compute
855~~~~~~~
856
857- Fix ``deploy_node()`` so an exception is not thrown if any of the output
858  (stdout / stderr) produced by the deployment script contains a non-valid utf-8
859  character.
860
861  Previously, user would see an error similar to "Failed after 3 tries: 'utf-8'
862  codec can't decode byte 0xc0 in position 37: invalid start byte".
863
864  And now we simply ignore byte sequences which we can't decode and include
865  rest of the output which can be decoded.
866
867  (GITHUB-1459)
868  [Tomaz Muraus - @Kami]
869
870Storage
871~~~~~~~
872
873- [AWS S3] Make sure driver works correctly for objects with ``~`` in the name.
874
875  Now when sanitizing the object name, we don't url encode ``~`` character.
876
877  Reported by Michael Militzer - @mmilitzer.
878  (GITHUB-1452, GITHUB-1457)
879  [Tomaz Muraus]
880
881Changes in Apache Libcloud v2.8.2
882---------------------------------
883
884Compute
885~~~~~~~
886
887- Add support for Ed25519 private keys for ``deploy_node()`` functionality
888  when using paramiko >= 2.2.0.
889  (GITHUB-1445)
890  [Tomaz Muraus - @Kami]
891
892- Fix ``deploy_node()`` so it correctly propagates an exception is a private key
893  which is used is password protected, but no password is specified.
894
895  Previously it incorrectly tried to retry on such exception. This means the
896  exception would only bubble up after all the retry attempts have been
897  exhausted.
898  (GITHUB-1445)
899  [Tomaz Muraus - @Kami]
900
901- Allow user to specify password for encrypted keys by passing
902  ``ssh_key_password`` argument to the ``deploy_node()`` method.
903
904  Previously they
905  (GITHUB-1445)
906  [Tomaz Muraus - @Kami]
907
908- Fix ``deploy_node()`` so it correctly propagates an exception if invalid
909  or unsupported private key is used.
910
911  Previously it incorrectly tried to retry on such exception. This means the
912  exception would only bubble up after all the retry attempts have been
913  exhausted.
914  (GITHUB-1445)
915  [Tomaz Muraus - @Kami]
916
917- Fix ``deploy_node()`` method so we don't retry on fatal
918  ``SSHCommandTimeoutError`` exception (exception which is thrown when a
919  command which is running on remote host times out).
920  (GITHUB-1445)
921  [Tomaz Muraus - @Kami]
922
923- Add new ``timeout`` argument to ``ScriptDeployment`` and
924  ``ScriptFileDeployment`` class constructor.
925
926  With this argument, user can specify an optional run timeout for that
927  deployment step run.
928  (GITHUB-1445)
929  [Tomaz Muraus - @Kami]
930
931- Add new ``stdout`` and ``stderr`` attribute to ``SSHCommandTimeoutError``
932  class.
933
934  Those attributes contain value of stdout and stderr produced so far.
935  (GITHUB-1445)
936  [Tomaz Muraus - @Kami]
937
938- [OpenStack] Fix auto assignment of volume device when using device name
939  ``auto`` in the ``attach_volume`` method.
940  (GITHUB-1444)
941  [Joshua Hesketh - @jhesketh]
942
943Changes in Apache Libcloud v2.8.1
944---------------------------------
945
946Common
947~~~~~~
948
949- Fix ``LIBCLOUD_DEBUG_PRETTY_PRINT_RESPONSE`` functionality and make sure it
950  works correctly under Python 3 when ``response.read()`` function returns
951  unicode and not bytes.
952
953  (GITHUB-1430)
954  [Tomaz Muraus]
955
956Compute
957~~~~~~~
958
959- [GCE] Fix ``list_nodes()`` method so it correctly handles pagination
960  and returns all the nodes if there are more than 500 nodes available
961  in total.
962
963  Previously, only first 500 nodes were returned.
964
965  Reported by @TheSushiChef.
966  (GITHUB-1409, GITHUB-1360)
967  [Tomaz Muraus]
968
969- Fix some incorrect type annotations in the base compute API.
970
971  Reported by @dpeschman.
972  (GITHUB-1413)
973  [Tomaz Muraus]
974
975- [OpenStack] Fix error with getting node id in ``_to_floating_ip`` method
976  when region is not called ``nova``.
977  (GITHUB-1411, GITHUB-1412)
978  [Miguel Caballer - @micafer]
979
980- [EC2] Fix ``ex_userdata`` keyword argument in the ``create_node()`` method
981  being ignored / not working correctly.
982
983  NOTE: This regression has been inadvertently introduced in v2.8.0.
984  (GITHUB-1426)
985  [Dan Chaffelson - @Chaffelson]
986
987- [EC2] Update ``create_volume`` method to automatically select first available
988  availability zone if one is not explicitly provided via ``location`` argument.
989  [Tomaz Muraus]
990
991Storage
992~~~~~~~
993
994- [AWS S3] Fix upload object code so uploaded data MD5 checksum check is not
995  performed at the end of the upload when AWS KMS server side encryption is
996  used.
997
998  If AWS KMS server side object encryption is used, ETag header value in the
999  response doesn't contain data MD5 digest so we can't perform a checksum
1000  check.
1001
1002  Reported by Jonathan Harden - @jfharden.
1003  (GITHUB-1401, GITHUB-1406)
1004  [Tomaz Muraus - @Kami]
1005
1006- [Google Storage] Fix a bug when uploading an object would fail and result
1007  in 401 "invalid signature" error when object mime type contained mixed
1008  casing and when S3 Interoperability authentication method was used.
1009
1010  Reported by Will Abson - wabson.
1011  (GITHUB-1417, GITHUB-1418)
1012  [Tomaz Muraus]
1013
1014- Fix ``upload_object_via_stream`` method so "Illegal seek" errors which
1015  can arise when calculating iterator content hash are ignored. Those errors
1016  likely indicate that the underlying file handle / iterator is a pipe which
1017  doesn't support seek and that the error is not fatal and we should still
1018  proceed.
1019
1020  Reported by Per Buer - @perbu.
1021
1022  (GITHUB-1424, GITHUB-1427)
1023  [Tomaz Muraus]
1024
1025DNS
1026~~~
1027
1028- [Gandi Live] Update the driver and make sure it matches the latest service /
1029  API updates.
1030  (GITHUB-1416)
1031  [Ryan Lee - @zepheiryan]
1032
1033- [CloudFlare] Fix ``export_zone_to_bind_format`` method.
1034
1035  Previously it threw an exception, because ``record.extra`` dictionary
1036  didn't contain ``priority`` key.
1037
1038  Reported by James Montgomery - @gh-jamesmontgomery.
1039  (GITHUB-1428, GITHUB-1429)
1040  [Tomaz Muraus]
1041
1042Changes in Apache Libcloud v2.8.0
1043---------------------------------
1044
1045Common
1046------
1047
1048- Fix a regression with ``get_driver()`` method not working if ``provider``
1049  argument value was a string (e.g. using ``get_driver('openstack')``
1050  instead of ``get_driver(Provider.OPENSTACK)``).
1051
1052  Only officially supported and recommended approach still is to use
1053  ``Provider.FOO`` enum type constant, but since the string notation was
1054  unofficially supported in the past, we will still support it until the next
1055  major release.
1056
1057  Reported by @dpeschman.
1058  (GITHUB-1391, GITHUB-1390)
1059  [Tomaz Muraus]
1060
1061- Include ``py.typed`` data file to signal that this package contains type
1062  annotations / hints.
1063
1064  NOTE: At the moment, type annotations are only available for the base
1065  compute API.
1066  [Tomaz Muraus]
1067
1068- Fix universal wheel METADATA and ensure conditional dependencies
1069  (backports.ssl_match_hostname, typing, enum34) are handled correctly.
1070
1071  Reported by Adam Terrey (@arterrey).
1072  (GITHUB-1392, GITHUB-1393)
1073  [Tomaz Muraus]
1074
1075Compute
1076-------
1077
1078- [DigitalOcean] Fix ``attach_volume`` and ``detach_volume`` methods.
1079  Previously those two methods incorrectly passed volume id instead of
1080  volume name to the API. (GITHUB-1380)
1081  [@mpempekos]
1082
1083- [GCE] Add ``ex_disk_size`` argument to the ``create_node`` method.
1084  (GITHUB-1386, GITHUB-1388)
1085  [Peter Yu - @yukw777]
1086
1087- [VMware vCloud] Various improvements, fixes and additions to the driver.
1088  (GITHUB-1373)
1089  [OpenText Corporation]
1090
1091- Update ``deploy_node()`` method so it now only passes non-deploy node
1092  keyword arguments + ``auth`` argument to the underlying ``create_node()``
1093  method. Previously it also passed ``deploy_node()`` specific arguments
1094  such as ``deploy``, ``ssh_username``, ``max_tries``, etc. to it.
1095
1096  Because of that, a lot of the compute drivers which support deploy
1097  functionality needed to use ``**kwargs`` in ``create_node()`` method
1098  signature which made code hard to read and error prone.
1099
1100  Also update various affected drivers to explicitly declare supported
1101  arguments in the  ``create_node()`` method signature (Dummy, Abiquo,
1102  Joyent, Bluebox, OpenStack, Gandy, VCL, vCloud, CloudStack, GoGrid
1103  HostVirtual, CloudSigma, ElasticStack, RimuHosting, SoftLayer, Voxel,
1104  Vpsnet, KTUcloud, BrightBox, ECP, OpenNebula, UPcloud).
1105
1106  As part of this change, also various issues with invalid argument names
1107  were identified and fixed.
1108  (GITHUB-1389)
1109  [Tomaz Muraus]
1110
1111- Add MyPy type annotations for ``create_node()`` and ``deploy_node()``
1112  method.
1113  (GITHUB-1389)
1114  [Tomaz Muraus]
1115
1116- [GCE] Update ``deploy_node()`` method so it complies with the base compute
1117  API and accepts ``deploy`` argument.
1118
1119  This method now also takes all the same keyword arguments which original
1120  ``create_node()`` takes.
1121  (GITHUB-1387)
1122  [Peter Yu - @yukw777, Tomaz Muraus]
1123
1124- [Common] To make debugging and troubleshooting easier, add ``__repr__``
1125  and ``__str__`` method to the ``ScriptDeployment`` class.
1126  [Tomaz Muraus]
1127
1128- [Common] Add type annotations / hints for rest of the base compute API
1129  classes and methods.
1130  [Tomaz Muraus]
1131
1132Storage
1133-------
1134
1135- [AWS S3] Make sure ``host`` driver constructor argument has priority
1136  over ``region`` argument.
1137
1138  This means if you specify ``host`` and ``region`` argument, host won't be
1139  inferred from the region, but ``host`` argument will be used for the actual
1140  connection host value.
1141  (GITHUB-1384, GITHUB-1383)
1142  [@gluap]
1143
1144Changes in Apache Libcloud v2.7.0
1145---------------------------------
1146
1147General
1148-------
1149
1150- Test code with Python 3.8 and advertise that we also support Python 3.8.
1151  (GITHUB-1371, GITHUB-1374)
1152  [Tomaz Muraus]
1153
1154Common
1155------
1156
1157- [OpenStack] Fix OpenStack project scoped token authentication. The driver
1158  constructors now accept ``ex_tenant_domain_id`` argument which tells
1159  authentication service which domain id to use for the scoped authentication
1160  token. (GITHUB-1367)
1161  [kshtsk]
1162
1163Compute
1164-------
1165
1166- Introduce type annotations for the base compute API methods. This means you
1167  can now leverage mypy to type check (with some limitations) your code which
1168  utilizes Libcloud compute API standard API methods.
1169
1170  Keep in mind that at this point, type annotations are only available for
1171  standard compute API methods.
1172  (GITHUB-1306)
1173  [Tomaz Muraus]
1174
1175- [Azure ARM] Fix ``attach_volume`` method and allow maximum of 64 disks to be
1176  added when LUN is not specified. Previously there was a bug and only a
1177  maximum of 63 disks could be added.
1178  (GITHUB-1372)
1179  [Palash Gandhi - @palashgandhi]
1180
1181- New ``start_node`` and ``stop_node`` methods have been added to the base
1182  Libcloud compute API NodeDriver class.
1183
1184  A lot of the existing compute drivers already implemented that functionality
1185  via extension methods (``ex_start_node``, ``ex_stop_node``) so it was decided
1186  to promote those methods to be part of the standard Libcloud compute API and
1187  update all the affected drivers.
1188
1189  For backward compatibility reasons, existing ``ex_start`` and ``ex_stop_node``
1190  methods will still work until a next major release.
1191
1192  (GITHUB-1375, GITHUB-1364)
1193  [Tomaz Muraus, @emakarov]
1194
1195 - [GCE] Add new ``ex_set_volume_labels`` method for managing volume labels to
1196   the driver.
1197   (GITHUB-1376)
1198   [Rob Zimmerman - @zimventures]
1199
1200- [EC2] Add support for new ``inf1.*`` instance types.
1201  [Tomaz Muraus]
1202
1203Storage
1204~~~~~~~
1205
1206- [S3] Update S3 driver so a single driver class can be used for different
1207  regions.
1208
1209  Region which is used is controled by the ``region`` driver constructor
1210  argument.
1211
1212  Previously, that driver followed "driver class per region" approach. That
1213  approach will be deprecated and removed in a future release.
1214
1215  For more information, please refer to the Upgrade Notes documentation section.
1216  (GITHUB-1371)
1217  [Tomaz Muras]
1218
1219- [S3] Add missing ``eu-north-1`` region to the S3 driver. (GITHUB-1370)
1220  [michaelsembwever]
1221
1222- [S3] Add missing regions (eu-west-3, ap-northeast-3, me-south-1) to the driver.
1223  (GITHUB-1371)
1224  [Tomaz Muras]
1225
1226- [S3] Update the driver to throw more user-friendly error message if user is
1227  using driver for a region X, but trying to upload / download object to / from
1228  a region Y. (GITHUB-1371)
1229  [Tomaz Muras]
1230
1231Changes in Apache Libcloud 2.6.1
1232--------------------------------
1233
1234Compute
1235~~~~~~~
1236
1237- [Packet] Update ``list_sizes`` method so it accepts ``ex_project_id`` argument
1238  and works with project API tokens. (GITHUB-1351) [Dimitris Moraitis - @d-mo]
1239
1240- [GCE] Fix ``GCEProject.set_common_instance_metadata`` and
1241  ``GCEproject.set_usage_export_bucket`` method. (GITHUB-1354)
1242  [Aitor Zabala - @aitorzabala, Tomaz Muraus - @Kami]
1243
1244- [GCE] Add ``sync`` / ``ex_sync`` argument to the ``ex_stop_node``,
1245  ``ex_start_node`` and ``destroy_node`` method. When this argument is set to
1246  ``False``, method will return immediately without waiting polling and waiting
1247  for a long running API operation to finish before returning. For backward
1248  compatibility reasons, it defaults to ``True``. (GITHUB-1357)
1249  [Rob Zimmerman - zimventures]
1250
1251- [GCE] Update list of image projects and add new ``centos-8`` and
1252  ``debian-10`` based images. (GITHUB-1358)
1253  [Christopher Lambert - XN137]
1254
1255- [OpenStack v2] Add new ``ex_image_ref`` argument to the ``create_volume``
1256  method. This way bootable volumes can be created from specific images.
1257  (GITHUB-1363)
1258  [Rick van de Loo]
1259
1260- [OpenStack v2] Update ``create_node_method`` and allow users to create
1261  nodes from bootable volumes without specifying ``image`` argument.
1262  (GITHUB-1362)
1263  [Rick van de Loo]
1264
1265- [AWS] Re-generate and update available EC2 instance sizes and pricing data.
1266  [Tomaz Muraus]
1267
1268Storage
1269~~~~~~~
1270
1271- [Common, S3, GCS] Reuse TCP connections when uploading files (GITHUB-1353)
1272  [Quentin Pradet]
1273
1274Load Balancer
1275~~~~~~~~~~~~~
1276
1277- [AWS] Implement various create methods in the driver. (GITHUB-1349)
1278  [Anton Kozyrev - @Irvan]
1279
1280Changes in Apache Libcloud 2.6.0
1281--------------------------------
1282
1283General
1284~~~~~~~
1285
1286- [OpenStack] Update OpenStack identity driver so a custom project can be
1287  selected using ``domain_name`` keyword argument. Previously, that wasn't
1288  possible and the first project which was returned by the API was always
1289  selected. (GITHUB-1293)
1290  [Miguel Caballer - @micafer]
1291
1292- Add new ``extra`` attribute to the base ``NodeLocation`` class. (GITHUB-1282)
1293  [Dimitris Moraitis - @d-mo]
1294
1295- Remove various code patterns which were in place for supporting multiple
1296  Python versions, including 2.5 and 2.6. Libcloud hasn't supported Python <
1297  2.7 for a while now, so we can remove that code. (GITHUB-1307)
1298  [Tomaz Muraus]
1299
1300- Also run pylint on ``libcloud/compute/`` directory and fix various pylint
1301  violations. (GITHUB-1308)
1302  [Tomaz Muraus]
1303
1304- [OpenStack] Remove unused variable in parse_error (GITHUB-1260)
1305  [Rick van de Loo]
1306
1307- Add support for HTTPS proxies and fix ``driver.set_http_proxy()`` method.
1308
1309  HTTPS proxy can be set up by either setting ``https_proxy`` / ``http_proxy``
1310  environment variable or by using
1311  ``driver.connection.connection.set_http_proxy`` method.
1312
1313  For more information, please refer to the documentation -
1314  https://libcloud.readthedocs.io/en/latest/other/using-http-proxy.html
1315  (GITHUB-1314, GITHUB-1324)
1316  [Jim Liu - @hldh214, Tomaz Muraus]
1317
1318- Fix paramiko debug logging which didn't work when using ``LIBCLOUD_DEBUG``
1319  environment variable. (GITHUB-1315)
1320  [Tomaz Muraaus]
1321
1322- Update paramiko SSH deployment client so it automatically tries to convert
1323  private keys in PEM format with a header which paramiko doesn't recognize
1324  into a format which paramiko recognizes.
1325
1326  NOTE: Paramiko only supports keys in PEM format. This means keys which start
1327  with "----BEGIN <TYPE> PRIVATE KEY-----". Keys in PKCS#8 and newer OpenSSH
1328  format are not supported.
1329
1330  For more information, see https://libcloud.readthedocs.io/en/latest/compute/deployment.html#supported-private-ssh-key-types
1331  (GITHUB-1314)
1332
1333- Update Paramiko SSH client to throw a more user-friendly error if a private
1334  key file in an unsupported format is used. (GITHUB-1314)
1335  [Tomaz Muraus]
1336
1337- Fix HTTP(s) proxy support in the OpenStack drivers. (GITHUB-1324)
1338  [Gabe Van Engel - @gvengel]
1339
1340- Fix logging connection class so it also works when data type is ``bytearray``
1341  or ``bytes``. (GITHUB-1339)
1342  [Tomaz Muraus]
1343
1344Compute
1345~~~~~~~
1346
1347- [Google Compute Engine] Fix the driver so ``list_nodes()`` method doesn't
1348  throw if there is a node in a ``SUSPENDED`` state.
1349
1350  Also update the code so it doesn't crash if an unknown node state which is
1351  not defined locally is returned by the API when listing nodes. Such states
1352  are now mapped to ``UNKNOWN``. (GITHUB-1296, LIBCLOUD-1045)
1353
1354  Reported by rafa alistair.
1355  [Tomaz Muraus]
1356
1357- [OpenStack] Fix a bug with retrieving floating IP address when a
1358  ``device_owner`` of a port is ``compute:None``. (GITHUB-1295)
1359  [Miguel Caballer - @micafer]
1360- [Packet] Add various new extension methods to Packet.net driver
1361  (``ex_reinstall_node``, ``ex_list_projects``,
1362  ``ex_get_bgp_config_for_project``, ``ex_get_bgp_config``,
1363  ``ex_list_nodes_for_project``, etc.). (GITHUB-1282)
1364  [Dimitris Moraitis - @d-mo]
1365
1366- [Maxihost] Add new compute driver for Maxihost provider
1367  (https://www.maxihost.com/). (GITHUB-1298)
1368  [Spyros Tzavaras - @mpempekos]
1369
1370- [Azure ARM] Add various improvements to the Azure ARM driver:
1371  - Add functionality to resize a volume in Azure
1372  - Add functionality to update the network profile of a node
1373  - Add functionality to update a network interface's properties
1374  - Add functionality to check IP address availability (GITHUB-1244)
1375  [Palash Gandhi - @palashgandhi]
1376
1377- [EC2] Allow user to pass arbitrary filters to ``list_volumes`` method by
1378  passing a dictionary with filters as ``ex_filters`` method argument value.
1379  (GITHUB-1300)
1380  [Palash Gandhi - @palashgandhi]
1381
1382- [GCE] Add new ``ex_instancegroupmanager_set_autohealingpolicies`` method to
1383  the GCE driver.
1384
1385  This method allows user to set the auto healing policies (health check to
1386  use and initial delay) on GCE instance group. (GITHUB-1286)
1387  [Kenta Morris - @kentamorris]
1388
1389- [GCE] Update GCE driver to include new operating system images such as
1390  Ubuntu 18.04, RHEL 8, etc. (GITHUB-1304)
1391  [Christopher Lambert - @XN137]
1392
1393- [GCE] Add new ``ex_resize_volume`` method to the driver. (GITHUB-1301)
1394  [Palash Gandhi - @palashgandhi]
1395
1396- [OpenStack] Add various router management methods to the OpenStack
1397  driver. (GITHUB-1281)
1398  [Miguel Caballer - @micafer]
1399
1400- [OpenStack] Fix ``ex_resize`` method. (GITHUB-1311)
1401  [Miguel Caballer - @micafer]
1402
1403- [OpenStack] For consistency, rename ``ex_resize`` method to
1404  ``ex_resize_node``. For backward compatibility reasons, leave ``ex_resize``
1405  alias in place.
1406  [Tomaz Muraus]
1407
1408- [Gridscale] Add new driver for Gridscale provider (https://gridscale.io).
1409  (GITHUB-1305, GITHUB-1315)
1410  [Sydney Weber - @PrinceSydney]
1411
1412- [Oneandone] Update Oneandone driver to accomodate latest changes to the API.
1413  This means removing deprecated ``ex_remove_server_firewall_policy`` method
1414  and replacing ``port_from`` and ``port_to`` argument on the firewall policy
1415  with a single ``port`` attribute.
1416  (GITHUB-1230)
1417  [Amel Ajdinovic - @aajdinov]
1418
1419- [DigitalOcean] Update ``list_locations`` method in the DigitalOcean driver
1420  to only returns regions which are available by default. If you want to list
1421  all the regions, you need to pass ``ex_available=False`` argument to the
1422  method. (GITHUB-1001)
1423  [Markos Gogoulos]
1424
1425- [EC2] Add new ``ex_modify_subnet_attribute`` method to the EC2 driver.
1426  (GITHUB-1205)
1427  [Dan Hunsaker - @danhunsaker]
1428
1429- [Azure ARM] Add ``ex_delete_public_ip`` method to the Azure ARM driver.
1430  (GITHUB-1318)
1431  [Reza Shahriari - redha1419]
1432
1433- [EC2] Update EC2 driver to throw a more user-friendly exception if a user /
1434  developer tries to provide an invalid value type for an item value in the
1435  request ``params`` dictionary.
1436
1437  Request parameters are sent via query parameters and not via request body,
1438  as such, only string values are supported. (GITHUB-1329, GITHUB-1321)
1439
1440  Reported by James Bednell.
1441  [Tomaz Muraus]
1442
1443- [OpenStack] Add new ``ex_remove_security_group_from_node`` method.
1444  (GITHUB-1331)
1445  [Miguel Caballer - @micafer]
1446
1447- [OpenStack] Fix broken ``ex_update_port`` method.
1448  (GITHUB-1320)
1449  [Miguel Caballer - @micafer]
1450
1451- [Softlayer] Fix a bug with driver incorrectly handling the value of
1452  ``ex_hourly`` argument in the ``create_node()`` method which caused nodes
1453  to always be created with hourly billing, even if this argument was set to
1454  ``False``. (GITHUB-1334, GITHUB-1335)
1455  [@r2ronoha]
1456
1457- [GCE] Add optional ``cpuPlatform`` and ``minCpuPlatform`` attributes to the
1458  ``node.extra`` dictionary. (GITHUB-1342, GITHUB-1343)
1459  [@yairshemla]
1460
1461Storage
1462~~~~~~~
1463
1464- [Azure Blobs] Enable the Azure storage driver to be used with the Azurite
1465  Storage Emulator and Azure Blob Storage on IoT Edge.
1466  (LIBCLOUD-1037, GITHUB-1278)
1467  [Clemens Wolff - @c-w]
1468
1469- [Azure Blobs] Fix a bug with Azure storage driver works when used against a
1470  storage account that was created using ``kind=BlobStrage``. This includes
1471  updating the minimum API version used / supported by the storage driver from
1472  ``2012-02-12`` to ``2014-02-14``. (LIBCLOUD-851, GITHUB-1202, GITHUB-1294)
1473  [Clemens Wolff - @c-w, Davis Kirkendall - @daviskirk]
1474
1475- [Azure Blobs] Increase the maximum size of block blobs that can be created
1476  to 100 MB. This includes updating the minimum API version used / supported
1477  by the storage driver from ``2014-02-14`` to ``2016-05-31``. (GITHUB-1340)
1478  [Clemens Wolff - @c-w]
1479
1480- [Azure Blobs] Set the minimum required version of requests to ``2.5.0`` since
1481  requests ``2.4.0`` and earlier exhibit XML parsing errors of Azure Storage
1482  responses. (GITHUB-1325, GITHUB-1322)
1483  [Clemens Wolff - @c-w]
1484
1485- [Azure Blobs] Detect bad version of requests that leads to errors in parsing
1486  Azure Storage responses. This scenario is known to happen on RHEL 7.6 when
1487  requests was installed via yum. (GITHUB-1332, GITHUB-1322)
1488  [Clemens Wolff - @c-w]
1489
1490- [Common, CloudFiles] Fix ``upload_object_via_stream`` and ensure we start
1491  from the beginning when calculating hash for the provided iterator. This way
1492  we avoid hash mismatch errors in scenario where provided iterator is already
1493  iterated / seeked upon before calculating the hash. (GITHUB-1326)
1494  [Gabe Van Engel - @gvengel, Tomaz Muraus]
1495
1496- [Backblaze B2] Fix a bug with driver not working correctly due to a
1497  regression which was inadvertently introduced in one of the previous
1498  releases. (GITHUB-1338, GITHUB-1339)
1499
1500  Reported by Shawn Nock - @nocko.
1501  [Tomaz Muraus]
1502
1503- [Backblaze B2] Fix ``upload_object_via_stream`` method. (GITHUB-1339)
1504  [Tomaz Muraus]
1505
1506DNS
1507~~~
1508
1509- [Cloudflare] Re-write the Cloudflare DNS driver to use Cloudflare API v4.
1510  (LIBCLOUD-1001, LIBCLOUD-994, GITHUB-1292)
1511  [Clemens Wolff - @c-w]
1512
1513- [Gandi LiveDNS] Add new driver for Gandi LiveDNS service. (GITHUB-1323)
1514  [Ryan Lee - @zepheiryan]
1515
1516- [PowerDNS] Update driver so it works with API v3 and v4. #1328
1517  [@biggosh]
1518
1519Changes in Apache Libcloud 2.5.0
1520--------------------------------
1521
1522General
1523~~~~~~~
1524
1525- [NTT CIS] Add loadbalancer and compute drivers for NTT-CIS, rename
1526  dimensiondata modules to NTT-CIS. (GITHUB-1250)
1527  [Mitch Raful]
1528
1529- [NTT CIS] Fix loadbalancer docs. (GITHUB-1270)
1530  [Mitch Raful]
1531
1532- Use assertIsNone instead of assertEqual with None in tests (GITHUB-1264)
1533  [Ken Dreyer]
1534
1535- Updating command line arguments to current version in Azure examples.
1536  (GITHUB-1273)
1537  [mitar]
1538
1539- [GCE, SoftLayer] Update GCE and Softlayer drivers to utilize crypto
1540  primitives from the ``cryptography`` library instead of deprecated and
1541  unmaintained ``PyCrypto`` library.
1542
1543  (GITHUB-1280)
1544  [Ryan Petrello]
1545
1546- Fix ``libcloud.enable_debug`` function so it doesn't leak open file handle
1547  and closes the open file when the program exits when a debug mode is used.
1548  [Tomaz Muraus]
1549
1550* Update various drivers (CloudFiles, NTT CIS etc.) so they don't leak open
1551  file handles in some situations.
1552  [Tomaz Muraus]
1553
1554Common
1555~~~~~~
1556
1557- [OpenStack] Handle missing user enabled attribute (GITHUB-1261)
1558  [Ken Dreyer]
1559
1560- [Google Cloud Storage] Handle Interoperability access keys of more than 20
1561  characters. (GITHUB-1272)
1562  [Yoan Tournade]
1563
1564Compute
1565~~~~~~~
1566
1567- [OpenStack] Implement OpenStack_1_1_NodeDriver ex_get_snapshot (GITHUB-1257)
1568  [Rick van de Loo]
1569
1570- [OpenStack] Pagination in various OpenStack_2_NodeDriver methods (GITHUB-1263)
1571  [Rick van de Loo]
1572
1573- [OpenStack] Implement OpenStack_2_NodeDriver ex_create_subnet (LIBCLOUD-874,
1574  GITHUB-1242)
1575  [Miguel Caballer]
1576
1577- [OpenStack] Implement OpenStack_2_NodeDriver ex_delete_subnet (LIBCLOUD-874,
1578  GITHUB-1242)
1579  [Miguel Caballer]
1580
1581- [OpenStack] Implement OpenStack_2_NodeDriver list_volumes (LIBCLOUD-874,
1582  GITHUB-1242)
1583  [Miguel Caballer]
1584
1585- [OpenStack] Implement OpenStack_2_NodeDriver ex_get_volume (LIBCLOUD-874,
1586  GITHUB-1242)
1587  [Miguel Caballer]
1588
1589- [OpenStack] Implement OpenStack_2_NodeDriver create_volume (LIBCLOUD-874,
1590  GITHUB-1242)
1591  [Miguel Caballer]
1592
1593- [OpenStack] Implement OpenStack_2_NodeDriver destroy_volume (LIBCLOUD-874,
1594  GITHUB-1242)
1595  [Miguel Caballer]
1596
1597- [OpenStack] Implement OpenStack_2_NodeDriver ex_list_snapshots (LIBCLOUD-874,
1598  GITHUB-1242)
1599  [Miguel Caballer]
1600
1601- [OpenStack] Implement OpenStack_2_NodeDriver create_volume_snapshot
1602  (LIBCLOUD-874, GITHUB-1242)
1603  [Miguel Caballer]
1604
1605- [OpenStack] Implement OpenStack_2_NodeDriver destroy_volume_snapshot
1606  (LIBCLOUD-874, GITHUB-1242)
1607  [Miguel Caballer]
1608
1609- [OpenStack] Implement OpenStack_2_NodeDriver ex_list_security_groups
1610  (LIBCLOUD-874, GITHUB-1242)
1611  [Miguel Caballer]
1612
1613- [OpenStack] Implement OpenStack_2_NodeDriver ex_create_security_group
1614  (LIBCLOUD-874, GITHUB-1242)
1615  [Miguel Caballer]
1616
1617- [OpenStack] Implement OpenStack_2_NodeDriver ex_delete_security_group
1618  (LIBCLOUD-874, GITHUB-1242)
1619  [Miguel Caballer]
1620
1621- [OpenStack] Implement OpenStack_2_NodeDriver ex_create_security_group_rule
1622  (LIBCLOUD-874, GITHUB-1242)
1623  [Miguel Caballer]
1624
1625- [OpenStack] Implement OpenStack_2_NodeDriver ex_delete_security_group_rule
1626  (LIBCLOUD-874, GITHUB-1242)
1627  [Miguel Caballer]
1628
1629- [OpenStack] Implement OpenStack_2_NodeDriver ex_list_floating_ip_pools
1630  (LIBCLOUD-874, GITHUB-1242)
1631  [Miguel Caballer]
1632
1633- [OpenStack] Fix parse_error if 'code' not in API response message
1634  (GITHUB-1242)
1635  [Miguel Caballer]
1636
1637- [OpenStack] Adapt _to_port function to work with old OpenStack versions
1638  (GITHUB-1242)
1639  [Miguel Caballer]
1640
1641- [OpenStack] Use SUSPENDED NodeState in OpenStack driver (GITHUB-1269)
1642  [Miguel Caballer]
1643
1644- [UpCloud] Update documentation for UpCloud driver (LIBCLOUD-1026,
1645  GITHUB-1259)
1646  [Ilari Mäkelä]
1647
1648- [NTT CIS] Fix indenting in ex_initiate_drs_failover docstring (GITHUB-1271)
1649  [Rick van de Loo]
1650
1651- [NTT CIS] Change endpoint 'canada' to 'ca' in libcloud/common/nttcis.py
1652  (GITHUB-1270)
1653  [Mitch Raful]
1654
1655- [OpenStack] Fix ``detach_volume`` method so it works with v2 volumes.
1656  (GITHUB-1267)
1657  [Rick van de Loo]
1658
1659- [CloudSigma] Fix CloudSigma driver so it correctly handles subscription
1660  objects without the ``start_time`` and / or ``end_time`` attribute.
1661  (GITHUB-1284, LIBCLOUD-1040)
1662  [aki-k, Tomaz Muraus]
1663
1664Storage
1665~~~~~~~
1666
1667- [Azure] Fix ``upload_object_via_stream`` method so it also works with
1668  iterators which don't implement ``seek()`` method. If the iterator doesn't
1669  support seek, entire iterator content will be buffered in memory.
1670  (LIBCLOUD-1043, GITHUB-1287)
1671  [Clemens Wolff]
1672- [CloudFiles] Fix ``download_object_as_stream`` method in the CloudFiles
1673  driver. This regression / bug was inadvertently introduced when migrating
1674  code to ``requests``.
1675  (LIBCLOUD-1039, GITHUB-1283)
1676  [Matt Seymour]
1677- [CloudFiles] Fix a bug with ``ChunkStreamReader`` class and make sure file
1678  descriptor is also closed if the iterator isn't fully exhausted or if the
1679  iterator is never read from.
1680
1681  NOTE: This potential open file descriptor leakage only affected code which
1682  utilized ``ex_multipart_upload_object`` method.
1683  [Tomaz Muraus]
1684
1685Container
1686~~~~~~~~~
1687
1688- [Docker] Improve docstring for RegistryClient (GITHUB-1254)
1689  [Ken Dreyer]
1690
1691DNS
1692~~~
1693
1694- Add new driver for RcodeZero DNS (GITHUB-1256, LIBCLOUD-1025)
1695  [MikeAT]
1696- [DigitalOcean] Update DigitalOcean driver so it supports ``ttl`` attribute for
1697  ``Record`` objects. This includes support for specifying a record ttl via
1698  ``extra['ttl']`` attribute when creating and updating a record. (GITHUB-1252
1699  LIBCLOUD-1022) [Kevin Roy]
1700
1701Storage
1702~~~~~~~
1703
1704- Adds missing docs for param ex_prefix & adds to DummyStore. Add ex_prefix
1705  kwarg to the `list_container_objects` methods in the base and dummy classes.
1706  (GITHUB-1275)
1707  [RichardARPANET]
1708
1709Changes in Apache Libcloud 2.4.0
1710--------------------------------
1711
1712- Refuse installation with Python 2.6 and Python 3.3 (support was
1713  already dropped in Libcloud 2.3.0)
1714
1715- Support Python 3.7 (GITHUB-1227, GITHUB-1236)
1716  [Andreas Hasenack, Andrew Starr-Bochicchio, Quentin Pradet]
1717
1718- Cleanup various Python files
1719  (GITHUB-1182, GITHUB-1183, GITHUB-1185, GITHUB-1186, GITHUB-1187, GITHUB-1188)
1720  [Rémy Léone]
1721
1722- Allow running tests with http_proxy set (GITHUB-1236)
1723  [Andreas Hasenack]
1724
1725Common
1726~~~~~~
1727
1728- [OpenStack] Document openstack_connection_kwargs method (GITHUB-1219)
1729  [Ken Dreyer]
1730
1731- [OpenStack] Handle missing user email in OpenStackIdentityUser (GITHUB-1249)
1732  [Ken Dreyer]
1733
1734Compute
1735~~~~~~~
1736
1737- [ARM] Support OS disk size definition on node creation (GITHUB-1196)
1738  [Vojta Bartoš]
1739
1740- [Digital Ocean] Support floating IPs (GITHUB-1177)
1741  [Rick van de Loo]
1742
1743- [Digital Ocean] Support attach/detach for floating IPs (GITHUB-1191)
1744  [Rick van de Loo]
1745
1746- [Digital Ocean] Add ex_get_node_details (GITHUB-1221)
1747  [Rick van de Loo]
1748
1749- [Digital Ocean] Add tags extra attribute to create_node (GITHUB-1212)
1750  [Nikita Chebykin]
1751
1752- [Dimension Data] Fix IndexError in list_images (GITHUB-1171)
1753  [Adam Friedman]
1754
1755- [EC2] Add AWS eu-west-3 (Paris) region (GITHUB-1175)
1756  [Anthony Monthe]
1757
1758- [EC2] Add description to ex_authorize_security_group_ingress (GITHUB-1122)
1759  [Arturo Noha]
1760
1761- [EC2] Added script to automatically get EC2 instance sizes (GITHUB-1211)
1762  [Anthony Monthe, Quentin Pradet]
1763
1764- [EC2] Update instance sizes (GITHUB-1238)
1765  [Ward Vandewege]
1766
1767- [EC2] Accept tags when create a snapshot (LIBCLOUD-1014, GITHUB-1240)
1768  [Rafael Gonçalves]
1769
1770- [GCE] Expand Firewall options coverage (LIBCLOUD-960, GITHUB-1144)
1771  [maxlip]
1772
1773- [GCE] Expand network and subnetwork options coverage (LIBCLOUD-985,
1774  GITHUB-1181)
1775  [maxlip]
1776
1777- [GCE] Extend ex_create_address to allow internal ip creation (GITHUB-1174)
1778  [Jeremy Solarz]
1779
1780- [GCE] Allow shared VPC in managed instance group creation (GITHUB-1179)
1781  [Boris Chazalet]
1782
1783- [GCE] Support disk_size parameter for boot disk when creating instance
1784  (LIBCLOUD-973, GITHUB-1162)
1785  [Rahul Paigavan]
1786
1787- [GCE] Update public image projects list (LIBCLOUD-961, GITHUB-1143)
1788  [Sean Marlow]
1789
1790- [GCE] Fix _find_zone_or_region for >500 instances (GITHUB-1203)
1791  [Léo Ferlin-Sutton]
1792
1793- [GCE] Allow routing_mode=None in ex_create_network (GITHUB-1217)
1794  [Daniel Hunsaker]
1795
1796- [OpenStack] Implement Glance Image API v2 (GITHUB-1151)
1797  [Rick van de Loo]
1798
1799- [OpenStack] Fix spelling in ex_files description (GITHUB-1197)
1800  [Ken Dreyer]
1801
1802- [OpenStack v2] Allow listing image members (GITHUB-1172)
1803  [Rick van de Loo]
1804
1805- [OpenStack v2] Allow creating and accepting image members (GITHUB-1176)
1806  [Rick van de Loo]
1807
1808- [OpenStack v2] Fix image members methods (GITHUB-1190)
1809  [Rick van de Loo]
1810
1811- [OpenStack] Fix API doc for delete_floating_ip (GITHUB-1218)
1812  [Ken Dreyer]
1813
1814- [OpenStack] Implement port attaching/detaching (GITHUB-1225)
1815  [Rick van de Loo]
1816
1817- [OpenStack] Add methods for getting and creating ports (GITHUB-1226)
1818  [Alexander Grooff]
1819
1820- [OpenStack] Add get_user method (GITHUB-1216)
1821  [Ken Dreyer]
1822
1823- [OpenStack] Add ex_list_subnets to OpenStack_2_NodeDriver (GITHUB-1215,
1824  LIBCLOUD-604)
1825  [Miguel Caballer]
1826
1827- [OpenStack] The OpenStack_2_NodeDriver uses two connections (GITHUB-1215,
1828  LIBCLOUD-997)
1829  [Miguel Caballer]
1830
1831- [OpenStack] The OpenStack_2_NodeDriver /v2.0/networks instead of /os-networks
1832  (GITHUB-1215, LIBCLOUD-998)
1833  [Miguel Caballer]
1834
1835- [Scaleway] New Scaleway driver (GITHUB-1121, GITHUB-1220)
1836  [Daniel Hunsaker, Nándor István Krácser, Rémy Léone]
1837
1838- [Scaleway] Update Scaleway default API host (GITHUB-1239)
1839  [Rémy Léone]
1840
1841DNS
1842~~~
1843
1844- [Google Cloud DNS] Document driver instantiation (GITHUB-1198)
1845  [Gareth McFarlane]
1846
1847Storage
1848~~~~~~~
1849
1850- Update docstring for storage provider class (GITHUB-1201)
1851  [Clemens Wolff]
1852
1853- [Azure Blob Storage] Allow filtering lists by prefix (LIBCLOUD-986,
1854  GITHUB-1193)
1855  [Joshua Hawkinson]
1856
1857- [Azure Blob Storage] Update driver documentation (GITHUB-1208)
1858  [Clemens Wolff]
1859
1860- [Azure Blob Storage] Fix upload/download streams (GITHUB-1231)
1861  [Michael Perel]
1862
1863- [Azure Blob Storage] Fix PageBlob headers (GITHUB-1237)
1864  [Andreas Hasenack]
1865
1866- [S3] Guess s3 upload content type (LIBCLOUD-958, GITHUB-1195)
1867  [Iuri de Silvio]
1868
1869- [S3] Add Amazon S3 (cn-northwest-1) Storage Driver (GITHUB-1241)
1870  [@yangkang55]
1871
1872Other
1873~~~~~
1874
1875- Fixed spelling in 2.0 changes documentation (GITHUB-1228)
1876  [Jimmy Casey]
1877
1878Changes in Apache Libcloud 2.3.0
1879--------------------------------
1880
1881- Drop support for Python 2.6 and Python 3.3
1882  They're no longer supported, and the Python ecosystem is starting to
1883  drop support: two of our test dependencies no longer support them.
1884  [Quentin Pradet]
1885
1886- Made pytest-runner optional (GITHUB-1167)
1887  [Vlad Glagolev]
1888
1889Common
1890~~~~~~
1891
1892- Improve warning when CA_CERTS_PATH is incorrectly passed as a list
1893  (GITHUB-1118)
1894  [Quentin Pradet]
1895
1896- Cleaned up and corrected third-party drivers documentation (GITHUB-1148)
1897  [Daniel Hunsaker]
1898
1899- Modernized a few Python examples (GITHUB-1164)
1900  [Batuhan Osman Taşkaya]
1901
1902- [OpenStack] Authentify with updated Identity API
1903  (LIBCLOUD-965, GITHUB-1145)
1904  [Miguel Caballer]
1905
1906Compute
1907~~~~~~~
1908
1909- Fix "wait_until_running() method so it also works correctly and doesn't
1910  append "None" to the addresses list if node has no IP address.
1911  (GITHUB-1156, LIBCLOUD-971)
1912  [Tobias Paepke]
1913
1914- [ARM] Fix checking for "location is None" in several functions (LIBCLOUD-926,
1915  GITHUB-1098)
1916  [Sameh Elsharkawy]
1917
1918- [ARM] Fix error when using SSH key auth with Python 3 (GITHUB-1098)
1919  [Sameh Elsharkawy]
1920
1921- [ARM] Fix API call on powerOff, understand PAUSED state (GITHUB-1003)
1922  [Markos Gogoulos]
1923
1924- [ARM] Delete VHDs more reliably in destroy_node(), raise exception on
1925  unhandled errors (GITHUB-1120)
1926  [Lucas Di Pentima]
1927
1928- [ARM] Fix api version used to list and delete NICs (GITHUB-1128)
1929  [Peter Amstutz]
1930
1931- [ARM] Allow faster list_nodes() with ex_fetch_power_state=False
1932  (GITHUB-1126)
1933  [Peter Amstutz, Lucas Di Pentima]
1934
1935- [ARM] Fix delete_old_vhd (GITHUB-1137)
1936  [Peter Amstutz, Lucas Di Pentima]
1937
1938- [ARM] Limit number of retries in destroy_node (GITHUB-1134)
1939  [Peter Amstutz, Lucas Di Pentima]
1940
1941- [ARM] Fix Retry-After header handling (GITHUB-1139)
1942  [Lucas Di Pentima]
1943
1944- [CloudStack] Handle NICs without addresses (GITHUB-1141)
1945  [Pierre-Yves Ritschard]
1946
1947- [CloudStack] Add change size and restore (LIBCLOUD-975, GITHUB-1166)
1948  [Mauro Murari]
1949
1950- [Digital Ocean] Add ex_enable_ipv6 in DigitalOcean_v2 driver
1951  (GITHUB-1130)
1952  [Rick van de Loo]
1953
1954- [Digital Ocean] Add support for tags in list_nodes()
1955  (LIBCLOUD-967, GITHUB-1149)
1956  [Mike Fischer]
1957
1958- [Digital Ocean] Add rebuild and resize commands
1959  (LIBCLOUD-977, GITHUB-1169)
1960  [Adam Wight]
1961
1962- [EC2] Add new x1.16xlarge and x1e.32xlarge instance type. (GITHUB-1101)
1963  [Anthony Monthe]
1964
1965- [EC2] Add AWS EC2 c5 series (GITHUB-1147)
1966  [Anthony Monthe]
1967
1968- [EC2] Add AWS EC2 M5 sizes (GITHUB-1159)
1969  [Anthony Monthe]
1970
1971- [EC2] Update pricing information for EC2 instances.
1972  [Tomaz Muraus]
1973
1974- [EC2] Allow cn-north-1 even without pricing information
1975  (LIBCLOUD-954, GITHUB-1127)
1976  [Quentin Pradet]
1977
1978- [EC2] Fix EBS volume encryption (GITHUB-1008)
1979  [Sergey Babak]
1980
1981- [ECS Aliyun] Support modify_security_group_attributes (GITHUB-1157)
1982  [Zhang Yiming]
1983
1984- [GCE] Allow adding labels to images (GITHUB-1138)
1985  [Katriel Traum, Eric Johnson]
1986
1987- [GCE] Allow adding license strings to images (GITHUB-1136)
1988  [Katriel Traum, Eric Johnson]
1989
1990- [GCE] Support GCE node labels. (LIBCLOUD-934, GITHUB-1115)
1991  [@maxlip]
1992
1993- [GCE] Fix `GCEList` pagination. (GITHUB-1095)
1994  [Yap Sok Ann]
1995
1996- [GCE] Allow setting service account in instance templates (LIBCLOUD-947,
1997  GITHUB-1108)
1998  [Evan Carter]
1999
2000- [GCE] Add support for private IP addresses in GCE instance creation
2001  (LIBCLOUD-944, GITHUB-1107)
2002  [Gareth Mcfarlane]
2003
2004- [GCE] Allow for use of shared network (VPC) and subnetwork (GITHUB-1165)
2005  [Boris Chazalet]
2006
2007- [GCE] Add support for accelerators (LIBCLOUD-963, GITHUB-1163)
2008  [Michael Johnson]
2009
2010- [ProfitBricks] Update driver and add support for the new API v4. (GITHUB-1103)
2011  [Nurfet Becirevic]
2012
2013- [ProfitBricks] Fix list_snapshots() method (GITHUB-1153)
2014  [Chad Phillips]
2015
2016- [UpCloud] New driver for UpCloud (LIBCLOUD-938, GITHUB-1102)
2017  [Mika Lackman, Ilari Mäkelä]
2018
2019- [UpCloud] Use disk size and storage tier also when creating node from template
2020  (LIBCLOUD-952, GITHUB-1124)
2021  [Mika Lackman]
2022
2023- [UpCloud] Allow to define hostname and username
2024  (LIBCLOUD-951, LIBCLOUD-953, GITHUB-1123, GITHUB-1125)
2025  [Mika Lackman]
2026
2027- [UpCloud] Add pricing information to list_sizes (LIBCLOUD-969, GITHUB-1152)
2028  [Mika Lackman]
2029
2030Storage
2031~~~~~~~
2032
2033- Added Digital Ocean Spaces driver (LIBCLOUD-955, GITHUB-1129)
2034  [Andrew Starr-Bochicchio]
2035
2036- [Digital Ocean Spaces] Add support for AMS3 region (GITHUB-1142)
2037  [Andrew Starr-Bochicchio]
2038
2039- [Digital Ocean Spaces] Add support for SGP1 region (GITHUB-1168)
2040  [Andrew Starr-Bochicchio]
2041
2042- Fix a bug / regression which resulted in increased memory consumption when
2043  using ``download_object`` method. This method would store whole object
2044  content in memory even though there was no need for that.
2045
2046  This regression was introduced in 2.0.0 when we moved to using ``requests``
2047  library.
2048  (GITHUB-1132)
2049  [Quentin Pradet]
2050
2051- Fix a regression with hash computation performance and memory usage on object
2052  upload inadvertently introduced in 2.0.0 and make it more efficient.
2053  (GITHUB-1135)
2054  [Quentin Pradet]
2055
2056Changes in Apache Libcloud 2.2.1
2057--------------------------------
2058
2059Common
2060~~~~~~
2061
2062- Fix an issue with installation failing on some operating system and file
2063  systems combinations (e.g. ecryptfs layered on top of ext4) which don't
2064  support file names longer than 143 characters. (LIBCLOUD-946, GITHUB-1112)
2065
2066  Reported by Cyrille Verrier.
2067  [Tomaz Muraus]
2068
2069Compute
2070~~~~~~~
2071
2072- [EC2] add g3 instance types
2073  [GITHUB-1101]
2074  (@zulupro)
2075
2076- [EC2] add 'end' to ec2 reserved_node
2077  [GITHUB-1099]
2078  (@xofer)
2079
2080- Decrease sleep delay (from 1.5 to 0.2 seconds) inside paramiko client which
2081  is used to prevent busy waiting while waiting for data on the channel.
2082
2083  This should cause deploy scripts which produce a lot of output in incremental
2084  manner to finish faster.
2085  [Tomaz Muraus]
2086
2087- Fix a regression in the Azure ARM driver which didn't allow custom storage
2088  URI suffix to be used with create_node. (GITHUB-1110)
2089  [Lucas Di Pentima]
2090
2091Tests
2092~~~~~
2093
2094- Make sure we normalize header values and cast all the numbers to strings in
2095  base connection classes used by tests. (LIBCLOUD-945, GITHUB-1111)
2096
2097  Reported by Erich Eckner.
2098  [Tomaz Muraus]
2099
2100Changes in Apache Libcloud 2.2.0
2101--------------------------------
2102
2103Compute
2104~~~~~~~
2105
2106- [EC2] add g3 instance types
2107  [GITHUB-1101]
2108  (@zulupro)
2109
2110- [EC2] add 'end' to ec2 reserved_node
2111  [GITHUB-1099]
2112  (@xofer)
2113
2114Changes in Apache Libcloud 2.2.0
2115--------------------------------
2116
2117Common
2118~~~~~~
2119
2120- [GCE] Scrape prices for GCE Australia Region
2121  [GITHUB-1085]
2122  (Francisco Ros)
2123
2124Compute
2125~~~~~~~
2126
2127- [ARM] Add option to create static public IP
2128  [GITHUB-1091, LIBCLOUD-918]
2129  (Aki Ketolainen)
2130
2131- [SOFTLAYER] Add `get_image` method to class
2132  [GITHUB-1066]
2133  (Francois Regnoult)
2134
2135- [ARM] Add Storage support, volumes, snapshots
2136  [GITHUB-1087]
2137  (Sergey Babak)
2138
2139Container
2140~~~~~~~~~
2141
2142- [DOCKER] Fixes to support TLS connection
2143  [GITHUB-1067]
2144  (johnnyWalnut)
2145
2146DNS
2147~~~
2148
2149- [ROUTE53] Fix for TXT and SPF records, when user didn't escapsulate data in
2150  quotes, the API would fire error. As reported by @glyph
2151  [LIBCLOUD-875, GITHUB-1093]
2152  (Anthony Shaw)
2153
2154- [LINODE] Add priority to the extra dictionary in record instances
2155  [GITHUB-1088]
2156  (@mete0r)
2157
2158Load Balancer
2159~~~~~~~~~~~~~
2160
2161- Fixed AWS ALB/ELB driver init method to instantiate nested connection object
2162  properly
2163  [LIBCLOUD-936, GITHUB-1089]
2164  (Anton Kozyrev)
2165
2166Storage
2167~~~~~~~
2168
2169- [CLOUDFILES] Update OpenStackSwiftConnection to work with auth version 3.0
2170  [GITHUB-1068]
2171  (Hakan Carlsson)
2172
2173- [CLOUDFILES] Add SSL URI support
2174  [GITHUB-1076, LIBCLOUD-458]
2175  (@ayleph)
2176
2177Changes in Apache Libcloud 2.1.0
2178--------------------------------
2179
2180Common
2181~~~~~~
2182
2183- [AWS] Update prices and fix some region names
2184  [GITHUB-1056]
2185  (Francisco Ros)
2186
2187- Fix bug in utils.decorators wrap exception method, used by vsphere driver
2188  [GITHUB-1054]
2189  (Anthony Shaw)
2190
2191- Use PyTest as the unit testing runner
2192  (Anthony Shaw)
2193
2194- Use of LXML is now disabled by defalt, use
2195  ``libcloud.utils.py3.DEFAULT_LXML = True`` to reenable. LXML has
2196  compatibility issues with a number of drivers and etree is a standard
2197  package.
2198  [GITHUB-1038]
2199  (Anthony Shaw)
2200
2201- Switch RawResponse class to use content body instead of text body, up to 10x
2202  performance improvement for methods like StorageDriver.download_object
2203  [GITHUB-1053]
2204  (Quentin Pradet)
2205
2206Compute
2207~~~~~~~
2208
2209- [OPENSTACK] Add support for Nova 2.x and Keystone 3
2210  [GITHUB-1052]
2211  (Anthony Shaw)
2212
2213- [GCE] Add loadBalancingScheme parameter for
2214  ex_create_forwarding_rule method in GCE driver.
2215  [GITHUB-1079]
2216  (@sT331h0rs3)
2217
2218- [GCE] Fix error codes not being parsed in certain scenarios
2219  [GITHUB-1074, LIBCLOUD-925]
2220  (micafer)
2221
2222- [EC2] Fix node's Block Device Mapping was parsed from incorrect mapping.
2223  EbsInstanceBlockDevice is different from EbsBlockDevice.
2224  [GITHUB-1075]
2225  (Gennadiy Stas)
2226
2227- [GANDI] Fixes the location name in image and instance type classes
2228  [GITHUB-1065]
2229  (Sayoun)
2230
2231- [GCE] Fix method for create instance properties, it previously ignored the
2232  disk type parameter and defaulted to pd-standard.
2233  [GITHUB-1064]
2234  (Evan Carter)
2235
2236- Fix missing return data from EC2 billing product methods
2237  [GITHUB-1062]
2238  (Alex Misstear)
2239
2240- Handle [VULTR] API rate limiting
2241  [GITHUB-1058]
2242  (Francisco Ros)
2243
2244- Fix Kili driver not correctly fixing the auth version for openstack to
2245  2.0_password
2246  [GITHUB-1054]
2247  (Anthony Shaw)
2248
2249- [EC2] Add i3 instance types for AWS
2250  [GITHUB-1038]
2251  (Stephen Mullins)
2252
2253- [VULTR] Extend extra dict of Vultr sizes to include additional fields
2254  (plan_type and available_locations)
2255  [GITHUB-1044]
2256  (Francisco Ros)
2257
2258Container
2259~~~~~~~~~
2260
2261- New driver for Google Container Engine
2262  [GITHUB-1059]
2263  (Andy Maheshwari)
2264
2265- [KUBERNETES] Fix get_container method responding with None
2266  [GITHUB-1054]
2267  (Anthony Shaw)
2268
2269- [DOCKER] Fix for start_container method
2270  [GITHUB-1049]
2271  (@johnnyWalnut)
2272
2273- [DOCKER] fix add an extra check otherwise list_containers breaks with
2274  AttributeError when fromImages is specified
2275  [GITHUB-1043]
2276  (@johnnyWalnut)
2277
2278Storage
2279~~~~~~~
2280
2281- [S3] Fix raise in s3.upload_object_via_stream
2282  [LIBCLOUD-914, GITHUB-1055]
2283  (Quentin Pradet)
2284
2285Changes in Apache Libcloud 2.0.0
2286--------------------------------
2287
2288Common
2289~~~~~~
2290
2291- Fix OpenStack drivers not correctly setting URLs when used with identity API,
2292  would default to 127.0.0.1 and service catalog URLs were not adhered to.
2293  [GITHUB-1037, LIBCLOUD-912, LIBCLOUD-904]
2294  (Anthony Shaw)
2295
2296- Fix Aliyun ECS, Load balancer and storage adapters when using unicode UTF-8
2297  characters in the names of resources in 2.0.0rc2 < it would fail as a
2298  MalformedResponseError, Python 2.7 element tree was raising a unicode error
2299  [GITHUB-1032] [GITHUB-994]
2300  (Anthony Shaw)
2301
2302- Refactor the test classes to use the full libcloud.http and
2303  libcloud.common.base modules, with Connection, Response all used with
2304  requests_mock. This increases our test coverages and catches bugs in
2305  drivers' custom parse_body and auth modules
2306  [GITHUB-1031]
2307  (Anthony Shaw)
2308
2309- Rename libcloud.httplib_ssl to libcloud.http now that we don't use httplib
2310  [GITHUB-1028]
2311  (Anthony Shaw)
2312
2313Compute
2314~~~~~~~
2315
2316- [GOOGLE] Add test to check that can create a GCE volume at a given location
2317  [GITHUB-1048]
2318  (Francisco Ros)
2319
2320- [GOOGLE] Fix GCENodeDriver.ex_get_volume() when zone param is of class
2321  GCEZone or NodeLocation
2322  [GITHUB-1047]
2323  (Francisco Ros)
2324
2325- [GOOGLE] Fix call to GCENodeDriver._ex_populate_volume_dict
2326  [GITHUB-1046]
2327  (Francisco Ros)
2328
2329- [ARM] Add support for Azure Cloud Environments as well as Locations
2330  [GITHUB-969]
2331  (Peter Amstutz)
2332
2333- [EC2] Add support for ModifyVolume and DescribeVolumesModifications
2334  [GITHUB-1036]
2335  (Hennadii Stas)
2336
2337- [ARM] Fix string representation of the VhdImage type and fix listing of
2338  Public IP addresses
2339  [GITHUB-1035]
2340  (Anthony Shaw)
2341
2342- [GOOGLE] Remove validation checks for guestOsFeatures
2343  [GITHUB-1034]
2344  (Max Illfelder)
2345
2346- [VSPHERE] Fix issue with authentication methods crashing
2347  [GITHUB-1031]
2348  (Anthony Shaw)
2349
2350- [ARM] Add network security groups to azure ARM
2351  [GITHUB-1033]
2352  (Joseph Hall)
2353
2354- [ARM] Add the ability to list resource groups
2355  [GITHUB-1032]
2356  (Joseph Hall)
2357
2358- Add 1&1 compute driver
2359  [LIBCLOUD-911] [GITHUB-1029]
2360  (Jasmin Gacic)
2361
2362- Fix Azure ARM driver condition for ex_list_publishers where location is
2363  specified
2364  [GITHUB-1030]
2365  (Joseph Hall)
2366
2367- Added Import Snapshot and Describe Import Snapshot to EC2 compute driver
2368  [GITHUB-1023]
2369  (Nirzari Iyer)
2370
2371- Add price_monthly extra param to digitalocean sizes
2372  [GITHUB-1021]
2373  (Francisco Ros)
2374
2375- Add aliyun ecs instance join leave security group
2376  [GITHUB-992]
2377  (Jie Ren)
2378
2379- Add keypair management to OnApp driver
2380  [GITHUB-1018]
2381  (Tinu Cleatus)
2382
2383- Add missing regions in AWS storage and compute drivers
2384  [GITHUB-1019]
2385  (Alex Misstear)
2386
2387- Add SR-IOV net support to images in EC2 compute driver
2388  [GITHUB-1020]
2389  (Alex Misstear)
2390
2391- Fix - update t2.small image size from 11 CPU to 1
2392  [GITHUB-1022]
2393  (Francisco Ros)
2394
2395- Added Billing Product for image in EC2 compute driver
2396  [GITHUB-1024]
2397  (Nirzari Iyer)
2398
2399DNS
2400~~~
2401
2402- Add OnApp driver
2403  [GITHUB-1017] [LIBCLOUD-907]
2404  (Tinu Cleatus)
2405
2406Changes in Apache Libcloud 2.0.0rc2
2407-----------------------------------
2408
2409Common
2410~~~~~~
2411
2412- Fix LIBCLOUD_DEBUG trying to decompress already decompressed responses
2413  [LIBCLOUD-910]
2414  (Anthony Shaw)
2415
2416- Added an integration test API and a test suite for validating functionality
2417  without mocking any libcloud subsystems
2418  [GITHUB-970]
2419  (Anthony Shaw)
2420
2421- Fix for Linode classes since 2.0x
2422  [GITHUB-1026]
2423  (Anthony Shaw)
2424
2425- Fix CertificateConnection not correctly signing requests in 2.0rc1, impacted
2426  Azure classic driver, OpenStack and Docker driver
2427  [GITHUB-1015]
2428  (Anthony Shaw)
2429
2430- Change Cloudscale to cloudscale.ch.
2431  [GITHUB-993]
2432  (David Halter)
2433
2434- Explicitly check if response is None in RawResponse class
2435  [GITHUB-1006] [LIBCLOUD-901]
2436  (Richard Xia)
2437
2438Compute
2439~~~~~~~
2440
2441- Outscale SAS doc improvements and logo update
2442  [GITHUB-950]
2443  (Javier M Mellid)
2444
2445- [GCE] Allow preemptible instances to be created
2446  [GITHUB-954]
2447  (John Baublitz)
2448
2449- Add support for forcing detachment of EBS volumes to EC2 driver
2450  [GITHUB-1007]
2451  (Sergey Babak)
2452
2453- Fix Public IP not assigned when creating NIC on Azure ARM
2454  [GITHUB-1013] [LIBCLOUD-906]
2455  (Simone Ripamonti)
2456
2457- [ONAPP] Add list images support for OnApp driver
2458  [GITHUB-1011]
2459  (Tinu Cleatus)
2460
2461- [EC2] Add r4 instance types for AWS
2462  [GITHUB-997]
2463  (Jens Deppe)
2464
2465- [EC2] support for AWS eu-west-2 and ca-central-1 regions
2466  [GITHUB-1009]
2467  (Marat Komarov)
2468
2469- [EC2] Add P2 GPU instance types
2470  [GITHUB-996]
2471  (MJK)
2472
2473- [EC2] Add method to modify snapshot attribute for EC2
2474  [GITHUB-990]
2475  (Sayan Chowdhury)
2476
2477- [Linode] Add start, stop instance methods and fix incorrect state TERMINATED
2478  to STOPPED
2479  [GITHUB-986]
2480  (Markos Gogoulos)
2481
2482- [EC2] Add ENA support for EC2 compute images
2483  [GITHUB-983]
2484  (Alex Misstear)
2485
2486- [Azure ARM] fix typeerror on ex_list_nics
2487  [GITHUB-979]
2488  (Choi Jongu)
2489
2490- [GCE] allow delete instances from managed group
2491  [GITHUB-975]
2492  (@zacharya19)
2493
2494Storage
2495~~~~~~~
2496
2497- Reintroduce S3 multipart upload support with signature v4
2498  [GITHUB-1005] [LIBCLOUD-834]
2499  (Alex Misstear)
2500
2501
2502Changes Apache Libcloud 2.0.0rc1
2503--------------------------------
2504
2505Common
2506~~~~~~
2507
2508- Fix DEBUG mode, also add support for using io.StringIO as the file handle
2509  when calling libcloud.enable_debug.
2510  (GITHUB-978, LIBCLOUD-887)
2511  [Anthony Shaw]
2512
2513- Introduction of the requests package as the mechanism for making HTTP
2514  requests for all drivers.
2515  (GITHUB-928)
2516  [Anthony Shaw]
2517
2518- Fix bug where custom port and secure flag would not get propagated to
2519  connection class.
2520  (GITHUB-972)
2521  [Anthony Shaw]
2522
2523- Fix bug where custom port would not get propagated to connection.
2524  (GITHUB-971)
2525  [Anthony Shaw]
2526
2527- Fix bug where instantiating a connection from URL and then requesting an
2528  action with a leading / would lead to a malformed URL.
2529  (GITHUB-976)
2530  [Anthony Shaw]
2531
2532Compute
2533~~~~~~~
2534
2535- Fix a bug in profitbricks driver where listing snapshots would request a
2536  malformed URL.
2537  [GITHUB-976]
2538  (Anthony Shaw)
2539
2540- Fix LIBCLOUD-806 bug where vsphere driver cannot be instantiated.
2541  (GITHUB-967)
2542  [Anthony Shaw]
2543
2544- [google compute] Improve performance of list nodes by caching volume
2545  information.
2546  (GITHUB-813, LIBCLOUD-826)
2547  [Tom Melendez]
2548
2549Changes in Apache Libcloud 1.5.0
2550--------------------------------
2551
2552Common
2553~~~~~~
2554
2555- Set Dimension Data compute, backup and load balancer to default to 2.4 API.
2556  (GITHUB-961)
2557  [Samuel Chong]
2558
2559Compute
2560~~~~~~~
2561
2562- [azure] New method for accessing rate cards.
2563  (GITHUB-957)
2564  [Soren L. Hansen]
2565
2566- [gce] Allow multiple preemptible instances to be created.
2567  (GITHUB-954)
2568  [John Baublitz]
2569
2570- [openstack] Add new Connection class to support VOMS proxys to keystone
2571  servers.
2572  (GITHUB-959)
2573  [micafer]
2574
2575- [outscale] Added support for changed API for describing quotas.
2576  (GITHUB-960)
2577  [Javier M. Mellid]
2578
2579- [ec2] Added m4 instances to us-gov and brazil, added m4.16xlarge to all.
2580  (GITHUB-964)
2581  [Matthew Tyas]
2582
2583- Add new CloudScale.ch driver
2584  (GITHUB-951)
2585  [Dave Halter]
2586
2587- [google compute] Bug fix for ex_create_multiple_nodes Google Cloud disk auto
2588  delete.
2589  (GITHUB-955)
2590  [John Baublitz]
2591
2592- [google compute] Add "MULTI_IP_SUBNET" guestOsFeatures option.
2593  (GITHUB-956)
2594  [Max Illfelder]
2595
2596- [dimensiondata] Added support for 2.4 API, added support for image import,
2597  cloning. Add feature for changing NIC VLANs, add feature for changing NIC
2598  order for a server.
2599  (GITHUB-953)
2600  [Samuel Chong]
2601
2602- [ec2] Add US-EAST2 (Ohio).
2603  (GITHUB-946)
2604  [Matthew Harris]
2605
2606- [google compute] Fix to allow multiple node creation with subnets.
2607  (GITHUB-949)
2608  [John Baublitz]
2609
2610Container
2611~~~~~~~~~
2612
2613- [rancher] The scheme (secure) and port no longer need to be explicitly
2614  specified, allowing a user to simply copy in the string provided to them
2615  from Rancher.
2616  (GITHUB-958)
2617  [Matthew Ellison]
2618
2619Changes in Apache Libcloud 1.4.0
2620--------------------------------
2621
2622Compute
2623~~~~~~~
2624
2625- Introduce new Azure ARM driver.
2626  [Peter Amstulz]
2627
2628- [ec2] Fix the bug that created the node at ecs driver and implement the
2629  method for creating public ip.
2630  (GITHUB-943)
2631  [watermelo]
2632
2633- [profitbricks] changes to the ProfitBricks compute driver to drop support
2634  for the old SOAP api (now end of life) and provide support for v3 of the
2635  REST api.
2636  (GITHUB-938)
2637  [Matt Finucane]
2638
2639- [cloudsigma] Added Warsaw (waw) region.
2640  (GITHUB-942)
2641  [Kamil Chmielewski]
2642
2643- [google compute] List images fix for projects > 500 images.
2644  (GITHUB-939)
2645  [Scott Crunkleton]
2646
2647- [ec2] Add st1 and sc1 volume types to valid types.
2648  (GITHUB-925)
2649  [Sean Goller]
2650
2651- [digital ocean] add ex_change_kernel in DigitalOcean_v2 driver.
2652  (GITHUB-922)
2653  [Rick van de Loo]
2654
2655- [digital ocean] add ex_hard_reboot in DigitalOcean_v2 driver.
2656  (GITHUB-920)
2657  [Rick van de Loo]
2658
2659- [openstack] add ex_start_node for the openstack driver.
2660  (GITHUB-919)
2661  [Rick van de Loo]
2662
2663- [vultr] Extra Attributes for Node Creation on Vultr.
2664  (GITHUB-917)
2665  [Fahri Cihan Demirci]
2666
2667- [vultr] Implement SSH Key Create/Delete Methods for Vultr.
2668  (GITHUB-914)
2669  [Fahri Cihan Demirci]
2670
2671- [dimension data] No longer throw error when powering off a node that is
2672  already stopped.
2673  (GITHUB-912)
2674  [Samuel Chong]
2675
2676- [dimension data] Refactor create_node for MCP2 to support CaaS API 2.3 feature.
2677  Can now specify Network Adapter Name for primary and additional NIC.
2678  Parameters in create_node function is tailored for MCP2.
2679  (GITHUB-902)
2680  [Samuel Chong]
2681
2682- Volume snapshot operations, i.e. creating, listing and deleting volume
2683  snapshots, for the Digital Ocean driver.
2684  (LIBCLOUD-861, GITHUB-909)
2685  [Fahri Cihan Demirci]
2686
2687- Added snapshot management to OVH compute.
2688  (GITHUB-897)
2689  [Anthony Monthe]
2690
2691- [GCE] Support for HTTP(S) proxies with BackendServices.
2692  (GITHUB-856)
2693  [Tom Melendez]
2694
2695Container
2696~~~~~~~~~
2697
2698- [docker] As reported in the corresponding bug, the docker daemon will respond
2699  in an install_image call with all the messages produced during the procedure
2700  parsed as json docs. In that case the response headers also contain the value
2701  'transfer-encoding':'chunked'. That kind of response can now be parsed
2702  properly by the DockerResponse parse_body method. Also, another small change
2703  is that previously the id of the new image was marked in the json document as
2704  id, but now it's marked as sha256, so the regex used to discover the id has
2705  been updated.
2706  (GITHUB-918)
2707  [Pavlos Tzianos]
2708
2709Load Balancing
2710~~~~~~~~~~~~~~
2711
2712- Introduce AWS Application Load Balancer (ALB) driver.
2713  (LIBCLOUD-869, GITHUB-936)
2714  [Anton Kozyrev]
2715
2716- Fix bug where GCE Load balancer supposes that all VMs have public ips.
2717  (LIBCLOUD-879, GITHUB-952)
2718  [Chris Walker]
2719
2720Storage
2721~~~~~~~
2722
2723- [s3] Add AP-Southeast2 as region.
2724
2725- [google] Prevent GCE auth to hide S3 auth.
2726  (GITHUB-921)
2727  [Quentin Pradet]
2728
2729- [GCS] Fixed some google_storage.py URL cleaning.
2730  (GITHUB-901)
2731  [Scott Crunkleton]
2732
2733Changes in Apache Libcloud 1.3.0
2734--------------------------------
2735
2736General
2737~~~~~~~
2738
2739- Introduced new base API for instantiating drivers.
2740  (GITHUB-822)
2741  [Anthony Shaw]
2742
2743- Added certificate path for SLES12/OpenSUSE12.
2744  (GITHUB-884)
2745  [Michael Calmer]
2746
2747- Deprecate DigitalOcean v1 API support in favour of v2 API.
2748  (GITHUB-889, GITHUB-892)
2749  [Andrew Starr-Bochicchio]
2750
2751- Deprecate RunAbove cloud drivers in favour of new OVH cloud driver.
2752  (GITHUB-891)
2753  [Anthony Monthe]
2754
2755
2756Compute
2757~~~~~~~
2758
2759- Fix reporting function for detailed admin logs in Dimension Data Driver.
2760  (GITHUB-898)
2761  [Anthony Shaw]
2762
2763- Added edit firewall functionality to Dimension Data driver.
2764  (GITHUB-893)
2765  [Samuel Chong]
2766
2767- Bugfix - Fixed listing nodes issue in Python 3.
2768  (LIBCLOUD-858, GITHUB-894)
2769  [Fahri Cihan Demirci]
2770
2771- Added FCU (Flexible Compute Unit) support to the Outscale driver.
2772  (GITHUB-890)
2773  [Javier M. Mellid]
2774
2775- [google compute] Add "WINDOWS" guestOsFeatures option.
2776  (GITHUB-861)
2777  [Max Illfelder]
2778
2779- When creating volumes on OpenStack with defaults for `location` or
2780  `volume_type`, newer OpenStack versions would throw errors. The OpenStack
2781  driver will now only post those arguments if non-`NoneType`.
2782  (GITHUB-857)
2783  [Allard Hoeve]
2784
2785- When fetching the node details of a non-existing node, OpenStack would raise
2786  a `BaseHTTPError` instead of returning `None`, as was intended. Fixed tests
2787  and code.
2788  (GITHUB-864)
2789
2790- Added `ex_stop_node` to the OpenStack driver.
2791  (GITHUB-865)
2792  [Allard Hoeve]
2793
2794- When creating volume snapshot, the arguments `name` and `description` are
2795  truely optional when working with newer OpenStack versions. The OpenStack
2796  driver will now only post thost arguments if they are non-`NoneType`.
2797  (GITHUB-866)
2798  [Allard Hoeve]
2799
2800- StorageVolumeSnapshot now has an attribute `name` that has the name of the
2801  snapshot if the provider supports it. This used to be `.extra['name']`, but
2802  that is inconsistent with `Node` and `StorageVolume`. The `extra` dict still
2803  holds `name` for backwards compatibility.
2804  (GITHUB-867)
2805  [Allard Hoeve]
2806
2807Container
2808~~~~~~~~~
2809
2810- Introduced new Rancher driver
2811  (GITHUB-876)
2812  [Mario Loria]
2813
2814- Fixed bug in Docker util library for fetching images from the docker hub API.
2815  API was returning 301 and redirects were not being followed.
2816  (GITHUB-862)
2817  [Anthony Shaw]
2818
2819Load Balancer
2820~~~~~~~~~~~~~
2821
2822- Added fetch tags support in elb driver.
2823  (GITHUB-848)
2824  [Anton Kozyrev]
2825
2826Storage
2827~~~~~~~
2828
2829- Added storage permissions for Google Cloud Storage.
2830  (GITHUB-860)
2831  [Scott Crunkleton]
2832
2833Changes in Apache Libcloud 1.2.1
2834--------------------------------
2835
2836Backup
2837~~~~~~
2838
2839- Fix issue enabling backups on Dimension Data driver.
2840  (GITHUB-858)
2841  [Mark Maglana, Jeff Dunham, Anthony Shaw]
2842
2843Changes in Apache Libcloud 1.2.0
2844--------------------------------
2845
2846General
2847~~~~~~~
2848
2849- Fix caching of auth tokens in the Google Compute Engine drivers. Now we make
2850  sure that the file is truncated before writing a new token. Not truncating
2851  the file would cause issues if the new token is shorted then the existing one
2852  which is cached in the file.
2853  (GITHUB-844, LIBCLOUD-835)
2854  [Paul Tiplady]
2855
2856Compute
2857~~~~~~~
2858
2859- [gce] Fix image undeprecation in GCE.
2860  (GITHUB-852)
2861  [Max Illfelder]
2862
2863- [gce] Added Managed Instance Groups.
2864  (GITHUB-842)
2865  [Tom Melendez]
2866
2867- [gce] Allow undeprecation of an image.
2868  (GITHUB-851)
2869  [Max Illfelder]
2870
2871- [cloudstack] BUGFIX Values with wildcards failed signature validation.
2872  (GITHUB-846)
2873  [Ronald van Zantvoot]
2874
2875- [cloudstack] Added StorageState-Migrating to the cloudstack driver.
2876  (GITHUB-847)
2877  [Marc-Aurèle Brothier]
2878
2879- [google compute] Update copy image logic to match create image.
2880  (GITHUB-828)
2881  [Max Illfelder]
2882
2883- Removed HD attribute from the Abiquo compute driver to support the 3.4 API.
2884  (GITHUB-840)
2885  [David Freedman]
2886
2887- Add image and size details to `list_nodes` response in Dimension Data driver.
2888  (GITHUB-832)
2889  [Anthony Shaw]
2890
2891- Add support for changing VM admin password in VMware driver.
2892  (GITHUB-833)
2893  [Juan Font Alonso]
2894
2895- Add Barcelona (Spain) region to the Aurora Compute driver.
2896  (GITHUB-835)
2897  [Wido den Hollander]
2898
2899- Various improvements in the libvirt driver.
2900  (GITHUB-838)
2901  [Rene Kjellerup]
2902
2903Load balancer
2904~~~~~~~~~~~~~
2905
2906- Add support for temporary IAM role credentials (token) to the AWS ELB driver.
2907  (GITHUB-843)
2908  [Anton Kozyrev]
2909
2910DNS
2911~~~
2912
2913- Updated the 'extra' parameter in `update_record()` to be optional in aurora
2914  driver.
2915  (GITHUB-830)
2916  [Wido den Hollander]
2917
2918- Support for iterating over records and zones in the Aurora DNS driver.
2919  (GITHUB-829)
2920  [Wido den Hollander]
2921
2922- Add support for DS, PTR, SSFHFP and TLSA record type to the Aurora DNS
2923  driver.
2924  (GITHUB-834)
2925  [Wido den Hollander]
2926
2927Container
2928~~~~~~~~~
2929
2930- Add network mode and labels when creating containers within docker driver.
2931  (GITHUB-831)
2932  [Jamie Cressey]
2933
2934Storage
2935~~~~~~~
2936
2937- Fix authentication issue in S3/China region, disabled multipart uploads as
2938  not supported by region.
2939  (GITHUB-839)
2940  [Luke Morfitt]
2941
2942Changes with Apache Libcloud 1.1.0
2943----------------------------------
2944
2945General
2946~~~~~~~
2947
2948- Add support for automatic SNI (SSL extension) using the hostname
2949  supplied to connect to.
2950
2951  Note: This functionality is only available in Python 2.7.9 and
2952  Python >= 3.2.
2953  (LIBCLOUD-827, GITHUB-808)
2954  [David Freedman]
2955
2956Compute
2957~~~~~~~
2958
2959- Add support image guest OS features in GCE driver.
2960  (GITHUB-825)
2961  [Max Illfelder]
2962
2963- Added forceCustimization option for vcloud director driver.
2964  (GITHUB-824)
2965  [Juan Font]
2966
2967- Add node lookup by UUID for libvirt driver.
2968  (GITHUB-823)
2969  [Frank Wu]
2970
2971- Add block storage support to DigitalOcean node driver.
2972  (GITHUB-807)
2973  [Adam Wolfe Gordon]
2974
2975- Add SASL auth support to libvirt driver.
2976  (GITHUB-809)
2977  [Katana-Steel]
2978
2979- Allow VIPs in Dimension Data driver to bind to any port.
2980  (GITHUB-818)
2981  [Mark Maglana]
2982
2983- Add support for deleting a security group to the Aliyun ECS driver.
2984  (GITHUB-816)
2985  [Heng Wu]
2986
2987- Add ``ex_force_customization`` argument to the ``ex_deploy_node`` in vCloud
2988  driver.
2989  (GITHUB-824)
2990  [Juan Font]
2991
2992- Add support for listing  attributes for a particular security group
2993  (``ex_list_security_group_attributes``) to the Aliyun ECS driver.
2994  (GITHUB-826)
2995  [Heng Wu]
2996
2997- Add new Mumbai, India region to the EC2 driver.
2998  [Tomaz Muraus]
2999
3000- Add driver for the new AWS cn-north-1 region.
3001  (GITHUB-827, LIBCLOUD-820)
3002  [Jamie Cressey]
3003
3004- Fix authentication with temporary IAM role credentials (token) in the EC2
3005  driver.
3006  (GITHUB-820)
3007  [Alejandro González]
3008
3009Container
3010~~~~~~~~~
3011
3012- Fixed API compatibility for Docker Container driver with API 1.24, set driver
3013  to use versioned URL for all communication. Backported changes to 1.21 API
3014  (GITHUB-821)
3015  [Anthony Shaw]
3016
3017Load Balancer
3018~~~~~~~~~~~~~
3019
3020- Added additional parameters to the Rackspace driver in `list_balancers` for
3021  filtering and searching.
3022  (GITHUB-803)
3023  [João Paulo Raittes]
3024
3025Changes with Apache Libcloud 1.0.0
3026----------------------------------
3027
3028General
3029~~~~~~~
3030
3031- Fix a regression with ``timeout`` argument provided via
3032  ``_ex_connection_class_kwargs`` method being overriden with ``None`` inside
3033  the ``BaseDriver`` constructor method.
3034
3035  Reported by Jay Rolette.
3036  (GITHUB-755)
3037  [Tomaz Muraus, Jay Rolette]
3038
3039- Fix OpenStack v3 authentication and allow user to provide a custom value for
3040  the OpenStack ``domain`` parameter. Previously only possible value as a
3041  default value of ``Default``.
3042  (GITHUB-744)
3043  [Lionel Schaub]
3044
3045- Add support for authenticating against Keystone and OpenStack based clouds
3046  using OpenID Connect tokens.
3047  (GITHUB-789)
3048  [Miguel Caballer]
3049
3050Compute
3051~~~~~~~
3052
3053- GCE nodes can be launched in a subnetwork
3054  (GITHUB-783)
3055  [Lars Larsson]
3056
3057- Add Subnetworks to GCE driver
3058  (GITHUB-780)
3059  [Eric Johnson]
3060
3061- Fix missing pricing data for GCE
3062  (LIBCLOUD-713, GITHUB-779)
3063  [Eric Johnson]
3064
3065- Add Image Family support for GCE
3066  (GITHUB-778)
3067  [Rick Wright]
3068
3069- Fix a race condition on GCE driver `list_nodes()`- Invoking GCE’s
3070  `list_nodes()` while some VMs are being shutdown can result in the following
3071  `libcloud.common.google.ResourceNotFoundError` exception to be raised.
3072  (GITHUB-727)
3073  [Lénaïc Huard]
3074
3075- Allow user to filter nodes by location by adding optional `location`
3076  argument to the `list_nodes()` method in the CloudStack driver.
3077  (GITHUB-737)
3078  [Lionel Schaub]
3079
3080- Fix OpenStack IP type resolution - make sure IP addresses are correctly
3081  categorized and assigned on `private_ips` and `public_ips` Node attribute.
3082  (GITHUB-738)
3083  [Lionel Schaub]
3084
3085- Add new `Perth, Australia` and `Manila, Philippines` region to the CloudSigma
3086  v2 driver.
3087  [Tomaz Muraus]
3088
3089- Update libvirt driver so it returns false if a non-local libvirt URL is used
3090  (right now only local instances are supported).
3091  (LIBCLOUD-820, GITHUB-788)
3092  [René Kjellerup]
3093
3094- Update libvirt driver to use `ip neight` command instead of `arp` to retrieve
3095  node MAC address if `arp` command is not available or the current user
3096  doesn't have permission to use it.
3097  (LIBCLOUD-820, GITHUB-788)
3098  [René Kjellerup]
3099
3100- Update ``create_volume`` method in the CloudStack driver and add
3101  ``ex_volume_type`` argument to it. If this argument is provided, a volume
3102  which names matches this argument value will be searched and selected among
3103  the available disk offerings.
3104  (GITHUB-785)
3105  [Greg Bishop]
3106
3107Storage
3108~~~~~~~
3109
3110- Add support for AWS signature v4 to the Outscale storage driver.
3111  (GITHUB-736)
3112  [Javier M. Mellid]
3113
3114- Add new S3 RGW storage driver.
3115  (GITHUB-786, GITHUB-792)
3116  [Javier M. Mellid]
3117
3118Loadbalancer
3119~~~~~~~~~~~~
3120
3121- Update AWS ELB driver to use signature version 4 for authentication. This
3122  way, the driver also work with the `eu-central-1` region.
3123  (GITHUB-796)
3124  [Tobias Paepke]
3125
3126DNS
3127~~~
3128
3129- Add BuddyNS driver.
3130  (GITHUB-742)
3131  [Oltjano Terpollari]
3132
3133- Added DNSPod driver (https://www.dnspod.com).
3134  (GITHUB-787)
3135  [Oltjano Terpollari]
3136
3137Changes with Apache Libcloud 1.0.0-rc2
3138--------------------------------------
3139
3140General
3141~~~~~~~
3142
3143- Fix a bug with consuming stdout and stderr in the paramiko SSH client which
3144  would manifest itself under very rare condition when a consumed chunk only
3145  contained a single byte or part of a multi byte UTF-8 character.
3146  [Lakshmi Kannan, Tomaz Muraus]
3147
3148- Increase default chunk size from ``1024`` to ``4096`` bytes in the paramiko
3149  SSH client. This results in smaller number of receive calls on the average.
3150  [Tomaz Muraus]
3151
3152- Fix to Dimension Data API address for Middle-East and Africa
3153  (GITHUB-700)
3154  [Anthony Shaw]
3155
3156- Addition of Dimension Data Australia federal government region to dimension data
3157  drivers.
3158  (GITHUB-700)
3159  [Anthony Shaw]
3160
3161- Throw a more user-friendly exception on "No address associated with hostname".
3162  (GITHUB-711, GITHUB-714, LIBCLOUD-803)
3163  [Tomaz Muraus, Scott Crunkleton]
3164
3165* Remove deprecated provider constants with the region in the name and related
3166  driver classes (e.g. ``EC2_US_EAST``, etc.).
3167
3168  Those drivers have moved to single provider constant + ``region`` constructor
3169  argument model.
3170  [Tomaz Muraus]
3171
3172* Introduce new `list_regions`` class method on the base driver class. This
3173  method is to be used with provider drivers which support multiple regions and
3174  ``region`` constructor argument. It allows users to enumerate available /
3175  supported regions.
3176  [Tomaz Muraus]
3177
3178Compute
3179~~~~~~~
3180
3181- [dimension data] added support for VMWare tools VM information inside list_nodes responses
3182  (GITHUB-734)
3183  [Jeff Dunham]
3184
3185- [ec2] added ex_encrypted and ex_kms_key_id optional parameters to the create volume method
3186  (GITHUB-729)
3187  [Viktor Ognev]
3188
3189- [dimension data] added support for managing host anti-affinity rules, added paging support to
3190  all supported calls and added support for requesting priority ordering when creating ACL rules
3191  (GITHUB-726)
3192  [Jeff Dunham]
3193
3194- [openstack] when creating floating IPs, added pool_id as an optional argument
3195  (GITHUB-725)
3196  [marko-p]
3197
3198- [google compute] Added setMachineType method to allow for changing sizes of instances
3199  (GITHUB-721)
3200  [Eric Johnson]
3201
3202- [google compute] allow bypassing image search in standard project list
3203  (GITHUB-713)
3204  [Max Illfelder]
3205
3206- Add support for requesting a MKS token for accessing the remote console in VMware
3207  vCloud driver
3208  (GITHUB-706)
3209  [Juan Font Alonso]
3210
3211- Add support in VMware vCloud driver for v5.5 API, with snapshot support
3212  (GITHUB-658)
3213  [Juan Font Alonso]
3214
3215- Added support for adding a family to an image on Google Compute Driver
3216  (GITHUB-704)
3217  [Max Illfelder]
3218
3219- Deprecated IBM SCE, HP Helion, OpSource, Ninefold and CloudFrames drivers, removed
3220  driver code and tests.
3221  (GITHUB-701, LIBCLOUD-801)
3222  [Anthony Shaw]
3223
3224- Introduced error messages (`libcloud.compute.deprecated`) for deprecated drivers
3225  (GITHUB-701, LIBCLOUD-801)
3226  [Anthony Shaw]
3227
3228- New Compute drivers- BSNL, Indosat, Med-1, NTT-America, Internet Solutions
3229  (GITHUB-700)
3230  [Anthony Shaw]
3231
3232- Fix to set default signature version for AWS Seoul region to v4, removed
3233  non-supported size (hs1.xlarge)
3234  (GITHUB-684)
3235  [Geunwoo Shin]
3236
3237- Support filtering by location in list_nodes for dimension data compute driver
3238  fix lack of paging support
3239  (GITHUB-691)
3240  [Jeff Dunham]
3241
3242- Support for filtering by IPv4, IPv6, network, network domain, VLAN in Dimension
3243  data driver.
3244  (GITHUB-694)
3245  [Jeff Dunham]
3246
3247- Added `Node.created_at` which, on supported drivers, contains the datetime the
3248  node was first started.
3249  (GITHUB-698)
3250  [Allard Hoeve] [Rick van de Loo]
3251
3252- New driver for Aliyun Elastic Compute Service.
3253  (LIBCLOUD-802, GITHUB-712)
3254  [Sam Song, Heng Wu]
3255
3256Storage
3257~~~~~~~
3258
3259- Added Outscale storage driver
3260  (GITHUB-730)
3261  [Javier M. Mellid]
3262
3263- Improvements to Google Auth for Storage and Compute and MIME bug fix
3264  (LIBCLOUD-800, GITHUB-689)
3265  [Scott Crunkleton]
3266
3267- Implement ``get_container``, ``get_object`` and ``upload_object_via_stream``
3268  methods in the Backblaze B2 storage driver.
3269
3270  Note: Backblaze API doesn't upload streaming uploads so when using
3271  ``upload_object_via_stream`` whole file is read and buffered in memory.
3272  (GITHUB-696)
3273  [Jay jshridha]
3274
3275- New driver for Aliyun OSS Storage Service.
3276  (LIBCLOUD-802, GITHUB-712)
3277  [Sam Song]
3278
3279Loadbalancer
3280~~~~~~~~~~~~
3281
3282- New driver for Aliyun SLB Loadbalancer Service.
3283  (LIBCLOUD-802, GITHUB-712)
3284  [Sam Song]
3285
3286DNS
3287~~~~
3288
3289- Added NearlyFreeSpeech.net (NSFN) driver
3290  [Ken Drayer]
3291  (GITHUB-733)
3292
3293- Added Lua DNS driver
3294  [Oltjano Terpollari]
3295  (GITHUB-732)
3296
3297- Added NSOne driver
3298  [Oltjano Terpollari]
3299  (GITHUB-710)
3300
3301- Fix a bug in the GoDaddy driver - make sure ``host`` attribute on the
3302  connection class is correctly set to the hostname.
3303  [Tomaz Muraus]
3304
3305- Fix handling of ``MX`` records in the Gandi driver.
3306  (GITHUB-718)
3307  [Ryan Lee]
3308
3309Backup
3310~~~~~~
3311
3312- Dimension Data - added additional testing, fixed bug on client response naming,
3313  added support for adding backup clients to a backup enabled node.
3314  (GITHUB-692, GITHUB-693, GITHUB-695)
3315  [Jeff Dunham]
3316
3317Changes with Apache Libcloud 1.0.0-pre1
3318---------------------------------------
3319
3320General
3321~~~~~~~
3322
3323- Introduction of container based drivers for Docker, Rkt and Container-as-a-service
3324  providers
3325  (LIBCLOUD-781, GITHUB-666)
3326  [Anthony Shaw]
3327
3328- Introduce a new ``libcloud.backup`` API for Backup as a Service projects and
3329  products.
3330  (GITHUB-621)
3331  [Anthony Shaw]
3332
3333- Also retry failed HTTP(s) requests upon transient "read operation timed out"
3334  SSL error.
3335  (GITHUB-556, LIBCLOUD-728)
3336  [Scott Kruger]
3337
3338- Throw a more user-friendly exception if a client fails to establish SSL / TLS
3339  connection with a server because of an unsupported SSL / TLS version.
3340  (GITHUB-682)
3341  [Tomaz Muraus]
3342
3343Compute
3344~~~~~~~
3345
3346- Add ap-northeast-2 region to EC2 driver (South Korea)
3347  (GITHUB-681)
3348  [Anthony Shaw]
3349
3350- Added Added volume type to EC2 volume extra to EC2 driver.
3351  (GITHUB-680)
3352  [Gennadiy Stas]
3353
3354- Add LazyObject class that provides lazy-loading, see `GCELicense` for usage
3355  (LIBCLOUD-786, GITHUB-665)
3356  [Scott Crunkleton]
3357
3358- Added t2.nano instance type to EC2 Compute driver
3359  (GITHUB-663)
3360  [Anthony Shaw]
3361
3362- Support for passing the image ID as a string instead of an instance of image when
3363  creating nodes in Dimension Data driver.
3364  (GITHUB-664)
3365  [Anthony Shaw]
3366
3367DNS
3368~~~
3369
3370- Add support for 'health checks' in Aurora DNS driver
3371  (GITHUB-672)
3372  [Wido den Hollander]
3373
3374- Make sure ``ttl`` attribute is correctly parsed and added to the ``Record``
3375  ``extra`` dictionary.
3376  (GITHUB-675)
3377  [Wido den Hollander]
3378
3379- Improve unit tests of Aurora DNS driver
3380  (GITHUB-679)
3381  [Wido den Hollander]
3382
3383Changes with Apache Libcloud 0.20.1
3384-----------------------------------
3385
3386Compute
3387~~~~~~~
3388
3389- [google] Allow for old and new style service account client email address
3390  (LIBCLOUD-785)
3391  [Hoang Phan]
3392
3393Changes with Apache Libcloud 0.20.0
3394-----------------------------------
3395
3396General
3397~~~~~~~
3398
3399- Added .editorconfig file for easier editing
3400  (GITHUB-625)
3401  [Misha Brukman]
3402
3403- Fix a bug with Libcloud accidentally setting paramiko root logger level to
3404  DEBUG (this should only happen if ``LIBCLOUD_DEBUG`` environment variable is
3405  provided).
3406
3407  Reported by John Bresnahan.
3408  (LIBCLOUD-765)
3409  [Tomaz Muraus, John Bresnahan]
3410
3411- Simply travis and tox config (.travis.yml, tox.ini).
3412  (GITHUB-608)
3413  [Anthony Monthe]
3414
3415- Fixed Python2.6 unit testing (and Google Cloud Storage tests)
3416  (GITHUB-648)
3417  [Scott Crunkleton]
3418
3419Compute
3420~~~~~~~
3421
3422- [google] Allow for old and new style service account client email address
3423  (LIBCLOUD-785)
3424  [Hoang Phan]
3425
3426- Minor security improvement for storing cached GCE credentials
3427  (LIBCLOUD-718)
3428  [Siim Põder]
3429
3430- Removed DreamHosts Compute Driver, DreamHosts users will now use the OpenStack Node driver since DreamHosts are OpenStack
3431  API compliant
3432  (GITHUB-655)
3433  [Stephano Maffulli]
3434
3435- Added additional kwargs to the create_node method for Dimension Data driver, allowing the user to specify the RAM and
3436  CPU upfront. Added a ex_reconfigure_node method and ex_list_customer_images as well as updating the API to 2.1.
3437  (LIBCLOUD-783, GITHUB-656)
3438  [Anthony Shaw]
3439
3440- The EC2 Instance Type updated with correct disk sizes (especially the disk size for the m3 instances),
3441  conversion errors between GiB an M[i]B, disk count were the cause.
3442  Added instance types - g2.8xlarge and t2.large.
3443  (GITHUB-646)
3444  [Philipp Hahn]
3445
3446- Add update node, update VMware tools, add storage, change storage size or speed, remove storage to Dimension Data Driver.
3447  (LIBCLOUD-775, GITHUB-644)
3448  [Anthony Shaw]
3449
3450- Include 'service_name' support in _parse_service_catalog_auth_v3 for Openstack Drivers
3451  (GITHUB-647)
3452  [Steve Gregory]
3453
3454- Outscale inc & sas driver update
3455  (GITHUB-645)
3456  [@LordShion]
3457
3458- Add new `eu-west-2` & `us-east-2` regions to the OUTSCALE_INC & OUTSCALE_SAS drivers.
3459  [Filipe Silva /lordshion]
3460
3461- [google compute] add pricing data update script
3462  (GITHUB-464)
3463  [Misha Brukman]
3464
3465- Fix a bug in the ``list_volumes`` method in the CloudStack driver so it
3466  returns an empty list if no volumes are found.
3467  (GITHUB-617)
3468  [Wido den Hollander]
3469
3470- Return proper volume state for CloudStack volumes.
3471  (GITHUB-615, LIBCLOUD-764)
3472  [Wido den Hollander]
3473
3474- Add support for multiple regions in Aurora compute driver
3475  (GITHUB-623)
3476  [Wido den Hollander]
3477
3478- Fix value of ``node.extra['ip_addresses']`` node attribute in the CloudStack
3479  driver.
3480  (LIBCLOUD-767, GITHUB-627)
3481  [Atsushi Sasaki]
3482
3483- Make sure that ``node.public_ips`` attribute in the CloudStack driver doesn't
3484  contain duplicated values..
3485  (LIBCLOUD-766, GITHUB-626)
3486  [Atsushi Sasaki]
3487
3488- Allow user to wait for a resource to reach a desired state in the
3489  Dimension Data driver by using new ``ex_wait_for_state`` method.
3490  (LIBCLOUD-707, GITHUB-631)
3491  [Anthony Shaw]
3492
3493- Added M4 pricing and instance information to EC2 driver
3494  (GITHUB-634)
3495  [Benjamin Zaitlen]
3496
3497- Added C4 instance information to EC2 driver
3498  (GITHUB-638)
3499  [amitofs]
3500
3501- Allow location of the datacenter to be supplied in ProfitBricks driver
3502  (LIBCLOUD-771, GITHUB-635)
3503  [Joel Reymont]
3504
3505- Reduce redundant API calls in CloudStack driver
3506  (LIBCLOUD-590, GITHUB-641)
3507  [Atsushi Sasaki]
3508
3509- Add an additional argument to libcloud.compute.drivers.GCENodeDriver.create_node
3510  to allow for creation of preemptible GCE instances
3511  (GITHUB-643)
3512  [@blawney]
3513
3514- GoogleStorageDriver can now use either our S3 authentication or other Google Cloud Platform OAuth2 authentication methods.
3515  (GITHUB-633)
3516  [Scott Crunkleton]
3517
3518- All NodeState, StorageVolumeState, VolumeSnapshotState and Provider attributes
3519  are now strings instead of integers.
3520  (GITHUB-624)
3521  [Allard Hoeve]
3522
3523Storage
3524~~~~~~~
3525
3526Loadbalancer
3527~~~~~~~~~~~~
3528
3529DNS
3530~~~
3531
3532- RackSpace driver - New DNS driver methods:
3533   - ex_iterate_ptr_records
3534   - ex_get_ptr_record
3535   - ex_create_ptr_record
3536   - ex_update_ptr_record
3537   - ex_delete_ptr_record
3538
3539  This should cover all of the functionality offered by the Rackspace DNS API
3540  in regards to RDNS.
3541  (LIBCLOUD-780, GITHUB-652)
3542  [Greg Hill]
3543
3544- Update ``create_record`` in the WorldWideDNS driver so it automatically
3545  selects a slot if one is not provided by the user via ``extra['entry']``
3546  argument.
3547  (GITHUB-621)
3548  [Alejandro Pereira]
3549
3550- Introduce GoDaddy DNS Driver with examples and documentation.
3551  (LIBCLOUD-772, GITHUB-640, LIBCLOUD-778)
3552  [Anthony Shaw]
3553
3554- Add new driver for CloudFlare DNS (https://www.cloudflare.com/dns/).
3555  (GITHUB-637)
3556  [Tomaz Muraus]
3557
3558Changes with Apache Libcloud 0.19.0
3559-----------------------------------
3560
3561General
3562~~~~~~~
3563
3564- Update Rackspace AUTH_URL
3565  (LIBCLOUD-738)
3566  [Brian Curtin]
3567
3568- Fix ``LIBCLOUD_DEBUG`` mode so it works on Python 3.x.
3569  [Tomaz Muraus]
3570
3571- Fix Libcloud code so it doesn't throw an exception if simplejson < 2.1.0 is
3572  installed.
3573  (LIBCLOUD-714, GITHUB-577)
3574  [Erik Johnson]
3575
3576- Fix endpoint URL for DimensionData Asia Pacific region.
3577  (GITHUB-585)
3578  [Anthony Shaw]
3579
3580- Document potential time drift issue which could cause authentication in the
3581  GCE drivers to fail.
3582  (GITHUB-571)
3583  [Michal Tekel]
3584
3585- Update documentation for EC2 - make sure they reflect region changes from
3586  0.14 release.
3587  (GITHUB-606)
3588  [James Guthrie]
3589
3590Compute
3591~~~~~~~
3592
3593- Fixed malformed XML requests with Dimension Data driver.
3594  (LIBCLOUD-760, GITHUB-610)
3595  [Anthony Shaw]
3596
3597- Update list of scopes for Google Compute Engine driver.
3598  (GITHUB-607)
3599  [Otto Bretz]
3600
3601- Allow user to filter VPC by project in the CloudStack driver by passing
3602  ``project`` argument to the ``ex_list_vps`` method.
3603  (GITHUB-516)
3604  [Syed Mushtaq Ahmed]
3605
3606- Add volume management methods and other various improvements and fixes in the
3607  RunAbove driver.
3608  (GITHUB-561)
3609  [Anthony Monthe]
3610
3611- Add support and update Dimension Data driver to use API v2.0 by default.
3612  (LIBCLOUD-736, GITHUB-564)
3613  [Anthony Shaw]
3614
3615- Add new ``ex_virtual_network_name`` and ``ex_network_config`` argument to the
3616  `create_node`` method in the Azure driver. With those arguments user can now
3617  specify which virtual network to use.
3618  (GITHUB-569)
3619  [Jesaja Everling]
3620
3621- Fix ``create_node`` method in the GCE driver calling inexistent method
3622  (ex_get_disk instead of ex_get_volume).
3623  (GITHUB-574)
3624  [Alex Poms]
3625
3626- Allow user to pass ``proxy_url`` keyword argument to the VCloud driver
3627  constructor.
3628  (GITHUB-578)
3629  [Daniel Pool]
3630
3631- Various fixes and improvements in the DimensionData driver (support for
3632  creating servers in MCP 1 and 2 data center, performance improvements in the
3633  location fetching, etc.).
3634  (GITHUB-587, GITHUB-593, LIBCLOUD-750, LIBCLOUD-753)
3635  [Anthony Shaw]
3636
3637- Added ``ex_assign_public_ip`` argument to ``create_node`` in the EC2 driver.
3638  (GITHUB-590)
3639  [Kyle Long]
3640
3641- Added ``ex_terminate_on_shutdown`` argument to ``create_node`` in the EC2
3642  driver.
3643  (GITHUB-595)
3644  [Kyle Long]
3645
3646- Various fixes and improvements in the ``ex_authorize_security_group_ingress``
3647  in the CloudStack driver.
3648  (LIBCLOUD-749, GITHUB-580)
3649  [Lionel Schaub]
3650
3651- Add pricing information for Softlayer.
3652  (LIBCLOUD-759, GITHUB-603)
3653  [David Wilson]
3654
3655- Standardize VolumeSnapshot states into the ``state`` attribute.
3656  (LIBCLOUD-758, GITHUB-602)
3657  [Allard Hoeve]
3658
3659Storage
3660~~~~~~~
3661
3662- Add support for ``sa-east-1`` region to the Amazon S3 driver.
3663  (GITHUB-562)
3664  [Iuri de Silvio]
3665
3666- Fix handling of binary data in Local storage driver on Python 3. Now the file
3667  which is to be written or read from is opened in the binary mode (``b`` flag).
3668  (LIBCLOUD-725, GITHUB-568)
3669  [Torf]
3670
3671Loadbalancer
3672~~~~~~~~~~~~
3673
3674- Add a new driver for DimensionData load-balancing service
3675  (http://cloud.dimensiondata.com/).
3676  (LIBCLOUD-737, GITHUB-567)
3677  [Anthony Shaw]
3678
3679DNS
3680~~~
3681
3682- Update Google Cloud DNS API from 'v1beta1' to 'v1'
3683  (GITHUB-583)
3684  [Misha Brukman]
3685
3686- Add new driver for AuroraDNS service.
3687  (GITHUB-562, LIBCLOUD-735)
3688  [Wido den Hollander]
3689
3690- Fix "_to_record" in the Route53 driver - make sure it doesn't throw if the
3691  record TTL is not available.
3692  [Tomaz Muraus]
3693
3694- Add new driver for WorldWideDNS service
3695  (http://www.worldwidedns.net/home.asp).
3696  (GITHUB-566, LIBCLOUD-732)
3697  [Alejandro Pereira]
3698
3699- Add new driver for DNSimple service (https://dnsimple.com/).
3700  (GITHUB-575, GITHUB-604, LIBCLOUD-739)
3701  [Alejandro Pereira, Patrick Humpal]
3702
3703- Add new driver for PointDNS service (https://pointhq.com).
3704  (GITHUB-576, GITHUB-591, LIBCLOUD-740)
3705  [Alejandro Pereira]
3706
3707- Add new driver for Vultr DNS service (https://www.vultr.com).
3708  (GITHUB-579, GITHUB-596, LIBCLOUD-745)
3709  [Alejandro Pereira, Janez Troha]
3710
3711- Add new driver for Liquidweb DNS service (http://www.liquidweb.com/).
3712  (GITHUB-581, LIBCLOUD-746)
3713  [Oltjano Terpollari, Alejandro Pereira]
3714
3715- Add new driver for Zonomi DNS hosting service (http://zonomi.com/).
3716  (GITHUB-582, LIBCLOUD-747)
3717  [Oltjano Terpollari, Alejandro Pereira]
3718
3719- Add new driver for Durable DNS service (https://durabledns.com/).
3720  (GITHUB-588, LIBCLOUD-748)
3721  [Oltjano Terpollari, Alejandro Pereira]
3722
3723Changes with Apache Libcloud 0.18.0
3724-----------------------------------
3725
3726General
3727~~~~~~~
3728
3729- Use native ``ssl.match_hostname`` functionality when running on Python >=
3730  3.2 and only require ``backports.ssl_match_hostname`` dependency on Python
3731  versions < 3.2.
3732  [Tomaz Muraus]
3733
3734- Add support for AWS Signature version 4.
3735
3736  Note: Currently only GET HTTP method is supported.
3737  (GITHUB-444)
3738  [Gertjan Oude Lohuis]
3739
3740- Fix a bug in the debug mode logging (LIBCLOUD_DEBUG). Logging to the debug
3741  file would throw an exception if the text contained non-ascii characters.
3742  [Tomaz Muraus]
3743
3744- Fix a bug with connection code throwing an exception if a port was a unicode
3745  type and not a str or int.
3746  (GITHUB-533, LIBCLOUD-716)
3747  [Avi Weit]
3748
3749- Update ``is_valid_ip_address`` function so it also works on Windows.
3750  (GITHUB-343, GITHUB-498, LIBCLOUD-601, LIBCLOUD-686)
3751  [Nicolas Fraison, Samuel Marks]
3752
3753- Add support for retrying failed HTTP requests.
3754
3755  Retrying is off by default and can be enabled by setting
3756  ``LIBCLOUD_RETRY_FAILED_HTTP_REQUESTS`` environment variable.
3757  (GITHUB-515, LIBCLOUD-360, LIBCLOUD-709)
3758
3759- Fix a bug in consuming stdout and stderr strams in Paramiko SSH client.
3760  In some cases (like connecting to localhost via SSH), exit_status_ready
3761  gets set immediately even before the while loop to consume the streams
3762  kicks in. In those cases, we will not have consumed the streams at all.
3763  (GITHUB-558)
3764  [Lakshmi Kannan]
3765
3766Compute
3767~~~~~~~
3768
3769- Google Compute now supports paginated lists including filtering.
3770  (GITHUB-491)
3771  [Lee Verberne]
3772
3773- OpenStackNodeSize objects now support optional, additional fields that are
3774  supported in OpenStack 2.1: `ephemeral_disk`, `swap`, `extra`.
3775  (GITHUB-488, LIBCLOUD-682)
3776  [Greg Hill]
3777
3778- StorageVolume objects now have an attribute `state` that holds a
3779  state variable that is standardized state across drivers. Drivers that
3780  currently support the `state` attribute are OpenStack and EC2.
3781  StorageVolume objects returned by drivers that do not support the
3782  attribute will have a `state` of `None`. When a provider returns a state
3783  that is unknown to the driver, the state will be `UNKNOWN`. Please report
3784  such states. A couple of drivers already put state fields in the `extra`
3785  fields of StorageVolumes. These fields were kept for
3786  backwards-compatibility and for reference.
3787  (GITHUB-476)
3788  [Allard Hoeve]
3789
3790- StorageVolume objects on EC2 and OpenStack now have a key called snapshot_id
3791  in their extra dicts containing the snapshot ID the volume was based on.
3792  (GITHUB-479)
3793  [Allard Hoeve]
3794
3795- OpenStack driver: deprecated ex_create_snapshot and ex_delete_snapshot in
3796  favor of create_volume_snapshot and destroy_volume_snapshot. Updated base
3797  driver method create_storage_volume argument name to be optional.
3798  (GITHUB-478)
3799  [Allard Hoeve]
3800
3801- Add support for creating volumes based on snapshots to EC2 and OS drivers.
3802  Also modify signature of base NodeDriver.create_volume to reflect the fact
3803  that all drivers expect a StorageSnapshot object as the snapshot argument.
3804  (GITHUB-467, LIBCLOUD-672)
3805  [Allard Hoeve]
3806
3807- VolumeSnapshots now have a `created` attribute that is a `datetime`
3808  field showing the creation datetime of the snapshot. The field in
3809  VolumeSnapshot.extra containing the original string is maintained, so
3810  this is a backwards-compatible change.
3811  (GITHUB-473)
3812  [Allard Hoeve]
3813
3814- Improve GCE create_node, make sure ex_get_disktype function
3815  (GITHUB-448)
3816  [Markos Gogoulos]
3817
3818- GCE driver fix to handle unknown image projects
3819  (GITHUB-447)
3820  [Markos Gogoulos]
3821
3822- Allow user to pass ``ex_blockdevicemappings`` argument to the create_node
3823  method in the OpenStack driver.
3824  (GITHUB-398, LIBCLOUD-637)
3825  [Allard Hoeve]
3826
3827- Fix ``list_volume_snapshots`` method in the EC2 driver so it comforms to the
3828  base API.
3829  (LIBCLOUD-664, GITHUB-451)
3830  [Allard Hoeve]
3831
3832- Add ``volumes_attached`` attibute to ``node.extra`` in the OpenStack driver.
3833  (LIBCLOUD-668, GITHUB-462)
3834  [Allard Hoeve]
3835
3836- Add the following new methods to the Linode driver: ``ex_list_volumes``,
3837  ``ex_create_volume``, ``ex_destroy_volume``.
3838  (LIBCLOUD-649, GITHUB-430)
3839  [Wojciech Wirkijowski]
3840
3841- Add ``list_volume_snapshots`` method to the OpenStack driver.
3842  (LIBCLOUD-663, GITHUB-450)
3843  [Allard Hoeve]
3844
3845- Add Site to Site VPN functionality to CloudStack driver.
3846  (GITHUB-465)
3847  [Avi Nanhkoesingh]
3848
3849- Add affinity group support to CloudStack driver
3850  (LIBCLOUD-671, GITHUB-468)
3851  [Mateusz Korszun]
3852
3853- Add a support for a new AWS Frankfurt, Germany region (``eu-central-1``) to
3854  the EC2 driver using AWS Signature v4.
3855  (GITHUB-444)
3856  [Gertjan Oude Lohuis, Tomaz Muraus]
3857
3858- Allow Filtering in EC2 list_images() driver
3859  (GITHUB-456, LIBCLOUD-667)
3860  [Katriel Traum]
3861
3862- Add ex_list_ip_forwarding_rules() to CloudStack driver
3863  (GITHUB-483)
3864  [Atsushi Sasaki]
3865
3866- Add AURORA compute driver
3867  (LIBCLOUD-641, GITHUB-477)
3868  [Wido den Hollander]
3869
3870- Update ``ex_describe_tags`` method in the EC2 driver and allow user to list
3871  tags for any supported resource. Previously you could only list tags for a
3872  node or a storage volume.
3873  (LIBCLOUD-676, GITHUB-482)
3874  [John Kinsella]
3875
3876- Various improvements in the HostVirual driver (code refactoring, support for
3877  managing "packages").
3878  (LIBCLOUD-670, GITHUB-472)
3879  [Dinesh Bhoopathy]
3880
3881- Add support for DigitalOcean API v2.0 while maintaining support for the old
3882  API v2.0.
3883
3884  Note: API v2.0 is now used by default. To use the old API v1.0, pass
3885  ``api_version='1.0'`` argument to the driver constructor.
3886  (GITHUB-442)
3887  [Andrew Starr-Bochicchio]
3888
3889- Add new ``d4.`` instance types to the EC2 driver. Also update EC2 pricing data.
3890  (GITHUB-490)
3891  [Tomaz Muraus]
3892
3893- Add new driver for Microsft Azure Virtual Machines service.
3894  (LIBCLOUD-556, GITHUB-305, GITHUB-499, GITHUB-538)
3895  [Michael Bennett, davidcrossland, Richard Conway, Matt Baldwin, Tomaz Muraus]
3896
3897- Fix VPC lookup method in CloudStack driver
3898  (GITHUB-506)
3899  [Avi Nanhkoesingh]
3900
3901- Add new driver for the Dimension Data provider based on the OpSource driver.
3902  (LIBCLOUD-698, GITHUB-507, LIBCLOUD-700, GITHUB-513)
3903  [Anthony Shaw]
3904
3905- Add "virtualmachine_id" attribute to the ``CloudStackAddress`` class in the
3906  CloudStack driver.
3907  (LIBCLOUD-679, GITHUB-485)
3908  [Atsushi Sasaki]
3909
3910- Allow user to pass filters via arguments to the
3911  ``ex_list_port_forwarding_rules`` in the CloudStack driver.
3912  (LIBCLOUD-678, GITHUB-484)
3913  [Atsushi Sasaki]
3914
3915- Fix an issue with ``list_nodes`` in the CloudSigma driver throwing an
3916  exception if a node in the list had a static IP.
3917  (LIBCLOUD-707, GITHUB-514)
3918  [Chris O'Brien]
3919
3920- Don't throw an exception if a limit for a particular CloudStack resource is
3921  "Unlimited" and not a number.
3922  (GITHUB-512)
3923  [Syed Mushtaq Ahmed]
3924
3925- Allow user to pass ``ex_config_drive`` argument to the ``create_node`` method
3926  in the OpenStack driver.
3927  (LIBCLOUD-356, GITHUB-330)
3928  [Ryan Parrish]
3929
3930- Add new driver for Cloudwatt (https://www.cloudwatt.com/en/) provider.
3931  (GITHUB-338)
3932  [Anthony Monthe]
3933
3934- Add new driver for Packet (https://www.packet.com/) provider.
3935  (LIBCLOUD-703, GITHUB-527)
3936  [Aaron Welch]
3937
3938- Update Azure VM pricing information and add information for new D instance
3939  types.
3940  (GITHUB-528)
3941  [Michael Bennett]
3942
3943- Add ``ex_get_node`` and ``ex_get_volume`` methods to CloudStack driver.
3944  (GITHUB-532)
3945  [Anthony Monthe]
3946
3947- Update CloudSigma driver so the "unavailable" and "paused" node state is
3948  correctly mapped to "error" and "paused" respectively.
3949  (GITHUB-517)
3950  [Chris O'Brien]
3951
3952- Add SSH key pair management methods to the Gandi driver.
3953  (GITHUB-534)
3954  [Anthony Monthe]
3955
3956- Add ``ex_get_node`` and ``ex_get_volume`` methods to Gandi driver.
3957  (GITHUB-534)
3958  [Anthony Monthe]
3959
3960- Add ``fault`` attribute to the ``extra`` dictionary of the ``Node`` instance
3961  returned by the OpenStack driver.
3962  (LIBCLOUD-730, GITHUB-557)
3963  [Nick Fox]
3964
3965- Add new driver for Onapp IaaS platform.
3966  (LIBCLOUD-691, GITHUB-502)
3967  [Matthias Wiesner]
3968
3969- Allow user to inject custom data / script into the Azure node by passing
3970  ``ex_custom_data`` argument to the ``create_node`` method.
3971  (LIBCLOUD-726, GITHUB-554)
3972  [David Wilson]
3973
3974- Add ``ex_create_cloud_service`` and ``ex_destroy_cloud_service`` method to the
3975  Azure driver.
3976  (LIBCLOUD-724, GITHUB-551)
3977  [David Wilson]
3978
3979- Add support for passing user data when creating a DigitalOcean node
3980  (``ex_user_data`` argument).
3981  (LIBCLOUD-731, GITHUB-559)
3982  [David Wilson]
3983
3984- Allow user to specify which arguments are passed to ``list_nodes`` method
3985  which is called inside ``wait_until_running`` by passing
3986  ``ex_list_nodes_kwargs`` argument to the ``wait_until_running`` method.
3987  (``ex_user_data`` argument).
3988  (LIBCLOUD-723, GITHUB-548)
3989  [David Wilson]
3990
3991- Allow user to pass ``ex_volume_type`` argument to the ``create_volume`` method
3992  in the OpennStack driver.
3993  (GITHUB-553)
3994  [Rico Echwald-Tijsen]
3995
3996- Add new driver for RunAbove (https://www.runabove.com) provider.
3997  (GITHUB-550)
3998  [Anthony Monthe]
3999
4000- Fix a bug with exception being throw inside the CloudStack driver when the
4001  provider returned no error message in the body.
4002  (GITHUB-555)
4003  [Konstantin Skaburskas]
4004
4005- Various improvements in the DigitalOcean driver:
4006   - Increase page size to API maximum.
4007   - Add ``ex_create_attr`` kwarg to ``create_node`` method.
4008   - Update all the ``list_*`` methods to use paginated requests
4009   - Allow user to specify page size by passing ``ex_per_page`` argument to the
4010     constructor.
4011
4012  (LIBCLOUD-717, GITHUB-537)
4013  [Javier Castillo II]
4014
4015Storage
4016~~~~~~~
4017
4018- Fix a bug with authentication in the OpenStack Swift driver.
4019  (GITHUB-492, LIBCLOUD-635)
4020  [Tom Fifield]
4021
4022- Add AuroraObjects Storage Driver.
4023  (GITHUB-540, LIBCLOUD-719)
4024  [Wido den Hollander]
4025
4026Loadbalancer
4027~~~~~~~~~~~~
4028
4029- Add a new driver for Softlayer load-balancing service
4030  (https://www.softlayer.com/load-balancing).
4031  (GITHUB-500, LIBCLOUD-688)
4032  [Avi Weit]
4033
4034DNS
4035~~~
4036
4037- Fix a bug when a ZoneDoesntExist exception was thrown when listing records
4038  for a zone which has no records in the HostVirtual driver.
4039  (GITHUB-460)
4040  [Vanč Levstik]
4041
4042- Correctly handle MX records priority in the Route53 driver.
4043  (GITHUB-469)
4044  [Vanč Levstik]
4045
4046- Allow user to create an A record which points directly to the domain zone
4047  name in the Route53 driver.
4048  (GITHUB-469)
4049  [Vanč Levstik]
4050
4051- Fix delete_zone method in the HostVirtual driver.
4052  (GITHUB-461)
4053  [Vanč Levstik]
4054
4055- Fix parsing of the record name in the HostVirtual driver.
4056  (GITHUB-461)
4057  [Vanč Levstik]
4058
4059- Add new driver for DigitalOcean DNS service.
4060  (GITHUB-505)
4061  [Javier Castillo II]
4062
4063Changes with Apache Libcloud 0.17.0
4064-----------------------------------
4065
4066General
4067~~~~~~~
4068
4069- Use ``match_hostname`` function from ``backports.ssl_match_hostname``
4070  package to verify the SSL certificate hostname instead of relying on
4071  our own logic.
4072  (GITHUB-374)
4073  [Alex Gaynor]
4074
4075Compute
4076~~~~~~~
4077
4078- Add new `eu-west-2` & `us-east-2` regions to the OUTSCALE_INC & OUTSCALE_SAS drivers.
4079  [Filipe Silva /lordshion]
4080
4081- GCE driver updated to include ex_stop_node() and ex_start_node() methods.
4082  (GITHUB-442)
4083  [Eric Johnson]
4084
4085- GCE driver now raises ResourceNotFoundError when the specified image is
4086  not found in any image project. Previously, this would return None but now
4087  raises the not-found exception instead. This fixes a bug where returning
4088  None caused ex_delete_image to raise an AttributeError.
4089  (GITHUB-441)
4090  [Eric Johnson]
4091
4092- GCE driver update to support JSON format Service Account files and a PY3
4093  fix from Siim Põder for LIBCLOUD-627.
4094  (LIBCLOUD-627, LIBCLOUD-657, GITHUB-438)
4095  [Eric Johnson]
4096
4097- GCE driver fixed for missing param on ex_add_access_config.
4098  (GITHUB-435)
4099  [Peter Mooshammer]
4100
4101- GCE driver support for HTTP load-balancer resources.
4102  (LIBCLOUD-605, GITHUB-429)
4103  [Lee Verberne]
4104
4105- GCE driver updated to make better use of GCEDiskTypes.
4106  (GITHUB-428)
4107  [Eric Johnson]
4108
4109- GCE driver list_images() now returns all non-deprecated images by default.
4110  (LIBCLOUD-602, GITHUB-423)
4111  [Eric Johnson]
4112
4113- Improve GCE API coverage for create_node().
4114  (GITHUB-419)
4115  [Eric Johnson]
4116
4117- GCE Licenses added to the GCE driver.
4118  (GITHUB-420)
4119  [Eric Johnson]
4120
4121- GCE Projects support common instance metadata and usage export buckets.
4122  (GITHUB-409)
4123  [Eric Johnson]
4124
4125- Improvements to TargetPool resource in GCE driver.
4126  (GITHUB-414)
4127  [Eric Johnson]
4128
4129- Adding TargetInstances resource to GCE driver.
4130  (GITHUB-393)
4131  [Eric Johnson]
4132
4133- Adding DiskTypes resource to GCE driver.
4134  (GITHUB-391)
4135  [Eric Johnson]
4136
4137- Fix boot disk auto_delete in GCE driver.
4138  (GITHUB-412)
4139  [Igor Bogomazov]
4140
4141- Add Routes to GCE driver.
4142  (GITHUB-410)
4143  [Eric Johnson]
4144
4145- Add missing ``ubuntu-os-cloud`` images to the GCE driver.
4146  (LIBCLOUD-632, GITHUB-385)
4147  [Borja Martin]
4148
4149- Add new `us-east-2` and `us-east-3` region to the Joyent driver.
4150  (GITHUB-386)
4151  [Anthony Monthe]
4152
4153- Add missing t2. instance types to the us-west-1 region in the EC2 driver.
4154  (GITHUB-388)
4155  [Matt Lehman]
4156
4157- Add option to expunge VM on destroy in CloudStack driver.
4158  (GITHUB-382)
4159  [Roeland Kuipers]
4160
4161- Add extra attribute in list_images for CloudStack driver.
4162  (GITHUB-389)
4163  [Loic Lambiel]
4164
4165- Add ``ex_security_group_ids`` argument to the create_node method in the
4166  EC2 driver. This way users can launch VPC nodes with security groups.
4167  (GITHUB-373)
4168  [Itxaka Serrano]
4169
4170- Add description argument to GCE Network.
4171  (GITHUB-397)
4172  [Eric Johnson]
4173
4174- GCE: Improve MachineType (size) coverage of GCE API.
4175  (GITHUB-396)
4176  [Eric Johnson]
4177
4178- GCE: Improved Images coverage.
4179  (GITHUB-395)
4180  [Eric Johnson]
4181
4182- GCE: Support for global IP addresses.
4183  (GITHUB-390, GITHUB-394)
4184  [Eric Johnson]
4185
4186- GCE: Add missing snapshot attributes.
4187  (GITHUB-401)
4188  [Eric Johnson]
4189
4190- AWS: Set proper disk size in c3.X instance types.
4191  (GITHUB-405)
4192  [Itxaka Serrano]
4193
4194- Fix a bug with handling of the ``ex_keyname`` argument in the Softlayer
4195  driver.
4196  (GITHUB-416, LIBCLOUD-647)
4197  [Dustin Oberloh]
4198
4199- Update CloudSigma region list (remove Las Vegas, NV region and add new San
4200  Jose, CA and Miami, FL region).
4201  (GITHUB-417)
4202  [Viktor Petersson]
4203
4204- Add ``ex_get_node`` method to the Joyent driver.
4205  (GITHUB-421)
4206  [Anthony Monthe]
4207
4208- Add support for placement group management to the EC2 driver.
4209  (GITHUB-418)
4210  [Mikhail Ovsyannikov]
4211
4212- Add new tok02 region to the Softlayer driver.
4213  (GITHUB-436, LIBCLOUD-656)
4214  [Dustin Oberloh]
4215
4216- Add new Honolulu, HI endpoint to the CloudSigma driver.
4217  (GITHUB-439)
4218  [Stephen D. Spencer]
4219
4220- Fix a bug with config_drive attribute in the OpenStack driver. New versions
4221  of OpenStack now return a boolean and not a string.
4222  (GITHUB-433)
4223  [quilombo]
4224
4225- Add support for Abiquo API v3.x, remove support for now obsolete API v2.x.
4226  (GITHUB-433, LIBCLOUD-652)
4227  [David Freedman]
4228
4229- Allow rootdisksize parameter in create_node CloudStack driver
4230  (GITHUB-440, LIBCLOUD-658)
4231  [Loic Lambiel]
4232
4233Storage
4234~~~~~~~
4235
4236- Allow user to pass ``headers`` argument to the ``upload_object`` and
4237  ``upload_object_via_stream`` method.
4238
4239  This way user can specify CORS headers with the drivers which support that.
4240  (GITHUB-403, GITHUB-404)
4241  [Peter Schmidt]
4242
4243- Fix upload_object_via_stream so it works correctly under Python 3.x if user
4244  manually passes an iterator to the method.
4245
4246  Also improve how reading a file in chunks works with drivers which support
4247  chunked encoding - always try to fill a chunk with CHUNK_SIZE bytes instead
4248  of directly streaming the chunk which iterator returns.
4249
4250  Previously, if iterator returned 1 byte in one iteration, we would directly
4251  send this as a single chunk to the API.
4252  (GITHUB-408, LIBCLOUD-639)
4253  [Peter Schmidt]
4254
4255Loadbalancer
4256~~~~~~~~~~~~
4257
4258- Updates to CloudStack driver.
4259  (GITHUB-434)
4260  [Jeroen de Korte]
4261
4262DNS
4263~~~
4264
4265- New driver for Softlayer DNS service.
4266  (GITHUB-413, LIBCLOUD-640)
4267  [Vanč Levstik]
4268
4269- Fix a bug with ``ex_create_multi_value_record`` method in the Route53 driver
4270  only returning a single record.
4271  (GITHUB-431, LIBCLOUD-650)
4272  [Itxaka Serrano]
4273
4274Changes with Apache Libcloud 0.16.0
4275-----------------------------------
4276
4277General
4278~~~~~~~
4279
4280- Add new ``OpenStackIdentity_3_0_Connection`` class for working with
4281  OpenStack Identity (Keystone) service API v3.
4282  [Tomaz Muraus]
4283
4284- Add support for prettifying JSON or XML response body which is printed to a
4285  file like object when using ``LIBCLOUD_DEBUG`` environment variable.
4286  This option can be enabled by setting
4287  ``LIBCLOUD_DEBUG_PRETTY_PRINT_RESPONSE`` environment variable.
4288  [Tomaz Muraus]
4289
4290- Add support for using an HTTP proxy for outgoing HTTP and HTTPS requests.
4291  [Tomaz Muraus, Philip Kershaw]
4292
4293Compute
4294~~~~~~~
4295
4296- Fix an issue with ``LIBCLOUD_DEBUG`` not working correctly with the
4297  Linode driver.
4298  [Tomaz Muraus, Juan Carlos Moreno]
4299  (LIBCLOUD-598, GITHUB-342)
4300
4301- Add new driver for VMware vSphere (http://www.vmware.com/products/vsphere/)
4302  based clouds.
4303  [Tomaz Muraus]
4304
4305- Add two new default node states - ``NodeState.SUSPENDED`` and
4306  ``NodeState.ERROR``.
4307  [Tomaz Muraus]
4308
4309- Fix to join networks properly in ``deploy_node`` in the CloudStack
4310  driver.
4311  (LIBCLOUD-593, GITUHB-336)
4312  [Atsushi Sasaki]
4313
4314- Create ``CloudStackFirewallRule`` class and corresponding methods.
4315  (LIBCLOUD-594, GITHUB-337)
4316  [Atsushi Sasaki]
4317
4318- Add support for SSD disks to Google Compute driver.
4319  (GITHUB-339)
4320  [Eric Johnson]
4321
4322- Add utility ``get_regions`` and ``get_service_names`` methods to the
4323  ``OpenStackServiceCatalog`` class.
4324  [Andrew Mann, Tomaz Muraus]
4325
4326- Fix a bug in ``ex_get_console_output`` in the EC2 driver which would cause
4327  an exception to be thrown if there was no console output for a particular
4328  node.
4329
4330  Reported by Chris DeRamus.
4331  [Tomaz Muraus]
4332
4333- Add ip_address parameter in CloudStack driver ``create_node`` method.
4334  (GITHUB-346)
4335  [Roeland Kuipers]
4336
4337- Fix ``ParamikoSSHClient.run`` and ``deploy_node`` method to work correctly
4338  under Python 3.
4339  (GITHUB-347)
4340  [Eddy Reyes]
4341
4342- Update OpenStack driver to map more node states to states recognized by
4343  Libcloud.
4344  [Chris DeRamus]
4345
4346- Fix a bug with ``ex_metadata`` argument handling in the Google Compute Engine
4347  driver ``create_node`` method.
4348  (LIBCLOUD-544, GITHUB-349, GITHUB-353)
4349  [Raphael Theberge]
4350
4351- Add SSH key pair management methods to the Softlayer driver.
4352  (GITHUB-321, GITHUB-354)
4353  [Itxaka Serrano]
4354
4355- Correctly categorize node IP addresses into public and private when dealing
4356  with OpenStack floating IPs.
4357  [Andrew Mann]
4358
4359- Add new t2 instance types to the EC2 driver.
4360  [Tomaz Muraus]
4361
4362- Add support for Amazon GovCloud to the EC2 driver (us-gov-west-1 region).
4363  [Chris DeRamus]
4364
4365- Allow user to pass "gp2" for "ex_volume_type" argument to the create_volume
4366  method in the EC2 driver.
4367
4368  Reported by Xavier Barbosa.
4369  [Tomaz Muraus, Xavier Barbosa]
4370
4371- Add new driver for ProfitBricks provider.
4372  (LIBCLOUD-589, GITHUB-352)
4373  [Matt Baldwin]
4374
4375- Various improvements and bugs fixes in the GCE driver. For a list, see
4376  https://github.com/apache/libcloud/pull/360/commits
4377  (GITHUB-360)
4378  [Evgeny Egorochkin]
4379
4380- Allow user to specify virtualization type when registering an EC2 image by
4381  passing ``virtualization_type`` argument to the ``ex_register_image`` method.
4382  (GITHUB-361)
4383  [Andy Grimm]
4384
4385- Add ``ex_create_image`` method to the GCE driver.
4386  (GITHUB-358, LIBCLOUD-611)
4387  [Katriel Traum]
4388
4389- Add some methods to CloudStack driver:
4390  create_volume_snapshot, list_snapshots, destroy_volume_snapshot
4391  create_snapshot_template, ex_list_os_types)
4392  (GITHUB-363, LIBCLOUD-616)
4393  [Oleg Suharev]
4394
4395- Added VPC support and Egress Firewall rule support fo CloudStack
4396  (GITHUB-363)
4397  [Jeroen de Korte]
4398
4399- Add additional attributes to the ``extra`` dictionary of OpenStack
4400  StorageVolume object.
4401  (GITHUB-366)
4402  [Gertjan Oude Lohuis]
4403
4404- Fix ``create_volume`` method in the OpenStack driver to return a created
4405  volume object (instance of StorageVolume) on success, instead of a boolean
4406  indicating operation success.
4407  (GITHUB-365)
4408  [Gertjan Oude Lohuis]
4409
4410- Add optional project parameters for ex_list_networks() to CloudStack driver
4411  (GITHUB-367, LIBCLOUD-615)
4412  [Rene Moser]
4413
4414- CLOUDSTACK: option to start VM in a STOPPED state
4415  (GITHUB-368)
4416  [Roeland Kuipers]
4417
4418- Support "config_drive" in the OpenStack driver. Allow users to pass
4419  ``ex_config_drive`` argument to the ``create_node`` and ``ex_rebuild_node``
4420  method.
4421  (GITHUB-370)
4422  [Nirmal Ranganathan]
4423
4424- Add support for service scopes to the ``create_node`` method in the GCE
4425  driver.
4426  (LIBCLOUD-578, GITHUB-373)
4427  [Eric Johnson]
4428
4429- Update GCE driver to allow for authentication with internal metadata service.
4430  (LIBCLOUD-625, LIBCLOUD-276, GITHUB-276)
4431  [Eric Johnson]
4432
4433- Fix a bug in Elasticstack node creation method where it would raise
4434  exceptions because of missing data in a response, and also fix pulling the
4435  IP from the proper data item.
4436  (GITHUB-325)
4437  [Michael Bennett]
4438
4439- Fix a bug which prevented user to connect and instantiate multiple EC2 driver
4440  instances for different regions at the same time.
4441  (GITHUB-325)
4442  [Michael Bennett]
4443
4444- Add methods in CloudStack driver to manage mutiple nics per vm.
4445  (GITHUB-369)
4446  [Roeland Kuipers]
4447
4448- Implements VPC network ACLs for CloudStack driver.
4449  (GITHUB-371)
4450  [Jeroen de Korte]
4451
4452Storage
4453~~~~~~~
4454
4455- Fix a bug with CDN requests in the CloudFiles driver.
4456  [Tomaz Muraus]
4457
4458- Fix a bug with not being able to specify meta_data / tags when uploading an
4459  object using Google Storage driver.
4460  (LIBCLOUD-612, GITHUB-356)
4461  [Stefan Friesel]
4462
4463Loadbalancer
4464~~~~~~~~~~~~
4465
4466- Allow user to specify session affinity algorithm in the GCE driver by passing
4467  ``ex_session_affinity`` argument to the ``create_balancer`` method.
4468  (LIBCLOUD-595, GITHUB-341)
4469  [Lee Verberne, Eric Johnson]
4470
4471DNS
4472~~~
4473
4474- Various fixes in the Google DNS driver.
4475  (GITHUB-378)
4476  [Franck Cuny]
4477
4478Changes with Apache Libcloud 0.15.1
4479-----------------------------------
4480
4481Compute
4482~~~~~~~
4483
4484- Allow user to limit a list of subnets which are returned by passing
4485  ``subnet_ids`` and ``filters`` argument to the ``ex_list_subnets``
4486  method in the EC2 driver.
4487  (LIBCLOUD-571, GITHUB-306)
4488  [Lior Goikhburg]
4489
4490- Allow user to limit a list of internet gateways which are returned by
4491  passing ``gateway_ids`` and ``filters`` argument to the
4492  ``ex_list_internet_gateways`` method in the EC2 driver.
4493  (LIBCLOUD-572, GITHUB-307)
4494  [Lior Goikhburg]
4495
4496- Allow user to filter which nodes are returned by passing ``ex_filters``
4497  argument to the ``list_nodes`` method in the EC2 driver.
4498  (LIBCLOUD-580, GITHUB-320)
4499  [Lior Goikhburg]
4500
4501- Add network_association_id to ex_list_public_ips and CloudstackAddress object
4502  (GITHUB-327)
4503  [Roeland Kuipers]
4504
4505- Allow user to specify admin password by passing ``ex_admin_pass`` argument
4506  to the ``create_node`` method in the Openstack driver.
4507  (GITHUB-315)
4508  [Marcus Devich]
4509
4510- Fix a possible race condition in deploy_node which would occur if node
4511  is online and can be accessed via SSH, but the SSH key we want to use hasn't
4512  been installed yet.
4513
4514  Previously, we would immediately throw if we can connect, but the SSH key
4515  hasn't been installed yet.
4516  (GITHUB-331)
4517  [David Gay]
4518
4519- Propagate an exception in ``deploy_node`` method if user specified an invalid
4520  path to the private key file. Previously this exception was silently swallowed
4521  and ignored.
4522  [Tomaz Muraus]
4523
4524DNS
4525~~~
4526
4527- Include a better message in the exception which is thrown when a request
4528  in the Rackspace driver ends up in an ``ERROR`` state.
4529  [Tomaz Muraus]
4530
4531Changes with Apache Libcloud 0.15.0
4532-----------------------------------
4533
4534General
4535~~~~~~~
4536
4537- Use lxml library (if available) for parsing XML. This should substantially
4538  reduce parsing time and memory usage for large XML responses (e.g. retrieving
4539  all the available images in the EC2 driver).
4540  [Andrew Mann]
4541
4542- Use --head flag instead of -X HEAD when logging curl lines for HEAD requests
4543  in debug mode.
4544
4545  Reported by Brian Metzler.
4546  (LIBCLOUD-552)
4547  [Tomaz Muraus]
4548
4549- Fix Python 3 compatibility bugs in the following functions:
4550
4551  * import_key_pair_from_string in the EC2 driver
4552  * publickey._to_md5_fingerprint
4553  * publickey.get_pubkey_ssh2_fingerprint
4554
4555  (GITHUB-301)
4556  [Csaba Hoch]
4557
4558- Update CA_CERTS_PATH to also look for CA cert bundle which comes with
4559  openssl Homebrew formula on OS x (/usr/local/etc/openssl/cert.pem).
4560  (GITHUB-309)
4561  [Pedro Romano]
4562
4563- Update Google drivers to allow simultaneous authornization for all the
4564  supported Google Services.
4565  (GITHUB-302)
4566  [Eric Johnson]
4567
4568Compute
4569~~~~~~~
4570
4571- Fix create_key_pair method which was not returning private key.
4572  (LIBCLOUD-566)
4573  [Sebastien Goasguen]
4574
4575- Map "Stopped" node state in the CloudStack driver to NodeState.STOPPED
4576  instead of NodeState.TERMINATED, "Stopping" to NodeState.PENDING instead of
4577  NodeState.TERMINATED and "Expunging" to NodeState.PENDING instead of
4578  NodeState.TERMINATED.
4579  (GITHUB-246)
4580  [Chris DeRamus, Tomaz Muraus]
4581
4582- Add ex_create_tags and ex_delete_tags method to the CloudStack driver.
4583  (LIBCLOUD-514, GITHUB-248)
4584  [Chris DeRamus]
4585
4586- Add new G2 instances to the EC2 driver.
4587  [Tomaz Muraus]
4588
4589- Add support for multiple API versions to the Eucalyptus driver and allows
4590  user to pass "api_version" argument to the driver constructor.
4591  (LIBCLOUD-516, GITHUB-249)
4592  [Chris DeRamus]
4593
4594- Map "Powered Off" state in the vCloud driver from "TERMINATED" to "STOPPED".
4595  (GITHUB-251)
4596  [Ash Berlin]
4597
4598- Add ex_rename_node method to the DigitalOcean driver.
4599  (GITHUB-252)
4600  [Rahul Ranjan]
4601
4602- Improve error parsing in the DigitalOcean driver.
4603
4604  Reported by Deni Bertovic.
4605  [Tomaz Muraus]
4606
4607- Add extension methods for the VPC internet gateway management to the EC2
4608  driver.
4609  (LIBCLOUD-525, GITHUB-255)
4610  [Chris DeRamus]
4611
4612- Add CloudStackProject class to the CloudStack driver and add option to select
4613  project and disk offering on node creation.
4614  (LIBCLOUD-526, GITHUB-257)
4615  [Jim Divine]
4616
4617- Fix IP address handling in the OpenStack driver.
4618  (LIBCLOUD-503, GITHUB-235)
4619  [Markos Gogoulos]
4620
4621- Ad new ex_delete_image and ex_deprecate_image method to the GCE driver.
4622  (GITHUB-260)
4623  [Franck Cuny]
4624
4625- Ad new ex_copy_image method to the GCE driver.
4626  (GITHUB-258)
4627  [Franck Cuny]
4628
4629- Ad new ex_set_volume_auto_delete method to the GCE driver.
4630  (GITHUB-264)
4631  [Franck Cuny]
4632
4633- Add ex_revoke_security_group_ingress method to the CloudStack driver.
4634  [Chris DeRamus, Tomaz Muraus]
4635
4636- Allow user to pass ex_ebs_optimized argument to the create_node method
4637  in the EC2 driver.
4638  (GITHUB-272)
4639  [zerthimon]
4640
4641- Add "deprecated" attribute to the Node object in the Google Compute Engine
4642  driver.
4643  (GITHUB-276)
4644  [Chris / bassdread]
4645
4646- Update Softlayer driver to use "fullyQualifiedDomainName" instead of
4647  "hostname" attribute for the node name.
4648  (GITHUB-280)
4649  [RoelVanNyen]
4650
4651- Allow user to specify target tags using target_tags attribute when creating
4652  a firewall rule in the GCE driver.
4653  (GITHUB-278)
4654  [zerthimon]
4655
4656- Add new standard API for image management and initial implementation for the
4657  EC2 and Rackspace driver.
4658  (GITHUB-277)
4659  [Matt Lehman]
4660
4661- Allow user to specify "displayname" attribute when creating a CloudStack node
4662  by passing "ex_displayname" argument to the method.
4663
4664  Also allow "name" argument to be empty (None). This way CloudStack
4665  automatically uses Node's UUID for the name.
4666  (GITHUB-289)
4667  [Jeff Moody]
4668
4669- Deprecate "key" argument in the SSHClient class in favor of new "key_files"
4670  argument.
4671
4672  Also add a new "key_material" argument. This argument can contain raw string
4673  version of a private key.
4674
4675  Note 1: "key_files" and "key_material" arguments are mutually exclusive.
4676  Note 2: "key_material" argument is not supported in the ShellOutSSHClient.
4677
4678- Use node id attribute instead of the name for the "lconfig" label in the
4679  Linode driver. This way the label is never longer than 48 characters.
4680  (GITHUB-287)
4681  [earthgecko]
4682
4683- Add a new driver for Outscale SAS and Outscale INC cloud
4684  (http://www.outscale.com).
4685  (GITHUB-285, GITHUB-293, LIBCLOUD-536, LIBCLOUD-553)
4686  [Benoit Canet]
4687
4688- Add new driver for HP Public Cloud (Helion) available via Provider.HPCLOUD
4689  constant.
4690  [Tomaz Muraus]
4691
4692- Allow user to specify availability zone when creating an OpenStack node by
4693  passing "ex_availability_zone" argument to the create_node method.
4694  Note: This will only work if the OpenStack installation is running
4695  availability zones extension.
4696  (GITHUB-295, LIBCLOUD-555)
4697  [syndicut]
4698
4699- Allow user to pass filters to ex_list_networks method in the EC2 driver.
4700  (GITHUB-294)
4701  [zerthimon]
4702
4703- Allow user to retrieve container images using ex_get_image method in the
4704  Google Compute Engine driver.
4705  (GITHUB-299, LIBCLOUD-562)
4706  [Magnus Andersson]
4707
4708- Add new driver for Kili public cloud (http://kili.io/)
4709  [Tomaz Muraus]
4710
4711- Add "timeout" argument to the ParamikoSSHClient.run method. If this argument
4712  is specified and the command passed to run method doesn't finish in the
4713  defined timeout, `SSHCommandTimeoutError` is throw and the connection to the
4714  remote server is closed.
4715
4716  Note #1: If timed out happens, this functionality doesn't guarantee that the
4717  underlying command will be stopped / killed. The way it works it simply
4718  closes a connect to the remote server.
4719  [Tomaz Muraus]
4720
4721  Note #2: "timeout" argument is only available in the Paramiko SSH client.
4722
4723- Make "cidrs_ips" argument in the ex_authorize_security_group_egress method in
4724  the EC2 driver mandatory.
4725  (GITHUB-301)
4726  [Csaba Hoch]
4727
4728- Add extension methods for managing floating IPs (ex_get_floating_ip,
4729  ex_create_floating_ip, ex_delete_floating_ip) to the Openstack 1.1 driver.
4730  (GITHUB-301)
4731  [Csaba Hoch]
4732
4733- Fix bug in RimuHosting driver which caused driver not to work when the
4734  provider returned compressed (gzip'ed) response.
4735  (LIBCLOUD-569, GITHUB-303)
4736  [amastracci]
4737
4738- Fix issue with overwriting the server memory values in the RimuHosting
4739  driver.
4740  (GUTHUB-308)
4741  [Dustin Oberloh]
4742
4743- Add ex_all_tenants argument to the list_nodes method in the OpenStack driver.
4744  (GITHUB-312)
4745  [LIBCLOUD-575, Zak Estrada]
4746
4747- Add support for network management for advanced zones
4748  (ex_list_network_offerings, ex_create_network, ex_delete_network) in the
4749  CloudStack driver.
4750  (GITHUB-316)
4751  [Roeland Kuipers]
4752
4753- Add extension methods for routes and route table management to the EC2
4754  driver (ex_list_route_tables, ex_create_route_table, ex_delete_route_table,
4755  ex_associate_route_table, ex_dissociate_route_table,
4756  ex_replace_route_table_association, ex_create_route, ex_delete_route,
4757  ex_replace_route)
4758  (LIBCLOUD-574, GITHUB-313)
4759  [Lior Goikhburg]
4760
4761- Fix ex_list_snapshots for HP Helion OpenStack based driver.
4762  [Tomaz Muraus]
4763
4764- Allow user to specify volume type and number of IOPS when creating a new
4765  volume in the EC2 driver by passing ``ex_volume_type`` and ``ex_iops``
4766  argument to the ``create_volume`` method.
4767  [Tomaz Muraus]
4768
4769- Fix ex_unpause_node method in the OpenStack driver.
4770  (GITHUB-317)
4771  [Pablo Orduña]
4772
4773- Allow user to launch EC2 node in a specific VPC subnet by passing
4774  ``ex_subnet`` argument to the create_node method.
4775  (GITHUB-318)
4776  [Lior Goikhburg]
4777
4778Storage
4779~~~~~~~
4780
4781- Fix container name encoding in the iterate_container_objects and
4782  get_container_cdn_url method in the CloudFiles driver. Previously, those
4783  methods would throw an exception if user passed in a container name which
4784  contained a whitespace.
4785
4786  Reported by Brian Metzler.
4787  (LIBCLOUD-552)
4788  [Tomaz MUraus]
4789
4790- Fix a bug in the OpenStack Swift driver which prevented the driver to work
4791  with installations where region names in the service catalog weren't upper
4792  case.
4793  (LIBCLOUD-576, GITHUB-311)
4794  [Zak Estrada]
4795
4796Load Balancer
4797~~~~~~~~~~~~~
4798
4799- Add extension methods for policy managagement to the ELB driver.
4800  (LIBCLOUD-522, GITHUB-253)
4801  [Rahul Ranjan]
4802
4803DNS
4804~~~
4805
4806- Fix update_record method in the Route56 driver so it works correctly for
4807  records with multiple values.
4808  [Tomaz Muraus]
4809
4810- Add ex_create_multi_value_record method to the Route53 driver which allows
4811  user to create a record with multiple values with a single call.
4812  [Tomaz Muraus]
4813
4814- Add new driver for Google DNS.
4815  (GITHUB-269)
4816  [Franck Cuny]
4817
4818Changes with Apache Libcloud 0.14.1
4819-----------------------------------
4820
4821Compute
4822~~~~~~~
4823
4824- Add new m3.medium and m3.large instance information to the EC2 driver.
4825  [Tomaz Muraus]
4826
4827- Add a new driver for CloudSigma API v2.0.
4828  [Tomaz Muraus]
4829
4830- Add "volume_id" attribute to the Node "extra" dictionary in the EC2 driver.
4831  Also fix the value of the "device" extra attribute in the StorageVolume
4832  object. (LIBCLOUD-501)
4833  [Oleg Suharev]
4834
4835- Add the following extension methods to the OpenStack driver: ex_pause_node,
4836  ex_unpause_node, ex_suspend_node, ex_resume_node.
4837  (LIBCLOUD-505, GITHUB-238)
4838  [Chris DeRamus]
4839
4840- Add ex_limits method to the CloudStack driver.
4841  (LIBCLOUD-507, GITHUB-240)
4842  [Chris DeRamus]
4843
4844- Add "extra" dictionary to the CloudStackNode object and include more
4845  attributes in the "extra" dictionary of the network and volume object.
4846  (LIBCLOUD-506, GITHUB-239)
4847  [Chris DeRamus]
4848
4849- Add ex_register_image method to the EC2 driver.
4850  (LIBCLOUD-508, GITHUB-241)
4851  [Chris DeRamus]
4852
4853- Add methods for managing volume snapshots to the OpenStack driver.
4854  (LIBCLOUD-512, GITHUB-245)
4855  [Chris DeRamus]
4856
4857Load Balancer
4858~~~~~~~~~~~~~
4859
4860- Fix a bug in the ex_targetpool_add_node and ex_targetpool_remove_node method
4861  in the GCE driver.
4862  [Rick Wright]
4863
4864Storage
4865~~~~~~~
4866
4867- Allow user to use an internal endpoint in the CloudFiles driver by passing
4868  "use_internal_url" argument to the driver constructor.
4869  (GITHUB-229, GITHUB-231)
4870  [John Obelenus]
4871
4872DNS
4873~~~
4874
4875- Add PTR to the supported record types in the Rackspace driver.
4876  [Tomaz Muraus]
4877
4878- Fix Zerigo driver to set Record.name attribute for records which refer
4879  to the bare domain to "None" instead of an empty string.
4880  [Tomaz Muraus]
4881
4882- For consistency with other drivers, update Rackspace driver to set
4883  Record.name attribute for the records which refer to the bare domain
4884  to "None" instead of setting them to FQDN.
4885  [Tomaz Muraus]
4886
4887- Update Rackspace driver to support paginating through zones and records.
4888  (GITHUB-230)
4889  [Roy Wellington]
4890
4891- Update Route53 driver so it supports handling records with multiple values
4892  (e.g. MX).
4893  (LIBCLOUD-504, GITHUB-237)
4894  [Chris DeRamus]
4895
4896- Update Route53 driver to better handle SRV records.
4897  [Tomaz Muraus]
4898
4899- Update Route53 driver, make sure "ttl" attribute in the Record extra
4900  dictionary is always an int.
4901  [Tomaz Muraus]
4902
4903Changes with Apache Libcloud 0.14.0
4904-----------------------------------
4905
4906General
4907~~~~~~~
4908
4909- Update API endpoints which are used in the HostVirtual drivers.
4910  (LIBCLOUD-489)
4911  [Dinesh Bhoopathy]
4912
4913- Add support for Amazon security token to the Amazon drivers.
4914  (LIBCLOUD-498, GITHUB-223)
4915  [Noah Kantrowitz]
4916
4917Compute
4918~~~~~~~
4919
4920- Remove Slicehost driver.
4921
4922  SliceHost API has been shut down in 2012 so it makes no sense to keep
4923  this driver.
4924  [Tomaz Muraus]
4925
4926- Modify drivers for public cloud providers which use HTTP Basic
4927  authentication to not allow insecure connections (secure constructor
4928  kwarg being set to False) by default.
4929
4930  This way credentials can't accidentally be sent in plain text over the
4931  write.
4932
4933  Affected drivers: Bluebox, Joyent, NephoScale, OpSource, VPSNet
4934  [Tomaz Muraus]
4935
4936- Remove "public_ip" and "private_ip" property which has been deprecated in
4937  0.7.0 from the Node object.
4938  [Tomaz Muraus]
4939
4940- Move "is_private_ip" and "is_valid_ip_address" function from
4941  libcloud.compute.base into libcloud.utils.networking module.
4942  [Tomaz Muraus]
4943
4944- Allow user to pass "url" argument to the CloudStack driver constructor.
4945  This argument can be provided instead of "host" and "path" arguments and
4946  can contain a full URL to the API endpoint. (LIBCLOUD-430)
4947  [Tomaz Muraus]
4948
4949- Allow user to pass None as a "location" argument to the create_node
4950  method. (LIBCLOUD-431)
4951  [Tomaz Muraus]
4952
4953- Refactor CloudStack Connection class so it looks more like other
4954  connection classes and user can specify which attributes to send as part
4955  of query parameters in the GET request and which inside the body of a POST
4956  request.
4957  [Tomaz Muraus, Philipp Strube]
4958
4959- Add a new driver for Exoscale (https://www.exoscale.ch/) provider.
4960  [Tomaz Muraus]
4961
4962- Fix a bug in Abiquo driver which caused the driver to fail if the endpoint
4963  URL didn't start with "/api". (LIBCLOUD-447)
4964
4965  Reported by Igor Ajdisek.
4966  [Tomaz Muraus]
4967
4968- Modify CloudStack driver to correctly throw InvalidCredsError exception if
4969  invalid credentials are provided.
4970  [Tomaz Muraus]
4971
4972- Don't throw an exception if a node object is missing an "image" attribute
4973  in the list nodes / get node response.
4974
4975  This could happen if node is in an error state. (LIBCLOUD-455)
4976  [Dustin Spicuzza, Tomaz Muraus]
4977
4978- Update CloudStack driver to better handle errors and throw ProviderError
4979  instead of a generic Exception.
4980  [Tomaz Muraus]
4981
4982- Modify ex_list_networks methods in CloudStack driver to not thrown if there
4983  are no networks available.
4984  [Tomaz Muraus]
4985
4986- Bump API version used in the EC2 driver from 2010-08-21 to 2013-10-15.
4987  (LIBCLOUD-454)
4988  [Tomaz Muraus]
4989
4990- Add ex_get_limits method for retrieving account resource limits to the
4991  EC2 driver.
4992  [Tomaz Muraus]
4993
4994- Update us-west-1 region in the EC2 driver to include c3 instance types.
4995  Also include pricing information.
4996  [Tomaz Muraus]
4997
4998- For consistency, rename "ex_add_ip_forwarding_rule" method to
4999  "ex_create_ip_forwarding_rule".
5000  (GITHUB-196)
5001  [Oleg Suharev]
5002
5003- Add support for new "i2" instance types to Amazon EC2 driver. Also
5004  update pricing file. (LIBCLOUD-465)
5005  [Chris DeRamus]
5006
5007- Allow user to specify VPC id when creating a security group in the EC2
5008  driver by passing "vpc_id" argument to ex_create_security_group method.
5009  (LIBCLOUD-463, GITHUB-201)
5010  [Chris DeRamus]
5011
5012- Add extension methods for managing security group rules
5013  (ex_authorize_security_group_ingress, ex_authorize_security_group_egress,
5014  ex_revoke_security_group_ingress, ex_revoke_security_group_egress) to the
5015  EC2 driver. (LIBCLOUD-466, GITHUB-202)
5016  [Chris DeRamus]
5017
5018- Add extension methods for deleting security groups
5019  (ex_delete_security_group, ex_delete_security_group_by_id,
5020  ex_delete_security_group_by_name) to the EC2 driver.
5021  (LIBCLOUD-464, GITHUB-199)
5022  [Chris DeRamus]
5023
5024- Add extension method for listing reserved instances
5025  (ex_list_reserved_nodes) to the EC2 driver. (LIBCLOUD-469, GITHUB-205)
5026  [Chris DeRamus]
5027
5028- Add extension methods for VPC management (ex_list_networks,
5029  ex_create_network, ex_delete_network) to the EC2 driver.
5030  (LIBCLOUD-467, GITHUB-203)
5031  [Chris DeRamus]
5032
5033- Add extension methods for VPC subnet management (ex_list_subnets,
5034  ex_create_subnet, ex_delete_subnet) to the EC2 driver.
5035  (LIBCLOUD-468, GITHUB-207)
5036  [Chris DeRamus]
5037
5038- Add ex_get_console_output extension method to the EC2 driver.
5039  (LIBCLOUD-471, GITHUB-209)
5040  [Chris DeRamus]
5041
5042- Include additional provider-specific attributes in the 'extra' dictionary
5043  of the StorageVolume class in the EC2 driver. (LIBCLOUD-473, GITHUB-210)
5044  [Chris DeRamus]
5045
5046- Change attribute name in the 'extra' dictionary of EC2 and CloudStack
5047  Node object from "keyname" to "key_name". (LIBCLOUD-475)
5048  [Oleg Suharev]
5049
5050- Fix a deployment issue which would some times cause a process to hang if
5051  the executed deployment script printed a lot of output to stdout or stderr.
5052  [Tomaz Muraus]
5053
5054- Add additional attributes to the "extra" dictionary of the VolumeSnapshot
5055  object in the EC2 driver.
5056
5057  Also modify create_volume_snapshot method to correctly handle "name"
5058  argument. Previous, "name" argument was used as a snapshot description,
5059  now it's used as a Tag with a key "Name". (LIBCLOUD-480, GITHUB-214)
5060  [Chris DeRamus]
5061
5062- Store additional attributes (iops, tags, block_device_mapping) in the
5063  "extra" dictionary of the NodeImage object in the EC2 driver.
5064
5065  Also fix ex_image_ids filtering in the list_images method.
5066  (LIBCLOUD-481, GITHUB-215)
5067  [Chris DeRamus]
5068
5069- Add extension methods for network interface management
5070  (ex_list_network_interfaces, ex_create_network_interface,
5071  ex_attach_network_interface_to_node, ex_detach_network_interface,
5072  ex_delete_network_interface) to the EC2 driver. (LIBCLOUD-474)
5073  [Chris DeRamus]
5074
5075- Update Google Compute Engine driver to use and work with API v1.
5076  (LIBCLOUD-450)
5077  [Rick Wright]
5078
5079- Modify ParamikoSSHClient so that "password" and "key" arguments are not
5080  mutually exclusive and both can be provided. (LIBCLOUD-461, GITHUB-194)
5081  [Markos Gogoulos]
5082
5083- Add extension methods for the Elastic IP management to the EC2 driver.
5084  Also modify "ex_allocate_address" and "ex_release_address" method to
5085  take "domain" argument so it also works with VPC.
5086  (LIBCLOUD-470, GITHUB-208, GITHUB-220)
5087  [Chris DeRamus]
5088
5089- Add additional provider specific attributes to the "extra" dictionary of
5090  the Node object in the EC2 driver. (LIBCLOUD-493, GITHUB-221)
5091  [Chris DeRamus]
5092
5093- Add ex_copy_image and ex_create_image_from_node method to the EC2 driver.
5094  (LIBCLOUD-494, GITHUB-222)
5095  [Chris DeRamus]
5096
5097Storage
5098~~~~~~~
5099
5100- Allow user to specify 'Content-Disposition' header in the CloudFiles
5101  driver by passing 'content_disposition' key in the extra dictionary of
5102  the upload object methods. (LIBCLOUD-430)
5103  [Michael Farrell]
5104
5105- Fix CloudFiles driver so it references a correct service catalog entry for
5106  the CDN endpoint.
5107
5108  This was broken in the 0.14.0-beta3 release when we migrated all the
5109  Rackspace drivers to use auth 2.0 by default. (GITHUB-186)
5110  [John Obelenus]
5111
5112- Update storage drivers to default to "application/octet-stream"
5113  Content-Type if none is provided and none can be guessed.
5114  (LIBCLOUD-433)
5115  [Michael Farrell]
5116
5117- Fix a bug so you can now upload 0 bytes sized objects using multipart
5118  upload in the S3 driver. (LIBCLOUD-490)
5119
5120  Reported by Noah Kantrowitz.
5121  [Tomaz Muraus]
5122
5123- Update OpenStack Swift driver constructor so it accepts "region",
5124  "ex_force_service_type" and "ex_force_service_name" argument.
5125  [Tomaz Muraus]
5126
5127- Deprecate "CLOUDFILES_SWIFT" provider constant in favor of new
5128  "OPENSTACK_SWIFT" one.
5129  [Tomaz Muraus]
5130
5131- Add support for setting an ACL when uploading and object.
5132  (LIBCLOUD-497, GITHUB-223)
5133  [Noah Kantrowitz]
5134
5135- Modify get_container method to use a more efficient "HEAD"
5136  approach instead of calling list_containers + doing late
5137  filterting.
5138  (LIBCLOUD-498, GITHUB-223)
5139  [Noah Kantrowitz]
5140
5141DNS
5142~~~
5143
5144- Implement iterate_* methods in the Route53 driver and makes it work
5145  correctly if there are more results which can fit on a single page.
5146  Previously, only first 100 results were returned. (LIBCLOUD-434)
5147  [Chris Clarke]
5148
5149- Update HostVirtual driver constructor to only take "key" and other valid
5150  arguments. Previously it also took "secret" argument which it silently
5151  ignored. (LIBCLOUD-483)
5152
5153  Reported by  Andrew Udvare.
5154  [Tomaz Muraus]
5155
5156- Fix list_records method in the HostVirtual driver.
5157  (LIBCLOUD-484, GITHUB-218)
5158
5159  Reported by Andrew Udvare.
5160  [Dinesh Bhoopathy]
5161
5162Changes with Apache Libcloud 0.14.0-beta3
5163-----------------------------------------
5164
5165General
5166~~~~~~~
5167
5168- If the file exists, read pricing data from ~/.libcloud/pricing.json
5169  by default. If the file doesn't exist, fall back to the old behavior
5170  and use pricing data which is bundled with the release.
5171  [Tomaz Muraus]
5172
5173- Add libcloud.pricing.download_pricing_file function for downloading and
5174  updating the pricing file.
5175  [Tomaz Muraus]
5176
5177- Fix libcloud.utils.py3.urlquote so it works with unicode strings under
5178  Python 2. (LIBCLOUD-429)
5179  [Michael Farrell]
5180
5181Compute
5182~~~~~~~
5183
5184- Refactor Rackspace driver classes and make them easier to use. Now there
5185  are two Rackspace provider constants - Provider.RACKSPACE which
5186  represents new next-gen OpenStack servers and
5187  Provider.RACKSPACE_FIRST_GEN which represents old first-gen cloud
5188  servers.
5189
5190  Note: This change is backward incompatible. For more information on those
5191  changes and how to update your code, please visit "Upgrade Notes"
5192  documentation page - http://s.apache.org/lc0140un
5193  [Tomaz Muraus]
5194
5195- Deprecate the following EC2 provider constants: EC2_US_EAST,
5196  EC2_EU, EC2_EU_WEST, EC2_AP_SOUTHEAST, EC2_AP_NORTHEAST,
5197  EC2_US_WEST_OREGON, EC2_SA_EAST, EC2_SA_EAST and replace it with a new
5198  EC2 constant.
5199  Driver referenced by this new constant now takes a "region" argument which
5200  dictates to which region to connect.
5201
5202  Note: Deprecated constants will continue to work until the next major
5203  release. For more information on those changes and how to update your
5204  code, please visit "Upgrade Notes" documentation page -
5205  http://s.apache.org/lc0140un
5206  [Tomaz Muraus]
5207
5208- Add support for volume related functions to OpenNebula driver.
5209  (LIBCLOUD-354)
5210  [Emanuele Rocca]
5211
5212- Add methods for managing storage volumes to the OpenStack driver.
5213  (LIBCLOUD-353)
5214  [Bernard Kerckenaere]
5215
5216- Add new driver for Google Compute Engine (LIBCLOUD-266, LIBCLOUD-386)
5217  [Rick Wright]
5218
5219- Fix create_node "features" metadata and update affected drivers.
5220  (LIBCLOUD-367)
5221  [John Carr]
5222
5223- Update EC2 driver to accept the auth kwarg (it will accept NodeAuthSSH
5224  objects and automatically import a public key that is not already
5225  uploaded to the EC2 keyring). (Follow on from LIBCLOUD-367).
5226  [John Carr]
5227
5228- Unify extension argument names for assigning a node to security groups
5229  in EC2 and OpenStack driver.
5230  Argument in the EC2 driver has been renamed from ex_securitygroup to
5231  ex_security_groups. For backward compatibility reasons, old argument
5232  will continue to work until the next major release. (LIBCLOUD-375)
5233  [Tomaz Muraus]
5234
5235- Add ex_import_keypair_from_string and ex_import_keypair method to the
5236  CloudStack driver. (LIBCLOUD-380)
5237  [Sebastien Goasguen]
5238
5239- Add support for managing floating IP addresses to the OpenStack driver.
5240  (LIBCLOUD-382)
5241  [Ivan Kusalic]
5242
5243- Add extension methods for handling port forwarding to the CloudStack
5244  driver, rename CloudStackForwardingRule class to
5245  CloudStackIPForwardingRule. (LIBCLOUD-348, LIBCLOUD-381)
5246  [sebastien goasguen]
5247
5248- Hook up deploy_node functionality in the CloudStack driver and unify
5249  extension arguments for handling security groups. (LIBCLOUD-388)
5250  [sebastien goasguen]
5251
5252- Allow user to pass "args" argument to the ScriptDeployment and
5253  ScriptFileDeployment class. This argument tells which command line
5254  arguments get passed to the ScriptDeployment script. (LIBCLOUD-394)
5255
5256  Note: This change is backward incompatible. For more information on how
5257  this affects your code and how to update it, visit "Upgrade Notes"
5258  documentation page - http://s.apache.org/lc0140un
5259  [Tomaz Muraus]
5260
5261- Allow user to specify IAM profile to use when creating an EC2 node.
5262  (LIBCLOUD-403)
5263  [Xavier Barbosa]
5264
5265- Add support for keypair management to the OpenStack driver.
5266  (LIBCLOUD-392)
5267  [L. Schaub]
5268
5269- Allow user to specify disk partitioning mode using ex_disk_config argument
5270  in the OpenStack based drivers. (LIBCLOUD-402)
5271  [Brian Curtin]
5272
5273- Add new driver for NephoScale provider (http://nephoscale.com/).
5274  (LIBCLOUD-404)
5275  [Markos Gogoulos]
5276
5277- Update network related extension methods so they work correctly with
5278  both, OpenStack and Rackspace driver. (LIBCLOUD-368)
5279  [Tomaz Muraus]
5280
5281- Add tests for networking functionality in the OpenStack and Rackspace
5282  driver.
5283  [Tomaz Muraus]
5284
5285- Allow user to pass all supported extension arguments to ex_rebuild_server
5286  method in the OpenStack driver. (LIBCLOUD-408)
5287  [Dave King]
5288
5289- Add pricing information for Rackspace Cloud Sydney region.
5290  [Tomaz Muraus]
5291
5292- Update EC2 instance type map and pricing data. High Storage instances are
5293  now also available in Sydney and Singapore region.
5294  [Tomaz Muraus]
5295
5296- Add new methods for managing storage volumes and snapshots to the EC2
5297  driver (list_volumes, list_snapshots, destroy_volume_snapshot,
5298  create_volume_snapshot) (LIBCLOUD-409)
5299  [Oleg Suharev]
5300
5301- Add the following new extension methods to EC2 driver: ex_destroy_image,
5302  ex_modify_instance_attributes, ex_delete_keypair. (LIBCLOUD-409)
5303  [Oleg Suharev]
5304
5305- Allow user to specify a port range when creating a port forwarding rule.
5306  (LIBCLOUD-409)
5307  [Oleg Suharev]
5308
5309- Align Joyent driver with other drivers and deprecate "location" argument
5310  in the driver constructor in favor of "region" argument.
5311
5312  Note: Deprecated argument will continue to work until the next major
5313  release.
5314  [Tomaz Muraus]
5315
5316- Deprecate the following ElasticHosts provider constants: ELASTICHOSTS_UK1,
5317  ELASTICHOSTS_UK2, ELASTICHOSTS_US1, ELASTICHOSTS_US2, ELASTICHOSTS_US3,
5318  ELASTICHOSTS_CA1, ELASTICHOSTS_AU1, ELASTICHOSTS_CN1 and replace it with a
5319  new ELASTICHOSTS constant.
5320  Driver referenced by this new constant now takes a "region" argument which
5321  dictates to which region to connect.
5322
5323  Note: Deprecated constants will continue to work until the next major
5324  release. For more information on those changes and how to update your
5325  code, please visit "Upgrade Notes" documentation page -
5326  http://s.apache.org/lc0140un (LIBCLOUD-383)
5327  [Michael Bennett, Tomaz Muraus]
5328
5329- Add log statements to our ParamikoSSHClient wrapper. This should make
5330  debugging deployment issues easier. (LIBCLOUD-414)
5331  [Tomaz Muraus]
5332
5333- Add new "NodeState.STOPPED" node state. Update HostVirual and EC2 driver to
5334  also recognize this new state. (LIBCLOUD-296)
5335  [Jayy Vis]
5336
5337- Add new Hong Kong endpoint to Rackspace driver.
5338  [Brian Curtin]
5339
5340- Fix ex_delete_keypair method in the EC2 driver. (LIBCLOUD-415)
5341  [Oleg Suharev]
5342
5343- Add the following new extension methods for elastic IP management to the
5344  EC2 driver: ex_allocate_address, ex_disassociate_address,
5345  ex_release_address. (LIBCLOUD-417)
5346  [Patrick Armstrong]
5347
5348- For consistency and accuracy, rename "ex_associate_addresses" method in the
5349  EC2 driver to "ex_associate_address_with_node".
5350
5351  Note: Old method will continue to work until the next major release.
5352  [Tomaz Muraus]
5353
5354- Add new driver for CloudFrames (http://www.cloudfounders.com/CloudFrames)
5355  provider. (LIBCLOUD-358)
5356  [Bernard Kerckenaere]
5357
5358- Update default kernel versions which are used when creating a Linode
5359  server.
5360
5361  Old default kernel versions:
5362
5363  - x86 - 2.6.18.8-x86_64-linode1
5364  - x86_64 - 2.6.39.1-linode34
5365
5366  New default kernel versions:
5367
5368  - x86 - 3.9.3-x86-linode52
5369  - x86_64 - 3.9.3-x86_64-linode33
5370
5371  (LIBCLOUD-424)
5372  [Tomaz Muraus, Jon Chen]
5373
5374- Disable cache busting functionality in the OpenStack and Rackspace next-gen
5375  driver and enable it only for Rackspace first-gen driver.
5376  [Tomaz Muraus]
5377
5378- Update Google Compute Engine driver to v1beta16.
5379  [Rick Wright]
5380
5381- Modify auth_url variable in the OpenStack drivers so it works more like
5382  users would expect it to.
5383
5384  Previously path specified in the auth_url was ignored and only protocol,
5385  hostname and port were used. Now user can provide a full url for the
5386  auth_url variable and the path provided in the url is also used.
5387  [DaeMyung Kang, Tomaz Muraus]
5388
5389- Allow user to associate arbitrary key/value pairs with a node by passing
5390  "ex_metadata" argument (dictionary) to create_node method in the EC2
5391  driver.
5392  Those values are associated with a node using tags functionality.
5393  (LIBCLOUD-395)
5394  [Ivan Kusalic]
5395
5396- Add "ex_get_metadata" method to EC2 and OpenStack driver. This method reads
5397  metadata dictionary from the Node object. (LIBCLOUD-395)
5398  [Ivan Kusalic]
5399
5400- Multiple improvements in the Softlayer driver:
5401    - Map "INITIATING" node state to NodeState.PENDING
5402    - If node is launching remap "halted" state to "pending"
5403    - Add more node sizes
5404    - Add ex_stop_node and ex_start_node method
5405    - Update tests response fixtures
5406
5407  (LIBCLOUD-416)
5408  [Markos Gogoulos]
5409
5410- Modify list_sizes method in the KT UCloud driver to work, even if the item
5411  doesn't have 'diskofferingid' attribute. (LIBCLOUD-435)
5412  [DaeMyung Kang]
5413
5414- Add new c3 instance types to the EC2 driver.
5415  [Tomaz Muraus]
5416
5417- Fix an issue with the ex_list_keypairs and ex_list_security_groups method
5418  in the CloudStack driver which caused an exception to be thrown if the API
5419  returned no keypairs / security groups.
5420  (LIBCLOUD-438)
5421  [Carlos Reategui, Tomaz Muraus]
5422
5423- Fix a bug in the OpenStack based drivers with not correctly checking if the
5424  auth token has expired before re-using it. (LIBCLOUD-428)
5425
5426  Reported by Michael Farrell.
5427  [Tomaz Muraus,  Michael Farrell]
5428
5429Storage
5430~~~~~~~
5431
5432- Deprecate CLOUDFILES_US and CLOUDFILES_UK provider constant and replace
5433  it with a new CLOUDFILES constant.
5434  Driver referenced by this new constant takes a "region" keyword argument
5435  which can be one of 'ord', 'dfw', 'iad', 'syd', 'lon'.
5436
5437  Note: Deprecated constants will continue to work until the next major
5438  release.
5439  For more information on this change, please visit "Upgrade Notes"
5440  documentation section - http://s.apache.org/lc0140un
5441  [Tomaz Muraus]
5442
5443- Allow users to filter objects starting with a prefix by passing ex_prefix
5444  argument to the list_container_objects method in the S3, Google Storage
5445  and CloudFiles driver. (LIBCLOUD-369)
5446  [Stefan Friesel]
5447
5448- Fix an issue with mutating connectionCls.host attribute in the Azure
5449  driver. This bug prevented user from having multiple Azure drivers with
5450  different keys instantiated at the same time. (LIBCLOUD-399)
5451  [Olivier Grisel]
5452
5453- Add a new driver for KT UCloud based on the OpenStack Swift driver.
5454  (LIBCLOUD-431).
5455  [DaeMyung Kang]
5456
5457Load Balancer
5458~~~~~~~~~~~~~
5459
5460- Deprecate RACKSPACE_US and RACKSPACE_UK provider constant and replace it
5461  with a new RACKSPACE constant.
5462  Driver referenced by this new constant takes a "region" keyword argument
5463  which can be one of the following: 'ord', 'dfw', 'iad', 'syd', 'lon'.
5464
5465  Note: Deprecated constants will continue to work until the next major
5466  release.
5467  For more information on this change, please visit "Upgrade Notes"
5468  documentation section - http://s.apache.org/lc0140un
5469  [Tomaz Muraus]
5470
5471- Add new driver for Google Compute Engine (LIBCLOUD-386)
5472  [Rick Wright]
5473
5474- Add new Hong Kong endpoint to Rackspace driver.
5475  [Brian Curtin]
5476
5477DNS
5478~~~
5479
5480- Deprecate RACKSPACE_US and RACKSPACE_UK provider constant and replace it
5481  with a new RACKSPACE constant.
5482  Driver referenced by this new constant takes a "region" keyword argument
5483  which can be one of the following: 'us', 'uk'.
5484
5485  Note: Deprecated constants will continue to work until the next major
5486  release.
5487  For more information on this change, please visit "Upgrade Notes"
5488  documentation section - http://s.apache.org/lc0140un
5489  [Tomaz Muraus]
5490
5491- Use string instead of integer for RecordType ENUM value.
5492
5493  Note: If you directly use an integer instead of RecordType ENUM class you
5494  need to update your code to use the RecordType ENUM otherwise the code
5495  won't work. For more information on how to do that, see "Upgrade Notes"
5496  documentation section - http://s.apache.org/lc0140un
5497  [Tomaz Muraus]
5498
5499- Add "export_zone_to_bind_format" and export_zone_to_bind_zone_file method
5500  which allows users to export Libcloud Zone to BIND zone format.
5501  (LIBCLOUD-398)
5502  [Tomaz Muraus]
5503
5504- Update issue with inexistent zone / record handling in the get_zone and
5505  get_record method in the Linode driver. Those issues were related to
5506  changes in the Linode API. (LIBCLOUD-425)
5507  [Jon Chen]
5508
5509Changes with Apache Libcloud 0.13.3
5510-----------------------------------
5511
5512Compute
5513~~~~~~~
5514
5515- Send "scrub_data" query parameter when destroying a DigitalOcean node.
5516  This will cause disk to be scrubbed (overwritten with 0's) when destroying
5517  a node. (LIBCLOUD-487)
5518
5519  Note: This fixes a security issue with a potential leak of data contained
5520  on the destroyed node which only affects users of the DigitalOcean driver.
5521  (CVE-2013-6480)
5522  [Tomaz Muraus]
5523
5524Changes with Apache Libcloud 0.13.2
5525-----------------------------------
5526
5527General
5528~~~~~~~
5529
5530- Don't sent Content-Length: 0 header with POST and PUT request if "raw"
5531  mode is used. This fixes a regression which could cause broken behavior
5532  in some storage driver when uploading a file from disk.
5533  (LIBCLOUD-396)
5534  [Ivan Kusalic]
5535
5536Compute
5537~~~~~~~
5538
5539- Added Ubuntu Linux 12.04 image to ElasticHost driver image list.
5540  (LIBCLOUD-364)
5541  [Bob Thompson]
5542
5543- Update ElasticHosts driver to store drive UUID in the node 'extra' field.
5544  (LIBCLOUD-357)
5545  [Bob Thompson]
5546
5547Storage
5548~~~~~~~
5549
5550- Store last_modified timestamp in the Object extra dictionary in the S3
5551  driver. (LIBCLOUD-373)
5552  [Stefan Friesel]
5553
5554Load Balancer
5555~~~~~~~~~~~~~
5556
5557- Expose CloudStack driver directly through the Provider.CLOUDSTACK
5558  constant.
5559  [Tomaz Muraus]
5560
5561DNS
5562~~~
5563
5564- Modify Zerigo driver to include record TTL in the record 'extra' attribute
5565  if a record has a TTL set.
5566  [Tomaz Muraus]
5567
5568- Modify values in the Record 'extra' dictionary attribute in the Zerigo DNS
5569  driver to be set to None instead of an empty string ('') if a value for
5570  the provided key is not set.
5571  [Tomaz Muraus]
5572
5573Changes with Apache Libcloud 0.13.1
5574-----------------------------------
5575
5576General
5577~~~~~~~
5578
5579- Fix a regression introduced in 0.13.0 and make sure to include
5580  Content-Length 0 with PUT and POST requests. (LIBCLOUD-362, LIBCLOUD-390)
5581  [Tomaz Muraus]
5582
5583Compute
5584~~~~~~~
5585
5586- Fix a bug in the ElasticHosts driver and check for right HTTP status
5587  code when determining drive imaging success. (LIBCLOUD-363)
5588  [Bob Thompson]
5589
5590- Update Opsource driver to include node public ip address (if available).
5591  (LIBCLOUD-384)
5592  [Michael Bennett]
5593
5594Storage
5595~~~~~~~
5596
5597- Fix a regression with calling encode_container_name instead of
5598  encode_object_name on object name in get_object method.
5599  Reported by Ben Meng (LIBCLOUD-366)
5600  [Tomaz Muraus]
5601
5602- Ensure that AWS S3 multipart upload works for small iterators.
5603  (LIBCLOUD-378)
5604  [Mahendra M]
5605
5606Changes with Apache Libcloud 0.13.0
5607-----------------------------------
5608
5609General
5610~~~~~~~
5611
5612- Add homebrew curl-ca-bundle path to CA_CERTS_PATH. This will make Libcloud
5613  use homebrew curl ca bundle file (if available) for server certificate
5614  validation. (LIBCLOUD-324)
5615  [Robert Chiniquy]
5616
5617- Modify OpenStackAuthConnection and change auth_token_expires attribute to
5618  be a datetime object instead of a string.
5619  [Tomaz Muraus]
5620
5621- Modify OpenStackAuthConnection to support re-using of the existing auth
5622  token if it's still valid instead of re-authenticating on every
5623  authenticate() call.
5624  [Tomaz Muraus]
5625
5626- Modify base Connection class to not send Content-Length header if body is
5627  not provided.
5628  [Tomaz Muraus]
5629
5630- Add the new error class ProviderError and modify InvalidCredsError to
5631  inherit from it. (LIBCLOUD-331)
5632  [Jayy Vis]
5633
5634Misc
5635----
5636
5637- Add unittest2 library dependency for tests and update some tests to use
5638  it.
5639  [Tomaz Muraus]
5640
5641Compute
5642~~~~~~~
5643
5644- Fix destroy_node method in the experimental libvirt driver.
5645  [Aymen Fitati]
5646
5647- Add ex_start_node method to the Joyent driver. (LIBCLOUD-319)
5648  [rszabo50]
5649
5650- Fix Python 3 compatibility issue in the ScriptFileDeployment class.
5651  (LIBCLOUD-321)
5652  [Arfrever Frehtes Taifersar Arahesis]
5653
5654- Add ex_set_metadata_entry and ex_get_metadata method to the VCloud driver.
5655  (LIBCLOUD-318)
5656  [Michel Samia]
5657
5658- Various improvements and bug-fixes in the VCloud driver. (LIBCLOUD-323)
5659  [Michel Samia]
5660
5661- Various bug fixes and improvements in the HostVirtual driver.
5662  (LIBCLOUD-249)
5663  [Dinesh Bhoopathy]
5664
5665- Modify list_sizes method in the OpenStack driver to include
5666  OpenStackNodeSize object which includes 'vcpus' attribute which holds
5667  a number of virtual CPUs for this size. (LIBCLOUD-325)
5668  [Carlo]
5669
5670- For consistency rename "ex_describe_keypairs" method in the EC2 driver to
5671  "ex_describe_keypair".
5672  [Tomaz Muraus]
5673
5674- Modify "ex_describe_keypair" method to return key fingerprint in the
5675  return value. (LIBCLOUD-326)
5676  [Andre Merzky, Tomaz Muraus]
5677
5678- Populate private_ips attribute in the CloudStack drive when returning
5679  a Node object from the create_node method. (LIBCLOUD-329)
5680  [Sebastien Goasguen, Tomaz Muraus]
5681
5682- Allow user to pass extra arguments via "extra_args" argument which are
5683  then passed to the "deployVirtualMachine" call in the CloudStack driver
5684  create_node method. (LIBCLOUD-330)
5685  [Sebastien Goasguen, Tomaz Muraus]
5686
5687- Update Gandi driver to handle new billing model. (LIBCLOUD-317)
5688  [Aymeric Barantal]
5689
5690- Fix a bug in the Linode driver and remove extra newline which is added
5691  when generating a random root password in create_node. (LIBCLOUD-334)
5692  [Juan Carlos Moreno]
5693
5694- Add extension methods for managing keypairs to the CloudStack driver.
5695  (LIBCLOUD-333)
5696  [sebastien goasguen]
5697
5698- Add extension methods for managing security groups to the CloudStack
5699  driver. (LIBCLOUD-332)
5700  [sebastien goasguen]
5701
5702- Add extension methods for starting and stoping the node to the
5703  CloudStack driver. (LIBCLOUD-338)
5704  [sebastien goasguen]
5705
5706- Fix old _wait_until_running method. (LIBCLOUD-339)
5707  [Bob Thompson]
5708
5709- Allow user to override default async task completion timeout by
5710  specifying ex_clone_timeout argument. (LIBCLOUD-340)
5711  [Michal Galet]
5712
5713- Fix a bug in the GoGrid driver get_uuid method. (LIBCLOUD-341)
5714  [Bob Thompson]
5715
5716- Fix a bug with deploy_node not respecting 'timeout' kwarg.
5717  [Kevin Carter]
5718
5719- Modify create_node method in CloudStack driver to return an instance of
5720  CloudStackNode and add a new "expunging" node state. (LIBCLOUD-345)
5721  [sebastien goasguen]
5722
5723- Update API endpoint hostnames in the ElasticHost driver and use hostnames
5724  which return a valid SSL certificate. (LIBCLOUD-346)
5725  [Bob Thompson]
5726
5727- Add ex_list_networks method and missing tests for list_templates to the
5728  CloudStack driver. (LIBCLOUD-349)
5729  [Philipp Strube]
5730
5731- Correctly throw InvalidCredsError if user passes invalid credentials to
5732  the DigitalOcean driver.
5733  [Tomaz Muraus]
5734
5735Storage
5736~~~~~~~
5737
5738- Fix an issue with double encoding the container name in the CloudFiles
5739  driver upload_object method.
5740  Also properly encode container and object name used in the HTTP request
5741  in the get_container and get_object method. (LIBCLOUD-328)
5742  [Tomaz Muraus]
5743
5744Load Balancer
5745~~~~~~~~~~~~~
5746
5747- Add ex_list_current_usage method to the Rackspace driver.
5748
5749Changes with Apache Libcloud 0.12.4
5750-----------------------------------
5751
5752Compute
5753~~~~~~~
5754
5755- Fix a regression in Softlayer driver caused by the xmlrpclib changes.
5756  (LIBCLOUD-310)
5757  [Jason Johnson]
5758
5759- Allow user to pass alternate ssh usernames to deploy_node
5760  (ssh_alternate_usernames kwarg) which are used for authentication if the
5761  default one doesn't work. (LIBCLOUD-309)
5762  [Chris Psaltis, Tomaz Muraus]
5763
5764- Fix a bug in EC2 list_locations method - 'name' attribute didn't contain a
5765  the right value.
5766  [Tomaz Muraus]
5767
5768- Add new ScriptFileDeployment deployment class which reads deploy script
5769  from a file.
5770  [Rudolf J Streif]
5771
5772- Add support for API version 5.1 to the vCloud driver and accept any value
5773  which is a multiple of four for ex_vm_memory kwarg in create_node method.
5774  (LIBCLOUD-314)
5775  [Trevor Powell]
5776
5777Storage
5778~~~~~~~
5779
5780- Fix a regression with removed ex_force_service_region constructor kwarg in
5781  the CloudFiles driver. (LIBCLOUD-260)
5782
5783Changes with Apache Libcloud 0.12.3
5784-----------------------------------
5785
5786General
5787~~~~~~~
5788
5789- Fix Python 3.x related regressions. (LIBCLOUD-245)
5790  Reported by Arfrever Frehtes Taifersar Arahesis.
5791  [Tomaz Muraus]
5792
5793- Fix a regression introduced with recent xmlrpiclib changes which broke all
5794  the Gandi.net drivers. (LIBCLOUD-288)
5795
5796  Reported by Hutson Betts.
5797  [Tomaz Muraus]
5798
5799- Improve deploy code to work correctly if the ssh user doesn't have access
5800  to the /root directory.
5801
5802  Previously the ScriptDeployment script was stored in /root folder by
5803  default. Now it's stored in users home directory under filename
5804  ~/libcloud_deploymeny_<random>.sh. (LIBCLOUD-302)
5805
5806  Reported by rotem on #libcloud.
5807  [Tomaz Muraus]
5808
5809Compute
5810~~~~~~~
5811
5812- Improve public and private IP address handling in OpenStack 1.1 driver.
5813  Assume every IP address which doesn't have a label "public" or "internet"
5814  is private. (LIBCLOUD-297)
5815  [Grischa Meyer, Tomaz Muraus]
5816
5817- Add new driver for DigitalOcean provider - https://www.digitalocean.com/.
5818  (LIBCLOUD-304)
5819  [Tomaz Muraus]
5820
5821- Fix a regression in ParamikoSSHClient.run method which caused this methid
5822  to only work as expected if you passed an absolute or a relative path to
5823  the script to it. (LIBCLOUD-278)
5824  [Tomaz Muraus]
5825
5826DNS
5827~~~
5828
5829- Allow user to specify 'priority' extra argument when creating a MX or SRV
5830  record.
5831  [Brian Jinwright, Tomaz Muraus]
5832
5833Changes with Apache Libcloud 0.12.1
5834-----------------------------------
5835
5836General
5837~~~~~~~
5838
5839- Deprecate LazyList method of iteration over large paginated collections
5840  and use a new, more efficient generator based approach which doesn't
5841  require the iterator to be pre-exhausted and buffering all of the values
5842  in memory.
5843
5844  Existing list_* methods which previously used LazyList class are
5845  preserving the old behavior and new iterate_* methods which use a new
5846  generator based approach have been added. (LIBCLOUD-254)
5847  [Mahendra M]
5848
5849- Replace old ENUM style provider constants and replace them with a string
5850  version.
5851  This change allows users to dynamically register new drivers using a new
5852  set_driver method. (LIBCLOUD-255)
5853  [Mahendra M]
5854
5855- Allow user to explicitly specify which CA file is used for verifying
5856  the server certificate by setting 'SSL_CERT_FILE' environment variable.
5857
5858  Note: When this variable is specified, the specified path is the only
5859  CA file which is used to verifying the server certificate. (LIBCLOUD-283)
5860  [Tomaz Muraus, Erinn Looney-Triggs]
5861
5862- Add a common module (libcloud.common.xmlrpc) for handling XML-RPC
5863  requests using Libcloud http layer.
5864
5865  Also refactor existing drivers which use xmlrpclib directly (VCL, Gandi,
5866  Softlayer) to use this module.
5867
5868  This change allows drivers to support LIBCLOUD_DEBUG and SSL certificate
5869  validation functionality. Previously they have bypassed Libcloud http
5870  layer so this functionality was not available. (LIBCLOUD-288)
5871  [John Carr]
5872
5873Compute
5874~~~~~~~
5875
5876- Fix string interpolation bug in __repr__ methods in the IBM SCE driver.
5877  (LIBCLOUD-242)
5878  [Tomaz Muraus]
5879
5880- Fix test failures which happened in Python 3.3 due to:
5881  - hash randomization
5882  - changes in xml.etree module
5883  - changes in xmlrpc module
5884  (LIBCLOUD-245)
5885  [Tomaz Muraus]
5886
5887- Improvements and additions in vCloud driver:
5888    - Expose generic query method (ex_query)
5889    - Provide functionality to get and set control access for vApps. This way
5890      created vApps can be shared between users/groups or everyone.
5891
5892  (LIBCLOUD-251)
5893  [Michal Galet]
5894
5895- Update EC2 pricing data to reflect new, lower prices -
5896  http://aws.typepad.com/aws/2012/10/new-ec2-second-generation-standard-instances-and-price-reductions-1.html
5897  [Tomaz Muraus]
5898
5899- Update EC2 instance size to reflect new m3 instance types. Also refactor
5900  the code to make it easier to maintain.
5901  [Tomaz Muraus]
5902
5903- Add a new driver for HostVirtual (http://www.vr.org) provider.
5904  (LIBCLOUD-249)
5905  [Dinesh Bhoopathy]
5906
5907- Fix a bug where a numeric instead of a string value was used for the
5908  content-length header in VCloud driver. (LIBCLOUD-256)
5909  [Brian DeGeeter, Tomaz Muraus]
5910
5911- Add a new driver for new Asia Pacific (Sydney) EC2 region.
5912  [Tomaz Muraus]
5913
5914- Add support for managing security groups to the OpenStack driver. This
5915  patch adds the following extension methods:
5916  - ex_list_security_groups, ex_get_node_security_groups methods
5917  - ex_create_security_group, ex_delete_security_group
5918  - ex_create_security_group_rule, ex_delete_security_group_rule
5919  (LIBCLOUD-253)
5920  [L. Schaub]
5921
5922- Modify ElasticStack driver class to pass 'vnc auto' instead of
5923  'vnc:ip auto' argument to the API when creating a server.
5924  It looks like 'vnc:ip' has been replaced with 'vnc'.
5925  [Rick Copeland, Tomaz Muraus]
5926
5927- Add new EC2 instance type - High Storage Eight Extra Large Instance
5928  (hs1.8xlarge).
5929  [Tomaz Muraus]
5930
5931- Map 'shutting-down' node state in EC2 driver to UNKNOWN. Previously
5932  it was mapped to TERMINATED. (LIBCLOUD-280)
5933
5934  Note: This change is backward incompatible which means you need to update
5935  your code if you rely on the old behavior.
5936  [Tomaz Muraus, Marcin Kuzminski]
5937
5938- Change _wait_until_running method so it supports waiting on multiple nodes
5939  and make it public (wait_until_running). (LIBCLOUD-274)
5940  [Nick Bailey]
5941
5942- Add new EC2 instance type - High Memory Cluster Eight Extra Large.
5943  (cr1.8xlarge).
5944  [Tomaz Muraus]
5945
5946- Add new driver for Abiquo provider - http://www.abiquo.com (LIBCLOUD-250).
5947  [Jaume Devesa]
5948
5949- Allow user to pass 'ex_blockdevicemappings' kwarg to the EC2 driver
5950  'create_node' method. (LIBCLOUD-282)
5951  [Joe Miller, Tomaz Muraus]
5952
5953- Improve error handling in the Brightbox driver.
5954  [Tomaz Muraus]
5955
5956- Fix the ScriptDeployment step to work correctly if user provides a
5957  relative path for the script argument. (LIBCLOUD-278)
5958  [Jaume Devesa]
5959
5960- Fix Softlayer driver and make sure all the code is up to date and works
5961  with the latest version of the actual Softlayer deployment (v3).
5962  (LIBCLOUD-287)
5963  [Kevin McDonald]
5964
5965- Update EC2 driver, m3 instance types are now available in all the regions
5966  except Brazil.
5967
5968  Also update pricing to reflect new (lower) prices.
5969  [Tomaz Muraus]
5970
5971- Minor improvements in the HostVirtual driver and add new ex_get_node and
5972  ex_build_node extension method. (LIBCLOUD-249)
5973  [Dinesh Bhoopathy]
5974
5975- Add ex_destroy_image method to IBM SCE driver. (LIBCLOUD-291)
5976  [Perry Zou]
5977
5978- Add the following new regions to the ElasticHosts driver: sjc-c, syd-v,
5979  hkg-e. (LIBCLOUD-293)
5980  [Tomaz Muraus]
5981
5982- Fix create_node in OpenStack driver to work correctly if 'adminPass'
5983  attribute is not present in the response.
5984  [Gavin McCance, Tomaz Muraus]
5985
5986- Allow users to filter images returned by the list_images method in the EC2
5987  driver by providing ex_image_ids argument. (LIBCLOUD-294)
5988  [Chris Psaltis, Joseph Hall]
5989
5990- Add support for OpenNebula 3.8. (LIBCLOUD-295)
5991  [Guillaume ZITTA]
5992
5993- Add missing 'deletd' -> terminated mapping to OpenStack driver.
5994  (LIBCLOUD-276)
5995  [Jayy Vis]
5996
5997- Fix create_node in OpenStack driver to work correctly if 'adminPass'
5998  attribute is not present in the response. (LIBCLOUD-292)
5999  [Gavin McCance, Tomaz Muraus]
6000
6001Storage
6002~~~~~~~
6003
6004- Add a new local storage driver.
6005  (LIBCLOUD-252, LIBCLOUD-258, LIBCLOUD-265, LIBCLOUD-273)
6006  [Mahendra M]
6007
6008- Fix a bug which caused the connection to not be closed when using Python
6009  2.6 and calling get_object on an object which doesn't exist in the S3
6010  driver. (LIBCLOUD-257)
6011  [John Carr]
6012
6013- Add a new generator based method for listing / iterating over the
6014  containers (iterate_containers). (LIBCLOUD-261)
6015  [Mahendra M]
6016
6017- Add ex_purge_object_from_cdn method to the CloudFiles driver.
6018  (LIBCLOUD-267)
6019  [Tomaz Muraus]
6020
6021- Support for multipart uploads and other improvements in the S3 driver
6022  so it can more easily be re-used with other implementations (e.g. Google
6023  Storage, etc.).
6024
6025  Also default to a multipart upload when using upload_object_via_stream.
6026  This methods is more efficient compared to old approach because it only
6027  requires buffering a single multipart chunk (5 MB) in memory.
6028  (LIBCLOUD-269)
6029  [Mahendra M]
6030
6031- Add new driver for Windows Azure Storage with support for block and page
6032  blobs. (LIBCLOUD-80)
6033  [Mahendra M]
6034
6035DNS
6036~~~
6037
6038- Update 'if type' checks in the update_record methods to behave correctly
6039  if users passes in RecordType.A with a value of 0 - if type is not None.
6040  (LIBCLOUD-247)
6041  [Tomaz Muraus]
6042
6043- New driver for HostVirtual provider (www.vr.org). (LIBCLOUD-249)
6044  [Dinesh Bhoopathy]
6045
6046- Finish Amazon Route53 driver. (LIBCLOUD-132)
6047  [John Carr]
6048
6049- Add new driver for Gandi provider (https://www.gandi.net). (LIBCLOUD-281)
6050  [John Carr]
6051
6052Load-Balancer
6053~~~~~~~~~~~~~
6054
6055- Add new driver for AWS Elastic Load Balancing service. (LIBCLOUD-169)
6056  [John Carr]
6057
6058Changes with Apache Libcloud 0.11.4
6059-----------------------------------
6060
6061General
6062~~~~~~~
6063
6064- Fix some of tests failures which happened in Python 3.3 due to randomized
6065  dictionary ordering. (LIBCLOUD-245)
6066  [Tomaz Muraus]
6067
6068Compute
6069~~~~~~~
6070
6071- Fix a bug where a numeric instead of a string value was used for the
6072  content-length header in VCloud driver. (LIBCLOUD-256)
6073  [Brian DeGeeter, Tomaz Muraus]
6074
6075Storage
6076~~~~~~~
6077
6078- Don't ignore ex_force_service_region argument in the CloudFiles driver.
6079  (LIBCLOUD-260)
6080  [Dan Di Spaltro]
6081
6082- Fix a bug which caused the connection to not be closed when using Python
6083  2.6 and calling get_object on an object which doesn't exist in the S3
6084  driver. (LIBCLOUD-257)
6085  [John Carr]
6086
6087DNS
6088~~~
6089
6090- Update 'if type' checks in the update_record methods to behave correctly
6091  if users passes in RecordType.A with a value of 0 - if type is not None.
6092  (LIBCLOUD-247)
6093  [Tomaz Muraus]
6094
6095Changes with Apache Libcloud 0.11.3
6096-----------------------------------
6097
6098Storage
6099~~~~~~~
6100
6101- Include 'last_modified' and 'content_type' attribute in the Object
6102  'extra' dictionary when retrieving object using get_object in the S3
6103  driver. Also modify 'meta_data' dictionary to include all the headers
6104  prefixed with 'x-amz-meta-'.
6105  [Tomaz Muraus]
6106
6107Changes with Apache Libcloud 0.11.2
6108-----------------------------------
6109
6110General
6111~~~~~~~
6112
6113- Fix a bug with the Libcloud SSL verification code. Code was too strict and
6114  didn't allow "-" character in the sub-domain when using a wildcard
6115  certificate.
6116
6117  Note: This is NOT a security vulnerability. (LIBCLOUD-244)
6118  [Tomaz Muraus]
6119
6120Compute
6121~~~~~~~
6122
6123- Add new Rackspace Nova driver for Chicago (ORD) location (LIBCLOUD-234)
6124  [Brian McDaniel]
6125
6126- Add capacity information to Vdc objects and implement power operations.
6127  (LIBCLOUD-239)
6128  [Michal Galet]
6129
6130- Allow user to pass 'timeout' argument to the 'deploy_node' method.
6131  [Tomaz Muraus]
6132
6133- Add ex_list_security_groups, ex_authorize_security_group and
6134  ex_describe_all_keypairs methods to the EC2 driver. (LIBCLOUD-241,
6135  LIBCLOUD-243)
6136  [Nick Bailey]
6137
6138- Add new methods for managing storage volumes and other extenstion methods
6139  to the IBM SCE driver. (LIBCLOUD-242)
6140  [Sengor Kusturica]
6141
6142Storage
6143~~~~~~~
6144
6145- Add the following new methods to the CloudFiles driver:
6146  ex_set_account_metadata_temp_url_key, ex_get_object_temp_url. (GITHUB-72)
6147  [Shawn Smith]
6148
6149Load-balancer
6150~~~~~~~~~~~~~
6151
6152- Add 'balancer' attribute to the Member instance. This attribute refers to
6153  the LoadBalancer instance this member belongs to.
6154  [Tomaz Muraus]
6155
6156Changes with Apache Libcloud 0.11.1
6157-----------------------------------
6158
6159General
6160~~~~~~~
6161
6162- Fix hostname validation in the SSL verification code (CVE-2012-3446).
6163
6164  Reported by researchers from the University of Texas at Austin (Martin
6165  Georgiev, Suman Jana and Vitaly Shmatikov).
6166
6167Changes with Apache Libcloud 0.11.0
6168-----------------------------------
6169
6170Compute
6171~~~~~~~
6172
6173- Add a timeout of 10 seconds to OpenStackAuthConnection class.
6174  (LIBCLOUD-199)
6175  [Chris Gilmer]
6176
6177- Add time.sleep(wait_period) to _ssh_client_connect to prevent busy loops
6178  when we immediately can't connect to a server. (LIBCLOUD-197)
6179  [Jay Doane]
6180
6181- Fix a bug with Python 3 support in the following drivers
6182  - IBM SCE,
6183  - CloudStack
6184  - CloudSigma
6185  - OpenNebula
6186  - VpsNet
6187  - EC2
6188  - ElasticStack
6189  - vCloud
6190  - OpSource
6191  - Slicehost
6192  - Joyent
6193  (LIBCLOUD-204)
6194  [Sengor Kusturica, Hutson Betts, Tomaz Muraus]
6195
6196- Make CloudStack driver more robust and make it work if list_images() call
6197  returns no images. (LIBCLOUD-202)
6198  [Gabriel Reid]
6199
6200- Add force_ipv4 argument to _wait_until_running and default it to True.
6201  This will make Libcloud ignore IPv6 addresses when using deploy_node.
6202  (LIBCLOUD-200)
6203  [Jay Doane, Tomaz Muraus]
6204
6205- Include error text if a CloudStack async job returns an error code.
6206  (LIBCLOUD-207)
6207  [Gabriel Reid]
6208
6209- Add extenstion methods for block storage volume management to the
6210  CloudStack driver. (LIBCLOUD-208)
6211  [Gabriel Reid]
6212
6213- New driver for KT UCloud (http://home.ucloud.olleh.com/main.kt) based on
6214  the CloudStack driver.
6215  [DaeMyung Kang]
6216
6217- Add a standard API and methods for managing storage volumes to the
6218  EC2 and CloudStack drivers. Base API consistent of the following methods:
6219  create_volume, destroy_volume, attach_volume, detach_volume.
6220  (LIBCLOUD-213)
6221  [Gabriel Reid]
6222
6223- Change ex_describe_tags, ex_create_tags and ex_delete_tags methods
6224  signature in the EC2 driver. Argument is now called resource (previously
6225  it was called node). This methods work with both Node and StorageVolume
6226  objects. (LIBCLOUD-213)
6227  [Gabriel Reid, Tomaz Muraus]
6228
6229- Add Rackspace Nova London driver.
6230  [Chris Gilmer]
6231
6232- Fix a bug - If user doesn't pass in 'network_id' argument to the
6233  create_node method in the CloudStack driver, don't explicitly define it.
6234  (LIBCLOUD-219)
6235  [Bruno Mahé, Tomaz Muraus]
6236
6237- Modify EC2 driver to also return cc2.8xlarge cluster compute instance in
6238  the eu-west-1 region.
6239  [Tomaz Muraus]
6240
6241- Add 'auth_user_variable' to the  OpenStackAuthConnection class.
6242  [Mark Everett]
6243
6244- Fix a bug with repeated URLs in some requests the vCloud driver.
6245  (LIBCLOUD-222)
6246  [Michal Galet]
6247
6248- New Gridspot driver with basic list and destroy functionality.
6249  (LIBCLOUD-223)
6250  [Amir Elaguizy]
6251
6252- Add methods for managing storage volumes to the Gandi driver.
6253  (LIBCLOUD-225)
6254  [Aymeric Barantal]
6255
6256DNS
6257~~~
6258
6259- Add support for GEO RecordType to Zerigo driver. (LIBCLOUD-203)
6260  [Gary Wilson]
6261
6262- Fix a bug with Python 3 support in the following drivers (LIBCLOUD-204)
6263  - Zerigo
6264  [Tomaz Muraus]
6265
6266- Add support for URL RecordType to Zerigo driver. (LIBCLOUD-209)
6267  [Bojan Mihelac]
6268
6269- Properly handle record creation when user doesn't provider a record name
6270  and wants to create a record for the actual domain.
6271  Reported by Matt Perry (LIBCLOUD-224)
6272  [Tomaz Muraus]
6273
6274Storage
6275~~~~~~~
6276
6277- Fix a bug with Python 3 support in the following drivers
6278  - Atmos
6279  - Google Storage
6280  - Amazon S3
6281  (LIBCLOUD-204)
6282  [Tomaz Muraus]
6283
6284- Fix a bug in the CloudFiles driver which prevented it to work with
6285  accounts which use a non ORD endpoint. (LIBCLOUD-205)
6286  [Geoff Greer]
6287
6288- Fix a bug in the enable_container_cdn method. (LIBCLOUD-206)
6289  [Geoff Greer]
6290
6291- Allow user to specify container CDN TTL when calling container.enable_cd()
6292  using ex_ttl keyword argument in the CloudFiles driver.
6293  [Tomaz Muraus]
6294
6295- Add ex_enable_static_website and ex_set_error_page method to the
6296  CloudFiles driver.
6297  [Tomaz Muraus]
6298
6299- Propagate kwargs passed to container.download_object() to
6300  driver.download_object(). (LIBCLOUD-227)
6301  [Benno Rice]
6302
6303- Fix a bug with not escaping container and object name in the Atmos driver.
6304  [Russell Keith-Magee, Benno Rice]
6305
6306- Fix upload_object_via_stream method in the Atmos driver. (LIBCLOUD-228)
6307  [Benno Rice]
6308
6309- Fix a bug with uploading zero-sized files in the OpenStack Swift /
6310  CloudFiles driver.
6311  [Tomaz Muraus]
6312
6313- Fix a bug with content_type and encoding of object and path names in
6314  the Atmos driver.
6315  [Russell Keith-Magee]
6316
6317Other
6318~~~~~
6319
6320- Unify docstrings formatting in the compute drivers. (LIBCLOUD-229)
6321  [Ilgiz Islamgulov]
6322
6323Changes with Apache Libcloud 0.10.1
6324-----------------------------------
6325
6326General
6327~~~~~~~
6328
6329- Add timeout attribute to base 'Connection' class and pass it to the
6330  connection class constructor if Python version is not 2.5.
6331  [Chris Gilmer]
6332
6333Compute
6334~~~~~~~
6335
6336- Update IBM SBC driver so it works with IBM Smart Cloud Enterprise.
6337  (LIBCLOUD-195)
6338  [Sengor Kusturica]
6339
6340- Add ex_register_iso method to the CloudStack driver. (LIBCLOUD-196)
6341  [Daemian Mack]
6342
6343- Allow user to specify which IP to use when calling deploy_node.
6344  (defaults to 'public_ips'). Previously it only worked with public IP, now
6345  user can pass 'private_ips' as an argument and SSH client will try to
6346  connect to the node first private IP address.
6347  [Jay Doane]
6348
6349- Fix CloudSigmaLvsNodeDriver connectionCls bug.
6350  [Jerry Chen]
6351
6352- Add 'ex_keyname' argument to the create_node method in the OpenStack
6353  driver. (LIBCLOUD-177)
6354  [Jay Doane]
6355
6356- Fix a problem in deploy_node - make it work with providers which
6357  don't  instantly return created node in the list_node response.
6358  Also add __str__ and __repr__ method to DeploymentError so the
6359  error message is more useful. (LIBCLOUD-176)
6360  [Jouke Waleson, Tomaz Muraus]
6361
6362- Add 'ssh_key' feature to Brigthbox driver. This way it works with
6363  deploy_node. (LIBCLOUD-179)
6364  [Neil Wilson]
6365
6366- Add Joyent compute driver.
6367  [Tomaz Muraus]
6368
6369- Store auth token expire times on the connection class in the attribute
6370  called 'auth_token_expires'. (LIBCLOUD-178)
6371  [Chris Gilmer, Brad Morgan]
6372
6373- Add new driver for VCL cloud
6374  (http://www.educause.edu/blog/hes8/CloudComputingandtheVirtualCom/167931)
6375  (LIBCLOUD-180)
6376  [Jason Gionta, Tomaz Muraus]
6377
6378- Improve and add new features to Brightbox driver
6379    - Update fixtures to represent actual api output
6380    - Update compute tests to 100% coverage
6381    - Add userdata and server group extensions to create_node
6382    - Add ipv6 support to public ip list
6383    - Improve in line documentation
6384    - Add lots of api output information to Node and Image
6385      'extra' attributes
6386    - Allow variable API versions (api_version argument)
6387    - Allow reverse dns updates for cloud ip extensions
6388
6389  (LIBCLOUD-184)
6390  [Neil Wilson, Tomaz Muraus]
6391
6392- Add ex_userdata argument to the OpenStack 1.1 driver. (LIBCLOUD-185)
6393  [Jay Doane]
6394
6395- Modify Vmware vCloud driver and implement new features
6396  for the vCloud version 1.5. (LIBCLOUD-183)
6397  [Michal Galet, Sengor Kusturica]
6398
6399- Allow user to pass mode argument to SSHClient.put method and default it to
6400  'w'. (LIBCLOUD-188)
6401  [Jay Doane]
6402
6403- Modify SSHKeyDeployment step to use append mode so it doesn't overwrite
6404  existing entries in .ssh/authorized_keys. (LIBCLOUD-187)
6405  [Jay Doane]
6406
6407- Modify ParamikoSSHClient to connect to the SSH agent and automatically
6408  look for private keys in ~/.ssh if the 'auth' and 'ssh_key' argument
6409  is not specified when calling deploy_node. (LIBCLOUD-182)
6410  [Tomaz Muraus]
6411
6412- Add ex_rescue and ex_unrescue method to OpenStack 1.1 driver.
6413  (LIBCLOUD-193)
6414  [Shawn Smith]
6415
6416- Include 'password' in the node extra dictionary when calling deploy_node
6417  if the password auth is used.
6418  [Juan Carlos Moreno]
6419
6420- Add FileDeployment class to libcloud.compute.deployment module. This can
6421  be used as a replacement for ex_files argument if the provider supports
6422  deployment functionality. (LIBCLOUD-190)
6423  [Jay Doane]
6424
6425Storage
6426~~~~~~~
6427
6428- Large object upload support for CloudFiles driver
6429- Add CLOUDFILES_SWIFT driver to connect to OpenStack Swift
6430  [Dmitry Russkikh, Roman Bogorodskiy]
6431
6432Load-balancer
6433~~~~~~~~~~~~~
6434
6435- Don't include 'body_regex' attribute in the Rackspace driver body if
6436  body_regex is None or empty string. (LIBCLOUD-186)
6437  [Bill Woodward]
6438
6439- Don't split Load balancer IP addresses into public and private list.
6440  Include all the addresses in the 'virtualIps' variable in the extra
6441  dictionary (Rackspace driver). (LIBCLOUD-191)
6442  [Adam Pickeral]
6443
6444Changes with Apache Libcloud 0.9.1
6445----------------------------------
6446
6447General
6448~~~~~~~
6449
6450- Make parsing of the Auth API responses in the OpenStack drivers more
6451  flexible and extensible.
6452
6453  Now, every connection class that inherits from the openstack base
6454  connection must implement get_endpoint(), who's job is to return the
6455  correct endpoint out of the service catalog.
6456
6457  Note: The openstack.py base driver no longer works by default with
6458  Rackspace nova. The default endpoint parsed from the service catalog
6459  is the default compute endpoint for devstack. (LIBCLOUD-151)
6460  [Brad Morgan]
6461
6462- Allow user to pass ex_tenant_name keyword argument to the OpenStack node
6463  driver class. This scopes all the endpoints returned by the Auth API
6464  endpoint to the provided tenant. (LIBCLOUD-172)
6465  [James E. Blair]
6466
6467- Allow user to specify OpenStack service catalog parameters (service type,
6468  name and region). This way base OpenStack driver can be used with
6469  different providers without needing to subclass. (LIBCLOUD-173)
6470  [James E. Blair]
6471
6472- Fix a bug with handling compressed responses in the Linode driver.
6473  (LIBCLOUD-158)
6474  [Ben Agricola]
6475
6476Compute
6477~~~~~~~
6478
6479- Add new RackspaceNovaBeta and RackspaveNovaDfw driver based on the
6480  OpenStack. (LIBCLOUD-151)
6481  [Brad Morgan]
6482
6483- Include 'created' and 'updated' attribute in the OpenStack 1.1 driver.
6484  (LIBCLOUD-155)
6485  [Chris Gilmer]
6486
6487- Include 'minRam' and 'minDisk' attribute in the OpenStack 1.1 driver
6488  Node extra dictionary. (LIBCLOUD-163)
6489  [Chris Gilmer]
6490
6491- Allow users to use a list of tuples for the query string parameters inside
6492  the OpenStack connection classes. This way same key can be specified
6493  multiple times (LIBCLOUD-153)
6494  [Dave King]
6495
6496- Allow user to pass 'max_tries' keyword argument to deploy_node method.
6497  [Tomaz Muraus]
6498
6499- Include original exception error message when re-throwing an exception
6500  inside _run_deployment_script method.
6501  [Tomaz Muraus]
6502
6503- Add support for ElasticHosts new United States (Los Angeles) and Canada
6504  (Toronto) locations. (GITHUB-53)
6505  [Jaime Irurzun]
6506
6507- Add serverId attribute to the NodeImage object extra dictionary in the
6508  OpenStack driver.
6509  [Mark Everett]
6510
6511- Add new EC2 instance type - m1.medium.
6512  [Tomaz Muraus]
6513
6514- Allow user to re-use auth tokens and pass 'ex_force_auth_token' keyword
6515  argument to the OpenStack driver constructor. (LIBCLOUD-164)
6516  [Dave King]
6517
6518- Add new experimental libvirt driver.
6519  [Tomaz Muraus]
6520
6521- Properly handle OpenStack providers which return public IP addresses under
6522  the 'internet' key in the addresses dictionary.
6523  [Tomaz Muraus]
6524
6525- Update create_node in Linode driver and make it return a Node object
6526  instead of a list. Reported by Jouke Waleson. (LIBCLOUD-175)
6527  [Tomaz Muraus]
6528
6529Storage
6530~~~~~~~
6531
6532- Don't lowercase special header names in the Amazon S3 storage driver.
6533  (LIBCLOUD-149)
6534  [Tomaz Muraus]
6535
6536Load-balancer
6537~~~~~~~~~~~~~
6538
6539- Allow user to specify a condition and weight when adding a member in
6540  the Rackspace driver.
6541  [Adam Pickeral]
6542
6543- Add an extension method (ex_balancer_attach_members) for attaching
6544  multiple members to a load balancer in the Rackspace driver.
6545  (LIBCLOUD-152)
6546  [Adam Pickeral]
6547
6548- Add ex_creaate_balancer method to the Rackspace driver and allow user to
6549  pass 'vip' argument to it. (LIBCLOUD-166)
6550  [Adam Pickeral]
6551
6552- Update Rackspace driver to support Auth 2.0. (LIBCLOUD-165)
6553  [Dave King]
6554
6555- Add new ex_create_balancer_access_rule and
6556  ex_create_balancer_access_rule_no_poll method to the Rackspace driver.
6557  (LIBCLOUD-170)
6558  [Dave King]
6559
6560DNS
6561~~~
6562
6563- Update Rackspace driver to support Auth 2.0. (LIBCLOUD-165)
6564  [Dave King]
6565
6566Changes with Apache Libcloud 0.8.0
6567----------------------------------
6568
6569General
6570~~~~~~~
6571
6572- Add 'request_kwargs' argument to the get_poll_request_kwargs method.
6573  This argument contains kwargs which were previously used to initiate the
6574  poll request.
6575  [Mark Everett]
6576
6577- Add support for handling compressed responses (deflate, gzip). Also send
6578  "Accept-Encoding" "gzip,deflate" header with all the requests.
6579  [Tomaz Muraus]
6580
6581- Fix debug module (LIBCLOUD_DEBUG env variable) so it works with Python 3
6582  [Tomaz Muraus]
6583
6584Compute
6585~~~~~~~
6586
6587- Added support for retrieving OpenNebula v3.2 instance types, OpenNebula
6588  v3.0 network Public attribute support, and additional code coverage
6589  tests.
6590  [Hutson Betts]
6591
6592- Add implementation for ex_save_image method to the OpenStack 1.1 driver.
6593  [Shawn Smith]
6594
6595- Add support for Amazon new South America (Sao Paulo) location.
6596  [Tomaz Muraus]
6597
6598- Fix a bug in OpenStack driver when 2.0_apikey or 2.0_password
6599  'auth_version' is used.
6600  [Tomaz Muraus]
6601
6602- Current OpenNebula OCCI implementation does not support a proper
6603  restart method. Rather it suspends and resumes. Therefore, restart_node
6604  has been removed from the OpenNebula driver.
6605  [Hutson Betts]
6606
6607- Enable ex_delete_image method in the OpenStack 1.1 driver.
6608  [Shawn Smith]
6609
6610- Return NodeImage instance in OpenStack 1.1 driver ex_save_image method
6611  (LIBCLOUD-138)
6612  [Shawn Smith]
6613
6614- Enable reboot_node method in the OpenNebula 3.2 driver.
6615  [Hutson Betts]
6616
6617- Fix a public_ips Node variable assignment in the Gandi.net driver.
6618  [Aymeric Barantal]
6619
6620- Updated the list of node states for OpenNebula drivers. (LIBCLOUD-148)
6621  [Hutson Betts]
6622
6623Storage
6624~~~~~~~
6625
6626- Propagate extra keyword arguments passed to the Rackspace driver
6627  connection class.
6628  [Dave King]
6629
6630Load-balancer
6631~~~~~~~~~~~~~
6632
6633- Add 'extra' attribute to the LoadBalancer object and retrieve all the
6634  virtual IP addresses in the Rackspace driver.
6635  [Dave King]
6636
6637- Add list_supported_algorithms() method to the base LoadBalancer class.
6638  This method returns a list of supported algorithms by the provider.
6639  [Dave King]
6640
6641- Update Rackspace driver:
6642    - Add two new supported algorithms: WEIGHTED_ROUND_ROBIN,
6643      WEIGHTED_LEAST_CONNECTIONS
6644    - Add ex_list_algorithm_names method
6645    - Add ex_get_balancer_error_page method
6646    - Add ex_balancer_access_list method
6647    - Populate LoadBalancer extra dictionary with more attributes
6648    - Add support for health monitors and connection throttling
6649    - Add more balancer states
6650    - ex_list_protocols_with_default_ports
6651
6652  [Dave King]
6653
6654- Propagate extra keyword arguments passed to the Rackspace driver
6655  connection class.
6656  [Dave King]
6657
6658- Add 'extra' attribute to the Member object and populate it in
6659  the Rackspace driver.
6660  [Mark Everett]
6661
6662- Adds status to the Member object and conditions an 'enum'
6663  (Rackspace driver).
6664  [Mark Everett]
6665
6666- Add update_balancer method to the base LoadBalancer class.
6667  [Mark Everett]
6668
6669- Add update_balancer method to the Rackspace driver.
6670  [Mark Everett]
6671
6672- Add created and updated attribute to the LoadBalancer extra dictionary in
6673  the Rackspace driver.
6674  [Mark Everett]
6675
6676- Fix protocol name maping in the Rackspace driver.
6677  [Bill Woodward]
6678
6679Changes with Apache Libcloud 0.7.1
6680----------------------------------
6681
6682General
6683~~~~~~~
6684
6685 - Fix a minor bug in debug mode (LIBCLOUD_DEBUG=/dev/stderr) which has been
6686   introduced when adding Python 3 compatibility layer.
6687   [Paul Querna]
6688
6689 - Update OpenStack Auth API endpoint paths.
6690   [Paul Querna]
6691
6692Changes with Apache Libcloud 0.7.0
6693----------------------------------
6694
6695General
6696~~~~~~~
6697
6698- Add support for Python 3.x.
6699  [Tomaz Muraus]
6700
6701- Remove old deprecated paths.
6702  [Tomaz Muraus]
6703
6704Compute
6705~~~~~~~
6706
6707- Update CloudSigma Zurich API endpoint address.
6708  [Tomaz Muraus]
6709
6710- Add new US Las Vegas endpoint to CloudSigma driver (types.CLOUDSIGMA_US)
6711  [Tomaz Muraus]
6712
6713- Allow user to specify drive type (hdd, ssd) when creating a
6714  CloudSigma server.
6715
6716  Note 'ssd' drive_type doesn't work with the API yet.
6717  [Tomaz Muraus]
6718
6719- Update OpenStack 1.1 driver to comply with the API specs. Need to make
6720  another call to retrieve node name and ip addresses when creating a node,
6721  because the first call only returns an id an the password. (GITHUB-40)
6722  [Dave King]
6723
6724- Add ex_node_ids argument to the EC2 driver list_nodes method.
6725  (GITHUB-39)
6726  [Suvish Vt]
6727
6728- If OpenStack Auth 2.0 API is used, also parse out tenant id and
6729  name and save it on the connection class (conn.tenant['id'],
6730  conn.tenant['name']).
6731  [Tomaz Muraus]
6732
6733- Add new "Cluster Compute Eight Extra Large" size to the Amazon EC2
6734  driver.
6735  [Tomaz Muraus]
6736
6737- Add the following extension methods to the EC2 compute driver:
6738  ex_describe_all_addresses, ex_associate_addresses, ex_start_node,
6739  ex_stop_node.
6740  [Suvish Vt]
6741
6742- Change public_ip and private_ip attribute on the Node object to the
6743  public_ips and private_ips since both of the objects are always a list.
6744
6745  Note: For backward compatibility you can still access public_ip and
6746  private_ip attributes, but this will be removed in the next release.
6747  [Tomaz Muraus]
6748
6749- Fix an inconsistency in IBM SBC driver and make sure public_ips and
6750  private_ips attributes are a list.
6751  [Tomaz Muraus]
6752
6753- Fix an inconsistency in OpSource driver and make sure public_ips is an
6754  empty list ([]), not 'unknown'
6755  [Tomaz Muraus]
6756
6757- Updated support for OpenNebula.org v1.4, v2.x, and v3.x APIs and included
6758  additional compute tests validating functionality. (LIBCLOUD-121)
6759  [Hutson Betts]
6760
6761Load-balancer
6762~~~~~~~~~~~~~
6763
6764- Add ex_member_address argument to the Rackspace driver list_balancers
6765  method. If this argument is provided, only loadbalancers which have a
6766  member with the provided IP address attached are returned.
6767  [Tomaz Muraus]
6768
6769Changes with Apache Libcloud 0.6.2
6770----------------------------------
6771
6772General
6773~~~~~~~
6774
6775- Fix a bug in PollingConnection class - actually use and don't ignore
6776  the poll_interval
6777  [Tomaz Muraus]
6778
6779Compute
6780~~~~~~~
6781
6782- Add support for Auth 2.0 API (keystone) to the OpenStack Auth
6783  connection class.
6784  [Brad Morgan]
6785
6786- Add list_locations method to the OpenStack driver and fix some
6787  inconsistencies in the OpenStack driver extension method signatures.
6788  [Brad Morgan]
6789
6790- Update Amazon EC2 driver and pricing data to support a new region -
6791  US West 2 (Oregon)
6792  [Tomaz Muraus]
6793
6794- Expose 'CLOUDSTACK' provider. This driver can be used with an
6795  arbitrary CloudStack installation.
6796  [Tomaz Muraus]
6797
6798Storage
6799~~~~~~~
6800
6801- Update Amazon S3 driver to support a new region - US West 2 (Oregon)
6802  [Tomaz Muraus]
6803
6804DNS
6805~~~
6806
6807- Increase the default poll interval in the Rackspace driver to 2.5
6808  seconds.
6809  [Tomaz Muraus]
6810
6811- Fix a bug in Rackspace Cloud DNS driver and make sure to throw an
6812  exception if an unexpected status code is returned. Reported by
6813  "jeblair".
6814  [Tomaz Muraus]
6815
6816Changes with Apache Libcloud 0.6.1
6817----------------------------------
6818
6819General
6820~~~~~~~
6821
6822- Modify ParamikoSSHClient.connect so it supports authentication using a
6823  key file, (LIBCLOUD-116)
6824  [Jay Doane]
6825
6826- User must now explicitly specify a path when using LIBCLOUD_DEBUG
6827  environment variable. (LIBCLOUD-95)
6828  [daveb, Tomaz Muraus]
6829
6830- Add new XmlResponse and JsonResponse base class and modify all the
6831  driver-specific response classes to inherit from one of those two
6832  classes where applicable.
6833  [Caio Romão]
6834
6835- Add new 'PollingConnection' class. This class can work with 'async'
6836  APIs. It sends and an initial request and then periodically poll the API
6837  until the job has completed or a timeout has been reached.
6838  [Tomaz Muraus]
6839
6840Compute
6841~~~~~~~
6842
6843- Add 24GB size to the GoGrid driver
6844  [Roman Bogorodskiy]
6845
6846- Fix API endpoint URL in the Softlayer driver
6847  [Tomaz Muraus]
6848
6849- Add support for OpenNebula 3.0 API (LIBCLOUD-120)
6850  [Hutson Betts]
6851
6852- Add more attributes to the extra dictionary in the EC2 driver.
6853  (GITHUB-31)
6854  [Juan Carlos Moreno]
6855
6856- Fix IP address assignment in the EC2 driver. Don't include "None" in the
6857  public_ip and private_ip Node list attribute.
6858  [Tomaz Muraus]
6859
6860- Make deploy_node functionality more robust and don't start deployment if
6861  node public_ip attribute is an empty list.
6862  [Tomaz Muraus]
6863
6864- Support SSH key authentication when using deploy_node.
6865  [Russell Haering, Tomaz Muraus]
6866
6867- Enable deploy_node functionality in the EC2 driver using SSH key
6868  authentication
6869  [Russell Haering, Tomaz Muraus]
6870
6871- Enable paramiko library debug log level if LIBCLOUD_DEBUG is used and
6872  paramiko is installed.
6873  [Tomaz Muraus]
6874
6875- Fix the request signature generation in the base EC2 compute driver.
6876  If the endpoint is using a non-standard port (Eucalyptus based
6877  installations), append it to the hostname used to generate the
6878  signature.
6879  [Simon Delamare]
6880
6881- Add new "unavailable" state to the BrightboxNodeDriver class.
6882  [Tim Fletcher]
6883
6884- Increase a PollingConnection timeout in the CloudStack connection
6885  and fix the context dictionary creation in the _async_request method.
6886  [Oleg Suharev]
6887
6888- Fix networks retrieval in the CloudStack driver create_node method.
6889  Also only pass 'networkids' field to the API if there are any networks
6890  available.
6891  [Oleg Suharev, Tomaz Muraus]
6892
6893- Fix list_nodes in the CloudStack driver. Private IPs aren't always
6894  available.
6895  [Tomaz Muraus]
6896
6897Load-baancer
6898~~~~~~~~~~~~
6899
6900- Add a missing argument to the method call inside
6901  LoadBalancer.attach_compute_node and Driver.balancer_attach_compute_node.
6902  [Tim Fletcher, Tomaz Muraus]
6903
6904- Add missing destroy() method to the LoadBalancer class.
6905  [Tomaz Muraus]
6906
6907DNS
6908~~~
6909
6910- New drivers for Rackspace Cloud DNS (US and UK region)
6911  [Tomaz Muraus]
6912
6913- Add list_record_types() method. This method returns a list of record
6914  types supported by the provider.
6915  [Tomaz Muraus]
6916
6917Changes with Apache Libcloud 0.6.0-beta1
6918----------------------------------------
6919
6920General
6921~~~~~~~
6922
6923- All the driver classes now inherit from the BaseDriver class
6924  [Tomaz Muraus]
6925
6926- Prefer simplejson (if available) over json module. (LIBCLOUD-112)
6927  [Geoff Greer]
6928
6929- Update compute demo and change the syntax of test credentials stored in
6930  test/secrets.py-dist. (LIBCLOUD-111)
6931  [Mike Nerone]
6932
6933- Enable SSL certificate verification by default and throw an exception
6934  if CA certificate files cannot be found. This can be overridden by
6935  setting libcloud.security.VERIFY_SSL_CERT_STRICT to False.
6936  [Tomaz Muraus]
6937
6938Compute
6939~~~~~~~
6940
6941- Support for 1.1 API and many other improvements in the OpenStack driver ;
6942  LIBCLOUD-83
6943  [Mike Nerone, Paul Querna, Brad Morgan, Tomaz Muraus]
6944
6945- Add some extra methods to the Gandi.net driver (LIBCLOUD-115)
6946  [Aymeric Barantal]
6947
6948- Add ex_delete_image method to the Rackspace driver. (GITHUB-27)
6949  [David Busby]
6950
6951- Linode driver now supports new 'Japan' location
6952  [Jed Smith]
6953
6954- Rackspace driver now inherits from the OpenStack one instead of doing
6955  it vice versa. (LIBCLOUD-110)
6956  [Mike Nerone]
6957
6958- Properly populate NodeImage "details" dictionary in the Rackspace
6959  compute driver. (LIBCLOUD-107)
6960  [Lucy Mendel]
6961
6962- Fix a bug in Eucalyptus driver ex_describe_addresses method.
6963  [Tomaz Muraus]
6964
6965- Add the following new extenstion methods to the Rackspace driver:
6966  ex_resize, ex_confirm_resize, ex_revert_resize.
6967  [Tomaz Muraus]
6968
6969- Also allow user to pass in Node object to some ex\_ methods in
6970  the Rackspace compute driver.
6971  [Tomaz Muraus]
6972
6973- Throw an exception in deploy_node if paramiko library is not
6974  available
6975  [Tomaz Muraus]
6976
6977- Fix chmod argument value which is passed to the sftpclient.put
6978  method; GITHUB-17
6979  [John Carr]
6980
6981- New driver for Ninefold.com. (LIBCLOUD-98)
6982  [Benno Rice]
6983
6984Storage
6985~~~~~~~
6986
6987- New driver for Google Storage based on the v1.0 / legacy API
6988  [Tomaz Muraus]
6989
6990- New driver for Ninefold.com. (GITHUB-19)
6991  [Benno Rice]
6992
6993- Fix a bug in uploading an object with some versions of Python 2.7
6994  where httplib library doesn't automatically call str() on the
6995  header values.
6996  [Tomaz Muraus]
6997
6998- Allow users to upload (create) 0-bytes large (empty) objects
6999  [Tomaz Muraus]
7000
7001Load-balancer
7002~~~~~~~~~~~~~
7003
7004- New driver for Rackspace UK location
7005  [Tomaz Muraus]
7006
7007- New driver for Ninefold.com. (LIBCLOUD-98)
7008  [Benno Rice]
7009
7010DNS
7011~~~
7012
7013- Drivers for Linode DNS and Zerigo DNS
7014  [Tomaz Muraus]
7015
7016- Brand new DNS API!
7017  [Tomaz Muraus]
7018
7019Changes with Apache Libcloud 0.5.2
7020----------------------------------
7021
7022Compute
7023~~~~~~~
7024
7025- New driver for serverlove.com and skalicloud.com
7026  [Tomaz Muraus]
7027
7028- Fix node name and tag handling in the Amazon EC2 driver
7029  [Wiktor Kolodziej]
7030
7031- Fix pricing and response handling in the OpenStack driver
7032  [Andrey Zhuchkov]
7033
7034- Fix deploy_node() method and make it more robust
7035  [Tomaz Muraus]
7036
7037- Users can now pass file like objects to ScriptDeployment and
7038  SSHKeyDeployment constructor.
7039  [Tomaz Muraus]
7040
7041- Include node tags when calling list_nodes() in the Amazon EC2
7042  driver
7043  [Trevor Pounds]
7044
7045- Properly handle response errors in the Rackspace driver and
7046  only throw InvalidCredsError if the returned status code is 401
7047  [Brad Morgan]
7048
7049- Fix the create_node method in the Nimbus driver and make the
7050  "ex_create_tag" method a no-op, because Nimbus doesn't support creating
7051  tags.
7052  [Tomaz Muraus]
7053
7054Storage
7055~~~~~~~
7056
7057- Fix handling of the containers with a lot of objects. Now a LazyList
7058  object is returned when user calls list_container_objects() method
7059  and this object transparently handles pagination.
7060  [Danny Clark, Wiktor Kolodziej]
7061
7062Changes with Apache Libcloud 0.5.0
7063----------------------------------
7064
7065- Existing APIs directly on the libcloud.* module have been
7066  deprecated and will be removed in version 0.6.0.  Most methods
7067  were moved to the libcloud.compute.* module.
7068
7069- Add new libcloud.loadbalancers API, with initial support for:
7070    - GoGrid Load Balancers
7071    - Rackspace Load Balancers
7072
7073  [Roman Bogorodskiy]
7074
7075- Add new libcloud.storage API, with initial support for:
7076   - Amazon S3
7077   - Rackspace CloudFiles
7078
7079  [Tomaz Muraus]
7080
7081- Add new libcloud.compute drivers for:
7082   - Bluebox [Christian Paredes]
7083   - Gandi.net [Aymeric Barantal]
7084   - Nimbus [David LaBissoniere]
7085   - OpenStack [Roman Bogorodskiy]
7086   - Opsource.net [Joe Miller]
7087
7088- Added "pricing" module and improved pricing handling.
7089  [Tomaz Muraus]
7090
7091- Updates to the GoGrid compute driver:
7092    - Use API version 1.0.
7093    - Remove sandbox flag.
7094    - Add ex_list_ips() to list IP addresses assigned to the account.
7095    - Implement ex_edit_image method which allows changing image attributes
7096      like name, description and make image public or private.
7097
7098  [Roman Bogorodskiy]
7099
7100- Updates to the Amazon EC2 compute driver:
7101   - When creating a Node, use the name argument to set a Tag with the
7102     value.  [Tomaz Muraus]
7103   - Add extension method for modifying node attributes and changing the
7104     node size. [Tomaz Muraus]
7105   - Add support for the new Amazon Region (Tokyo). [Tomaz Muraus]
7106   - Added ex_create_tags and ex_delete_tags. [Brandon Rhodes]
7107   - Include node Elastic IP addresses in the node public_ip attribute
7108     for the EC2 nodes. [Tomaz Muraus]
7109   - Use ipAddress and privateIpAddress attribute for the EC 2node public
7110     and private ip. [Tomaz Muraus]
7111   - Add ex_describe_addresses method to the EC2 driver. [Tomaz Muraus]
7112
7113- Updates to the Rackspace CloudServers compute driver:
7114   - Add ex_rebuild() and ex_get_node_details() [Andrew Klochkov]
7115   - Expose URI of a Rackspace node to the node meta data. [Paul Querna]
7116
7117- Minor fixes to get the library and tests working on Python 2.7 and PyPy.
7118  [Tomaz Muraus]
7119
7120Changes with Apache Libcloud 0.4.2 (Released January 18, 2011)
7121--------------------------------------------------------------
7122
7123- Fix EC2 create_node to become backward compatible for
7124  NodeLocation.
7125  [Tomaz Muraus]
7126
7127- Update code for compatibility with CPython 2.5
7128  [Jerry Chen]
7129
7130- Implement ex_edit_node method for GoGrid driver which allows
7131  changing node attributes like amount of RAM or description.
7132  [Roman Bogorodskiy]
7133
7134- Add ex_set_password and ex_set_server_name to Rackspace driver.
7135  [Peter Herndon, Paul Querna]
7136
7137- Add Hard and Soft reboot methods to Rackspace driver.
7138  [Peter Herndon]
7139
7140- EC2 Driver availability zones, via ex_list_availability_zones;
7141  list_locations rewrite to include availability zones
7142  [Tomaz Muraus]
7143
7144- EC2 Driver Idempotency capability in create_node; LIBCLOUD-69
7145  [David LaBissoniere]
7146
7147- SSL Certificate Name Verification:
7148    - libcloud.security module
7149    - LibcloudHTTPSConnection, LibcloudHTTPConnection (alias)
7150    - Emits warning when not verifying, or CA certs not found
7151
7152- Append ORD1 to available Rackspace location, but keep in the
7153  same node as DFW1, because it's not readable or writeable from
7154  the API.
7155  [Per suggestion of Grig Gheorghiu]
7156
7157- ex_create_ip_group, ex_list_ip_groups, ex_delete_ip_group,
7158  ex_share_ip, ex_unshare_ip, ex_list_ip_addresses additions
7159  to Rackspace driver
7160  [Andrew Klochkov]
7161
7162- New driver for CloudSigma.
7163  [Tomaz Muraus]
7164
7165- New driver for Brightbox Cloud. (LIBCLOUD-63)
7166  [Tim Fletcher]
7167
7168- Deployment capability to ElasticHosts
7169  [Tomaz Muraus]
7170
7171- Allow deploy_node to use non-standard SSH username and port
7172  [Tomaz Muraus]
7173
7174- Added Rackspace UK (London) support
7175  [Chmouel Boudjnah]
7176
7177- GoGrid driver: add support for locations, i.e. listing
7178  of locations and creation of a node in specified
7179  location
7180  [Roman Bogorodskiy]
7181
7182- GoGrid and Rackspace drivers: add ex_save_image() extra
7183  call to convert running node to an image
7184  [Roman Bogorodskiy]
7185
7186- GoGrid driver: add support for creating 'sandbox' server
7187  and populate isSandbox flag in node's extra information.
7188  [Roman Bogorodskiy]
7189
7190- Add ImportKeyPair and DescribeKeyPair to EC2. (LIBCLOUD-62)
7191  [Philip Schwartz]
7192
7193- Update EC2 driver and test fixtures for new API.
7194  [Philip Schwartz]
7195
7196Changes with Apache Libcloud 0.4.0 [Released October 6, 2010]
7197-------------------------------------------------------------
7198
7199- Add create keypair functionality to EC2 Drivers. (LIBCLOUD-57)
7200  [Grig Gheorghiu]
7201
7202- Improve handling of GoGrid accounts with limited access
7203  API keys.
7204  [Paul Querna]
7205
7206- New Driver for ElasticHosts. (LIBCLOUD-45)
7207  [Tomaz Muraus]
7208
7209- Use more consistent name for GoGrid driver and use http
7210  POST method for 'unsafe' operations
7211  [Russell Haering]
7212
7213- Implement password handling and add deployment support
7214  for GoGrid nodes.
7215  [Roman Bogorodskiy]
7216
7217- Fix behavior of GoGrid's create_node to wait for a Node ID.
7218  [Roman Bogorodskiy]
7219
7220- Add ex_create_node_nowait to GoGrid driver if you don't need to
7221  wait for a Node ID when creating a node.
7222  [Roman Bogorodskiy]
7223
7224- Removed libcloud.interfaces module.
7225  [Paul Querna]
7226
7227- Removed dependency on zope.interfaces.
7228  [Paul Querna]
7229
7230- RimuHosting moved API endpoint address.
7231  [Paul Querna]
7232
7233- Fix regression and error in GoGrid driver for parsing node objects.
7234  [Roman Bogorodskiy]
7235
7236- Added more test cases for GoGrid driver. (LIBCLOUD-34)
7237  [Roman Bogorodskiy, Jerry Chen]
7238
7239- Fix parsing of Slicehost nodes with multiple Public IP addresses.
7240  [Paul Querna]
7241
7242- Add exit_status to ScriptDeployment. (LIBCLOUD-36)
7243  [Paul Querna]
7244
7245- Update prices for several drivers.
7246   [Brad Morgan, Paul Querna]
7247
7248- Update Linode driver to reflect new plan sizes.
7249  [Jed Smith]
7250
7251- Change default of 'location' in Linode create_node. (LIBCLOUD-41)
7252   [Jed Smith, Steve Steiner]
7253
7254- Document the Linode driver.
7255  [Jed Smith]
7256
7257- Request a private, LAN IP address at Linode creation.
7258  [Jed Smith]
7259
7260Changes with Apache Libcloud 0.3.1 [Released May 11, 2010]
7261----------------------------------------------------------
7262
7263- Updates to Apache License blocks to correctly reflect status as an
7264   Apache Project.
7265
7266- Fix NOTICE file to use 2010 copyright date.
7267
7268- Improve error messages for when running the test cases without
7269  first setting up a secrets.py
7270
7271Changes with Apache Libcloud 0.3.0 [Tagged May 6, 2010, not released]
7272---------------------------------------------------------------------
7273
7274- New Drivers for:
7275    - Dreamhost
7276    - Eucalyptus
7277    - Enomaly ECP
7278    - IBM Developer Cloud
7279    - OpenNebula
7280    - SoftLayer
7281
7282- Added new deployment and bootstrap API.
7283
7284- Improved Voxel driver.
7285
7286- Added support for Amazon EC2 Asia Pacific (Singapore) Region.
7287
7288- Improved test coverage for all drivers.
7289
7290- Add support for multiple security groups in EC2.
7291
7292- Fixed bug in Rackspace and RimuHosting when using multiple threads.
7293
7294- Improved debugging and logging of HTTP requests.
7295
7296- Improved documentation for all classes and methods.
7297
7298Changes with Apache Libcloud 0.2.0 [Tagged February 2, 2010]
7299------------------------------------------------------------
7300
7301- First public release.
7302