diff --git a/ChangeLog.md b/ChangeLog.md index c67d06a..a6605f4 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,11 +1,19 @@ ## Change log +### v1.9.0 (2022-12-10) +- Update to Hangfire.Core 1.7.32 +- Update MongoDB.Driver to 2.18.0 +- Using manual serialization to not be subject to serializer conventions (#328) +- Returns IGlobalConfiguration instead of MongoStorage in all UseMongoStorage (#317) +- Added indexes (#330) +- Merge JobQueueDto fields into JobDto (schema change, requires migration) + ### v1.7.3 (2022-08-24) - Fix hardcoded timeout in MongoConnectException message (#315) - Update to Hangfire.Core 1.7.31 - Update MongoDB.Driver to 2.17.1 -- + ### v1.7.2 (2022-06-13) - Update to Hangfire.Core 1.7.30 diff --git a/src/Hangfire.Mongo.Sample.ASPNetCore/Hangfire.Mongo.Sample.ASPNetCore.csproj b/src/Hangfire.Mongo.Sample.ASPNetCore/Hangfire.Mongo.Sample.ASPNetCore.csproj index c0172a6..6302cc5 100644 --- a/src/Hangfire.Mongo.Sample.ASPNetCore/Hangfire.Mongo.Sample.ASPNetCore.csproj +++ b/src/Hangfire.Mongo.Sample.ASPNetCore/Hangfire.Mongo.Sample.ASPNetCore.csproj @@ -2,7 +2,7 @@ net6.0 - 1.7.3 + 1.9.0 MongoDB storage implementation for Hangfire (background job system for ASP.NET applications). Copyright © 2014-2019 Sergey Zwezdin, Martin Lobger, Jonas Gottschau Sergey Zwezdin, Martin Lobger, Jonas Gottschau diff --git a/src/Hangfire.Mongo.Sample.CosmosDB/Hangfire.Mongo.Sample.CosmosDB.csproj b/src/Hangfire.Mongo.Sample.CosmosDB/Hangfire.Mongo.Sample.CosmosDB.csproj index fce7eea..501f2eb 100644 --- a/src/Hangfire.Mongo.Sample.CosmosDB/Hangfire.Mongo.Sample.CosmosDB.csproj +++ b/src/Hangfire.Mongo.Sample.CosmosDB/Hangfire.Mongo.Sample.CosmosDB.csproj @@ -2,7 +2,7 @@ net6.0 - 1.7.3 + 1.9.0 MongoDB storage implementation for Hangfire (background job system for ASP.NET applications). Copyright © 2014-2019 Sergey Zwezdin, Martin Lobger, Jonas Gottschau Sergey Zwezdin, Martin Lobger, Jonas Gottschau diff --git a/src/Hangfire.Mongo.Sample.NETCore/Hangfire.Mongo.Sample.NETCore.csproj b/src/Hangfire.Mongo.Sample.NETCore/Hangfire.Mongo.Sample.NETCore.csproj index e1d0cc8..a4a0a86 100644 --- a/src/Hangfire.Mongo.Sample.NETCore/Hangfire.Mongo.Sample.NETCore.csproj +++ b/src/Hangfire.Mongo.Sample.NETCore/Hangfire.Mongo.Sample.NETCore.csproj @@ -4,7 +4,7 @@ Hangfire.Mongo.Sample.NETCore Exe Hangfire.Mongo.Sample.NETCore - 1.7.3 + 1.9.0 MongoDB storage implementation for Hangfire (background job system for ASP.NET applications). Copyright © 2014-2019 Sergey Zwezdin, Martin Lobger, Jonas Gottschau Sergey Zwezdin, Martin Lobger, Jonas Gottschau diff --git a/src/Hangfire.Mongo.Tests/Hangfire.Mongo.Tests.csproj b/src/Hangfire.Mongo.Tests/Hangfire.Mongo.Tests.csproj index e8919d9..f9c309d 100644 --- a/src/Hangfire.Mongo.Tests/Hangfire.Mongo.Tests.csproj +++ b/src/Hangfire.Mongo.Tests/Hangfire.Mongo.Tests.csproj @@ -26,7 +26,6 @@ - diff --git a/src/Hangfire.Mongo/Hangfire.Mongo.csproj b/src/Hangfire.Mongo/Hangfire.Mongo.csproj index c16f726..3e2ff3d 100644 --- a/src/Hangfire.Mongo/Hangfire.Mongo.csproj +++ b/src/Hangfire.Mongo/Hangfire.Mongo.csproj @@ -1,6 +1,6 @@ - 1.7.3 + 1.9.0 netstandard2.0 $(NoWarn);CS0618 true @@ -21,11 +21,14 @@ Sergey Zwezdin, Jonas Gottschau MongoDB storage implementation for Hangfire (background job system for ASP.NET applications). Hangfire AspNet OWIN MongoDB CosmosDB Long-Running Background Fire-And-Forget Delayed Recurring Tasks Jobs Scheduler Threading Queues - 1.7.3 - - Fix hardcoded timeout in MongoConnectException message (#315) - - Update to Hangfire.Core 1.7.31 - - Update MongoDB.Driver to 2.17.1 - + 1.9.0 + - Update to Hangfire.Core 1.7.32 + - Update MongoDB.Driver to 2.18.0 + - Using manual serialization to not be subject to serializer conventions (#328) + - Returns IGlobalConfiguration<MongoStorage > instead of MongoStorage in all UseMongoStorage (#317) + - Added indexes (#330) + - Merge JobQueueDto fields into JobDto (schema change, requires migration) + README.md https://github.com/sergeyzwezdin/Hangfire.Mongo