@prometheus-io/lezer-promql 0.45.0 → 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 +20 -1
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # Changelog
2
2
 
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
3
22
 
4
23
  ## 2.45.0 / 2023-06-23
5
24
 
@@ -63,7 +82,7 @@ improvements for testing. #10991
63
82
  * [FEATURE] Promtool: Add HTTP client configuration to query commands. #11487
64
83
  * [FEATURE] Scrape: Add `scrape_config_files` to include scrape configs from different files. #12019
65
84
  * [FEATURE] HTTP client: Add `no_proxy` to exclude URLs from proxied requests. #12098
66
- * [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
67
86
  * [ENHANCEMENT] API: Add support for setting lookback delta per query via the API. #12088
68
87
  * [ENHANCEMENT] API: Change HTTP status code from 503/422 to 499 if a request is canceled. #11897
69
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",
3
+ "version": "0.46.0-rc.0",
4
4
  "description": "lezer-based PromQL grammar",
5
5
  "main": "dist/index.cjs",
6
6
  "type": "module",