CHANGELOG.rst 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. 3.1.0 - August 19, 2022 (sha 28067e22377a60423e7fcf4f995ce224307b8b09)
  2. ---------------------------------------------------------------------
  3. * Added app credentials support to openstack.
  4. * Added VM instance create time property to all providers (thanks to @rodrigonull)
  5. * Added Azure stop VM instance method (thanks to @rodrigonull)
  6. * Cloud provider sdks updated to latest versions
  7. * Other misc fixes.
  8. 3.0.0 - December 3, 2021 (sha 327e330bed78b8b70c9ff9d256513d71bc27545f)
  9. ---------------------------------------------------------------------
  10. * This is a major release due to packaging changes, although there are no backward incompatible interface changes.
  11. * The cloudbridge package no longer installs any providers by default, and you must use `pip install cloudbridge[full]`
  12. instead of `pip install cloudbridge` to obtain previous behaviour. This is to allow greater control over what
  13. providers are installed. To install only specific providers, use `pip install cloudbridge[aws,gcp]` etc. #292
  14. (thanks to @RyanSiu1995)
  15. * Allow users to create signed urls with write permissions #294 (thanks to @FabioRosado)
  16. 2.2.0 - November 5, 2021 (sha f3fb8e18781cd3ede4509ef75a69e7c2a420a167)
  17. ---------------------------------------------------------------------
  18. * This is a maintenance release with no backward incompatible changes.
  19. * Azure dependencies updated to latest version and associated fixes #274, #277, #278, #279, #281, #282
  20. (thanks to @FabioRosado)
  21. * AWS, GCP and OpenStack dependencies updated to latest versions and associated fixes.
  22. * AWS resources use TagSpecification support, removing extra requests for initial tagging.
  23. * Fixed wrong logging object in cloud provider #272 (thanks to @MosheFriedland)
  24. * Switched to github actions from travis
  25. * Patch discovery.build calls in GCP provider to use google's improved httplib2 #263 (thanks to @selshowk)
  26. * Added feature to start and stop aws instance #271 (thanks to @abhi005)
  27. * Miscellaneous doc and maintenance fixes.
  28. 2.1.0 - December 1, 2020 (sha a5c3af8ebc5be3ed44db34ebba097848f17305fb)
  29. ---------------------------------------------------------------------
  30. * This release introduces the DNS service, which is a top level service for managing DNS zones and records.
  31. * Support for using the newly added AWS instance type offerings API. This removes the dependency on a static machine
  32. type list, and returns up-to-date information on instance type availability.
  33. * The default package no longer bundles Azure, as the Azure python libraries are very large and affects docker
  34. container size when using cloudbridge. To install with Azure, use `pip install cloudbridge[full]` or
  35. `pip install cloudbridge[azure]`.
  36. * A convenience method for cloning providers in different zones has been added, which helps with multi-zone operations.
  37. * Support for specifying s3 signature version for the AWS provider.
  38. * Miscellaneous bug fixes and error handling improvements.
  39. * Support for python<3 dropped.
  40. * No major backward incompatible changes (apart from Azure not being bundled by default)
  41. 2.0.0 - March 13, 2019 (sha 10e28a0d07251af4a424fcbf11435fa4d52e5277)
  42. ---------------------------------------------------------------------
  43. * This is a major release which contains many improvements and some breaking
  44. changes to the interface, but the changes are fairly straightforward.
  45. * Support for Google Cloud (thanks to @mbookman, @chiniforooshan, @baizhang)
  46. * Support for middleware, event listening and interception, allowing
  47. CloudBridge to be extended without needing to modify library code (This is
  48. also potentially useful for handling corner cases for specific clouds).
  49. * The mock provider is now available by default as a standard cloud provider,
  50. which is useful for testing applications that use CloudBridge.
  51. * Providers now operate in a single zone, and therefore, all methods that
  52. previously required the zone as a parameter no longer do. Specifically,
  53. ``instance.create()``, ``volume.create()``, ``subnet.create``,
  54. ``subnet.get_or_create_default()`` are affected in services,
  55. and ``snap.create_volume`` is affected in resources. The provider's default
  56. zone must now be specified through the provider config.
  57. * All exceptions that are generated by CloudBridge will now extend from
  58. ``CloudBridgeBaseException``
  59. * The cloud package is deprecated and everything under it has been moved
  60. one level up. For example, instead of
  61. ``from cloudbridge.cloud.factory import CloudProviderFactory`` use
  62. ``from cloudbridge.factory import CloudProviderFactory``.
  63. * Services are much more uniform now, and sub-services have been introduced
  64. for greater uniformity. For example, ``net.create_subnet()`` is now
  65. ``net.subnets.create()``
  66. * ``gateways.get_or_create_inet_gateway()`` is now simply
  67. ``gateways.get_or_create()``
  68. * AWS instance types are now served through Amazon CloudFront for better
  69. performance.
  70. * Miscellaneous bug fixes and improvements.
  71. 1.0.2 - September 25, 2018 (sha 621aeed1a8d7c5ad270649f8ee960e9682e57dae)
  72. -------------------------------------------------------------------------
  73. * Added AWS instance types caching for better performance
  74. * Added ``router.subnets`` property
  75. * Ensure the default network for CloudBridge on AWS has subnets
  76. 1.0.1 - September 7, 2018. (sha 3130492008c5e0e115b8dfec880d32a4ac90b761)
  77. -------------------------------------------------------------------------
  78. * Fixed minor bug when retrieving buckets with only limited access.
  79. * Relaxed some library version dependencies (e.g. six).
  80. 1.0.0 - September 6, 2018. (sha 11bccd822f21a598fc753995440cf1a409984889)
  81. -------------------------------------------------------------------------
  82. * Added Microsoft Azure as a provider.
  83. * Restructured the interface to make it more comprehensible and uniform across
  84. all supported providers. See `issue #69 <https://github.com/CloudVE/cloudbridge/issues/69>`_
  85. for more details as well as the library layout image for an easy visual
  86. reference: https://github.com/CloudVE/cloudbridge#quick-reference.
  87. * Migrated AWS implementation to use the boto3 library (thanks @01000101)
  88. * Cleaned up use of ``name`` property for resources. Resources now have ``id``,
  89. ``name``, and ``label`` properties to represent respectively: a unique
  90. identifier supplied by the provider; a descriptive, unchangeable name; and a
  91. user-supplied label that can be modified during the existence of a resource.
  92. * Added enforcement of name and label value: names must be at least 3 characters
  93. in length at minimum, and 64 characters at maximum, consisting of only lower
  94. case letters and dashes. Should not start or end with a dash.
  95. * Refactored tests and extracted standard interface tests where all resources
  96. are being tested using the same code structure. Also, tests will run only
  97. for providers that implement a given service.
  98. * Moved the repository from github.com/gvlproject to github.com/cloudve org.
  99. * When deleting an OpenStack network, clear any ports.
  100. * Added support for launching OpenStack instances into a specific subnet
  101. * Update image list interface to allow filtering by owner.
  102. * When listing images on AWS, filter only the ones by current account owner.
  103. * Retrieve AWS instance types from a public service to include latest values.
  104. * Instance state uses ``DELETED`` state instead of ``TERMINATED``.
  105. * Return VM type RAM in GB.
  106. * Add implementation for ``generate_url`` on OpenStack.
  107. * General documentation updates.
  108. 0.3.3 - August 7, 2017. (sha 348e1e88935f61f53a83ed8d6a0e012a46621e25)
  109. ----------------------------------------------------------------------
  110. * Remove explicit versioning of requests and Babel.
  111. 0.3.2 - June 10, 2017. (sha f07f3cbd758a0872b847b5537d9073c90f87c24d)
  112. ---------------------------------------------------------------------
  113. * Patch release to support files>5GB with OpenStack (thanks @MartinPaulo).
  114. * Misc bug fixes.
  115. 0.3.1 - April 18, 2017. (sha f36a462e886d8444cb2818f6573677ecf0565315)
  116. ----------------------------------------------------------------------
  117. * Patch for binary file handling in OpenStack.
  118. 0.3.0 - April 11, 2017. (sha 13539ccda9e4809082796574d18b1b9bb3f2c624)
  119. ----------------------------------------------------------------------
  120. * Reworked test framework to rely on tox's test generation features. This
  121. allows for individual test cases to be run on a per provider basis.
  122. * Added more OpenStack swift config options (OS_AUTH_TOKEN and OS_STORAGE_URL)
  123. * Added supports for accessing EC2 containers with restricted permissions.
  124. * Removed exists() method from object store interface. Use get()==None check
  125. instead.
  126. * New method (img.min_disk) for getting size of machine image.
  127. * Test improvements (flake8 during build, more tests).
  128. * Misc bug fixes and improvements.
  129. * Changed library to beta state
  130. * General documentation updates (testing, release process)
  131. 0.2.0 - March 23, 2017. (sha a442d96b829ea2c721728520b01981fa61774625)
  132. ----------------------------------------------------------------------
  133. * Reworked the instance launch method to require subnet vs. network. This
  134. removed the option of adding network interface to a launch config object.
  135. * Added object store methods: upload from file path, list objects with a
  136. prefix, check if an object exists, (AWS only) get an accessible URL for an
  137. object (thanks @VJalili).
  138. * Modified `get_ec2_credentials()` method to `get_or_create_ec2_credentials()`
  139. * Added an option to read provider config values from a file
  140. (`~/.cloudbridge` or `/etc/cloudbridge`).
  141. * Replaced py35 with py36 for running tests.
  142. * Added logging configuration for the library.
  143. * General documentation updates.
  144. 0.1.1 - Aug 10, 2016. (sha 0122fb1173c88ae64e40140ffd35ff3797e9e4ad)
  145. --------------------------------------------------------------------
  146. * For AWS, always launch instances into private networking (i.e., VPC).
  147. * Support for using OpenStack Keystone v3.
  148. * Add functionality to manipulate routers and routes.
  149. * Add FloatingIP resource type and integrate with Network service.
  150. * Numerous documentation updates.
  151. * For an OpenStack provider, add method to get the ec2 credentials for a user.
  152. 0.1.0 - Jan 30, 2016.
  153. ---------------------
  154. * Initial release of CloudBridge.
  155. * Support for Bucket, Instance, Instance type, Key pair, Machine image.
  156. Region, Security group, Snapshot, Volume, Network and Subnet services.
  157. * Support for paging results, block device mapping and launching into VPCs.
  158. * Support for AWS and OpenStack clouds.
  159. * Basic usage docs and complete API docs.
  160. * 95% test coverage.
  161. * Support for AWS mock test provider (via
  162. `moto <https://github.com/spulec/moto>`_).