diff --git a/nuspecs/Hangfire.Core.nuspec b/nuspecs/Hangfire.Core.nuspec
index b35a2c2fe..293c004d0 100644
--- a/nuspecs/Hangfire.Core.nuspec
+++ b/nuspecs/Hangfire.Core.nuspec
@@ -20,6 +20,12 @@ https://www.hangfire.io/
Hangfire OWIN Long-Running Background Fire-And-Forget Delayed Recurring Tasks Jobs Scheduler Threading Queues
https://www.hangfire.io/blog/
+1.8.0-beta4
+• Added – Dark mode support for Dashboard UI configurable with the `UseDarkModeSupportForDashboard` method.
+• Added – Allow to add custom JavaScript and CSS files to the Dashboard UI via the `DashboardRoutes` class.
+• Added – Ability to use custom formattable resource identifiers for the `DisableConcurrentExecutionAttribute`.
+• Changed – Increase the default value for the `BackgroundJobServerOptions.StopTimeout` to 500 ms.
+
1.8.0-beta3
• Added – Introduce the `Job.Queue` property, so jobs now can have their own queue specified.
• Added – Method overloads to create recurring jobs directly with a custom default queue.
diff --git a/nuspecs/Hangfire.SqlServer.nuspec b/nuspecs/Hangfire.SqlServer.nuspec
index 71debdde9..d5a32a19b 100644
--- a/nuspecs/Hangfire.SqlServer.nuspec
+++ b/nuspecs/Hangfire.SqlServer.nuspec
@@ -15,6 +15,12 @@
Hangfire SqlServer SqlAzure LocalDB
https://www.hangfire.io/blog/
+1.8.0-beta4
+• Added – `TryAutoDetectSchemaDependentOptions` option to automatically enable options based on schema.
+• Changed – `GetJobData` now populates `JobData.ParametersSnapshot` property to avoid additional round-trips.
+• Changed – Polling delay when `QueuePollInterval` is set to zero now defaults to 200 ms.
+• Deprecated – `UsePageLocksOnDequeue` option is now obsolete and doesn't affect anything.
+
1.8.0-beta3
• Added – Implement the `Connection.GetUtcDateTime` feature to make work new changes in schedulers.
• Changed – Display scheduled and processing jobs in the ascending order in Dashboard UI.
diff --git a/nuspecs/Hangfire.nuspec b/nuspecs/Hangfire.nuspec
index f201c7034..c574c575d 100644
--- a/nuspecs/Hangfire.nuspec
+++ b/nuspecs/Hangfire.nuspec
@@ -20,6 +20,22 @@ https://www.hangfire.io/
Hangfire AspNet MVC AspNetCore SqlServer Long-Running Background Fire-And-Forget Delayed Recurring Tasks Jobs Scheduler Threading Queues
https://www.hangfire.io/blog/
+1.8.0-beta4
+
+Hangfire.Core
+
+• Added – Dark mode support for Dashboard UI configurable with the `UseDarkModeSupportForDashboard` method.
+• Added – Allow to add custom JavaScript and CSS files to the Dashboard UI via the `DashboardRoutes` class.
+• Added – Ability to use custom formattable resource identifiers for the `DisableConcurrentExecutionAttribute`.
+• Changed – Increase the default value for the `BackgroundJobServerOptions.StopTimeout` to 500 ms.
+
+Hangfire.SqlServer
+
+• Added – `TryAutoDetectSchemaDependentOptions` option to automatically enable options based on schema.
+• Changed – `GetJobData` now populates `JobData.ParametersSnapshot` property to avoid additional round-trips.
+• Changed – Polling delay when `QueuePollInterval` is set to zero now defaults to 200 ms.
+• Deprecated – `UsePageLocksOnDequeue` option is now obsolete and doesn't affect anything.
+
1.8.0-beta3
Hangfire.Core