Skip to content

Commit e5050e8

Browse files
authored
Merge pull request #549 from serilog-mssql/dev
Release 6.7.0
2 parents 499950a + be6feb3 commit e5050e8

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.github/workflows/pr-analysis-codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ jobs:
2222
uses: actions/checkout@v3
2323

2424
- name: Initialize CodeQL
25-
uses: github/codeql-action/init@v2
25+
uses: github/codeql-action/init@v3
2626
with:
2727
languages: 'csharp'
2828

2929
- name: Run build
3030
run: ./Build.ps1 -SkipTests
3131

3232
- name: Perform CodeQL Analysis
33-
uses: github/codeql-action/analyze@v2
33+
uses: github/codeql-action/analyze@v3
3434
with:
3535
category: "/language:csharp"

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
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+
15
# 6.6.1
26
* Fixed issue #515: Cannot use .AuditTo with SpanId or TraceId (thanks to @Kolthor and @vui611)
37
* Fixed issue #530: Document default value of AllowNull

Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<PackageVersion Include="System.Runtime.Extensions" Version="4.3.1" />
1212
<PackageVersion Include="System.Runtime.InteropServices" Version="4.3.0" />
1313
<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" />
1515
<PackageVersion Include="Microsoft.Extensions.Configuration" Version="6.0.1" />
1616
<PackageVersion Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
1717
<PackageVersion Include="Microsoft.Extensions.Hosting" Version="6.0.1" />

src/Serilog.Sinks.MSSqlServer/Serilog.Sinks.MSSqlServer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<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>
66
<Authors>Michiel van Oudheusden;Christian Kadluba;Serilog Contributors</Authors>
77
<TargetFrameworks>netstandard2.0;net462;net472;net6.0</TargetFrameworks>
88
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

0 commit comments

Comments
 (0)