Releases: rackspace/php-opencloud
Releases · rackspace/php-opencloud
v1.4 - do not use
Release had a bug that was immediately fixed in 1.4.1
v1.3 - 2013-02-10
- IMPORTANT: The file extension for include files is now
.php
(instead of
.inc
). This came at the request of numerous individuals. However, it means
that all of your scripts that use php-opencloud must be edited. DataObject::Create()
now usescontent_type
; using the older
type
parameter is deprecated and will cause an UnknownParameterError
exception.- New global constant
RAXSDK_CACERTPEM
; if defined, this should be a path
to acacert.pem
file that defines the root certificate servers. Defining
this provides an extra degree of security in the HTTP transfer operations. - Fixed a bug (issue #25) wherein the entire DataObject was retrieved in the
constructor. This was incorrect; the constructor now does aHEAD
request,
and you need to use theSaveToFilename()
orSaveToString()
methods to
actually fetch the data from Swift/Cloud Files. If your code relies upon
the previous behavior, this might cause it to break. - Support for Rackspace Cloud Load Balancers
- Fix to remove requirement for Tenant ID in authentication
- Added
ExportCredentials()
andImportCredentials()
methods to the
OpenStack
class to permit caching of tokens.