Revisions of python-apache-libcloud

buildservice-autocommit accepted request 1114461 from Ondřej Súkup's avatar Ondřej Súkup (mimi_vx) (revision 134)
baserev update by copy to link target
Ondřej Súkup's avatar Ondřej Súkup (mimi_vx) committed (revision 133)
Ondřej Súkup's avatar Ondřej Súkup (mimi_vx) accepted request 1113881 from Eric Schirra's avatar Eric Schirra (ecsos) (revision 132)
- Update to 3.8.0
buildservice-autocommit accepted request 1096551 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 131)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 1096542 from Eric Schirra's avatar Eric Schirra (ecsos) (revision 130)
- Add %{?sle15_python_module_pythons}
buildservice-autocommit accepted request 1085867 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 129)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 1085679 from Daniel Garcia's avatar Daniel Garcia (dgarcia) (revision 128)
- Disable broken tests because python-requests-mock and urllib3
  compatibility, gh#jamielennox/requests-mock#228
buildservice-autocommit accepted request 1061730 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 127)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 126)
- 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.
buildservice-autocommit accepted request 1032174 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 125)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 1031646 from Yogalakshmi Arunachalam's avatar Yogalakshmi Arunachalam (yarunachalam) (revision 124)
- Update to 3.6.1 
  * [OpenStack] Fix OpenStack Identitiy bug when auth url contains a path.
     (GITHUB-1717, GITHUB-1718) [Dimitris Galanis - @dimgal1]
  * 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 - @Eis-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 - @juanmarcosdev.
    (GITHUB-1700, GITHUB-1701) [Tomaz Muraus - @Kami]
  * [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 - @palashgandhi]
  * [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 - @Eis-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 - @jwk404]
  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) [@KatiRG]
  * [Azure Blobs] Fix list_containers()` method and make sure Container etag extra attribute doesn't contain unncessary double quotes
buildservice-autocommit accepted request 1003312 from Markéta Machová's avatar Markéta Machová (mcalabkova) (revision 123)
baserev update by copy to link target
Markéta Machová's avatar Markéta Machová (mcalabkova) accepted request 1001543 from Yogalakshmi Arunachalam's avatar Yogalakshmi Arunachalam (yarunachalam) (revision 118)
- Removed patch skip-some-tests-for-older-paramiko-versions.patch, mock.patch
  Both the patches are already applied

- 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 - @micafer]
  * [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 - @micafer]
  * [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 - @micafer]
  * [EC2] Add support for new af-south-1 region. (GITHUB-1688) [Balazs Baranyi - @balazsbaranyi]
  * [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
buildservice-autocommit accepted request 977799 from Pablo Suárez Hernández's avatar Pablo Suárez Hernández (PSuarezHernandez) (revision 117)
baserev update by copy to link target
Pablo Suárez Hernández's avatar Pablo Suárez Hernández (PSuarezHernandez) accepted request 977732 from Markéta Machová's avatar Markéta Machová (mcalabkova) (revision 116)
- 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
Enno Gotthold's avatar Enno Gotthold (SchoolGuy) accepted request 937758 from Petr Gajdos's avatar Petr Gajdos (pgajdos) (revision 115)
- pytest-runner is not required for build
Displaying revisions 1 - 20 of 134
openSUSE Build Service is sponsored by