@prometheus-io/lezer-promql 0.303.0-rc.1 → 0.303.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +10 -9
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -2,14 +2,12 @@
2
2
 
3
3
  ## unreleased
4
4
 
5
- ## 3.3.0-rc.1 / 2025-04-02
5
+ ## 3.3.1 / 2025-05-02
6
6
 
7
- * [BUGFIX] Remote-Write: Reduce memory footprint during WAL replay. #16197
8
- * [BUGFIX] Scraping: Skip native histograms series when ingestion is disabled. #16218
9
- * [BUGFIX] UI: Display the correct value of Alerting rules' `keep_firing_for`. #16211
10
- * [BUGFIX] PromQL: return NaN from `irate()` if second-last sample is NaN. #16199 #15853
7
+ * [BUGFIX] Azure SD: Fix panic on malformed log message. #16434 #16210
8
+ * [BUGFIX] Config: Update GOGC before loading TSDB. #16491
11
9
 
12
- ## 3.3.0-rc.0 / 2025-03-11
10
+ ## 3.3.0 / 2025-04-15
13
11
 
14
12
  * [FEATURE] PromQL: Implement `idelta()` and `irate()` for native histograms. #15853
15
13
  * [ENHANCEMENT] Scaleway SD: Add `__meta_scaleway_instance_public_ipv4_addresses` and `__meta_scaleway_instance_public_ipv6_addresses` labels. #14228
@@ -24,21 +22,24 @@
24
22
  * [ENHANCEMENT] Mixin: The `cluster` label can be customized using `clusterLabel`. #15826
25
23
  * [PERF] TSDB: Optimize some operations on head chunks by taking shortcuts. #12659
26
24
  * [PERF] TSDB & Agent: Reduce memory footprint during WL replay. #15778
25
+ * [PERF] Remote-Write: Reduce memory footprint during WAL replay. #16197
27
26
  * [PERF] API: Reduce memory footprint during header parsing. #16001
28
27
  * [PERF] Rules: Improve dependency evaluation, enabling better concurrency. #16039
29
28
  * [PERF] Scraping: Improve scraping performance for native histograms. #15731
30
29
  * [PERF] Scraping: Improve parsing of created timestamps. #16072
30
+ * [BUGFIX] Scraping: Bump cache iteration after error to avoid false duplicate detections. #16174
31
+ * [BUGFIX] Scraping: Skip native histograms series when ingestion is disabled. #16218
31
32
  * [BUGFIX] PromQL: Fix counter reset detection for native histograms. #15902 #15987
32
- * [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
33
33
  * [BUGFIX] PromQL: Fix inconsistent behavior with an empty range. #15970
34
34
  * [BUGFIX] PromQL: Fix inconsistent annotation in `quantile_over_time()`. #16018
35
35
  * [BUGFIX] PromQL: Prevent `label_join()` from producing duplicates. #15975
36
36
  * [BUGFIX] PromQL: Ignore native histograms in `scalar()`, `sort()` and `sort_desc()`. #15964
37
+ * [BUGFIX] PromQL: Fix annotations for binary operations between incompatible native histograms. #15895
37
38
  * [BUGFIX] Alerting: Consider alert relabeling when deciding whether alerts are dropped. #15979
38
39
  * [BUGFIX] Config: Set `GoGC` to the default value in case of an empty configuration. #16052
39
40
  * [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
40
- * [BUGFIX] Scraping: Bump cache iteration after error to avoid false duplicate detections. #16174
41
- * [BUGFIX] PromQL: Fix annotations for binary operations between incompatible native histograms. #15895
41
+ * [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
42
+ * [BUGFIX] UI: Display the correct value of Alerting rules' `keep_firing_for`. #16211
42
43
 
43
44
  ## 3.2.1 / 2025-02-25
44
45
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prometheus-io/lezer-promql",
3
- "version": "0.303.0-rc.1",
3
+ "version": "0.303.1",
4
4
  "description": "lezer-based PromQL grammar",
5
5
  "main": "dist/index.cjs",
6
6
  "type": "module",