Skip to content

Releases: ziti/weewx-reservoir

weewx-reservoir 1.1.0

Choose a tag to compare

@github-actions github-actions released this 01 Sep 01:06

Added

  • Response caching: the USGS feed is fetched at most once per
    min_fetch_interval seconds (default 900) and the reading is reused in
    between.
  • Stale-feed guard: a reading whose own timestamp is older than
    max_reading_age seconds (default 3600) is skipped rather than pinned into
    the archive.
  • Configurable HTTP timeout (default 10s).
  • Accepts the older enabled config key as an alias for enable.
  • Repo scaffolding: GPLv3 license, community-health files, ruff + pytest
    config, GitHub Actions CI, and a tag-driven release workflow.

Changed

  • RDB parsing uses the newest data row and parses its reading timestamp.
  • Import StdService from weewx.engine.
  • Build the request with params= instead of a hand-assembled query string.
  • Narrower exception handling, with tracebacks logged for unexpected errors.
  • shutDown() closes the HTTP session.