ReleaseCloudflare (Workers AI)Cloudflare (Workers AI)published Nov 11, 2025seen Jun 26

cloudflare/pint v0.77.0

cloudflare/pint

Open original ↗

Captured source

source ↗
published Nov 11, 2025seen Jun 26captured 2whttp 200method plain

v0.77.0

Repository: cloudflare/pint

Tag: v0.77.0

Published: 2025-11-11T13:49:33Z

Prerelease: no

Release notes:

Added

  • The [promql/impossible](checks/promql/impossible.md) check will now warn about aggregations and

and binary operations that try to operate on labels that are already removed in the query. Example:

- record: foo
expr: sum(foo) / on(cluster) sum(bar)

The above tries to join two series on the cluster label, but sum(...) already removed labels from the results on both side, so there will be no such label on join on.

  • The [promql/impossible](checks/promql/impossible.md) check will now warn about label joins

using group_left(...) and group_right(...) that are not possible or not used in any way.

Fixed

  • For queries using binary expressions between two vectors Prometheus will remove the metric name

from resulting series, pint will now also apply the same logic when checking queries.