12.3.0 (2021-11-09)
Bugs Fixed
- Table entities now support UInt64 (ulong) properties. (#24750)
- Fixed an issue where
PartitionKey
andRoKey
property values containing single quote characters are not properly escaped onGetEntity
calls. See breaking changes section for more information.
Breaking Changes
- The fix to escape
PartitionKey
andRoKey
property values containing single quote characters are not properly escaped onGetEntity
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" totrue
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>