@prometheus-io/lezer-promql 0.48.0-rc.2 → 0.48.1

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 +8 -10
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,21 +1,16 @@
1
1
  # Changelog
2
2
 
3
- ## 2.48.0-rc.2 / 2023-11-02
3
+ ## 2.48.1 / 2023-12-08
4
4
 
5
- * [ENHANCEMENT] Scraping: Add configuration option for tracking staleness of scraped timestamps. #13060
6
- * [BUGFIX] Storage: Fix crash caused by incorrect mixed samples handling. #13055
7
- * [BUGFIX] TSDB: Fix compactor failures by adding min time to histogram chunks. #13062
8
-
9
- ## 2.48.0-rc.1 / 2023-10-24
5
+ * [BUGFIX] TSDB: Make the wlog watcher read segments synchronously when not tailing. #13224
6
+ * [BUGFIX] Agent: Participate in notify calls (fixes slow down in remote write handling introduced in 2.45). #13223
10
7
 
11
- * [BUGFIX] PromQL: Reduce inefficiency introduced by warnings/annotations and temporarily remove possible non-counter warnings. #13012
12
-
13
- ## 2.48.0-rc.0 / 2023-10-10
8
+ ## 2.48.0 / 2023-11-16
14
9
 
15
10
  * [CHANGE] Remote-write: respect Retry-After header on 5xx errors. #12677
16
11
  * [FEATURE] Alerting: Add AWS SigV4 authentication support for Alertmanager endpoints. #12774
17
12
  * [FEATURE] Promtool: Add support for histograms in the TSDB dump command. #12775
18
- * [FEATURE] PromQL: Add warnings (and annotations) to PromQL query results. #12152 #12982 #12988
13
+ * [FEATURE] PromQL: Add warnings (and annotations) to PromQL query results. #12152 #12982 #12988 #13012
19
14
  * [FEATURE] Remote-write: Add Azure AD OAuth authentication support for remote write requests. #12572
20
15
  * [ENHANCEMENT] Remote-write: Add a header to count retried remote write requests. #12729
21
16
  * [ENHANCEMENT] TSDB: Improve query performance by re-using iterator when moving between series. #12757
@@ -31,6 +26,7 @@
31
26
  * [ENHANCEMENT] Scraping: Save memory when scraping by delaying creation of buffer. #12953
32
27
  * [ENHANCEMENT] Agent: Allow ingestion of out-of-order samples. #12897
33
28
  * [ENHANCEMENT] Promtool: Improve support for native histograms in TSDB analyze command. #12869
29
+ * [ENHANCEMENT] Scraping: Add configuration option for tracking staleness of scraped timestamps. #13060
34
30
  * [BUGFIX] SD: Ensure that discovery managers are properly canceled. #10569
35
31
  * [BUGFIX] TSDB: Fix PostingsForMatchers race with creating new series. #12558
36
32
  * [BUGFIX] TSDB: Fix handling of explicit counter reset header in histograms. #12772
@@ -40,6 +36,8 @@
40
36
  * [BUGFIX] Promtool: Fix errors not being reported in check rules command. #12715
41
37
  * [BUGFIX] TSDB: Avoid panics reported in logs when head initialization takes a long time. #12876
42
38
  * [BUGFIX] TSDB: Ensure that WBL is repaired when possible. #12406
39
+ * [BUGFIX] Storage: Fix crash caused by incorrect mixed samples handling. #13055
40
+ * [BUGFIX] TSDB: Fix compactor failures by adding min time to histogram chunks. #13062
43
41
 
44
42
  ## 2.47.1 / 2023-10-04
45
43
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prometheus-io/lezer-promql",
3
- "version": "0.48.0-rc.2",
3
+ "version": "0.48.1",
4
4
  "description": "lezer-based PromQL grammar",
5
5
  "main": "dist/index.cjs",
6
6
  "type": "module",