Skip to content

Commit bc3ae26

Browse files
committed
v1.6.0-preview-01
1 parent 49b6cf0 commit bc3ae26

File tree

15 files changed

+23
-17
lines changed

15 files changed

+23
-17
lines changed

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
# v1.5.1 (12 December 2024)
1+
# v1.6.0-preview-01 (23 January 2025)
2+
- [#864](https://github.com/zzzprojects/System.Linq.Dynamic.Core/pull/864) - Use ParsingConfig.IsCaseSensitive setting in TextParser and KeywordsHelper [feature] contributed by [StefH](https://github.com/StefH)
3+
- [#865](https://github.com/zzzprojects/System.Linq.Dynamic.Core/pull/865) - Add OrderBy NullPropagation tests [test] contributed by [StefH](https://github.com/StefH)
4+
- [#866](https://github.com/zzzprojects/System.Linq.Dynamic.Core/pull/866) - Refactor KeywordsHelper, TypeFinder and update comments on ParsingConfig [refactor] contributed by [StefH](https://github.com/StefH)
5+
- [#870](https://github.com/zzzprojects/System.Linq.Dynamic.Core/pull/870) - Fix CVE-2024-51417 [bug] contributed by [StefH](https://github.com/StefH)
6+
- [#773](https://github.com/zzzprojects/System.Linq.Dynamic.Core/issues/773) - Parse exceptions with (nested) static classes [bug]
7+
8+
# v1.5.1 (14 December 2024)
29
- [#859](https://github.com/zzzprojects/System.Linq.Dynamic.Core/pull/859) - Add SelectMany extension method for Json [feature] contributed by [StefH](https://github.com/StefH)
310
- [#860](https://github.com/zzzprojects/System.Linq.Dynamic.Core/pull/860) - Add support for SequenceEqual [feature] contributed by [StefH](https://github.com/StefH)
411
- [#861](https://github.com/zzzprojects/System.Linq.Dynamic.Core/pull/861) - Fix calling Sum without any arguments [bug] contributed by [StefH](https://github.com/StefH)
@@ -65,7 +72,6 @@
6572
- [#811](https://github.com/zzzprojects/System.Linq.Dynamic.Core/pull/811) - Add extra unit test for calling methods on a string property [test] contributed by [StefH](https://github.com/StefH)
6673
- [#626](https://github.com/zzzprojects/System.Linq.Dynamic.Core/issues/626) - '&&' and '||' operators incompatible between operand type 'bool' and type with implicit conversation to 'bool' [bug]
6774
- [#633](https://github.com/zzzprojects/System.Linq.Dynamic.Core/issues/633) - Fail to GroupBy Select Where Average [bug]
68-
- [#783](https://github.com/zzzprojects/System.Linq.Dynamic.Core/issues/783) - Performance Issue with EF Core 8.0 and Microsoft.EntityFrameworkCore.DynamicLinq Package [duplicate]
6975
- [#803](https://github.com/zzzprojects/System.Linq.Dynamic.Core/issues/803) - Updating to 1.3.13 - No property or field 'XXXXX' exists in type 'Char' [bug]
7076
- [#810](https://github.com/zzzprojects/System.Linq.Dynamic.Core/issues/810) - Issue with Where() method when filtering multiple string properties while using ToLower() [bug]
7177

Generate-ReleaseNotes.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
rem https://github.com/StefH/GitHubReleaseNotes
22

3-
SET version=v1.5.1
3+
SET version=v1.6.0-preview-01
44

5-
GitHubReleaseNotes --output CHANGELOG.md --exclude-labels invalid question documentation wontfix environment --language en --version %version% --token %GH_TOKEN%
5+
GitHubReleaseNotes --output CHANGELOG.md --exclude-labels invalid question documentation wontfix environment duplicate --language en --version %version% --token %GH_TOKEN%

src/EntityFramework.DynamicLinq/EntityFramework.DynamicLinq.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<PackageTags>system;linq;dynamic;entityframework;core;async</PackageTags>
1111
<ProjectGuid>{D3804228-91F4-4502-9595-39584E510000}</ProjectGuid>
1212
<TargetFrameworks>net45;net452;net46;netstandard2.1</TargetFrameworks>
13-
<Version>1.5.$(PatchVersion)</Version>
13+
<Version>1.6.$(PatchVersion)</Version>
1414
</PropertyGroup>
1515

1616
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">

src/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore2/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore2.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<PackageTags>system;linq;dynamic;entityframework;core;async</PackageTags>
1111
<ProjectGuid>{D3804228-91F4-4502-9595-39584E510001}</ProjectGuid>
1212
<TargetFrameworks>netstandard2.0</TargetFrameworks>
13-
<Version>2.5.$(PatchVersion)</Version>
13+
<Version>2.6.$(PatchVersion)</Version>
1414
</PropertyGroup>
1515

1616
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">

src/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore3/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore3.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<PackageTags>system;linq;dynamic;entityframework;core;async</PackageTags>
1111
<ProjectGuid>{7994FECC-965C-4A5D-8B0E-1A6EA769D4BE}</ProjectGuid>
1212
<TargetFrameworks>netstandard2.0</TargetFrameworks>
13-
<Version>3.5.$(PatchVersion)</Version>
13+
<Version>3.6.$(PatchVersion)</Version>
1414
</PropertyGroup>
1515

1616
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">

src/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore5/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore5.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<PackageTags>system;linq;dynamic;entityframework;core;async</PackageTags>
1111
<ProjectGuid>{D3804228-91F4-4502-9595-39584E519901}</ProjectGuid>
1212
<TargetFrameworks>netstandard2.1;net5.0</TargetFrameworks>
13-
<Version>5.5.$(PatchVersion)</Version>
13+
<Version>5.6.$(PatchVersion)</Version>
1414
</PropertyGroup>
1515

1616
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">

src/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore6/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore6.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<PackageTags>system;linq;dynamic;entityframework;core;async</PackageTags>
1111
<ProjectGuid>{D28F6393-B56B-40A2-AF67-E8D669F42546}</ProjectGuid>
1212
<TargetFrameworks>net6.0</TargetFrameworks>
13-
<Version>6.5.$(PatchVersion)</Version>
13+
<Version>6.6.$(PatchVersion)</Version>
1414
</PropertyGroup>
1515

1616
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">

src/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore7/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore7.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<PackageTags>system;linq;dynamic;entityframework;core;async</PackageTags>
1111
<ProjectGuid>{FB2F4C99-EC34-4D29-87E2-944B25D90ef7}</ProjectGuid>
1212
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
13-
<Version>7.5.$(PatchVersion)</Version>
13+
<Version>7.6.$(PatchVersion)</Version>
1414
</PropertyGroup>
1515

1616
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">

src/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore8/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore8.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<PackageTags>system;linq;dynamic;entityframework;core;async</PackageTags>
1111
<ProjectGuid>{9000129D-322D-4FE6-9C47-75464577C374}</ProjectGuid>
1212
<TargetFrameworks>net8.0</TargetFrameworks>
13-
<Version>8.5.$(PatchVersion)</Version>
13+
<Version>8.6.$(PatchVersion)</Version>
1414
</PropertyGroup>
1515

1616
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">

src/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore9/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore9.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<PackageTags>system;linq;dynamic;entityframework;core;async</PackageTags>
1111
<ProjectGuid>{C774DAE7-54A0-4FCD-A3B7-3CB63D7E112D}</ProjectGuid>
1212
<TargetFrameworks>net9.0</TargetFrameworks>
13-
<Version>9.5.$(PatchVersion)</Version>
13+
<Version>9.6.$(PatchVersion)</Version>
1414
</PropertyGroup>
1515

1616
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">

0 commit comments

Comments
 (0)