Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3.2.0 Release #48

Merged
merged 6 commits into from
Jan 6, 2017
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
4 changes: 2 additions & 2 deletions src/Serilog.Sinks.Seq/SeqLoggerConfigurationExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public static class SeqLoggerConfigurationExtensions
/// <param name="controlLevelSwitch">If provided, the switch will be updated based on the Seq server's level setting
/// for the corresponding API key. Passing the same key to MinimumLevel.ControlledBy() will make the whole pipeline
/// dynamically controlled. Do not specify <paramref name="restrictedToMinimumLevel"/> with this setting.</param>
/// <param name="messageHandler">Used to construct the HttpClient that will send the log meesages to Seq.</param>
/// <param name="messageHandler">Used to construct the HttpClient that will send the log messages to Seq.</param>
/// <param name="retainedInvalidPayloadsLimitBytes">A soft limit for the number of bytes to use for storing failed requests.
/// The limit is soft in that it can be exceeded by any single error payload, but in that case only that single error
/// payload will be retained.</param>
Expand Down Expand Up @@ -131,7 +131,7 @@ public static LoggerConfiguration Seq(
/// <param name="restrictedToMinimumLevel">The minimum log event level required
/// in order to write an event to the sink.</param>
/// <param name="apiKey">A Seq <i>API key</i> that authenticates the client to the Seq server.</param>
/// <param name="messageHandler">Used to construct the HttpClient that will send the log meesages to Seq.</param>
/// <param name="messageHandler">Used to construct the HttpClient that will send the log messages to Seq.</param>
/// <param name="compact">Use the compact log event format defined by
/// <a href="https://github.com/serilog/serilog-formatting-compact">Serilog.Formatting.Compact</a>. Has no effect on
/// durable log shipping. Requires Seq 3.3+.</param>
Expand Down
10 changes: 6 additions & 4 deletions src/Serilog.Sinks.Seq/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "3.1.1-*",
"version": "3.2.0-*",
"description": "Serilog sink that writes to the Seq log server over HTTP/S.",
"authors": [ "Serilog Contributors" ],
"packOptions": {
Expand All @@ -9,7 +9,7 @@
"iconUrl": "http://serilog.net/images/serilog-sink-seq-nuget.png"
},
"dependencies": {
"Serilog": "2.2.0",
"Serilog": "2.3.0",
"Serilog.Sinks.PeriodicBatching": "2.1.0",
"Serilog.Formatting.Compact": "1.0.0"
},
Expand All @@ -27,7 +27,8 @@
"System.Net.Http": ""
},
"dependencies": {
"Serilog.Sinks.RollingFile": "3.0.0"
"Serilog.Sinks.File": "3.2.0",
"Serilog.Sinks.RollingFile": "3.3.0"
}
},
"netstandard1.1": {
Expand All @@ -41,7 +42,8 @@
},
"dependencies": {
"System.Net.Http": "4.1.0",
"Serilog.Sinks.RollingFile": "3.0.0",
"Serilog.Sinks.File": "3.2.0",
"Serilog.Sinks.RollingFile": "3.3.0",
"System.Threading.Timer": "4.0.1"
}
}
Expand Down