|
 |
 |
 |
Changelog for python311-apache-libcloud-3.8.0-lp156.145.1.noarch.rpm :
* Tue Sep 03 2024 Steve Kowalik - Replace support-pytest-8.2.patch: * The existing patch unintentionally skips a lot of the testsuite. * Thu Jun 06 2024 Steve Kowalik - Switch to pyproject and autosetup macros.- No more greedy globs in %files.- Tidy up {Build,}Requires on typing and lxml.- Stop skipping a bunch of tests, requests-mock has been fixed.- Add patches support-pytest-8.patch, support-pytest-8.2.patch: * Support running under pytest 8.2.x. * Tue Sep 26 2023 ecsosa - Update to 3.8.0 * Compute - Remove obsolete compute driver where the provider is either dead or not offering those services anymore: Bluebox, bsnlcloud, Cloudwatt, Enomaly, ElasticHosts, ElasticStack, GoGrid, Gridspot, HostVirtual, Joyent, Med-1, Nephoscale, 1on1, ProfitBricks, ServerLove, SkaliCloud, Softlayer, Voxel. (#1743, #1852) - [Outscale] Fix list_nodes() and list_volumes() method. (#1877) - [Azure ARM] Implement pagination in the list_nodes() method. This fixes a bug which would result in sometimes not all the nodes being returned. (#1824, #1850) - [Azure ARM] Implement pagination in the list_volumes() method. This fixes a bug which would result in sometimes not all the volumes nodes being returned. (#1891) - [Azure ARM] Bump DISK_API_VERSION from 2018-06-01 to 2023-01-02 to support premium v2 SSDs. (#1904) - [AWS EC2] Add support for the following new arguments to the ex_register_image() method: * boot_mode - control bios vs uefi boot * tpm_support - enable a tpm * uefi_data - provide NV UEFI vars * imds_support - require IMDSv2. (#1906) * Storage - Optimize read_in_chunks() function implementation. - This should result in large performance speedups and lower memory usage when uploading or downloading a large file with a mismatching chunk size. - Keep in mind that this only affects code paths where the function is called with fill_size=True argument (such as in the S3 driver, etc). (#1847) - [Aliyun OSS] Fix upload_object() function. (#1796) - [S3] Support all available storage classes. Previously only \"standard\" and \"reduced_redundancy\" were supported. (#1875) - [CloudFiles] Fix get_endpoint_url() throwing an exception when being used with use_internal_url=True argument. (#1883, #1884) - [CloudFiles] Update OpenStack connection handling code to only re-connect in case connection details (scheme, host, port) have changed. - This should result in significant performance improvements when downloading objects since the underlying HTTP connection will be properly re-used. (#1885, #1886) - [Backblaze B2] Fix a bug which would result in an exception when passing extra={\"meta_data\": {}} argument to the upload_object() method. (#1916) * Other - Move Python tooling (pytest, bandit, pylint, mypy, coverage) config options from separate config files into single pyproject.yaml config files. - NOTE: This change only affects development process and nothing else. (#1901) - Fix minor typos in the code using codespell package and enforce this check as part of our GHA CI system. (#1923) - Indicate we also support Python 3.12 (beta). (#1920) - Remove unused libcloud.security.SSL_VERSION constant / module level variable. This variable has been unused and had no affect on the behavior since we switched to the requests library for making HTTP(s) requests in 2016. - Packaging related metadata has been migrated from setup.py to pyproject.yaml file. (#1929) - Deprecated and unsafe setup.py test convenience alias for running tests using pytest has been removed in favor of running pytest directly. (#1929) - Script for building release artifacts has been updated to utilize build Python package to build release artifacts (sdist + wheel) in an isolated environment. (#1929) * Mon Jul 03 2023 ecsosa - Add %{?sle15_python_module_pythons} * Tue May 09 2023 Daniel Garcia - Disable broken tests because python-requests-mock and urllib3 compatibility, gh#jamielennox/requests-mock#228 * Sat Jan 28 2023 Dirk Müller - update to 3.7.0: * Support for Python 3.6 which has been EOL for more than a year now has been removed. * [CloudSigma] Update API URLs for US locations. * [GCP] Fix OAuth2 desktop client login. * [Amazon S3] Add support for ``af-south-1`` region. * Also run unit tests under Python 3.11 on CI/CD and indicate we also support Python 3.11. * Thu Oct 27 2022 Yogalakshmi Arunachalam - Update to 3.6.1 * [OpenStack] Fix OpenStack Identitiy bug when auth url contains a path. (GITHUB-1717, GITHUB-1718) [Dimitris Galanis - AATTdimgal1] * Update EC2 price scraping script to utilize official pricing API endpoint. Pricing file has also been updated to include latest EC2 pricing data. Complete raw pricing data file size has grown by ~1 MB (from ~2 MB to ~3 MB). By default when requesting pricing data we only cache pricing data in memory for used / requested drivers so a slight memory increase due to the pricing file size increase will only affect users who utilize pricing related functionality in the EC2 driver. (GITHUB-1715) [Eis D. Zaster - AATTEis-D-Z] Compute * [EC2] Update list_images() method to better handle scenario when an image doesn\'t contain creationDate attribute (previously the code would throw if an image without creationDate was encountered). Reported by Juan Marcos Caicedo Mejía - AATTjuanmarcosdev. (GITHUB-1700, GITHUB-1701) [Tomaz Muraus - AATTKami] * [Azure ARM] Allow user to create volume / disks in specific zone by passing ex_zones argument to the create_volume() method. Also add new ex_sku_name and remove ex_account_type argument from that method. Also change DISK_API_VERSION version from 2016-04-30-preview to 2018-06-01. This is needed to be able to support those changes. Code has been updated to handle slightly different response format for the volume API operations. * (GITHUB-1736) [Palash Gandhi - AATTpalashgandhi] * [GCE] Add improved support for retrieving GCE image pricing data using libcloud.pricing.get_image_price(\"gce_images\", ...) method. * Existing way of retrieving image pricing using libcloud.pricing.get_pricing(\"compute\", \"gce_images\") method continues to work. (GITHUB-1699) [Eis D. Zaster - AATTEis-D-Z] * [Azure ARM] Add new ex_create_additional_capabilities() method which allows user to set capabilities on a stopped node. This allows users to utilize ultra SSDs and similar. * Also add support for new ex_iops and ex_throughput argument to the create_volume() method. (GITHUB-1744) [John Wren Kennedy - AATTjwk404] Storage * [Azure Blobs] Fix get_container() method and make sure Container etag extra attribute contains the correct scheme (https or http), depending on the used endpoint. (GITHUB-1703, GITHUB-1712) [AATTKatiRG] * [Azure Blobs] Fix list_containers()` method and make sure Container etag extra attribute doesn\'t contain unncessary double quotes around the value (\"0x8CFBAB7B5B82D8E\" -> 0x8CFBAB7B5B82D8E). (GITHUB-1712) [Tomaz Muraus - AATTKami] * [OVH] Add new driver for OVH Storage based on the S3 compatible storage endpoints. * (GITHUB-1732) [Olivier Picquenot - AATTpcqnt] Other / Development ~~~~~-------------- * All the imports in the code have been re-organized / sorted using the isort library. * Going forward, consistent import ordering will be automatically enforced using isort check on the CI. * Developers can run the isort check locally using tox -e command. (GITHUB-1761) [Tomaz Muraus - AATTKami] * Fix black config (pyproject.toml) and ensure max line length is correctly set to 100 characters everywhere. * Also re-format code with this fixed / updated config option. (GITHUB-1761) [Tomaz Muraus - AATTKami] * Code has been reformatted using pyupgrade and Python 3.6 higher compatible syntax. (GITHUB-1765) [Tomaz Muraus - AATTKami] * Wed Sep 07 2022 Yogalakshmi Arunachalam - Removed patch skip-some-tests-for-older-paramiko-versions.patch, mock.patch Both the patches are already applied * Wed Sep 07 2022 Yogalakshmi Arunachalam - update to 3.6.0 Compute * [OpenStack] Fix error attaching/detaching a Floating IP to an OpenStack node when ex_force_microversion is set with 2.44 or newer microversion. * (GITHUB-1674) [Miguel Caballer - AATTmicafer] * [OpenStack] Error in volume api calls if microversion is set in OpenStack. In previous version if ex_force_microversion is set, it is assumed to set it to the compute service. Now if only a version is set 2.67, compute service is assumed but it can be also set the service name volume 3.21. * (GITHUB-1675) [Miguel Caballer - AATTmicafer] * [OpenStack] Fix error creating and getting node in OpenStack when ex_force_microversion is set to a version newer than 2.47. * (GITHUB-1672) [Miguel Caballer - AATTmicafer] * [EC2] Add support for new af-south-1 region. (GITHUB-1688) [Balazs Baranyi - AATTbalazsbaranyi] * [SSH] Update deploy node and ParamikoSSHClient related code so it works with paramiko >= 2.9.0 and older OpenSSH server versions which doesn\'t support SHA-2 variants of RSA key verification algorithm. * paramiko v2.9.0 introduced a change to prefer SHA-2 variants of RSA key verification algorithm. With this version paramiko would fail to connect to older OpenSSH servers which don\'t support this algorithm (e.g. default setup on Ubuntu 14.04) and throw authentication error. * The code has been updated to be backward compatible. It first tries to connect to the server using default preferred algorithm values and in case this fails, it will fall back to the old approach with SHA-2 variants disabled. * This functionality can be disabled by setting LIBCLOUD_PARAMIKO_SHA2_BACKWARD_COMPATIBILITY``environment variable to ``false. * For security reasons (to prevent possible downgrade attacks and similar) you are encouraged to do that in case you know you won\'t be connecting to any old OpenSSH servers. [Tomaz Muraus] Storage * [Google Storage] Fix public objects retrieval. In some scenarios, Google doesn\'t return etag header in the response (e.g. for gzip content encoding). The code has been updated to take this into account and not throw if the header is not present. * (GITHUB-1682, GITHUB-1683) [Veith Röthlingshöfer - AATTRunOrVeith] * [Azure Blobs] Add support for authenticating with Azure AD by passing auth_type=\"azureAd\" argument to the driver constructor. * (GITHUB-1663) [Brooke White - AATTbrookewhite9] DNS * [GoDaddy] Fix list_zones() method so it doesn\'t throw if an item is missing expires attribute. (GITHUB-1681) [Dave Grenier - AATTlivegrenier] Container * [Kubernetes] Various improvements in the driver - implement list methods for nodes, services, deployments, node/pod metrics, add more fields to Pods and Containers, rename clusters to namespaces, add type annotations. * (GITHUB-1667) [Dimitris Galanis - AATTdimgal1] Other * Test code has been updated to utilize stdlib unittest.mock module instead of 3rd party PyPi mock package. * (GITHUG-1684) Reported by AATTpgajdos. * Fri May 13 2022 Markéta Machová - update to 3.5.1 * Support for Python 3.5 which has been EOL for more than a year now has been removed. * [EC2] Add support for new ap-east-1 region. * [OpenStack] OpenStack: Move floating IP functions to use network service instead of nova. * [OpenStack] Avoid raising exception if ip is not found. * [GCE] Allow credentials argument which is provided to the driver constructor. * [Local Storage] Objects returned by the list_container_objects() method are now returned sorted in the ascending order based on the object name. * Also run unit tests under Python 3.10 + Pyjion on CI/CD.- added upstream patch mock.patch and drop mock requirement- rebase all other patches * Thu Dec 09 2021 pgajdosAATTsuse.com- pytest-runner is not required for build * Mon Nov 15 2021 Andreas Stieger - update to 3.4.1: * fix a regresion preventing installation under Python 3.5 * revert requests minimum version required * Sun Nov 14 2021 Andreas Stieger - update to 3.4.0: * Improvements and more flexibility in the failed HTTP requests retrying code * Various improvements to the Equinix Metal compute driver * Improvements and updates to the Outscale, Vultr, CloudSigma and OpenStack compute drivers * Support for authenticating via API tokens to the CloudFlare DNS driver * Support for using external cache for OpenStack auth tokens- add upstream signing key and validate source signature * Mon Feb 01 2021 Pablo Suárez Hernández - Skip \"OvhTests::test_list_nodes_invalid_region\" compute test when building RPM package since this tests requires internet connection. * Fri Jan 29 2021 Pablo Suárez Hernández - Update to 3.3.1: * Compute + [EC2] Fix a regression introduced in v3.3.0 which would break EC2 driver for some regions because the driver would incorrectly try to use signature version 2 for all the regions whereas some newer regions require signature version 4 to be used. If you are unable to upgrade, you can use the following workaround, as long as you only use code which supports / works with authentication signature algorithm version 4: import libcloud.common.aws libcloud.common.aws.DEFAULT_SIGNATURE_VERSION = \"4\" [#] Instantiate affected driver here... Reported by AATTolegrtecno. (GITHUB-1545, GITHUB-1546) + [EC2] Allow user to override which signature algorithm version is used for authentication by passing signature_version keyword argument to the EC2 driver constructor. (GITHUB-1546) * Storage + [Google Cloud Storage] Fix a bug and make sure we also correctly handle scenario in get_object() method when the object size is returned in x-goog-stored-content-length and not content-length header. AATTRunOrVeith. (GITHUB-1544, GITHUB-1547) + [Google Cloud Storage] Update get_object() method and ensure object.size attribute is an integer and not a string. This way it’s consistent with list_objects() method. (GITHUB-1547) * Fri Jan 29 2021 Pablo Suárez Hernández - Update to 3.3.0: * Common + Fix a bug which would cause some prepared requests with empty bodies to be chunked which would cause some of the provider APIs such as OpenStack to return HTTP 400 errors. (GITHUB-1487, GITHUB-1488) [Michael Spagon - AATTmspagon] + Optimize various code imports (remove unnecessary imports, make some lazy, etc.), so now importing most of the modules is around ~20-40% faster (~70 vs ~140 ms) and in some cases such as EC2 driver even more. + Now majority of the import time is spent in importing requests library. (GITHUB-1519) [Tomaz Muraus] + libcloud.pricing.get_size_price() function has been updated so it only caches pricing data in memory for the requested drivers. + Advertise Python 3.9 support in setup.py. * Compute + [GCE] Fix ex_set_image_labels method using incorrect API path. (GITHUB-1485) [Poul Petersen - AATTpetersen-poul] + [OpenStack] Fix error setting ex_force_XXX_url without setting ex_force_base_url. (GITHUB-1492) [Miguel Caballer - AATTmicafer] + [EC2] Update supported EC2 regions and instance sizes and add support for eu-north-1 region. (GITHUB-1486) [Arturo Noha - AATTr2ronoha] + [Ovh] Add support for multiple regions to the driver. User can select a region (location) by passing location argument to the driver constructor (e.g. location=ca). (GITHUB-1494) [Dan Hunsaker - AATTdanhunsaker] + [GCE] Add support for creating nodes without a service account associated with them. Now when an empty list is passed for ex_service_accounts argument, VM will be created without service account attached. + [VSphere] Add new VMware VSphere driver which utilizes pyvmomi library and works under Python 3. + [OpenStack] Enable to get Quota Set detail. (GITHUB-1495) [Miguel Caballer - AATTmicafer] + [OpenStack] Add ex_get_size_extra_specs function to OpenStack driver. (GITHUB-1517) [Miguel Caballer - AATTmicafer] + [OpenStack] Enable to get Neutron Quota details in OpenStack driver. (GITHUB-1514) [Miguel Caballer - AATTmicafer] + [DigitalOcean] _node_node method now ensures image and size attributes are also set correctly and populated on the Node object. (GITHUB-1507, GITHUB-1508) [AATTsergerdn] + [Vultr] Make sure private_ips attribute on the Node object is correctly populated when listing nodes. Also add additional values to the node.extra dictionary. (GITHUB-1506) [AATTsergerdn] + [EC2] Optimize EC2 driver imports and move all the large constant files to separate modules in libcloud/compute/constants/ec2_ *.py files. + [Packet / Equinix Metal] Packet driver has been renamed to Equinix Metal. If your code uses Packet.net driver, you need to update it as per example in Upgrade Notes documentation section. (GITHUB-1511) [Dimitris Galanis - AATTdimgal1] + [OutScale] Add various extension methods to the driver. For information on available extenion methods, please refer to the driver documentation. (GITHUB-1499) [AATTtgn-outscale] + [Linode] Add support for Linode’s API v4. (GITHUB-1504) [Dimitris Galanis - AATTdimgal1] * Storage + Deprecated lockfile library which is used by the Local Storage driver has been replaced with fasteners library. [Tomaz Muraus - AATTKami] + [S3] Add support for us-gov-east-1 region. (GITHUB-1509, GITHUB-1510) [Andy Spohn - AATTspohnan] + [DigitalOcean Spaces] Add support for sfo2 regon. (GITHUB-1525) [Cristian Rasch - AATTcristianrasch] + [MinIO] Add new driver for MinIO object storage (https://min.io). (GITHUB-1528, GITHUB-1454) [Tomaz Muraus - AATTKami] + [S3] Update S3 and other drivers which are based on the S3 one (Google Storage, RGW, MinIO) to correctly throw ContainerAlreadyExistsError if container creation fails because container with this name already exists. + Add new libcloud.common.base.ALLOW_PATH_DOUBLE_SLASHES module level variable. * DNS + [Common] Fix a bug with the header value returned by the export_zone_to_bind_format method containing an invalid timestamp (value for the minute part of the timestamp was wrong and contained month number instead of the minutes value). (GITHUB-1500) [Tomaz Muraus - AATTKami] + [CloudFlare DNS] Add support for creating SSHFP records. (GITHUB-1512, GITHUB-1513) [Will Hughes - AATTinsertjokehere] + [DigitalOcean] Update driver and make sure request data is sent as part of HTTP request body on POST and PUT operations (previously it was sent as part of query params). (GITHUB-1505) [Andrew Starr-Bochicchio - AATTandrewsomething] + [AuroraDNS] Throw correct exception on 403 authorization failed API error. (GITHUB-1521, GITHUB-1522) [Freek Dijkstra - AATTmacfreek] + [Linode] Add support for Linode’s API v4. (GITHUB-1504) [Dimitris Galanis - AATTdimgal1] + [CloudFlare] Update driver so it correctly throws RecordAlreadyExists error on various error responses which represent this error. [Tomaz Muraus - AATTKami] * Tue Nov 03 2020 Pablo Suárez Hernández - Fix bcond macros on SPEC file to properly manage Python 2 and Python 3 builds. * Fri Oct 30 2020 Pablo Suárez Hernández - Skip conflictive \'ParamikoSSHClientTests.test_key_file_non_pem_format_error\' test since our SLE python-paramiko package already has OpenSSH support on version < 2.7.0 * Fri Oct 30 2020 Pablo Suárez Hernández - Add pyOpenSSL as build dependency to allow tests to pass on SLE15 family * Wed Oct 28 2020 Pablo Suárez Hernández - Do not build Python2 subpackage since 3.2.0 does not support Python2- Adjust skipped SSH unit tests when paramiko <= 2.7.0- Add: * skip-some-tests-for-older-paramiko-versions.patch * Wed Oct 21 2020 Steve Kowalik - Update to 3.2.0: * [OpenStack] Add ex_get_network() to the OpenStack driver to make it possible to retrieve a single network by using the ID. * [OpenStack] Fix pagination in the list_images() method and make sure method returns all the images, even if the result is spread across multiple pages. * [GCE] Add script for scraping GCE pricing data and improve price addition in _to_node_size method. (GITHUB-1468) [Eis D. Zaster - AATTEis-D-Z] * [AWS EC2] Update script for scraping AWS EC2 pricing and update EC2 pricing data. (GITHUB-1469) [Eis D. Zaster - AATTEis-D-Z] * [Deployment] Add new wait_period argument to the deploy_node method and default it to 5 seconds. * [Azure ARM] Add script for scraping Azure ARM instance pricing data. (GITHUB-1470) [Eis D. Zaster - AATTEis-D-Z] * [Deployment] Make FileDeployment class much faster and more efficient when working with large files or when running multiple FileDeployment steps on a single node. * [Deployment] Add __repr__() and __str__() methods to all the Deployment classes. [Tomaz Muraus - AATTKami] * [Deployment] New keep_alive and use_compression arguments have been added to the ParamikoSSHClient class constructor. * [Deployment] Update ParamikoSSHClient.put() method so it returns a correct path when commands are being executed on a Windows machine. * [Outscale] Add a new driver for the Outscale provider. Existing Outscale driver utilizes the EC2 compatible API and this one utilizes native Outscale API. (GITHUB-1476) [Tio Gobin - AATTtgn-outscale] * [KubeVirt] Add new methods for managing services which allows users to expose ports for the VMs (ex_list_services, ex_create_service, ex_delete_service). (GITHUB-1478) [Eis D. Zaster - AATTEis-D-Z] * [LXD] Add new methods for managing network and storage pool capabilities and include other improvements in some of the existing methods. (GITHUB-1477) [Eis D. Zaster - AATTEis-D-Z] * [DigitalOcean] Add location argument to the list_sizes() method. * Fix deploy_node() so an exception is not thrown if any of the output (stdout / stderr) produced by the deployment script contains a non-valid utf-8 character. * Add new timeout argument to ScriptDeployment and ScriptFileDeployment class constructor. * [GiG G8] Fix retry functionality when creating port forwards and add support for automatically refresing the JWT auth token inside the connection class if it\'s about to expire in 60 seconds or less. (GITHUB-1465) [Jo De Boeck - AATTgrimpy] * [Azure ARM] Update create_node so an exception is thrown if user passes ex_use_managed_disks=False, but doesn\'t provide a value for the ex_storage_account argument. (GITHUB-1448) [AATTantoinebourayne] * [AWS S3] Make sure driver works correctly for objects with ~ in the name. * [CloudFlare] Update driver to include the whole error chain the thrown exception message field. * [Gandi Live] Don\'t throw if extra[\'rrset_ttl\'] argument is not passed to the create_record method. (GITHUB-1463) [Tomaz Muraus] * Wed May 27 2020 Steve Kowalik - Update to v3.0.0: * Make sure auth_user_info variable on the OpenStack identify connection class is populated when using auth version 3.x_password and 3.x_oidc_access_token. * [OpenStack] Update OpenStack identity driver so a custom project can be selected using domain_name keyword argument containing a project id. * [GCE] Update create_node() method so it throws an exception if node location can\'t be inferred and location is not specified by the user ( either by passing datacenter constructor argument or by passing location argument to the method). * [GCE] Update ex_get_disktype method so it works if zone argument is not set. (GITHUB-1443) [Tomaz Muraus] * [GiG G8] Add new driver for GiG G8 provider (https://gig.tech/). (GITHUB-1437) [Jo De Boeck - AATTgrimpy] * [OpenStack] Fix auto assignment of volume device when using device name auto in the attach_volume method. (GITHUB-1444) [Joshua Hesketh - AATTjhesketh] * [Kamatera] Add new driver for Kamatera provider (https://www.kamatera.com). (GITHUB-1442) [Ori Hoch - AATTOriHoch] * Add new download_object_range and download_object_range_as_stream methods for downloading part of the object content (aka range downloads) to the base storage API. * [Google Storage] Update the driver so it supports service account HMAC credentials. * [Kubernetes] Add support for the client certificate and static token based authentication to the driver. (GITHUB-1421) [Tomaz Muraus] * Add support for Ed25519 private keys for deploy_node() functionality when using paramiko >= 2.2.0. (GITHUB-1445) [Tomaz Muraus - AATTKami] * Fix deploy_node() so it correctly propagates an exception is a private key which is used is password protected, but no password is specified. * Allow user to specify password for encrypted keys by passing ssh_key_password argument to the deploy_node() method. * Fix deploy_node() method so we don\'t retry on fatal SSHCommandTimeoutError exception (exception which is thrown when a command which is running on remote host times out). (GITHUB-1445) [Tomaz Muraus - AATTKami] * Add new stdout and stderr attribute to SSHCommandTimeoutError class. * [OpenStack] Fix auto assignment of volume device when using device name auto in the attach_volume method. (GITHUB-1444) [Joshua Hesketh - AATTjhesketh]- Refresh patches gce_image_projects.patch and ec2_create_node.patch. * Thu Mar 12 2020 Tomáš Chvátal - Fix build without python2 * Thu Mar 05 2020 Niels Abspoel - update to 2.8.1 for the changelog see: https://libcloud.readthedocs.io/en/stable/changelog.html#changes-in-apache-libcloud-v2-8-1 * Fri Feb 21 2020 Sean Marlow - Add gce_image_projects.patch to update the current list of SUSE image projects in GCE. * Thu Feb 20 2020 James Fehlig - Stop building for python2 * Thu Jan 16 2020 Marketa Calabkova - update to 2.8.0 * Distribution now includes py.typed file which signals mypy that this package contains type annotations * Fix get_driver() bug / regression not working if the provider argument was a string and not a Provider ENUM. * Fri Dec 13 2019 Thomas Bechtold - update to 2.7.0: - Test code with Python 3.8 and advertise that we also support Python 3.8. - [OpenStack] Fix OpenStack project scoped token authentication. The driver constructors now accept ``ex_tenant_domain_id`` argument which tells authentication service which domain id to use for the scoped authentication token. (GITHUB-1367) - Introduce type annotations for the base compute API methods. This means you can now leverage mypy to type check (with some limitations) your code which utilizes Libcloud compute API standard API methods. - [Azure ARM] Fix ``attach_volume`` method and allow maximum of 64 disks to be added when LUN is not specified. Previously there was a bug and only a maximum of 63 disks could be added. - New ``start_node`` and ``stop_node`` methods have been added to the base Libcloud compute API NodeDriver class. - [GCE] Add new ``ex_set_volume_labels`` method for managing volume labels to the driver. - [EC2] Add support for new ``inf1. *`` instance types. - [S3] Update S3 driver so a single driver class can be used for different regions. - [S3] Add missing ``eu-north-1`` region to the S3 driver. (GITHUB-1370) - [S3] Add missing regions (eu-west-3, ap-northeast-3, me-south-1) to the driver. - [S3] Update the driver to throw more user-friendly error message if user is using driver for a region X, but trying to upload / download object to / from a region Y. * Wed Sep 18 2019 Tomáš Chvátal - Update to 2.6.0: * Many various cloud fixes and tweaks for future python releases * See CHANGES.rst * Thu May 16 2019 ranandAATTsuse.com- Skip failing ElasticContainerDriverTestCase, with invalid URL * Mon Feb 25 2019 John Vandenberg - Activate test suite, deselecting one set of tests which ssh to localhost- Remove image_projects.patch merged upstream- Add Suggests for optional dependencies paramiko, lockfile, libvirt-python and pysphere- Add example code to %doc- Update to v2.4.0 * Refuse installation with Python 2.6 and Python 3.3 * Support Python 3.7 * Cleanup various Python files * Allow running tests with http_proxy set * Common + Document openstack_connection_kwargs method + Handle missing user email in OpenStackIdentityUser * Compute + [ARM] Support OS disk size definition on node creation + [Digital Ocean] Support floating IPs + [Digital Ocean] Support attach/detach for floating IPs + [Digital Ocean] Add ex_get_node_details + [Digital Ocean] Add tags extra attribute to create_node + [Dimension Data] Fix IndexError in list_images + [EC2] Add AWS eu-west-3 (Paris) region + [EC2] Add description to ex_authorize_security_group_ingress + [EC2] Added script to automatically get EC2 instance sizes + [EC2] Update instance sizes + [EC2] Accept tags when create a snapshot + [GCE] Expand Firewall options coverage + [GCE] Expand network and subnetwork options coverage + [GCE] Extend ex_create_address to allow internal ip creation + [GCE] Allow shared VPC in managed instance group creation + [GCE] Support disk_size parameter for boot disk when creating instance + [GCE] Update public image projects list + [GCE] Fix _find_zone_or_region for >500 instances + [GCE] Allow routing_mode=None in ex_create_network + [OpenStack] Implement Glance Image API v2 + [OpenStack] Fix spelling in ex_files description + [OpenStack v2] Allow listing image members + [OpenStack v2] Allow creating and accepting image members + [OpenStack v2] Fix image members methods + [OpenStack] Fix API doc for delete_floating_ip + [OpenStack] Implement port attaching/detaching + [OpenStack] Add methods for getting and creating ports + [OpenStack] Add get_user method + [OpenStack] Add ex_list_subnets to OpenStack_2_NodeDriver + [OpenStack] The OpenStack_2_NodeDriver uses two connections + [OpenStack] The OpenStack_2_NodeDriver /v2.0/networks instead of /os-networks + [Scaleway] New Scaleway driver + [Scaleway] Update Scaleway default API host * DNS + [Google Cloud DNS] Document driver instantiation * Storage + Update docstring for storage provider class + [Azure Blob Storage] Allow filtering lists by prefix + [Azure Blob Storage] Update driver documentation + [Azure Blob Storage] Fix upload/download streams + [Azure Blob Storage] Fix PageBlob headers + [S3] Guess s3 upload content type + [S3] Add Amazon S3 (cn-northwest-1) Storage Driver * Other + Fixed spelling in 2.0 changes documentation * Fri Sep 28 2018 Sean Marlow - Add ec2_create_node.patch to allow for instance type strings in create_node method. * Tue Aug 14 2018 sean.marlowAATTsuse.com- Cleanup RPM warnings.- Add image_projects.patch with updated list of latest image projects. * Wed Jun 06 2018 jengelhAATTinai.de- Use noun phrase in summary. * Thu May 10 2018 toddrme2178AATTgmail.com- Make sure ssl is available * Wed May 02 2018 tchvatalAATTsuse.com- Version update to 2.3.0: * For the changes see CHANGES.rst as it is too long * many various bugfixes- Drop no longer applying patch fix-backports-usage.patch * Sat Sep 30 2017 mcAATTsuse.com- fix build on SLE12 by using python-backports- reduce warnings * Tue May 16 2017 jmatejekAATTsuse.com- convert to singlespec- update requires- update source url * Sun Apr 30 2017 aboe76AATTgmail.com- Updated to apache libcloud 2.0.0 for the changelog see: https://github.com/apache/libcloud/blob/trunk/CHANGES.rst#changes-in-apache-libcloud-200 * Tue Oct 18 2016 aboe76AATTgmail.com- Updated to apache libcloud 1.3.0 for the changelog see: https://github.com/apache/libcloud/blob/trunk/CHANGES.rst#changes-in-apache-libcloud-130 * Wed Jan 20 2016 aboe76AATTgmail.com- Updated to apache libcloud 0.20.1- General: - Introduction of container based drivers for Docker, Rkt and Container-as-a-service providers (LIBCLOUD-781, GITHUB-666) [Anthony Shaw] - Introduce a new libcloud.backup API for Backup as a Service projects and products. (GITHUB-621) [Anthony Shaw] - Also retry failed HTTP(s) requests upon transient “read operation timed out” SSL error. (GITHUB-556, LIBCLOUD-728) [Scott Kruger] - Throw a more user-friendly exception if a client fails to establish SSL / TLS connection with a server because of an unsupported SSL / TLS version. (GITHUB-682) [Tomaz Muraus]- Compute: - Add ap-northeast-2 region to EC2 driver (South Korea) (GITHUB-681) [Anthony Shaw] - Added Added volume type to EC2 volume extra to EC2 driver. (GITHUB-680) [Gennadiy Stas] - Add LazyObject class that provides lazy-loading, see GCELicense for usage (LIBCLOUD-786, GITHUB-665) [Scott Crunkleton] - Added t2.nano instance type to EC2 Compute driver (GITHUB-663) [Anthony Shaw] - Support for passing the image ID as a string instead of an instance of image when creating nodes in Dimension Data driver. (GITHUB-664) [Anthony Shaw]- DNS: - Add support for ‘health checks’ in Aurora DNS driver (GITHUB-672) [Wido den Hollander] - Make sure ttl attribute is correctly parsed and added to the Record extra dictionary. (GITHUB-675) [Wido den Hollander] - Improve unit tests of Aurora DNS driver (GITHUB-679) [Wido den Hollander] * Thu Dec 17 2015 aboe76AATTgmail.com- Updated to apache libcloud 0.20.0 - new requirement: python-backports.ssl_match_hostname for the changelog see: https://libcloud.readthedocs.org/en/latest/changelog.html#changes-with-apache-libcloud-0-20-0 * Sun Nov 01 2015 aboe76AATTgmail.com- Updated to apache libcloud 0.19.0 for the changelog see: https://github.com/apache/libcloud/blob/trunk/CHANGES.rst#changes-with-apache-libcloud-0190 * Thu Aug 13 2015 aboe76AATTgmail.com- Updated to apache libcloud 0.18.0 for the changelog see: https://github.com/apache/libcloud/blob/v0.18.0/CHANGES.rst#changes-with-apache-libcloud-0180 * Wed Feb 18 2015 aboe76AATTgmail.com- Updated to Apache Libcloud 0.17.0- skipped 0.16.0 but the changes are listed here also.- General: - Use match_hostname function from backports.ssl_match_hostname package to verify the SSL certificate hostname instead of relying on our own logic. (GITHUB-374) [Alex Gaynor] - Add new OpenStackIdentity_3_0_Connection class for working with OpenStack Identity (Keystone) service API v3. [Tomaz Muraus] - Add support for prettifying JSON or XML response body which is printed to a file like object when using LIBCLOUD_DEBUG environment variable. This option can be enabled by setting LIBCLOUD_DEBUG_PRETTY_PRINT_RESPONSE environment variable. [Tomaz Muraus] - Add support for using an HTTP proxy for outgoing HTTP and HTTPS requests. [Tomaz Muraus, Philip Kershaw]- Compute: - GCE driver updated to include ex_stop_node() and ex_start_node() methods. (GITHUB-442) [Eric Johnson] - GCE driver now raises ResourceNotFoundError when the specified image is not found in any image project. Previously, this would return None but now raises the not-found exception instead. This fixes a bug where returning None caused ex_delete_image to raise an AttributeError. (GITHUB-441) [Eric Johnson] - GCE driver update to support JSON format Service Account files and a PY3 fix from Siim Põder for LIBCLOUD-627. (LIBCLOUD-627, LIBCLOUD-657, GITHUB-438) [Eric Johnson] - GCE driver fixed for missing param on ex_add_access_config. (GITHUB-435) [Peter Mooshammer] - GCE driver support for HTTP load-balancer resources. (LIBCLOUD-605, GITHUB-429) [Lee Verberne] - GCE driver updated to make better use of GCEDiskTypes. (GITHUB-428) [Eric Johnson] - GCE driver list_images() now returns all non-deprecated images by default. (LIBCLOUD-602, GITHUB-423) [Eric Johnson] - Improve GCE API coverage for create_node(). (GITHUB-419) [Eric Johnson] - GCE Licenses added to the GCE driver. (GITHUB-420) [Eric Johnson] - GCE Projects support common instance metadata and usage export buckets. (GITHUB-409) [Eric Johnson] - Improvements to TargetPool resource in GCE driver. (GITHUB-414) [Eric Johnson] - Adding TargetInstances resource to GCE driver. (GITHUB-393) [Eric Johnson] - Adding DiskTypes resource to GCE driver. (GITHUB-391) [Eric Johnson] - Fix boot disk auto_delete in GCE driver. (GITHUB-412) [Igor Bogomazov] - Add Routes to GCE driver. (GITHUB-410) [Eric Johnson] - Add missing ubuntu-os-cloud images to the GCE driver. (LIBCLOUD-632, GITHUB-385) [Borja Martin] - Add new us-east-2 and us-east-3 region to the Joyent driver. (GITHUB-386) [ZuluPro] - Add missing t2. instance types to the us-west-1 region in the EC2 driver. (GITHUB-388) [Matt Lehman] - Add option to expunge VM on destroy in CloudStack driver. (GITHUB-382) [Roeland Kuipers] - Add extra attribute in list_images for CloudStack driver. (GITHUB-389) [Loic Lambiel] - Add ex_security_group_ids argument to the create_node method in the EC2 driver. This way users can launch VPC nodes with security groups. (GITHUB-373) [Itxaka Serrano] - Add description argument to GCE Network. (GITHUB-397) [Eric Johnson] - GCE: Improve MachineType (size) coverage of GCE API. (GITHUB-396) [Eric Johnson] - GCE: Improved Images coverage. (GITHUB-395) [Eric Johnson] - GCE: Support for global IP addresses. (GITHUB-390, GITHUB-394) [Eric Johnson] - GCE: Add missing snapshot attributes. (GITHUB-401) [Eric Johnson] - AWS: Set proper disk size in c3.X instance types. (GITHUB-405) [Itxaka Serrano] - Fix a bug with handling of the ex_keyname argument in the Softlayer driver. (GITHUB-416, LIBCLOUD-647) [Dustin Oberloh] - Update CloudSigma region list (remove Las Vegas, NV region and add new San Jose, CA and Miami, FL region). (GITHUB-417) [Viktor Petersson] - Add ex_get_node method to the Joyent driver. (GITHUB-421) [ZuluPro] - Add support for placement group management to the EC2 driver. (GITHUB-418) [Mikhail Ovsyannikov] - Add new tok02 region to the Softlayer driver. (GITHUB-436, LIBCLOUD-656) [Dustin Oberloh] - Add new Honolulu, HI endpoint to the CloudSigma driver. (GITHUB-439) [Stephen D. Spencer] - Fix a bug with config_drive attribute in the OpenStack driver. New versions of OpenStack now return a boolean and not a string. (GITHUB-433) [quilombo] - Add support for Abiquo API v3.x, remove support for now obsolete API v2.x. (GITHUB-433, LIBCLOUD-652) [David Freedman] - Allow rootdisksize parameter in create_node CloudStack driver (GITHUB-440, LIBCLOUD-658) [Loic Lambiel] - Fix an issue with LIBCLOUD_DEBUG not working correctly with the Linode driver. [Tomaz Muraus, Juan Carlos Moreno] (LIBCLOUD-598, GITHUB-342) - Add new driver for VMware vSphere (http://www.vmware.com/products/vsphere/) based clouds. [Tomaz Muraus] - Add two new default node states - NodeState.SUSPENDED and NodeState.ERROR. [Tomaz Muraus] - Fix to join networks properly in deploy_node in the CloudStack driver. (LIBCLOUD-593, GITUHB-336) [Atsushi Sasaki] - Create CloudStackFirewallRule class and corresponding methods. (LIBCLOUD-594, GITHUB-337) [Atsushi Sasaki] - Add support for SSD disks to Google Compute driver. (GITHUB-339) [Eric Johnson] - Add utility get_regions and get_service_names methods to the OpenStackServiceCatalog class. [Andrew Mann, Tomaz Muraus] - Fix a bug in ex_get_console_output in the EC2 driver which would cause an exception to be thrown if there was no console output for a particular node. Reported by Chris DeRamus. [Tomaz Muraus] - Add ip_address parameter in CloudStack driver create_node method. (GITHUB-346) [Roeland Kuipers] - Fix ParamikoSSHClient.run and deploy_node method to work correctly under Python 3. (GITHUB-347) [Eddy Reyes] - Update OpenStack driver to map more node states to states recognized by Libcloud. [Chris DeRamus] - Fix a bug with ex_metadata argument handling in the Google Compute Engine driver create_node method. (LIBCLOUD-544, GITHUB-349, GITHUB-353) [Raphael Theberge] - Add SSH key pair management methods to the Softlayer driver. (GITHUB-321, GITHUB-354) [Itxaka Serrano] - Correctly categorize node IP addresses into public and private when dealing with OpenStack floating IPs. [Andrew Mann] - Add new t2 instance types to the EC2 driver. [Tomaz Muraus] - Add support for Amazon GovCloud to the EC2 driver (us-gov-west-1 region). [Chris DeRamus] - Allow user to pass \"gp2\" for \"ex_volume_type\" argument to the create_volume method in the EC2 driver. Reported by Xavier Barbosa. [Tomaz Muraus, Xavier Barbosa] - Add new driver for ProfitBricks provider. (LIBCLOUD-589, GITHUB-352) [Matt Baldwin] - Various improvements and bugs fixes in the GCE driver. For a list, see https://github.com/apache/libcloud/pull/360/commits (GITHUB-360) [Evgeny Egorochkin] - Allow user to specify virtualization type when registering an EC2 image by passing virtualization_type argument to the ex_register_image method. (GITHUB-361) [Andy Grimm] - Add ex_create_image method to the GCE driver. (GITHUB-358, LIBCLOUD-611) [Katriel Traum] - Add some methods to CloudStack driver: create_volume_snapshot, list_snapshots, destroy_volume_snapshot create_snapshot_template, ex_list_os_types) (GITHUB-363, LIBCLOUD-616) [Oleg Suharev] - Added VPC support and Egress Firewall rule support fo CloudStack (GITHUB-363) [Jeroen de Korte] - Add additional attributes to the extra dictionary of OpenStack StorageVolume object. (GITHUB-366) [Gertjan Oude Lohuis] - Fix create_volume method in the OpenStack driver to return a created volume object (instance of StorageVolume) on success, instead of a boolean indicating operation success. (GITHUB-365) [Gertjan Oude Lohuis] - Add optional project parameters for ex_list_networks() to CloudStack driver (GITHUB-367, LIBCLOUD-615) [Rene Moser] - CLOUDSTACK: option to start VM in a STOPPED state (GITHUB-368) [Roeland Kuipers] - Support \"config_drive\" in the OpenStack driver. Allow users to pass ex_config_drive argument to the create_node and ex_rebuild_node method. (GITHUB-370) [Nirmal Ranganathan] - Add support for service scopes to the create_node method in the GCE driver. (LIBCLOUD-578, GITHUB-373) [Eric Johnson] - Update GCE driver to allow for authentication with internal metadata service. (LIBCLOUD-625, LIBCLOUD-276, GITHUB-276) [Eric Johnson] - Fix a bug in Elasticstack node creation method where it would raise exceptions because of missing data in a response, and also fix pulling the IP from the proper data item. (GITHUB-325) [Michael Bennett] - Fix a bug which prevented user to connect and instantiate multiple EC2 driver instances for different regions at the same time. (GITHUB-325) [Michael Bennett] - Add methods in CloudStack driver to manage mutiple nics per vm. (GITHUB-369) [Roeland Kuipers] - Implements VPC network ACLs for CloudStack driver. (GITHUB-371) [Jeroen de Korte]- Storage: - Allow user to pass headers argument to the upload_object and upload_object_via_stream method. This way user can specify CORS headers with the drivers which support that. (GITHUB-403, GITHUB-404) [Peter Schmidt] - Fix upload_object_via_stream so it works correctly under Python 3.x if user manually passes an iterator to the method. Also improve how reading a file in chunks works with drivers which support chunked encoding - always try to fill a chunk with CHUNK_SIZE bytes instead of directly streaming the chunk which iterator returns. Previously, if iterator returned 1 byte in one iteration, we would directly send this as a single chunk to the API. (GITHUB-408, LIBCLOUD-639) [Peter Schmidt] - Fix a bug with CDN requests in the CloudFiles driver. [Tomaz Muraus] - Fix a bug with not being able to specify meta_data / tags when uploading an object using Google Storage driver. (LIBCLOUD-612, GITHUB-356) [Stefan Friesel]- Loadbalancer: - Updates to CloudStack driver. (GITHUB-434) [Jeroen de Korte] - Allow user to specify session affinity algorithm in the GCE driver by passing ex_session_affinity argument to the create_balancer method. (LIBCLOUD-595, GITHUB-341) [Lee Verberne, Eric Johnson]- DNS: - New driver for Softlayer DNS service. (GITHUB-413, LIBCLOUD-640) [Vanč Levstik] - Fix a bug with ex_create_multi_value_record method in the Route53 driver only returning a single record. (GITHUB-431, LIBCLOUD-650) [Itxaka Serrano] - Various fixes in the Google DNS driver. (GITHUB-378) [Franck Cuny]
|
|
|