Modbus and Epever. What am I doing wrong?!?!

For years I was able to communicate with my Epever solar charge controllers. I upgraded to 2023.9.0 and later 2023.9.2 and now I can’t get them to work. Below is the relevant portion of my configuration.yaml

modbus:
  - type: rtuovertcp
    host: 10.0.1.59
    port: 8088
    name: epever
    retry_on_empty: true
    close_comm_on_error: true
    retries: 10
    sensors:
    - name: EPEver_Solar_Current # 3101
      device_class: current
      unit_of_measurement: A
      slave: 1
      address: 12545
      input_type: input
      scale: 0.01
      precision: 2
    - name: EPEver_Battery_Charging_Current # 3105
      device_class: current
      unit_of_measurement: A
      slave: 1
      address: 12549
      input_type: input
      scale: 0.01
      precision: 2
    - name: EPEver_Energy_Generated_today  # 330C-330D
      unit_of_measurement: 'kWh'
      slave: 1
      address: 13068
      input_type: input
      scale: 0.01
      precision: 2
      state_class: 'measurement'
      device_class: energy
    - name: EPEver_Energy_Generated_forever  # 3312
      unit_of_measurement: kWh
      slave: 1
      address: 13074
      input_type: input
      scale: 0.01
      precision: 2

Has modbus support been discontinued as of 2023.9.x?

Am I doing something wrong?

Do I need to delete my HA setup and start over from scratch?

What am I doing wrong?!