CHANGELOG.rst 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. 1.0.1 - September 7, 2018. (sha 3130492008c5e0e115b8dfec880d32a4ac90b761)
  2. -------
  3. * Fixed minor bug when retrieving buckets with only limited access.
  4. * Relaxed some library version dependencies (e.g. six).
  5. 1.0.0 - September 6, 2018. (sha 11bccd822f21a598fc753995440cf1a409984889)
  6. -------
  7. * Added Microsoft Azure as a provider.
  8. * Restructured the interface to make it more comprehensible and uniform across
  9. all supported providers. See `issue #69 <https://github.com/CloudVE/cloudbridge/issues/69>`_
  10. for more details as well as the library layout image for an easy visual
  11. reference: https://github.com/CloudVE/cloudbridge#quick-reference.
  12. * Migrated AWS implementation to use the boto3 library (thanks @01000101)
  13. * Cleaned up use of ``name`` property for resources. Resources now have ``id``,
  14. ``name``, and ``label`` properties to represent respectively: a unique
  15. identifier supplied by the provider; a descriptive, unchangeable name; and a
  16. user-supplied label that can be modified during the existence of a resource.
  17. * Added enforcement of name and label value: names must be at least 3 characters
  18. in length at minimum, and 64 characters at maximum, consisting of only lower
  19. case letters and dashes. Should not start or end with a dash.
  20. * Refactored tests and extracted standard interface tests where all resources
  21. are being tested using the same code structure. Also, tests will run only
  22. for providers that implement a given service.
  23. * Moved the repository from github.com/gvlproject to github.com/cloudve org.
  24. * When deleting an OpenStack network, clear any ports.
  25. * Added support for launching OpenStack instances into a specific subnet
  26. * Update image list interface to allow filtering by owner.
  27. * When listing images on AWS, filter only the ones by current account owner.
  28. * Retrieve AWS instance types from a public service to include latest values.
  29. * Instance state uses ``DELETED`` state instead of ``TERMINATED``.
  30. * Return VM type RAM in GB.
  31. * Add implementation for ``generate_url`` on OpenStack.
  32. * General documentation updates.
  33. 0.3.3 - August 7, 2017. (sha 348e1e88935f61f53a83ed8d6a0e012a46621e25)
  34. -------
  35. * Remove explicit versioning of requests and Babel.
  36. 0.3.2 - June 10, 2017. (sha f07f3cbd758a0872b847b5537d9073c90f87c24d)
  37. -------
  38. * Patch release to support files>5GB with OpenStack (thanks @MartinPaulo).
  39. * Misc bug fixes.
  40. 0.3.1 - April 18, 2017. (sha f36a462e886d8444cb2818f6573677ecf0565315)
  41. -------
  42. * Patch for binary file handling in OpenStack.
  43. 0.3.0 - April 11, 2017. (sha 13539ccda9e4809082796574d18b1b9bb3f2c624)
  44. -------
  45. * Reworked test framework to rely on tox's test generation features. This
  46. allows for individual test cases to be run on a per provider basis.
  47. * Added more OpenStack swift config options (OS_AUTH_TOKEN and OS_STORAGE_URL)
  48. * Added supports for accessing EC2 containers with restricted permissions.
  49. * Removed exists() method from object store interface. Use get()==None check
  50. instead.
  51. * New method (img.min_disk) for getting size of machine image.
  52. * Test improvements (flake8 during build, more tests).
  53. * Misc bug fixes and improvements.
  54. * Changed library to beta state
  55. * General documentation updates (testing, release process)
  56. 0.2.0 - March 23, 2017. (sha a442d96b829ea2c721728520b01981fa61774625)
  57. -------
  58. * Reworked the instance launch method to require subnet vs. network. This
  59. removed the option of adding network interface to a launch config object.
  60. * Added object store methods: upload from file path, list objects with a
  61. prefix, check if an object exists, (AWS only) get an accessible URL for an
  62. object (thanks @VJalili).
  63. * Modified `get_ec2_credentials()` method to `get_or_create_ec2_credentials()`
  64. * Added an option to read provider config values from a file
  65. (`~/.cloudbridge` or `/etc/cloudbridge`).
  66. * Replaced py35 with py36 for running tests.
  67. * Added logging configuration for the library.
  68. * General documentation updates.
  69. 0.1.1 - Aug 10, 2016. (sha 0122fb1173c88ae64e40140ffd35ff3797e9e4ad)
  70. -------
  71. * For AWS, always launch instances into private networking (i.e., VPC).
  72. * Support for using OpenStack Keystone v3.
  73. * Add functionality to manipulate routers and routes.
  74. * Add FloatingIP resource type and integrate with Network service.
  75. * Numerous documentation updates.
  76. * For an OpenStack provider, add method to get the ec2 credentials for a user.
  77. 0.1.0 - Jan 30, 2016.
  78. -------
  79. * Initial release of CloudBridge.
  80. * Support for Bucket, Instance, Instance type, Key pair, Machine image.
  81. Region, Security group, Snapshot, Volume, Network and Subnet services.
  82. * Support for paging results, block device mapping and launching into VPCs.
  83. * Support for AWS and OpenStack clouds.
  84. * Basic usage docs and complete API docs.
  85. * 95% test coverage.
  86. * Support for AWS mock test provider (via
  87. `moto <https://github.com/spulec/moto>`_).