@prometheus-io/lezer-promql 0.53.0 → 0.53.2

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 +14 -1
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,6 +1,19 @@
1
1
  # Changelog
2
2
 
3
- ## unreleased
3
+ ## 2.53.2 / 2024-08-09
4
+
5
+ Fix a bug where Prometheus would crash with a segmentation fault if a remote-read
6
+ request accessed a block on disk at about the same time as TSDB created a new block.
7
+
8
+ [BUGFIX] Remote-Read: Resolve occasional segmentation fault on query. #14515,#14523
9
+
10
+ ## 2.53.1 / 2024-07-10
11
+
12
+ Fix a bug which would drop samples in remote-write if the sending flow stalled
13
+ for longer than it takes to write one "WAL segment". How long this takes depends on the size
14
+ of your Prometheus; as a rough guide with 10 million series it is about 2-3 minutes.
15
+
16
+ * [BUGFIX] Remote-write: stop dropping samples in catch-up #14446
4
17
 
5
18
  ## 2.53.0 / 2024-06-16
6
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prometheus-io/lezer-promql",
3
- "version": "0.53.0",
3
+ "version": "0.53.2",
4
4
  "description": "lezer-based PromQL grammar",
5
5
  "main": "dist/index.cjs",
6
6
  "type": "module",