Skip to content

Commit

Permalink
V2.1.0 - Release
Browse files Browse the repository at this point in the history
* Supporting data types DateOnly, TimeOnly, UInt128
* New option for allowing missing expressions
* Unit test code coverage at 95%
  • Loading branch information
Danny Logsdon committed Apr 14, 2024
1 parent ddf40b8 commit 0abb10c
Show file tree
Hide file tree
Showing 43 changed files with 37,535 additions and 227 deletions.
4 changes: 4 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 2.0.2
- Support for datatypes DateOnly, TimeOnly and UInt128
- Unit test code coverage at 95%

# 2.0.1
- Change ServiceQueryServiceFilter.FilterType enum to a string for easier serialization

Expand Down
70 changes: 70 additions & 0 deletions ServiceQueryV2.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.2.32616.157
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceQuery", "src\ServiceQueryV2\ServiceQuery.csproj", "{C8EC306E-305E-4977-A8AD-324F28A18DB2}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceQuery.AzureDataTables", "src\ServiceQuery.AzureDataTablesV2\ServiceQuery.AzureDataTables.csproj", "{38933403-A973-4B9F-AB6C-8A0B37D4DB0F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Test", "Test", "{CDCE8DCF-CCAE-4110-A51E-4DD07BF24885}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceQueryV2Net8.Integration.Xunit", "src\Tests\ServiceQueryV2Net8.Integration.Xunit\ServiceQueryV2Net8.Integration.Xunit.csproj", "{F13E1A15-CE47-4A04-A508-9AE0DDC0DFCE}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceQueryV2Net8.Xunit", "src\Tests\ServiceQueryV2Net8.Xunit\ServiceQueryV2Net8.Xunit.csproj", "{9538825C-8868-45F5-B3F8-54C6000176C6}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceQuery.AzureDataTablesV2Net8.Integration.Xunit", "src\Tests\ServiceQuery.AzureDataTablesV2Net8.Integration.Xunit\ServiceQuery.AzureDataTablesV2Net8.Integration.Xunit.csproj", "{90E31385-8FD8-4940-ADDC-D24FA284D44F}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceQueryV2Net6.Xunit", "src\Tests\ServiceQueryV2Net6.Xunit\ServiceQueryV2Net6.Xunit.csproj", "{605277F0-8655-434E-B2FA-C86D3D62F4F7}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceQueryV2Net7.Xunit", "src\Tests\ServiceQueryV2Net7.Xunit\ServiceQueryV2Net7.Xunit.csproj", "{32110F60-13E5-43A3-AA8D-A75F1AD24AA3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C8EC306E-305E-4977-A8AD-324F28A18DB2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C8EC306E-305E-4977-A8AD-324F28A18DB2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C8EC306E-305E-4977-A8AD-324F28A18DB2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C8EC306E-305E-4977-A8AD-324F28A18DB2}.Release|Any CPU.Build.0 = Release|Any CPU
{38933403-A973-4B9F-AB6C-8A0B37D4DB0F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{38933403-A973-4B9F-AB6C-8A0B37D4DB0F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{38933403-A973-4B9F-AB6C-8A0B37D4DB0F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{38933403-A973-4B9F-AB6C-8A0B37D4DB0F}.Release|Any CPU.Build.0 = Release|Any CPU
{F13E1A15-CE47-4A04-A508-9AE0DDC0DFCE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F13E1A15-CE47-4A04-A508-9AE0DDC0DFCE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F13E1A15-CE47-4A04-A508-9AE0DDC0DFCE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F13E1A15-CE47-4A04-A508-9AE0DDC0DFCE}.Release|Any CPU.Build.0 = Release|Any CPU
{9538825C-8868-45F5-B3F8-54C6000176C6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9538825C-8868-45F5-B3F8-54C6000176C6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9538825C-8868-45F5-B3F8-54C6000176C6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9538825C-8868-45F5-B3F8-54C6000176C6}.Release|Any CPU.Build.0 = Release|Any CPU
{90E31385-8FD8-4940-ADDC-D24FA284D44F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{90E31385-8FD8-4940-ADDC-D24FA284D44F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{90E31385-8FD8-4940-ADDC-D24FA284D44F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{90E31385-8FD8-4940-ADDC-D24FA284D44F}.Release|Any CPU.Build.0 = Release|Any CPU
{605277F0-8655-434E-B2FA-C86D3D62F4F7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{605277F0-8655-434E-B2FA-C86D3D62F4F7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{605277F0-8655-434E-B2FA-C86D3D62F4F7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{605277F0-8655-434E-B2FA-C86D3D62F4F7}.Release|Any CPU.Build.0 = Release|Any CPU
{32110F60-13E5-43A3-AA8D-A75F1AD24AA3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{32110F60-13E5-43A3-AA8D-A75F1AD24AA3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{32110F60-13E5-43A3-AA8D-A75F1AD24AA3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{32110F60-13E5-43A3-AA8D-A75F1AD24AA3}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{F13E1A15-CE47-4A04-A508-9AE0DDC0DFCE} = {CDCE8DCF-CCAE-4110-A51E-4DD07BF24885}
{9538825C-8868-45F5-B3F8-54C6000176C6} = {CDCE8DCF-CCAE-4110-A51E-4DD07BF24885}
{90E31385-8FD8-4940-ADDC-D24FA284D44F} = {CDCE8DCF-CCAE-4110-A51E-4DD07BF24885}
{605277F0-8655-434E-B2FA-C86D3D62F4F7} = {CDCE8DCF-CCAE-4110-A51E-4DD07BF24885}
{32110F60-13E5-43A3-AA8D-A75F1AD24AA3} = {CDCE8DCF-CCAE-4110-A51E-4DD07BF24885}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {F708D827-C6F0-4D56-A3C1-F45D8B98F897}
EndGlobalSection
EndGlobal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>2.0.1</Version>
<Version>2.1.0</Version>
<Description>ServiceQuery allows dynamic querying of data over service boundaries. Visit http://ServiceQuery.com to learn more.</Description>
<AssemblyTitle>ServiceQuery.AzureDataTables</AssemblyTitle>
<Authors>holomodular</Authors>
Expand Down Expand Up @@ -32,7 +32,7 @@
<PackageReference Include="Azure.Data.Tables">
<Version>12.8.3</Version>
</PackageReference>
<PackageReference Include="ServiceQuery" Version="2.0.1" />
<PackageReference Include="ServiceQuery" Version="2.1.0" />
</ItemGroup>

</Project>
Loading

0 comments on commit 0abb10c

Please sign in to comment.