File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed
src/Serilog.Sinks.MSSqlServer Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -22,14 +22,14 @@ jobs:
22
22
uses : actions/checkout@v3
23
23
24
24
- name : Initialize CodeQL
25
- uses : github/codeql-action/init@v2
25
+ uses : github/codeql-action/init@v3
26
26
with :
27
27
languages : ' csharp'
28
28
29
29
- name : Run build
30
30
run : ./Build.ps1 -SkipTests
31
31
32
32
- name : Perform CodeQL Analysis
33
- uses : github/codeql-action/analyze@v2
33
+ uses : github/codeql-action/analyze@v3
34
34
with :
35
35
category : " /language:csharp"
Original file line number Diff line number Diff line change
1
+ # 6.7.0
2
+ * Fixed some of the vulnerabilities referenced in issue #544 by updating SqlClient dependency to 5.2.1
3
+ * Update codeql-action to v3 before deprecation
4
+
1
5
# 6.6.1
2
6
* Fixed issue #515 : Cannot use .AuditTo with SpanId or TraceId (thanks to @Kolthor and @vui611 )
3
7
* Fixed issue #530 : Document default value of AllowNull
Original file line number Diff line number Diff line change 11
11
<PackageVersion Include =" System.Runtime.Extensions" Version =" 4.3.1" />
12
12
<PackageVersion Include =" System.Runtime.InteropServices" Version =" 4.3.0" />
13
13
<PackageVersion Include =" System.Text.Encoding.Extensions" Version =" 4.3.0" />
14
- <PackageVersion Include =" Microsoft.Data.SqlClient" Version =" 5.1.5 " />
14
+ <PackageVersion Include =" Microsoft.Data.SqlClient" Version =" 5.2.1 " />
15
15
<PackageVersion Include =" Microsoft.Extensions.Configuration" Version =" 6.0.1" />
16
16
<PackageVersion Include =" Microsoft.Extensions.Configuration.Json" Version =" 6.0.0" />
17
17
<PackageVersion Include =" Microsoft.Extensions.Hosting" Version =" 6.0.1" />
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<Description >A Serilog sink that writes events to Microsoft SQL Server and Azure SQL</Description >
5
- <VersionPrefix >6.6.1 </VersionPrefix >
5
+ <VersionPrefix >6.7.0 </VersionPrefix >
6
6
<Authors >Michiel van Oudheusden;Christian Kadluba;Serilog Contributors</Authors >
7
7
<TargetFrameworks >netstandard2.0;net462;net472;net6.0</TargetFrameworks >
8
8
<TreatWarningsAsErrors >true</TreatWarningsAsErrors >
You can’t perform that action at this time.
0 commit comments