@prometheus-io/lezer-promql 0.45.0-rc.1 → 0.46.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 +22 -8
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,11 +1,26 @@
1
1
  # Changelog
2
2
 
3
-
4
- ## 2.45.0-rc.1 / 2023-06-20
5
-
6
- * [ENHANCEMENT] Reverts previous enhancement to the API Gzip Handler due to higher cpu and memory usage. #12363
7
-
8
- ## 2.45.0-rc.0 / 2023-06-05
3
+ ## 2.46.0-rc.0 / 2023-07-20
4
+
5
+ * [FEATURE] Promtool: Add PromQL format and label matcher set/delete commands to promtool. #11411
6
+ * [FEATURE] Promtool: Add push metrics command. #12299
7
+ * [ENHANCEMENT] Promtool: Read from stdin if no filenames are provided in check rules. #12225
8
+ * [ENHANCEMENT] Hetzner SD: Support larger ID's that will be used by Hetzner in September. #12569
9
+ * [ENHANCEMENT] Kubernetes SD: Add more labels for endpointslice and endpoints role. #10914
10
+ * [ENHANCEMENT] Kubernetes SD: Do not add pods to target group if the PodIP status is not set. #11642
11
+ * [ENHANCEMENT] OpenStack SD: Include instance image ID in labels. #12502
12
+ * [ENHANCEMENT] Remote Write receiver: Validate the metric names and labels. #11688
13
+ * [ENHANCEMENT] Web: Initialize `prometheus_http_requests_total` metrics with `code` label set to `200`. #12472
14
+ * [ENHANCEMENT] TSDB: Add Zstandard compression option for wlog. #11666
15
+ * [ENHANCEMENT] TSDB: Support native histograms in snapshot on shutdown. #12258
16
+ * [BUGFIX] Histograms: Fix parsing of float histograms without zero bucket. #12577
17
+ * [BUGFIX] Histograms: Fix scraping native and classic histograms missing some histograms. #12554
18
+ * [BUGFIX] Histograms: Enable ingestion of multiple exemplars per sample. 12557
19
+ * [BUGFIX] File SD: Fix path handling in File-SD watcher to allow directory monitoring on Windows. #12488
20
+ * [BUGFIX] Linode SD: Cast `InstanceSpec` values to `int64` to avoid overflows on 386 architecture. #12568
21
+ * [BUGFIX] TSDB: Handle TOC parsing failures. #10623
22
+
23
+ ## 2.45.0 / 2023-06-23
9
24
 
10
25
  This release is a LTS (Long-Term Support) release of Prometheus and will
11
26
  receive security, documentation and bugfix patches for at least 12 months.
@@ -20,7 +35,6 @@ Please read more about our LTS release cycle at
20
35
  * [FEATURE] Promtool: When providing the block id, only one block will be loaded and analyzed. #12031
21
36
  * [FEATURE] Remote-write: New Azure ad configuration to support remote writing directly to Azure Monitor workspace. #11944
22
37
  * [FEATURE] TSDB: Samples per chunk are now configurable with flag `storage.tsdb.samples-per-chunk`. By default set to its former value 120. #12055
23
- * [ENHANCEMENT] API: Improving Performance on the API Gzip Handler. #12363
24
38
  * [ENHANCEMENT] Native histograms: bucket size can now be limited to avoid scrape fails. #12254
25
39
  * [ENHANCEMENT] TSDB: Dropped series are now deleted from the WAL sooner. #12297
26
40
  * [BUGFIX] Native histograms: ChunkSeries iterator now checks if a new sample can be appended to the open chunk. #12185
@@ -68,7 +82,7 @@ improvements for testing. #10991
68
82
  * [FEATURE] Promtool: Add HTTP client configuration to query commands. #11487
69
83
  * [FEATURE] Scrape: Add `scrape_config_files` to include scrape configs from different files. #12019
70
84
  * [FEATURE] HTTP client: Add `no_proxy` to exclude URLs from proxied requests. #12098
71
- * [FEATURE] HTTP client: Add `proxy_from_enviroment` to read proxies from env variables. #12098
85
+ * [FEATURE] HTTP client: Add `proxy_from_environment` to read proxies from env variables. #12098
72
86
  * [ENHANCEMENT] API: Add support for setting lookback delta per query via the API. #12088
73
87
  * [ENHANCEMENT] API: Change HTTP status code from 503/422 to 499 if a request is canceled. #11897
74
88
  * [ENHANCEMENT] Scrape: Allow exemplars for all metric types. #11984
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prometheus-io/lezer-promql",
3
- "version": "0.45.0-rc.1",
3
+ "version": "0.46.0-rc.0",
4
4
  "description": "lezer-based PromQL grammar",
5
5
  "main": "dist/index.cjs",
6
6
  "type": "module",