Dark_sky sensors is no longer updating

Hello,
I’ve a card with some value got from dark_sky sensor:

entities:
  - entity: sensor.forecast_1
  - entity: sensor.dark_sky_daytime_high_temperature_1
  - entity: sensor.dark_sky_overnight_low_temperature_1
  - entity: sensor.dark_sky_precip_probability_1
  - entity: sensor.forecast_2
  - entity: sensor.forecast_3
  - entity: sensor.forecast_4
  - entity: sensor.forecast_5
  - entity: sensor.forecast_6
  - entity: sensor.forecast_7
show_header_toggle: false
title: Forecast
type: entities

- platform: darksky
  name: "dark_sky"
  api_key: !secret dark_sky_api_key
  language: en
  scan_interval:
    days: 0
    hours: 0
    minutes: 10
    seconds: 00
    milliseconds: 0
  monitored_conditions:
    - apparent_temperature
    - apparent_temperature_high
    - apparent_temperature_low
    - cloud_cover
    - daily_summary
    - dew_point
    - hourly_summary
    - humidity
    - icon
    - minutely_summary
    - moon_phase
    - ozone
    - precip_accumulation
    - precip_intensity
    - precip_intensity_max
    - precip_probability
    - precip_type
    - pressure
    - summary
    - temperature
    - temperature_high
    - temperature_low
    - uv_index
    - visibility
    - wind_bearing
    - wind_speed
  forecast:
    - 0
    - 1
    - 2
    - 3
    - 4
    - 5
    - 6
    - 7
- platform: template
  sensors:
    forecast_1:
      entity_id: sensor.time
      friendly_name_template: >
        {{ ( as_timestamp(now()) + (1 * 86400) ) | timestamp_custom('%A %d %B') }}
      value_template: > 
        {{ states('sensor.dark_sky_icon_1') }}
      icon_template: >
        {%- set current = states('sensor.dark_sky_icon_1') %}
        {%- set mapper = {'rain':'pouring', 'cloudy':'cloudy', 'clear-day':'sunny', 'partly-cloudy-day':'partlycloudy', 'partly-cloudy-night
':'partlycloudy', 'snow':'snowy', 'fog':'fog', 'wind':'windy'} %}
        {{ 'mdi:weather-'+mapper[current] if current in mapper else 'mdi:help-circle' }} 
    forecast_2:
      entity_id: sensor.time
      friendly_name_template: >
        {{ ( as_timestamp(now()) + (2 * 86400) ) | timestamp_custom('%A %d %B') }}
      value_template: > 
        {{ states('sensor.dark_sky_icon_2') }}
      icon_template: >
        {%- set current = states('sensor.dark_sky_icon_2') %}
        {%- set mapper = {'rain':'pouring', 'cloudy':'cloudy', 'clear-day':'sunny', 'partly-cloudy-day':'partlycloudy', 'partly-cloudy-night
':'partlycloudy', 'snow':'snowy', 'fog':'fog', 'wind':'windy'} %}
        {{ 'mdi:weather-'+mapper[current] if current in mapper else 'mdi:help-circle' }} 
    forecast_3:
      entity_id: sensor.time
      friendly_name_template: >
        {{ ( as_timestamp(now()) + (3 * 86400) ) | timestamp_custom('%A %d %B') }}
      value_template: > 
        {{ states('sensor.dark_sky_icon_3') }}
      icon_template: >
        {%- set current = states('sensor.dark_sky_icon_3') %}
        {%- set mapper = {'rain':'pouring', 'cloudy':'cloudy', 'clear-day':'sunny', 'partly-cloudy-day':'partlycloudy', 'partly-cloudy-night
':'partlycloudy', 'snow':'snowy', 'fog':'fog', 'wind':'windy'} %}
        {{ 'mdi:weather-'+mapper[current] if current in mapper else 'mdi:help-circle' }} 
    forecast_4:
      entity_id: sensor.time
      friendly_name_template: >
        {{ ( as_timestamp(now()) + (4 * 86400) ) | timestamp_custom('%A %d %B') }} 
      value_template: > 
        {{ states('sensor.dark_sky_icon_4') }}
      icon_template: >
        {%- set current = states('sensor.dark_sky_icon_4') %}
        {%- set mapper = {'rain':'pouring', 'cloudy':'cloudy', 'clear-day':'sunny', 'partly-cloudy-day':'partlycloudy', 'partly-cloudy-night
':'partlycloudy', 'snow':'snowy', 'fog':'fog', 'wind':'windy'} %}
        {{ 'mdi:weather-'+mapper[current] if current in mapper else 'mdi:help-circle' }} 
    forecast_5:
      entity_id: sensor.time
      friendly_name_template: >
        {{ ( as_timestamp(now()) + (5 * 86400) ) | timestamp_custom('%A %d %B') }}
      value_template: > 
        {{ states('sensor.dark_sky_icon_5') }}
      icon_template: >
        {%- set current = states('sensor.dark_sky_icon_5') %}
        {%- set mapper = {'rain':'pouring', 'cloudy':'cloudy', 'clear-day':'sunny', 'partly-cloudy-day':'partlycloudy', 'partly-cloudy-night
':'partlycloudy', 'snow':'snowy', 'fog':'fog', 'wind':'windy'} %}
        {{ 'mdi:weather-'+mapper[current] if current in mapper else 'mdi:help-circle' }} 
    forecast_6:
      entity_id: sensor.time
      friendly_name_template: >
        {{ ( as_timestamp(now()) + (6 * 86400) ) | timestamp_custom('%A %d %B') }}
      value_template: > 
        {{ states('sensor.dark_sky_icon_6') }}
      icon_template: >
        {%- set current = states('sensor.dark_sky_icon_6') %}
        {%- set mapper = {'rain':'pouring', 'cloudy':'cloudy', 'clear-day':'sunny', 'partly-cloudy-day':'partlycloudy', 'partly-cloudy-night
':'partlycloudy', 'snow':'snowy', 'fog':'fog', 'wind':'windy'} %}
        {{ 'mdi:weather-'+mapper[current] if current in mapper else 'mdi:help-circle' }} 
    forecast_7:
      entity_id: sensor.time
      friendly_name_template: >
        {{ ( as_timestamp(now()) + (7 * 86400) ) | timestamp_custom('%A %d %B') }}
      value_template: > 
        {{ states('sensor.dark_sky_icon_7') }}
      icon_template: >
        {%- set current = states('sensor.dark_sky_icon_7') %}
        {%- set mapper = {'rain':'pouring', 'cloudy':'cloudy', 'clear-day':'sunny', 'partly-cloudy-day':'partlycloudy', 'partly-cloudy-night
':'partlycloudy', 'snow':'snowy', 'fog':'fog', 'wind':'windy'} %}
        {{ 'mdi:weather-'+mapper[current] if current in mapper else 'mdi:help-circle' }} 

Unfortunately the card stopped to sho correct forecast days.
In fact today 30th of march it shoes:

Do you have any idea why it happens?

I am having issues with the dark sky configuration too. I got a message in lovelace that some config lines are not longer valid since version 0.88. Not sure what to do now.

It is working now! My bad…

Me too. I had to modify the configuration file according to description in HA after breaking changes introduced by new version.