Skip to content

Azure.Data.Tables_12.3.0

Compare
Choose a tag to compare
@azure-sdk azure-sdk released this 09 Nov 20:14
9594b4b

12.3.0 (2021-11-09)

Bugs Fixed

  • Table entities now support UInt64 (ulong) properties. (#24750)
  • Fixed an issue where PartitionKey and RoKey property values containing single quote characters are not properly escaped on GetEntity calls. See breaking changes section for more information.

Breaking Changes

  • The fix to escapePartitionKey and RoKey property values containing single quote characters are not properly escaped on GetEntity calls may causes a breaking change for deployed applications that work around the previous behavior. For these situations, the new behavior can be overridden by either setting an AppContext switch named "Azure.Data.Tables.DisableEscapeSingleQuotesOnGetEntity" to true or by setting the environment variable "AZURE_DATA_TABLES_DISABLE_ESCAPESINGLEQUOTESONGETENTITY" to "true". Note: AppContext switches can also be configured via configuration like below:
<ItemGroup>
    <RuntimeHostConfigurationOption Include="Azure.Data.Tables.DisableEscapeSingleQuotesOnGetEntity" Value="true" />
</ItemGroup>