|
8 | 8 | <PackageLicenseExpression>MIT</PackageLicenseExpression> |
9 | 9 | <Authors>BBernard / CajunCoding</Authors> |
10 | 10 | <Company>CajunCoding</Company> |
11 | | - <Version>2.4.5</Version> |
| 11 | + <Version>2.4.6</Version> |
12 | 12 | <PackageProjectUrl>https://github.com/cajuncoding/SqlBulkHelpers</PackageProjectUrl> |
13 | 13 | <RepositoryUrl>https://github.com/cajuncoding/SqlBulkHelpers</RepositoryUrl> |
14 | 14 | <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> |
15 | 15 | <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> |
16 | 16 | <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 | + |
19 | 19 | 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). |
20 | 21 | - Fix Collation Conflict Risks -- Thanks to Contribution by @simelis |
21 | 22 | - Fix Security Vulnerability in System.Data.SqlClient |
22 | 23 | - 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 | 88 |
|
88 | 89 | <ItemGroup> |
89 | 90 | <PackageReference Include="FastMember" Version="1.5.0" /> |
90 | | - <PackageReference Include="LazyCacheHelpers" Version="1.3.2" /> |
| 91 | + <PackageReference Include="LazyCacheHelpers" Version="1.3.3" /> |
91 | 92 | <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" /> |
93 | 95 | </ItemGroup> |
94 | 96 |
|
95 | 97 | </Project> |
0 commit comments