@prometheus-io/lezer-promql 0.301.0-rc.0 → 0.301.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +3 -1
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## unreleased
4
4
 
5
- ## 3.1.0-rc.0 / 2024-12-18
5
+ ## 3.1.0 2025-01-02
6
6
 
7
7
  * [SECURITY] upgrade golang.org/x/crypto to address reported CVE-2024-45337. #15691
8
8
  * [CHANGE] Notifier: Increment prometheus_notifications_errors_total by the number of affected alerts rather than per batch. #15428
@@ -23,6 +23,7 @@
23
23
  * [PERF] TSDB: Optimize inverse matching. #14144
24
24
  * [PERF] Regex: use stack memory for lowercase copy of string. #15210
25
25
  * [PERF] TSDB: When deleting from postings index, pause to unlock and let readers read. #15242
26
+ * [BUGFIX] Main: Avoid possible segfault at exit. (#15724)
26
27
  * [BUGFIX] Rules: Do not run rules concurrently if uncertain about dependencies. #15560
27
28
  * [BUGFIX] PromQL: Adds test for `absent`, `absent_over_time` and `deriv` func with histograms. #15667
28
29
  * [BUGFIX] PromQL: Fix various bugs related to quoting UTF-8 characters. #15531
@@ -47,6 +48,7 @@
47
48
  * [BUGFIX] PromQL: Clamp functions: Ignore any points with native histograms. #15169
48
49
  * [BUGFIX] TSDB: Fix race on stale values in headAppender. #15322
49
50
  * [BUGFIX] UI: Fix selector / series formatting for empty metric names. #15340
51
+ * [BUGFIX] OTLP receiver: Allow colons in non-standard units. #15710
50
52
 
51
53
  ## 3.0.1 / 2024-11-28
52
54
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prometheus-io/lezer-promql",
3
- "version": "0.301.0-rc.0",
3
+ "version": "0.301.0",
4
4
  "description": "lezer-based PromQL grammar",
5
5
  "main": "dist/index.cjs",
6
6
  "type": "module",