CHANGES in azure-armrest-0.0.3 vs CHANGES in azure-armrest-0.0.4
- old
+ new
@@ -1,4 +1,23 @@
+= 0.0.4 - 19-Oct-2015
+* All get/list/list_all methods now return wrapper class instances, e.g.
+ a call to VirtualMachineService#get will return a VirtualMachine instance.
+ These provide a nice OpenStruct wrapper so you can use methods instead
+ of hash references if desired.
+* A custom StorageAccount class was added that implements methods for
+ gathering blob information.
+* Most service classes now inherit from ResourceGroupBasedService, which
+ provides a common set of methods typically used for various services.
+* Now re-raises RestClient exceptions as exceptions that we have defined.
+* The VirtualMachineImage class was overhauled and is now working properly.
+* The azure-signature, nokogiri and activesupport dependencies were added.
+
+= 0.0.3 - 13-Oct-2015
+* Bug fixes for VirtualMachineImageService class.
+* Reorganized and updated SubnetService class.
+* Some updates to the BaseModel in prep for JSON wrapper classes.
+* Added NetworkSecurityGroupService and IpAddressService classes.
+
= 0.0.2 - 23-Sep-2015
* Revamped class names. Now use "Service" instead of "Manager".
* Several new service classes added, updated, and refactored.
* All service classes now take and store configuration information as the
first argument to ensure distinct credentials.