Skip to content

Commit 0bbbeee

Browse files
authored
Merge pull request #23 from cajuncoding/bugfix/20-fix_linq_column_attr_nullref_exception
Updates to resolve security vulnerabilities in dependencies.
2 parents 024099c + 94acf67 commit 0bbbeee

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

NetStandard.SqlBulkHelpers/NetStandard.SqlBulkHelpers.csproj

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,16 @@
88
<PackageLicenseExpression>MIT</PackageLicenseExpression>
99
<Authors>BBernard / CajunCoding</Authors>
1010
<Company>CajunCoding</Company>
11-
<Version>2.4.5</Version>
11+
<Version>2.4.6</Version>
1212
<PackageProjectUrl>https://github.com/cajuncoding/SqlBulkHelpers</PackageProjectUrl>
1313
<RepositoryUrl>https://github.com/cajuncoding/SqlBulkHelpers</RepositoryUrl>
1414
<Description>A library for easy, efficient and high performance bulk insert and update of data, into a Sql Database, from .Net applications. By leveraging the power of the SqlBulkCopy classes with added support for Identity primary key table columns this library provides a greatly simplified interface to process Identity based Entities with Bulk Performance with the wide compatibility of .NetStandard 2.0.</Description>
1515
<PackageTags>sql server database table bulk insert update identity column sqlbulkcopy orm dapper linq2sql materialization materialized data view materialized-data materialized-view sync replication replica readonly</PackageTags>
1616
<PackageReleaseNotes>
17-
-Fix Null Reference Exception if Linq2Db Column Attribute is used but no Name mapping is specified since it is actually optional (https://github.com/cajuncoding/SqlBulkHelpers/issues/20).
18-
17+
- Updates to resolve security vulnerabilities in dependencies.
18+
1919
Prior Relese Notes:
20+
- Fix Null Reference Exception if Linq2Db Column Attribute is used but no Name mapping is specified since it is actually optional (https://github.com/cajuncoding/SqlBulkHelpers/issues/20).
2021
- Fix Collation Conflict Risks -- Thanks to Contribution by @simelis
2122
- Fix Security Vulnerability in System.Data.SqlClient
2223
- Fix Caching bug for Processing Definitions loaded from class Attribute annotations, etc. whereby the FullName was not correctly used resulting in cache conflicts and incorrect values when classes have the same name.
@@ -87,9 +88,10 @@
8788

8889
<ItemGroup>
8990
<PackageReference Include="FastMember" Version="1.5.0" />
90-
<PackageReference Include="LazyCacheHelpers" Version="1.3.2" />
91+
<PackageReference Include="LazyCacheHelpers" Version="1.3.3" />
9192
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.1.3" />
92-
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
93+
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
94+
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
9395
</ItemGroup>
9496

9597
</Project>

SqlBulkHelpers.SampleApp.Common/SqlBulkHelpers.SampleApp.Common.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="RepoDb" Version="1.13.0" />
8+
<PackageReference Include="RepoDb" Version="1.13.1" />
99
</ItemGroup>
1010

1111
<ItemGroup>

SqlBulkHelpers.SampleApp.NetFramework/SqlBulkHelpers.SampleApp.NetFramework.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
<Version>5.1.3</Version>
8787
</PackageReference>
8888
<PackageReference Include="Newtonsoft.Json">
89-
<Version>13.0.2</Version>
89+
<Version>13.0.4</Version>
9090
</PackageReference>
9191
<PackageReference Include="System.Runtime">
9292
<Version>4.3.1</Version>

SqlBulkHelpers.Tests/SqlBulkHelpers.Tests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
1515
<PackageReference Include="MSTest.TestAdapter" Version="3.0.2" />
1616
<PackageReference Include="MSTest.TestFramework" Version="3.0.2" />
17-
<PackageReference Include="coverlet.collector" Version="3.2.0">
17+
<PackageReference Include="coverlet.collector" Version="6.0.4">
1818
<PrivateAssets>all</PrivateAssets>
1919
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2020
</PackageReference>
21-
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
22-
<PackageReference Include="RepoDb.SqlServer" Version="1.13.0" />
21+
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
22+
<PackageReference Include="RepoDb.SqlServer" Version="1.13.1" />
2323
</ItemGroup>
2424
<ItemGroup>
2525
<ProjectReference Include="..\NetStandard.SqlBulkHelpers\NetStandard.SqlBulkHelpers.csproj">

0 commit comments

Comments
 (0)