@prometheus-io/lezer-promql 0.302.0 → 0.303.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 +34 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,40 @@
|
|
|
2
2
|
|
|
3
3
|
## unreleased
|
|
4
4
|
|
|
5
|
+
## 3.3.0-rc.0 / 2025-03-11
|
|
6
|
+
|
|
7
|
+
* [FEATURE] PromQL: Implement `idelta()` and `irate()` for native histograms. #15853
|
|
8
|
+
* [ENHANCEMENT] Scaleway SD: Add `__meta_scaleway_instance_public_ipv4_addresses` and `__meta_scaleway_instance_public_ipv6_addresses` labels. #14228
|
|
9
|
+
* [ENHANCEMENT] TSDB: Reduce locking while reloading blocks. #12920
|
|
10
|
+
* [ENHANCEMENT] PromQL: Allow UTF-8 labels in `label_replace()`. #15974
|
|
11
|
+
* [ENHANCEMENT] Promtool: `tsdb create-blocks-from openmetrics` can now read from a Pipe. #16011
|
|
12
|
+
* [ENHANCEMENT] Rules: Add support for anchors and aliases in rule files. #14957
|
|
13
|
+
* [ENHANCEMENT] Dockerfile: Make `/prometheus` writable. #16073
|
|
14
|
+
* [ENHANCEMENT] API: Include scrape pool name for dropped targets in `/api/v1/targets`. #16085
|
|
15
|
+
* [ENHANCEMENT] UI: Improve time formatting and copying of selectors. #15999 #16165
|
|
16
|
+
* [ENHANCEMENT] UI: Bring back vertical grid lines and graph legend series toggling instructions. #16163 #16164
|
|
17
|
+
* [ENHANCEMENT] Mixin: The `cluster` label can be customized using `clusterLabel`. #15826
|
|
18
|
+
* [PERF] TSDB: Optimize some operations on head chunks by taking shortcuts. #12659
|
|
19
|
+
* [PERF] TSDB & Agent: Reduce memory footprint during WL replay. #15778
|
|
20
|
+
* [PERF] API: Reduce memory footprint during header parsing. #16001
|
|
21
|
+
* [PERF] Rules: Improve dependency evaluation, enabling better concurrency. #16039
|
|
22
|
+
* [PERF] Scraping: Improve scraping performance for native histograms. #15731
|
|
23
|
+
* [PERF] Scraping: Improve parsing of created timestamps. #16072
|
|
24
|
+
* [BUGFIX] PromQL: Fix counter reset detection for native histograms. #15902 #15987
|
|
25
|
+
* [BUGFIX] Scaleway SD: The public IP will no longer be set to `__meta_meta_scaleway_instance_public_ipv4` if it is an IPv6 address. #14228
|
|
26
|
+
* [BUGFIX] PromQL: Fix inconsistent behavior with an empty range. #15970
|
|
27
|
+
* [BUGFIX] PromQL: Fix inconsistent annotation in `quantile_over_time()`. #16018
|
|
28
|
+
* [BUGFIX] PromQL: Prevent `label_join()` from producing duplicates. #15975
|
|
29
|
+
* [BUGFIX] PromQL: Ignore native histograms in `scalar()`, `sort()` and `sort_desc()`. #15964
|
|
30
|
+
* [BUGFIX] Alerting: Consider alert relabeling when deciding whether alerts are dropped. #15979
|
|
31
|
+
* [BUGFIX] Config: Set `GoGC` to the default value in case of an empty configuration. #16052
|
|
32
|
+
* [BUGFIX] TSDB: Fix unknown series errors and potential data loss during WAL replay when inactive series are removed from the head and reappear before the next WAL checkpoint. #16060
|
|
33
|
+
* [BUGFIX] Scraping: Bump cache iteration after error to avoid false duplicate detections. #16174
|
|
34
|
+
* [BUGFIX] PromQL: Fix annotations for binary operations between incompatible native histograms. #15895
|
|
35
|
+
|
|
36
|
+
## 3.2.1 / 2025-02-25
|
|
37
|
+
|
|
38
|
+
* [BUGFIX] Don't send Accept` header `escape=allow-utf-8` when `metric_name_validation_scheme: legacy` is configured. #16061
|
|
5
39
|
|
|
6
40
|
## 3.2.0 / 2025-02-17
|
|
7
41
|
|