@prometheus-io/lezer-promql 0.43.0 → 0.44.0-rc.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 +23 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.44.0-rc.1 / 2023-05-03
4
+
5
+ * [BUGFIX] Labels: Set after Del would be ignored, which broke some relabeling rules. #12322
6
+
7
+ ## 2.44.0-rc.0 / 2023-04-22
8
+
9
+ This version is built with Go tag `stringlabels`, to use the smaller data
10
+ structure for Labels that was optional in the previous release. For more
11
+ details about this code change see #10991.
12
+
13
+ * [CHANGE] Remote-write: Raise default samples per send to 2,000. #12203
14
+ * [FEATURE] Remote-read: Handle native histograms. #12085, #12192
15
+ * [FEATURE] Promtool: Health and readiness check of prometheus server in CLI. #12096
16
+ * [FEATURE] PromQL: Add `query_samples_total` metric, the total number of samples loaded by all queries. #12251
17
+ * [ENHANCEMENT] Scrape: Reduce memory allocations on target labels. #12084
18
+ * [ENHANCEMENT] PromQL: Use faster heap method for `topk()` / `bottomk()`. #12190
19
+ * [ENHANCEMENT] Rules API: Allow filtering by rule name. #12270
20
+ * [ENHANCEMENT] Native Histograms: Various fixes and improvements. #11687, #12264, #12272
21
+ * [ENHANCEMENT] UI: Search of scraping pools is now case-insensitive. #12207
22
+ * [ENHANCEMENT] TSDB: Add an affirmative log message for successful WAL repair. #12135
23
+ * [BUGFIX] TSDB: Block compaction failed when shutting down. #12179
24
+ * [BUGFIX] TSDB: Out-of-order chunks could be ignored if the write-behind log was deleted. #12127
25
+
3
26
  ## 2.43.0 / 2023-03-21
4
27
 
5
28
  We are working on some performance improvements in Prometheus, which are only
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prometheus-io/lezer-promql",
3
- "version": "0.43.0",
3
+ "version": "0.44.0-rc.1",
4
4
  "description": "lezer-based PromQL grammar",
5
5
  "main": "dist/index.cjs",
6
6
  "type": "module",