@prometheus-io/lezer-promql 0.305.0 → 0.305.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 +28 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,34 @@
2
2
 
3
3
  ## main / unreleased
4
4
 
5
+ ## 3.5.3 / 2026-04-27
6
+
7
+ This release fixes mutiple security issues.
8
+
9
+ We would like to thank the following people for the responsible disclosures:
10
+ - Shadowbyte (4c1dr3aper) - Charlie Lewis for the Remote-Read snappy decode vulnerability.
11
+ - Brett Gervasoni for the AzureAD OAuth `client_secret` vulnerability.
12
+ - @iiihaiii and @Ngocnn97 for the Old UI XSS vulnerability.
13
+
14
+
15
+ - [SECURITY] AzureAD remote write: Fix OAuth `client_secret` being exposed in plaintext via `/-/config` endpoint. GHSA-wg65-39gg-5wfj / CVE-2026-42151 #18587
16
+ - [SECURITY] Remote-Write: Reject snappy-compressed requests whose declared decoded length exceeds the decode limit. #18591
17
+ - [SECURITY] Remote-read: Reject snappy-compressed requests whose declared decoded length exceeds the decode limit. GHSA-8rm2-7qqf-34qm / CVE-2026-42154 #18585
18
+ - [SECURITY] UI: Fix stored XSS via unescaped `le` label values in old UI heatmap chart tick labels. GHSA-fw8g-cg8f-9j28 #18589
19
+
20
+ ## 3.5.2 / 2026-04-13
21
+
22
+ 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.
23
+
24
+ * [SECURITY] UI: Fix stored XSS via unescaped metric names and labels. CVE-2026-40179. #18507
25
+ * [PERF] Regex: Stop calling Simplify. #17908
26
+
27
+ ## 3.5.1 / 2026-01-07
28
+
29
+ No code changes, just some dependency updates:
30
+ * Docker library updated from 28.2.2 to 28.5.2. #17821
31
+ * Built with Go 1.24.11.
32
+
5
33
  ## 3.5.0 / 2025-07-14
6
34
 
7
35
  * [FEATURE] PromQL: Add experimental type and unit metadata labels, behind feature flag `type-and-unit-labels`. #16228 #16632 #16718 #16743
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prometheus-io/lezer-promql",
3
- "version": "0.305.0",
3
+ "version": "0.305.3",
4
4
  "description": "lezer-based PromQL grammar",
5
5
  "main": "dist/index.cjs",
6
6
  "type": "module",