Washing machine automation doesn't work

Hello,

after HA upgrading from 0.115.2 to 0.115.3, my washing machine notify stops to work. Anyone has same problem? How can I solve it?

Following automation and input_boolean snippet configuration:
Input boolean section:

  lavatrice_switch:
    name: stato lavatrice
    initial: off

Automation Section

  - alias: "Stop lavatrice"
    initial_state: 'true'
    trigger:
      platform: numeric_state
      entity_id: sensor.power_lavatrice
      below: '1'
      for:
        minutes: 5
    condition:
    - condition: state
      entity_id: input_boolean.lavatrice_switch
      state: 'on'
    action:
      - service: notify.telegram
        data:
          message: >
            La lavatrice ha completato il lavaggio
      - service: input_boolean.turn_off
        entity_id: input_boolean.lavatrice_switch
  
  - alias: "Avvio lavatrice"
    initial_state: 'true'
    trigger:
      - platform: numeric_state
        entity_id: sensor.power_lavatrice
        above: '10'
        for:
          minutes: 2
    condition:
    - condition: state
      entity_id: input_boolean.lavatrice_switch
      state: 'off'        
    action:
      - service: notify.telegram
        data:
          message: "La lavatrice รจ partita."
      - service: input_boolean.turn_on
        entity_id: input_boolean.lavatrice_switch