@prometheus-io/lezer-promql 0.42.0-rc.0 → 0.43.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 +41 -5
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,16 +1,52 @@
1
1
  # Changelog
2
2
 
3
- ## 2.42.0-rc.0 / 2023-01-26
4
-
3
+ ## 2.43.0-rc.0 / 2023-03-09
4
+
5
+ We are working on some performance improvements in Prometheus, which are only
6
+ built into Prometheus when compiling it using the Go tag `stringlabels`
7
+ (therefore they are not shipped in the default binaries). It uses a data
8
+ structure for labels that uses a single string to hold all the label/values,
9
+ resulting in a smaller heap size and some speedups in most cases. We would like
10
+ to encourage users who are interested in these improvements to help us measure
11
+ the gains on their production architecture. Building Prometheus from source
12
+ with the `stringlabels` Go tag and providing feedback on its effectiveness in
13
+ their specific use cases would be incredibly helpful to us. #10991
14
+
15
+ * [FEATURE] Promtool: Add HTTP client configuration to query commands. #11487
16
+ * [FEATURE] Scrape: Add `include_scrape_configs` to include scrape configs from different files. #12019
17
+ * [FEATURE] HTTP client: Add `no_proxy` to exclude URLs from proxied requests. #12098
18
+ * [FEATURE] HTTP client: Add `proxy_from_enviroment` to read proxies from env variables. #12098
19
+ * [ENHANCEMENT] API: Add support for setting lookback delta per query via the API. #12088
20
+ * [ENHANCEMENT] API: Change HTTP status code from 503/422 to 499 if a request is canceled. #11897
21
+ * [ENHANCEMENT] Scrape: Allow exemplars for all metric types. #11984
22
+ * [ENHANCEMENT] TSDB: Add metrics for head chunks and WAL folders size. #12013
23
+ * [ENHANCEMENT] TSDB: Automatically remove incorrect snapshot with index that is ahead of WAL. #11859
24
+ * [ENHANCEMENT] TSDB: Improve Prometheus parser error outputs to be more comprehensible. #11682
25
+ * [ENHANCEMENT] UI: Scope `group by` labels to metric in autocompletion. #11914
26
+ * [BUGFIX] Scrape: Fix `prometheus_target_scrape_pool_target_limit` metric not set before reloading. #12002
27
+ * [BUGFIX] TSDB: Correctly update `prometheus_tsdb_head_chunks_removed_total` and `prometheus_tsdb_head_chunks` metrics when reading WAL. #11858
28
+ * [BUGFIX] TSDB: Use the correct unit (seconds) when recording out-of-order append deltas in the `prometheus_tsdb_sample_ooo_delta` metric. #12004
29
+
30
+ ## 2.42.0 / 2023-01-31
31
+
32
+ This release comes with a bunch of feature coverage for native histograms and breaking changes.
33
+
34
+ If you are trying native histograms already, we recommend you remove the `wal` directory when upgrading.
35
+ Because the old WAL record for native histograms is not backward compatible in v2.42.0, this will lead to some data loss for the latest data.
36
+
37
+ Additionally, if you scrape "float histograms" or use recording rules on native histograms in v2.42.0 (which writes float histograms),
38
+ it is a one-way street since older versions do not support float histograms.
39
+
40
+ * [CHANGE] **breaking** TSDB: Changed WAL record format for the experimental native histograms. #11783
5
41
  * [FEATURE] Add 'keep_firing_for' field to alerting rules. #11827
6
42
  * [FEATURE] Promtool: Add support of selecting timeseries for TSDB dump. #11872
7
43
  * [ENHANCEMENT] Agent: Native histogram support. #11842
8
- * [ENHANCEMENT] Histograms: Return actually useful counter reset hints. #11864
44
+ * [ENHANCEMENT] Rules: Support native histograms in recording rules. #11838
9
45
  * [ENHANCEMENT] SD: Add container ID as a meta label for pod targets for Kubernetes. #11844
10
46
  * [ENHANCEMENT] SD: Add VM size label to azure service discovery. #11650
11
47
  * [ENHANCEMENT] Support native histograms in federation. #11830
12
- * [ENHANCEMENT] TSDB: Add gauge histogram support. #11783 #11840
13
- * [ENHANCEMENT] TSDB: Support FloatHistogram. #11522 #11817
48
+ * [ENHANCEMENT] TSDB: Add gauge histogram support. #11783 #11840 #11814
49
+ * [ENHANCEMENT] TSDB/Scrape: Support FloatHistogram that represents buckets as float64 values. #11522 #11817 #11716
14
50
  * [ENHANCEMENT] UI: Show individual scrape pools on /targets page. #11142
15
51
 
16
52
  ## 2.41.0 / 2022-12-20
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prometheus-io/lezer-promql",
3
- "version": "0.42.0-rc.0",
3
+ "version": "0.43.0-rc.0",
4
4
  "description": "lezer-based PromQL grammar",
5
5
  "main": "dist/index.cjs",
6
6
  "type": "module",