@prometheus-io/lezer-promql 0.49.1 → 0.50.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 +27 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.50.0-rc.0 / 2024-02-07
4
+
5
+ * [CHANGE] Remote Write: Error `storage.ErrTooOldSample` is now generating HTTP error 400 instead of HTTP error 500. #13335
6
+ * [FEATURE] Remote Write: Drop old inmemory samples. Activated using the config entry `sample_age_limit`. #13002
7
+ * [FEATURE] **Experimental**: Add support for ingesting zeros as created timestamps. (enabled under the feature-flag `created-timestamp-zero-ingestion`). #12733 #13279
8
+ * [FEATURE] Promtool: Add `analyze` histograms command. #12331
9
+ * [FEATURE] TSDB/compaction: Add a way to enable overlapping compaction. #13282 #13393 #13398
10
+ * [FEATURE] Add automatic memory limit handling. Activated using the feature flag. `auto-gomemlimit` #13395
11
+ * [ENHANCEMENT] Promtool: allow specifying multiple matchers in `promtool tsdb dump`. #13296
12
+ * [ENHANCEMENT] PromQL: Restore more efficient version of `NewPossibleNonCounterInfo` annotation. #13022
13
+ * [ENHANCEMENT] Kuma SD: Extend configuration to allow users to specify client ID. #13278
14
+ * [ENHANCEMENT] PromQL: Use natural sort in `sort_by_label` and `sort_by_label_desc`. This is **experimental**. #13411
15
+ * [ENHANCEMENT] Native Histograms: support `native_histogram_min_bucket_factor` in scrape_config. #13222
16
+ * [ENHANCEMENT] Native Histograms: Issue warning if histogramRate is applied to the wrong kind of histogram. #13392
17
+ * [ENHANCEMENT] TSDB: Make transaction isolation data structures smaller. #13015
18
+ * [ENHANCEMENT] TSDB/postings: Optimize merge using Loser Tree. #12878
19
+ * [ENHANCEMENT] TSDB: Simplify internal series delete function. #13261
20
+ * [ENHANCEMENT] Agent: Performance improvement by making the global hash lookup table smaller. #13262
21
+ * [ENHANCEMENT] PromQL: faster execution of metric functions, e.g. abs(), rate() #13446
22
+ * [ENHANCEMENT] TSDB: Optimize label values with matchers by taking shortcuts. #13426
23
+ * [ENHANCEMENT] Kubernetes SD: Check preconditions earlier and avoid unnecessary checks or iterations in kube_sd. #13408
24
+ * [ENHANCEMENT] Promtool: Improve visibility for `promtool test rules` with JSON colored formatting. #13342
25
+ * [ENHANCEMENT] Consoles: Exclude iowait and steal from CPU Utilisation. #9593
26
+ * [ENHANCEMENT] Various improvements and optimizations on Native Histograms. #13267, #13215, #13276 #13289, #13340
27
+ * [BUGFIX] Scraping: Fix quality value in HTTP Accept header. #13313
28
+ * [BUGFIX] UI: Fix usage of the function `time()` that was crashing. #13371
29
+
3
30
  ## 2.49.1 / 2024-01-15
4
31
 
5
32
  * [BUGFIX] TSDB: Fixed a wrong `q=` value in scrape accept header #13313
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prometheus-io/lezer-promql",
3
- "version": "0.49.1",
3
+ "version": "0.50.0-rc.0",
4
4
  "description": "lezer-based PromQL grammar",
5
5
  "main": "dist/index.cjs",
6
6
  "type": "module",