Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion ChangeLog/6.0.14_dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
[main] Addressed issue of not visiting grouping expression correctly which appeared in previous version
[main] Addressed certain issues of incorrect query optimization when it contains multiple In() calls
[main] In addition to previous version, more cases of incorrect join type usage addressed
[postgresql] Updated Npgsql package to version 4.0.17 which patches some vulnerablity issues
[firebird] Updated client library package to version 6.7.0
[mysql] Updated client library package to version 6.10.9
[oracle] Updated client library package to version 2.18.151
[postgresql] Updated Npgsql package to version 4.0.17 which patches some vulnerablity issues
[sqlserver] Updated client library package to version 4.8.6
[sqlite] Updated client library package to version 1.0.119
2 changes: 1 addition & 1 deletion Orm/Xtensive.Orm.Firebird/Xtensive.Orm.Firebird.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="FirebirdSql.Data.FirebirdClient" Version="6.2.0.1" />
<PackageReference Include="FirebirdSql.Data.FirebirdClient" Version="6.7.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Xtensive.Orm\Xtensive.Orm.csproj" />
Expand Down
2 changes: 1 addition & 1 deletion Orm/Xtensive.Orm.MySql/Xtensive.Orm.MySql.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</Content>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0'">
<PackageReference Include="MySql.Data" Version="6.10.7" />
<PackageReference Include="MySql.Data" Version="6.10.9" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Xtensive.Orm\Xtensive.Orm.csproj" />
Expand Down
2 changes: 1 addition & 1 deletion Orm/Xtensive.Orm.Oracle/Xtensive.Orm.Oracle.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Oracle.ManagedDataAccess.Core" Version="2.18.3" />
<PackageReference Include="Oracle.ManagedDataAccess.Core" Version="2.18.151" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Xtensive.Orm\Xtensive.Orm.csproj" />
Expand Down
2 changes: 1 addition & 1 deletion Orm/Xtensive.Orm.SqlServer/Xtensive.Orm.SqlServer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Data.SqlClient" Version="4.8.1" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.6" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Orm/Xtensive.Orm.Sqlite/Xtensive.Orm.Sqlite.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.109.2" />
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.119" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Xtensive.Orm\Xtensive.Orm.csproj" />
Expand Down
Loading