@prometheus-io/lezer-promql 0.311.1 → 0.311.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.11.3 / 2026-04-27
4
+
5
+ This release fixes mutiple security issues.
6
+
7
+ We would like to thank the following people for the responsible disclosures:
8
+ - Shadowbyte (4c1dr3aper) - Charlie Lewis for the Remote-Read snappy decode vulnerability.
9
+ - Brett Gervasoni for the AzureAD OAuth `client_secret` vulnerability.
10
+ - @iiihaiii and @Ngocnn97 for the Old UI XSS vulnerability.
11
+
12
+ - [SECURITY] AzureAD remote write: Fix OAuth `client_secret` being exposed in plaintext via `/-/config` endpoint. GHSA-wg65-39gg-5wfj / CVE-2026-42151 #18590
13
+ - [SECURITY] Remote-read: Reject snappy-compressed requests whose declared decoded length exceeds the decode limit. GHSA-8rm2-7qqf-34qm / CVE-2026-42154 #18584
14
+ - [SECURITY] UI: Fix stored XSS via unescaped `le` label values in old UI heatmap chart tick labels. GHSA-fw8g-cg8f-9j28 #18588
15
+
16
+ ## 3.11.2 / 2026-04-13
17
+
18
+ This release has a fix for a Stored XSS vulnerability that can be triggered via crafted metric names and label values in Prometheus web UI tooltips and metrics explorer. Thanks to Duc Anh Nguyen from TinyxLab for reporting it.
19
+
20
+ - [SECURITY] UI: Fix stored XSS via unescaped metric names and labels. CVE-2026-40179. #18506
21
+ - [ENHANCEMENT] Consul SD: Introduce `health_filter` field for Health API filtering. #18499
22
+ - [BUGFIX] Consul SD: Fix filter parameter being incorrectly applied to the Health API. #18499
23
+
3
24
  ## 3.11.1 / 2026-04-07
4
25
 
5
26
  - [BUGFIX] Tracing: Fix startup failure for OTLP HTTP tracing with `insecure: true`. #18469
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prometheus-io/lezer-promql",
3
- "version": "0.311.1",
3
+ "version": "0.311.3",
4
4
  "description": "lezer-based PromQL grammar",
5
5
  "main": "dist/index.cjs",
6
6
  "type": "module",