CHANGELOG.rst 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. 0.3.3 - Aug 7, 2017. (sha 348e1e88935f61f53a83ed8d6a0e012a46621e25)
  2. -------
  3. * Remove explicit versioning of requests and Babel
  4. 0.3.2 - June 10, 2017. (sha f07f3cbd758a0872b847b5537d9073c90f87c24d)
  5. -------
  6. * Patch release to support files>5GB with OpenStack (thanks @MartinPaulo)
  7. * Misc bug fixes
  8. 0.3.1 - April 18, 2017. (sha f36a462e886d8444cb2818f6573677ecf0565315)
  9. -------
  10. * Patch for binary file handling in openstack
  11. 0.3.0 - April 11, 2017. (sha 13539ccda9e4809082796574d18b1b9bb3f2c624)
  12. -------
  13. * Reworked test framework to rely on tox's test generation features. This
  14. allows for individual test cases to be run on a per provider basis.
  15. * Added more OpenStack swift config options (OS_AUTH_TOKEN and OS_STORAGE_URL)
  16. * Added supports for accessing EC2 containers with restricted permissions.
  17. * Removed exists() method from object store interface. Use get()==None check
  18. instead.
  19. * New method (img.min_disk) for geting size of machine image.
  20. * Test improvements (flake8 during build, more tests)
  21. * Misc bug fixes and improvements
  22. * Changed library to beta state
  23. * General documentation updates (testing, release process)
  24. 0.2.0 - March 23, 2017. (sha a442d96b829ea2c721728520b01981fa61774625)
  25. -------
  26. * Reworked the instance launch method to require subnet vs. network. This
  27. removed the option of adding network interface to a launch config object.
  28. * Added object store methods: upload from file path, list objects with a
  29. prefix, check if an object exists, (AWS only) get an accessible URL for an
  30. object (thanks @VJalili)
  31. * Modified `get_ec2_credentials()` method to `get_or_create_ec2_credentials()`
  32. * Added an option to read provider config values from a file
  33. (`~/.cloudbridge` or `/etc/cloudbridge`)
  34. * Replaced py35 with py36 for running tests
  35. * Added logging configuration for the library
  36. * General documentation updates
  37. 0.1.1 - Aug 10, 2016. (sha 0122fb1173c88ae64e40140ffd35ff3797e9e4ad)
  38. -------
  39. * For AWS, always launch instances into private networking (i.e., VPC)
  40. * Support for using OpenStack Keystone v3
  41. * Add functionality to manipulate routers and routes
  42. * Add FloatingIP resource type and integrate with Network service
  43. * Numerous documentation updates
  44. * For an OpenStack provider, add method to get the ec2 credentials for a user
  45. 0.1.0 - Jan 30, 2016.
  46. -------
  47. * Initial release of CloudBridge
  48. * Support for Bucket, Instance, Instance type, Key pair, Machine image
  49. Region, Security group, Snapshot, Volume, Network and Subnet services
  50. * Support for paging results, block device mapping and launching into VPCs
  51. * Support for AWS and OpenStack clouds
  52. * Basic usage docs and complete API docs
  53. * 95% test coverage
  54. * Support for AWS mock test provder (via
  55. `moto <https://github.com/spulec/moto>`_)