Rest sensor stopped working after upgrading to 107

I have few rest sensors (see configuration of one below) which were working fine for ages. Today I’ve upgraded to 0.107.6 and all of them stopped pulling the data completely. In fact, they are not even listed in entities list in config panel. I also don’t see anything in logs. Any ideas what’s wrong?

- platform: rest
  name: my_weather
  resource: 'https://piekacz.pl/ha/weather.php?format=json'
  json_attributes:
    - temperatura
    - odczuwalna
    - pm25
    - pm25_percent
    - pm10
    - pm10_percent
    - powietrze
    - powietrze_opis
    - wilgotnosc
    - cisnienie
    - wiatr_predkosc
    - wiatr_kierunek
    - czas
  value_template: '{{ value_json.temperatura }}'
  unit_of_measurement: '°C'
  device_class: 'temperature'
  force_update: true

- platform: rest
  name: worktime
  resource: 'https://piekacz.pl/ha/worktime.php?format=json'
  json_attributes:
    - history
    - day
    - week
    - overLimit
  value_template: '{{ value_json.day }}'
  unit_of_measurement: 'h'

- platform: rest
  name: cycling
  resource: 'https://piekacz.pl/ha/cycling.php?format=json'
  json_attributes:
    - distance_ytd
    - distance_mtd
  value_template: '{{ value_json.distance_ytd }}'
  unit_of_measurement: 'm'

I’ve downgraded to 0.105.5 and everything is working fine. Anything above and it stops. Am I the only one?

Ok, I’ve tracked it down. The problem was with jsonpath and jsonpath-rw components conflict. This resolved the issue:

pip uninstall homeassistant-cli
pip uninstall jsonpath-rw