Skip to content

Latest commit

 

History

History
70 lines (51 loc) · 3.85 KB

File metadata and controls

70 lines (51 loc) · 3.85 KB

Release Notes

Version 2.1.0

  • Get-AzTableRow now supports two new optional parameters, -top and -SelectColumn, many thanks to @backerman and @StephenFerrero for these contributions

Version 2.0.4

  • Fixed issue #59, bug related to wrong null checking while deleting a row.

Version 2.0.3

  • Fixed issues with continuation token.

Version 2.0.2

  • Implemented ContinuationToken logic while using ExecuteQuerySegmentedAsync to get more than 1000 rows.

Version 2.0.1

  • This module now depends on Az.Storage, Az.Authentication and Az.Resources Powershell modules, this version of the module will not work anymore with AzureRM.
  • A major change happened on SDK side and assembly Microsoft.WindowsAzure.Storage is now replaced by Microsoft.Azure.Cosmos assembly.
  • Moved from sync to async methods to perform query operations. Kudos to jakedenyer for his contributions in this space.
  • Noun "AzureStorageTable" got replaced by "AzTable" but aliases are being provided for compatibility. Notice that for automatic module load, you need to use the new noun, for the old noun, you must import the module before using a cmdlet.
  • All Get cmdlets got deprecated and Get-AzTableRow must be used moving forward, they are still available but they are calling Get-AzTableRow behind the scenes and will be removed in a future release.

Version 1.0.0.23

  • Added parameter UpdateExisting to Add-StorageTableRow so if a row already exists you can update its content in a single operation

Version 1.0.0.22

  • Removed support for Cosmos DB Tables since it will have its own module

Version 1.0.0.21

  • Azure Storage Table automatic Timestamp system column is now renamed to TableTimestamp in order to avoid conflict with a possible (very possible) existence of Timestamp included by applications as an entity's property.
  • Cmdlet Add-StorageTableRow now has the property parameter as an optional parameter
  • Get-AzureStorageTableRowByColumnName cmdlet now supports guid values throught the guidValue parameter

Version 1.0.0.20

  • Implemented some measures in order to avoid conflicts between different assembly versions, more specifically Microsoft.WindowsAzure.Storage.Dll.

Version 1.0.0.19

  • Very minor update, changed a variable name on Get-AzureStorageTableTable function

Version 1.0.0.18

  • Renamed the parameter -databasename to -cosmosDBAccount on Get-AzureStorageTableTable, -databasename is an alias to maintain compatibility

Version 1.0.0.17

  • Fixed a bug with the Get-AzureStorageTableTable function where it was returning two objects, a boolean and the cloudtable when using Cosmos DB.

Version 1.0.0.16

  • Fixed an issue with the parameter set for the Cosmos DB, it was missing the resource group parameter on it and therefore causing an error saying that the parameterset could not be identified.

Version 1.0.0.15

Version 1.0.0.11

  • Fixed issue with Add-AzureStorageTableRow cmdlet related to a reference to inexisting object.

Version 1.0.0.10

  • Included new cmdlet called Get-AzureStorageTableTable.
  • Included preview support for Azure Cosmos DB Table API.
  • Created a script called Install-CosmosDbInstallPreReqs.ps1 that adds the necessary assemblies for Cosmos DB.

Version 1.0.0.9

  • Allowed empty strings on Partition and Row keys.
  • Included Pester test cases script.

Version 1.0.0.8

  • Returned entities as PS Objects now include a Timestamp attribute.

Previous versions

  • General bug fixes.
  • Inclusion of #Requires statement for required modules.
  • Initial publication of the module.