@prometheus-io/lezer-promql 0.301.0-rc.1 → 0.302.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 +21 -5
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,11 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
## unreleased
|
|
4
4
|
|
|
5
|
-
## 3.
|
|
6
|
-
|
|
7
|
-
* [
|
|
8
|
-
|
|
9
|
-
|
|
5
|
+
## 3.2.0 RC0 / 2025-01-29
|
|
6
|
+
|
|
7
|
+
* [CHANGE] relabel: Replace actions can now use UTF-8 characters in `targetLabel` field. Note that `$<chars>` or `${<chars>}` will be expanded. This also apply to `replacement` field for `LabelMap` action. #15851
|
|
8
|
+
* [CHANGE] rulefmt: Rule names can use UTF-8 characters, except `{` and `}` characters (due to common mistake checks). #15851
|
|
9
|
+
* [FEATURE] remote/otlp: Add feature flag `otlp-deltatocumulative` to support conversion from delta to cumulative. #15165
|
|
10
|
+
* [ENHANCEMENT] openstack SD: Discover Octavia loadbalancers. #15539
|
|
11
|
+
* [ENHANCEMENT] scrape: Add metadata for automatic metrics to WAL for `metadata-wal-records` feature. #15837
|
|
12
|
+
* [ENHANCEMENT] promtool: Support linting of scrape interval, through lint option `too-long-scrape-interval`. #15719
|
|
13
|
+
* [ENHANCEMENT] promtool: Add --ignore-unknown-fields option. #15706
|
|
14
|
+
* [ENHANCEMENT] ui: Make "hide empty rules" and hide empty rules" persistent #15807
|
|
15
|
+
* [ENHANCEMENT] web/api: Add a limit parameter to `/query` and `/query_range`. #15552
|
|
16
|
+
* [ENHANCEMENT] api: Add fields Node and ServerTime to `/status`. #15784
|
|
17
|
+
* [BUGFIX] remotewrite2: Fix invalid metadata bug for metrics without metadata. #15829
|
|
18
|
+
* [BUGFIX] remotewrite2: Fix the unit field propagation. #15825
|
|
19
|
+
* [BUGFIX] scrape: Fix WAL metadata for histograms and summaries. #15832
|
|
20
|
+
* [BUGFIX] ui: Merge duplicate "Alerts page settings" sections. #15810
|
|
21
|
+
* [BUGFIX] PromQL: Fix `<aggr_over_time>` functions with histograms. #15711
|
|
22
|
+
|
|
23
|
+
## 3.1.0 / 2025-01-02
|
|
10
24
|
|
|
11
25
|
* [SECURITY] upgrade golang.org/x/crypto to address reported CVE-2024-45337. #15691
|
|
12
26
|
* [CHANGE] Notifier: Increment prometheus_notifications_errors_total by the number of affected alerts rather than per batch. #15428
|
|
@@ -27,6 +41,7 @@
|
|
|
27
41
|
* [PERF] TSDB: Optimize inverse matching. #14144
|
|
28
42
|
* [PERF] Regex: use stack memory for lowercase copy of string. #15210
|
|
29
43
|
* [PERF] TSDB: When deleting from postings index, pause to unlock and let readers read. #15242
|
|
44
|
+
* [BUGFIX] Main: Avoid possible segfault at exit. (#15724)
|
|
30
45
|
* [BUGFIX] Rules: Do not run rules concurrently if uncertain about dependencies. #15560
|
|
31
46
|
* [BUGFIX] PromQL: Adds test for `absent`, `absent_over_time` and `deriv` func with histograms. #15667
|
|
32
47
|
* [BUGFIX] PromQL: Fix various bugs related to quoting UTF-8 characters. #15531
|
|
@@ -51,6 +66,7 @@
|
|
|
51
66
|
* [BUGFIX] PromQL: Clamp functions: Ignore any points with native histograms. #15169
|
|
52
67
|
* [BUGFIX] TSDB: Fix race on stale values in headAppender. #15322
|
|
53
68
|
* [BUGFIX] UI: Fix selector / series formatting for empty metric names. #15340
|
|
69
|
+
* [BUGFIX] OTLP receiver: Allow colons in non-standard units. #15710
|
|
54
70
|
|
|
55
71
|
## 3.0.1 / 2024-11-28
|
|
56
72
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prometheus-io/lezer-promql",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.302.0-rc.0",
|
|
4
4
|
"description": "lezer-based PromQL grammar",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"type": "module",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@lezer/generator": "^1.7.2",
|
|
35
35
|
"@lezer/highlight": "^1.2.0",
|
|
36
36
|
"@lezer/lr": "^1.4.2",
|
|
37
|
-
"@rollup/plugin-node-resolve": "^
|
|
37
|
+
"@rollup/plugin-node-resolve": "^16.0.0"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"@lezer/highlight": "^1.1.2",
|