@prometheus-io/lezer-promql 0.303.1 → 0.304.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 +25 -6
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
##
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
* [
|
|
8
|
-
* [
|
|
3
|
+
## 3.4.0 / 2025-05-17
|
|
4
|
+
|
|
5
|
+
* [CHANGE] Config: Make setting out-of-order native histograms feature (`--enable-feature=ooo-native-histograms`) a no-op. Out-of-order native histograms are now always enabled when `out_of_order_time_window` is greater than zero and `--enable-feature=native-histograms` is set. #16207
|
|
6
|
+
* [FEATURE] OTLP translate: Add feature flag for optionally translating OTel explicit bucket histograms into native histograms with custom buckets. #15850
|
|
7
|
+
* [FEATURE] OTLP translate: Add option to receive OTLP metrics without translating names or attributes. #16441
|
|
8
|
+
* [FEATURE] PromQL: allow arithmetic operations in durations in PromQL parser. #16249
|
|
9
|
+
* [FEATURE] OTLP receiver: Add primitive support for ingesting OTLP delta metrics as-is. #16360
|
|
10
|
+
* [ENHANCEMENT] PromQL: histogram_fraction for bucket histograms. #16095
|
|
11
|
+
* [ENHANCEMENT] TSDB: add `prometheus_tsdb_wal_replay_unknown_refs_total` and `prometheus_tsdb_wbl_replay_unknown_refs_total` metrics to track unknown series references during WAL/WBL replay. #16166
|
|
12
|
+
* [ENHANCEMENT] Scraping: Add config option for escaping scheme request. #16066
|
|
13
|
+
* [ENHANCEMENT] Config: Add global config option for convert_classic_histograms_to_nhcb. #16226
|
|
14
|
+
* [ENHANCEMENT] Alerting: make batch size configurable (`--alertmanager.notification-batch-size`). #16254
|
|
15
|
+
* [PERF] Kubernetes SD: make endpointSlice discovery more efficient. #16433
|
|
16
|
+
* [BUGFIX] Config: Fix auto-reload on changes to rule and scrape config files. #16340
|
|
17
|
+
* [BUGFIX] Scraping: Skip native histogram series if ingestion is disabled. #16218
|
|
18
|
+
* [BUGFIX] TSDB: Handle metadata/tombstones/exemplars for duplicate series during WAL replay. #16231
|
|
19
|
+
* [BUGFIX] TSDB: Avoid processing exemplars outside the valid time range during WAL replay. #16242
|
|
20
|
+
* [BUGFIX] Promtool: Add feature flags for PromQL features. #16443
|
|
21
|
+
* [BUGFIX] Rules: correct logging of alert name & template data. #15093
|
|
22
|
+
* [BUGFIX] PromQL: Use arithmetic mean for `histogram_stddev()` and `histogram_stdvar()` . #16444
|
|
9
23
|
|
|
10
24
|
## 3.3.0 / 2025-04-15
|
|
11
25
|
|
|
@@ -180,6 +194,11 @@ This release includes new features such as a brand new UI and UTF-8 support enab
|
|
|
180
194
|
* [BUGFIX] Autoreload: Reload invalid yaml files. #14947
|
|
181
195
|
* [BUGFIX] Scrape: Do not override target parameter labels with config params. #11029
|
|
182
196
|
|
|
197
|
+
## 2.53.4 / 2025-03-18
|
|
198
|
+
|
|
199
|
+
* [BUGFIX] Runtime: fix GOGC is being set to 0 when installed with empty prometheus.yml file resulting high cpu usage. #16090
|
|
200
|
+
* [BUGFIX] Scrape: fix dropping valid metrics after previous scrape failed. #16220
|
|
201
|
+
|
|
183
202
|
## 2.53.3 / 2024-11-04
|
|
184
203
|
|
|
185
204
|
* [BUGFIX] Scraping: allow multiple samples on same series, with explicit timestamps. #14685, #14740
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prometheus-io/lezer-promql",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.304.0",
|
|
4
4
|
"description": "lezer-based PromQL grammar",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"type": "module",
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@lezer/generator": "^1.7.
|
|
35
|
-
"@lezer/highlight": "^1.2.
|
|
34
|
+
"@lezer/generator": "^1.7.3",
|
|
35
|
+
"@lezer/highlight": "^1.2.1",
|
|
36
36
|
"@lezer/lr": "^1.4.2",
|
|
37
|
-
"@rollup/plugin-node-resolve": "^16.0.
|
|
37
|
+
"@rollup/plugin-node-resolve": "^16.0.1"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"@lezer/highlight": "^1.1.2",
|