CHANGELOG.rst 2.5 KB

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