@prometheus-io/lezer-promql 0.43.0-rc.1 → 0.44.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +23 -8
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,10 +1,25 @@
1
1
  # Changelog
2
2
 
3
- ## 2.43.0-rc.1 / 2023-03-16
4
-
5
- * [BUGFIX] Fixed a bug where changes in the Builder's Range function could lead to skipped labels during iteration (#12145)
6
-
7
- ## 2.43.0-rc.0 / 2023-03-09
3
+ ## 2.44.0-rc.0 / 2023-04-22
4
+
5
+ This version is built with Go tag `stringlabels`, to use the smaller data
6
+ structure for Labels that was optional in the previous release. For more
7
+ details about this code change see #10991.
8
+
9
+ * [CHANGE] Remote-write: Raise default samples per send to 2,000. #12203
10
+ * [FEATURE] Remote-read: Handle native histograms. #12085, #12192
11
+ * [FEATURE] Promtool: Health and readiness check of prometheus server in CLI. #12096
12
+ * [FEATURE] PromQL: Add `query_samples_total` metric, the total number of samples loaded by all queries. #12251
13
+ * [ENHANCEMENT] Scrape: Reduce memory allocations on target labels. #12084
14
+ * [ENHANCEMENT] PromQL: Use faster heap method for `topk()` / `bottomk()`. #12190
15
+ * [ENHANCEMENT] Rules API: Allow filtering by rule name. #12270
16
+ * [ENHANCEMENT] Native Histograms: Various fixes and improvements. #11687, #12264, #12272
17
+ * [ENHANCEMENT] UI: Search of scraping pools is now case-insensitive. #12207
18
+ * [ENHANCEMENT] TSDB: Add an affirmative log message for successful WAL repair. #12135
19
+ * [BUGFIX] TSDB: Block compaction failed when shutting down. #12179
20
+ * [BUGFIX] TSDB: Out-of-order chunks could be ignored if the write-behind log was deleted. #12127
21
+
22
+ ## 2.43.0 / 2023-03-21
8
23
 
9
24
  We are working on some performance improvements in Prometheus, which are only
10
25
  built into Prometheus when compiling it using the Go tag `stringlabels`
@@ -12,9 +27,9 @@ built into Prometheus when compiling it using the Go tag `stringlabels`
12
27
  structure for labels that uses a single string to hold all the label/values,
13
28
  resulting in a smaller heap size and some speedups in most cases. We would like
14
29
  to encourage users who are interested in these improvements to help us measure
15
- the gains on their production architecture. Building Prometheus from source
16
- with the `stringlabels` Go tag and providing feedback on its effectiveness in
17
- their specific use cases would be incredibly helpful to us. #10991
30
+ the gains on their production architecture. We are providing release artefacts
31
+ `2.43.0+stringlabels` and Docker images tagged `v2.43.0-stringlabels` with those
32
+ improvements for testing. #10991
18
33
 
19
34
  * [FEATURE] Promtool: Add HTTP client configuration to query commands. #11487
20
35
  * [FEATURE] Scrape: Add `include_scrape_configs` to include scrape configs from different files. #12019
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prometheus-io/lezer-promql",
3
- "version": "0.43.0-rc.1",
3
+ "version": "0.44.0-rc.0",
4
4
  "description": "lezer-based PromQL grammar",
5
5
  "main": "dist/index.cjs",
6
6
  "type": "module",