@prometheus-io/lezer-promql 0.47.0 → 0.48.0-rc.0
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.
- package/CHANGELOG.md +35 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.48.0-rc.0 / 2023-10-10
|
|
4
|
+
|
|
5
|
+
* [CHANGE] Remote-write: respect Retry-After header on 5xx errors. #12677
|
|
6
|
+
* [FEATURE] Alerting: Add AWS SigV4 authentication support for Alertmanager endpoints. #12774
|
|
7
|
+
* [FEATURE] Promtool: Add support for histograms in the TSDB dump command. #12775
|
|
8
|
+
* [FEATURE] PromQL: Add warnings (and annotations) to PromQL query results. #12152 #12982 #12988
|
|
9
|
+
* [FEATURE] Remote-write: Add Azure AD OAuth authentication support for remote write requests. #12572
|
|
10
|
+
* [ENHANCEMENT] Remote-write: Add a header to count retried remote write requests. #12729
|
|
11
|
+
* [ENHANCEMENT] TSDB: Improve query performance by re-using iterator when moving between series. #12757
|
|
12
|
+
* [ENHANCEMENT] UI: Move /targets page discovered labels to expandable section #12824
|
|
13
|
+
* [ENHANCEMENT] TSDB: Optimize WBL loading by not sending empty buffers over channel. #12808
|
|
14
|
+
* [ENHANCEMENT] TSDB: Reply WBL mmap markers concurrently. #12801
|
|
15
|
+
* [ENHANCEMENT] Promtool: Add support for specifying series matchers in the TSDB analyze command. #12842
|
|
16
|
+
* [ENHANCEMENT] PromQL: Prevent Prometheus from overallocating memory on subquery with large amount of steps. #12734
|
|
17
|
+
* [ENHANCEMENT] PromQL: Add warning when monotonicity is forced in the input to histogram_quantile. #12931
|
|
18
|
+
* [ENHANCEMENT] Scraping: Optimize sample appending by reducing garbage. #12939
|
|
19
|
+
* [ENHANCEMENT] Storage: Reduce memory allocations in queries that merge series sets. #12938
|
|
20
|
+
* [ENHANCEMENT] UI: Show group interval in rules display. #12943
|
|
21
|
+
* [ENHANCEMENT] Scraping: Save memory when scraping by delaying creation of buffer. #12953
|
|
22
|
+
* [ENHANCEMENT] Agent: Allow ingestion of out-of-order samples. #12897
|
|
23
|
+
* [ENHANCEMENT] Promtool: Improve support for native histograms in TSDB analyze command. #12869
|
|
24
|
+
* [BUGFIX] SD: Ensure that discovery managers are properly canceled. #10569
|
|
25
|
+
* [BUGFIX] TSDB: Fix PostingsForMatchers race with creating new series. #12558
|
|
26
|
+
* [BUGFIX] TSDB: Fix handling of explicit counter reset header in histograms. #12772
|
|
27
|
+
* [BUGFIX] SD: Validate HTTP client configuration in HTTP, EC2, Azure, Uyuni, PuppetDB, and Lightsail SDs. #12762 #12811 #12812 #12815 #12814 #12816
|
|
28
|
+
* [BUGFIX] TSDB: Fix counter reset edgecases causing native histogram panics. #12838
|
|
29
|
+
* [BUGFIX] TSDB: Fix duplicate sample detection at chunk size limit. #12874
|
|
30
|
+
* [BUGFIX] Promtool: Fix errors not being reported in check rules command. #12715
|
|
31
|
+
* [BUGFIX] TSDB: Avoid panics reported in logs when head initialization takes a long time. #12876
|
|
32
|
+
* [BUGFIX] TSDB: Ensure that WBL is repaired when possible. #12406
|
|
33
|
+
|
|
34
|
+
## 2.47.1 / 2023-10-04
|
|
35
|
+
|
|
36
|
+
* [BUGFIX] Fix duplicate sample detection at chunk size limit #12874
|
|
37
|
+
|
|
3
38
|
## 2.47.0 / 2023-09-06
|
|
4
39
|
|
|
5
40
|
This release adds an experimental OpenTelemetry (OTLP) Ingestion feature,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prometheus-io/lezer-promql",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.48.0-rc.0",
|
|
4
4
|
"description": "lezer-based PromQL grammar",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"type": "module",
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@lezer/generator": "^1.2.3",
|
|
34
|
-
"@lezer/
|
|
35
|
-
"@lezer/
|
|
34
|
+
"@lezer/highlight": "^1.1.6",
|
|
35
|
+
"@lezer/lr": "^1.3.6"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
|
-
"@lezer/
|
|
39
|
-
"@lezer/
|
|
38
|
+
"@lezer/highlight": "^1.1.2",
|
|
39
|
+
"@lezer/lr": "^1.2.3"
|
|
40
40
|
}
|
|
41
41
|
}
|