Mqtt cover - incorrect logbook entry for opening and closing states

Hi all. I discovered that after one of the latest upgrades (currently on 0.118.5) home assistant log is reporting incorrect state for opening and closing states . What is odd is that the lovelace detects that the garage is on either opening or closing state by showing the arrow up /arrow down while door is moving but when you look at the logbook, both states show “was closed” during movement

image

Is anyone experiencing something similar?
Here is my yaml configuration

cover:
  - platform: mqtt
    name: "Garage Door"
    state_topic: "garage/door/1/status"
    command_topic: "garage/door/1/action"
    availability_topic: "GarHAge/availability"
    position_topic: "garage/door/1/position"
    set_position_topic: "garage/door/1/setposition"
    qos: 0
    optimistic: false
    retain: false
    payload_open: "OPEN"
    payload_close: "CLOSE"
    payload_stop: "STATE"
    state_open: "open"
    state_closed: "closed"
    state_opening: "opening"
    state_closing: "closing"
    payload_available: "online"
    payload_not_available: "offline"

Thanks!