@prometheus-io/lezer-promql 0.40.7 → 0.41.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 +19 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.41.0-rc.0 / 2022-12-14
|
|
4
|
+
|
|
5
|
+
* [FEATURE] Relabeling: Add `keepequal` and `dropequal` relabel actions. #11564
|
|
6
|
+
* [FEATURE] Add support for HTTP proxy headers. #11712
|
|
7
|
+
* [ENHANCEMENT] Reload private certificates when changed on disk. #11685
|
|
8
|
+
* [ENHANCEMENT] Add `max_version` to specify maximum TLS version in `tls_config`. #11685
|
|
9
|
+
* [ENHANCEMENT] Add `goos` and `goarch` labels to `prometheus_build_info`. #11685
|
|
10
|
+
* [ENHANCEMENT] SD: Add proxy support for EC2 and LightSail SDs #11611
|
|
11
|
+
* [ENHANCEMENT] SD: Add new metric `prometheus_sd_file_watcher_errors_total`. #11066
|
|
12
|
+
* [ENHANCEMENT] Remote Read: Use a pool to speed up marshalling. #11357
|
|
13
|
+
* [ENHANCEMENT] TSDB: Improve handling of tombstoned chunks in iterators. #11632
|
|
14
|
+
* [ENHANCEMENT] TSDB: Optimize postings offset table reading. #11535
|
|
15
|
+
* [BUGFIX] Scrape: Validate the metric name, label names, and label values after relabeling. #11074
|
|
16
|
+
* [BUGFIX] Remote Write receiver and rule manager: Fix error handling. #11727
|
|
17
|
+
|
|
3
18
|
## 2.40.7 / 2022-12-14
|
|
4
19
|
|
|
5
20
|
* [BUGFIX] Use Windows native DNS resolver. #11704
|
|
@@ -48,6 +63,10 @@ Your existing histograms won't switch to native histograms until `NativeHistogra
|
|
|
48
63
|
* [ENHANCEMENT] Consul SD: Add enterprise admin partitions. Adds `__meta_consul_partition` label. Adds `partition` config in `consul_sd_config`. #11482
|
|
49
64
|
* [BUGFIX] API: Fix API error codes for `/api/v1/labels` and `/api/v1/series`. #11356
|
|
50
65
|
|
|
66
|
+
## 2.39.2 / 2022-11-09
|
|
67
|
+
|
|
68
|
+
* [BUGFIX] TSDB: Fix alignment for atomic int64 for 32 bit architecture. #11547
|
|
69
|
+
|
|
51
70
|
## 2.39.1 / 2022-10-07
|
|
52
71
|
|
|
53
72
|
* [BUGFIX] Rules: Fix notifier relabel changing the labels on active alerts. #11427
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prometheus-io/lezer-promql",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.41.0-rc.0",
|
|
4
4
|
"description": "lezer-based PromQL grammar",
|
|
5
5
|
"main": "index.cjs",
|
|
6
6
|
"type": "module",
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@lezer/generator": "^1.1.1",
|
|
34
34
|
"@lezer/lr": "^1.2.3",
|
|
35
|
-
"@lezer/highlight": "^1.1.
|
|
35
|
+
"@lezer/highlight": "^1.1.2"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"@lezer/lr": "^1.2.3",
|
|
39
|
-
"@lezer/highlight": "^1.1.
|
|
39
|
+
"@lezer/highlight": "^1.1.2"
|
|
40
40
|
}
|
|
41
41
|
}
|