فهرست منبع

Release 4.3.1

Nuwan Goonasekera 1 هفته پیش
والد
کامیت
e0e5fdca13
2فایلهای تغییر یافته به همراه16 افزوده شده و 3 حذف شده
  1. 15 2
      CHANGELOG.rst
  2. 1 1
      cloudbridge/__init__.py

+ 15 - 2
CHANGELOG.rst

@@ -1,5 +1,12 @@
-4.3.1 - unreleased
-------------------
+4.3.1 - August 2, 2026 (sha 8fabc1e2d3916e2c100bdb18075f2caa3bd38b38)
+---------------------------------------------------------------------
+
+## Release highlights
+This point release makes downloads safe when the destination path is written
+concurrently, and removes two pathological API-call patterns in the AWS
+provider that dominated integration test runtimes - listing VM types and
+waiting on Route53 record changes. Fully backward compatible with 4.3.0 - no
+code changes are required.
 
 ## Fixes
 * **AWS VM type listings no longer refetch the whole catalogue for every
@@ -41,6 +48,12 @@
   and images those tests had created. Requires the IAM role's
   ``MaxSessionDuration`` to permit the longer session.
 
+## Pull Requests
+* Never assemble a download at its destination path by @nuwang in https://github.com/CloudVE/cloudbridge/pull/341
+* Cut AWS integration suite runtime and stop credentials expiring mid-run by @nuwang in https://github.com/CloudVE/cloudbridge/pull/342
+
+**Full Changelog**: https://github.com/CloudVE/cloudbridge/compare/v4.3.0...v4.3.1
+
 4.3.0 - July 11, 2026 (sha 863d0c8297e74e62a72b98643952f9a923807b7b)
 --------------------------------------------------------------------
 

+ 1 - 1
cloudbridge/__init__.py

@@ -3,7 +3,7 @@ import logging
 from typing import Any
 
 # Current version of the library
-__version__ = '4.3.0'
+__version__ = '4.3.1'
 
 
 def get_version() -> str: