Hangfire.Pro 1.4.8 - missing BatchSucceeded time in dashboard

With this upgrade we noticed that the batch succeeded time is missing from the hangfire dashboard. Upon further investigation noticed that a BatchSucceededState entry with time information in Redis (we use redis store) is missing. Was this intentional with non-serialising immutable types or is it a bug?

For example in 1.4.7 you had these two entries,
{
“$type”: “Hangfire.Batches.States.BatchSucceededState, Hangfire.Pro”,
“Name”: “Succeeded”,
“Reason”: null,
“Action”: 0,
“IsFinal”: true,
“CreatedAt”: “2017-03-20T03:41:59.0890572Z”
}
{
“$type”: “Hangfire.Batches.States.BatchStartedState, Hangfire.Pro”,
“Name”: “Started”,
“Reason”: null,
“Action”: 1,
“IsFinal”: false,
“CreatedAt”: “2017-03-20T03:41:56.7330486Z”
}

But in 1.4.8 you only had this,
{
“$type”: “Hangfire.Batches.States.BatchStartedState, Hangfire.Pro”,
“CreatedAt”: “2017-03-20T22:21:03.6507651Z”
}

Thanks,
Bharatha

Seems like this is fixed with hangfire 1.4.9