From 26d134f17a8362e59aec19e802a26b372673b543 Mon Sep 17 00:00:00 2001 From: Nicholas Blumhardt Date: Sat, 5 Nov 2016 07:19:15 +1000 Subject: [PATCH 1/4] Dev version bump [Skip CI] --- src/Serilog.Sinks.Seq/project.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Serilog.Sinks.Seq/project.json b/src/Serilog.Sinks.Seq/project.json index 5decddf..2fac283 100644 --- a/src/Serilog.Sinks.Seq/project.json +++ b/src/Serilog.Sinks.Seq/project.json @@ -1,5 +1,5 @@ { - "version": "3.1.1-*", + "version": "3.1.2-*", "description": "Serilog sink that writes to the Seq log server over HTTP/S.", "authors": [ "Serilog Contributors" ], "packOptions": { From 92e7efc4df4eceee32f9010ee0eba0ab3cd7cf12 Mon Sep 17 00:00:00 2001 From: Nicholas Blumhardt Date: Tue, 15 Nov 2016 13:31:10 +1000 Subject: [PATCH 2/4] Update declared dependencies to pull in file sink bug fix --- src/Serilog.Sinks.Seq/project.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Serilog.Sinks.Seq/project.json b/src/Serilog.Sinks.Seq/project.json index 2fac283..5a00f83 100644 --- a/src/Serilog.Sinks.Seq/project.json +++ b/src/Serilog.Sinks.Seq/project.json @@ -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" }, @@ -27,6 +27,7 @@ "System.Net.Http": "" }, "dependencies": { + "Serilog.Sinks.File": "3.1.1", "Serilog.Sinks.RollingFile": "3.0.0" } }, @@ -41,6 +42,7 @@ }, "dependencies": { "System.Net.Http": "4.1.0", + "Serilog.Sinks.File": "3.1.1", "Serilog.Sinks.RollingFile": "3.0.0", "System.Threading.Timer": "4.0.1" } From 8072d2ebcf9b4acf98acb484fa496a25a2bd7db9 Mon Sep 17 00:00:00 2001 From: Luke Williams Date: Fri, 6 Jan 2017 12:29:21 +1000 Subject: [PATCH 3/4] Fixing typo in documentation --- src/Serilog.Sinks.Seq/SeqLoggerConfigurationExtensions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Serilog.Sinks.Seq/SeqLoggerConfigurationExtensions.cs b/src/Serilog.Sinks.Seq/SeqLoggerConfigurationExtensions.cs index cc00650..3a3e9d4 100644 --- a/src/Serilog.Sinks.Seq/SeqLoggerConfigurationExtensions.cs +++ b/src/Serilog.Sinks.Seq/SeqLoggerConfigurationExtensions.cs @@ -47,7 +47,7 @@ public static class SeqLoggerConfigurationExtensions /// 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 with this setting. - /// Used to construct the HttpClient that will send the log meesages to Seq. + /// Used to construct the HttpClient that will send the log messages to Seq. /// 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. @@ -131,7 +131,7 @@ public static LoggerConfiguration Seq( /// The minimum log event level required /// in order to write an event to the sink. /// A Seq API key that authenticates the client to the Seq server. - /// Used to construct the HttpClient that will send the log meesages to Seq. + /// Used to construct the HttpClient that will send the log messages to Seq. /// Use the compact log event format defined by /// Serilog.Formatting.Compact. Has no effect on /// durable log shipping. Requires Seq 3.3+. From 93c007c93e060ca4cad0cb1248420cf8ac332d05 Mon Sep 17 00:00:00 2001 From: Nicholas Blumhardt Date: Fri, 6 Jan 2017 13:35:02 +1000 Subject: [PATCH 4/4] Update dependency versions Since Serilog was updated from 2.2 to 2.3, it makes sense to bump the minor version and update other dependencies where possible. --- src/Serilog.Sinks.Seq/project.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Serilog.Sinks.Seq/project.json b/src/Serilog.Sinks.Seq/project.json index 5a00f83..638713c 100644 --- a/src/Serilog.Sinks.Seq/project.json +++ b/src/Serilog.Sinks.Seq/project.json @@ -1,5 +1,5 @@ { - "version": "3.1.2-*", + "version": "3.2.0-*", "description": "Serilog sink that writes to the Seq log server over HTTP/S.", "authors": [ "Serilog Contributors" ], "packOptions": { @@ -27,8 +27,8 @@ "System.Net.Http": "" }, "dependencies": { - "Serilog.Sinks.File": "3.1.1", - "Serilog.Sinks.RollingFile": "3.0.0" + "Serilog.Sinks.File": "3.2.0", + "Serilog.Sinks.RollingFile": "3.3.0" } }, "netstandard1.1": { @@ -42,8 +42,8 @@ }, "dependencies": { "System.Net.Http": "4.1.0", - "Serilog.Sinks.File": "3.1.1", - "Serilog.Sinks.RollingFile": "3.0.0", + "Serilog.Sinks.File": "3.2.0", + "Serilog.Sinks.RollingFile": "3.3.0", "System.Threading.Timer": "4.0.1" } }