github pathofleastresistor/activity-manager 0.0.5
Sensor Entities! Breaking changes

latest releases: 0.3.0, 0.0.7, 0.0.6...
2 years ago

PLEASE READ before upgrading. There are major breaking changes with 0.0.5.

  • Entities are now associated to the integration. This does mean the entity domain moves from activity_manager to sensor. If you are doing any templating, automation, etc., you will need to update them.

Example:
If you have a condition for an automation to check if something is due, you previously would have done:
{{ states.activity_manager | selectattr('attributes.category', 'equalto', 'Workout') | map(attribute='state') | map('as_datetime') | reject(">", now()) | list | count > 0 }}

Now you would do:
{{ states.sensor | selectattr('attributes.integration', 'eq', 'activity_manager') | selectattr('attributes.category', 'equalto', 'Workout') | map(attribute='state') | map('as_datetime') | reject(">", now()) | list | count > 0 }}

What's Changed

New Contributors

Full Changelog: 0.0.4...0.0.5

Don't miss a new activity-manager release

NewReleases is sending notifications on new releases.