This is an automated email from the ASF dual-hosted git repository. tomaz pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/libcloud.git
commit 3cdd12bf0b7644c4c10fa00e930b943487133e34 Author: Tomaz Muraus <[email protected]> AuthorDate: Sat Jul 11 17:08:53 2020 +0200 Add changelog and upgrade notes entry. --- CHANGES.rst | 5 +++++ docs/upgrade_notes.rst | 14 ++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index 42d192e..f56a5d0 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -19,6 +19,11 @@ Compute (GITHUB-1468) [Eis D. Zaster - @Eis-D-Z] +- [AWS EC2] Update script for scraping AWS EC2 pricing and update EC2 pricing + data. + (GITHUB-1469) + [Eis D. Zaster - @Eis-D-Z] + Changes in Apache Libcloud 3.1.0 -------------------------------- diff --git a/docs/upgrade_notes.rst b/docs/upgrade_notes.rst index b3eb56c..67aac38 100644 --- a/docs/upgrade_notes.rst +++ b/docs/upgrade_notes.rst @@ -5,6 +5,20 @@ This page describes how to upgrade from a previous version to a new version which contains backward incompatible or semi-incompatible changes and how to preserve the old behavior when this is possible. +Libcloud 3.2.0 +-------------- + +* To accommodate for more complex pricing schemes, pricing data format for AWS + EC2 inside ``libcloud/data/pricing.json`` file has changes. + + Previously, it contained a mapping of ``<driver name>_<driver rigion>`` -> + ``<instance size>`` -> ``<price>`` and now the pricing is in the following + format: ``ec_{linux,windows}`` -> ``<instance size>`` -> ``<region>`` -> + ``<price>``. + + This format gives us more flexibility for more complex pricing schemes and + also allows us to store prices for non-Linux instances. + Libcloud 3.0.0 --------------
