@prometheus-io/lezer-promql 0.44.0-rc.2 → 0.45.0-rc.1

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 +32 -6
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,14 +1,35 @@
1
1
  # Changelog
2
2
 
3
- ## 2.44.0-rc.2 / 2023-05-07
4
3
 
5
- * [ENHANCEMENT] Storage: Optimise buffer used to iterate through samples. #12326
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
6
7
 
7
- ## 2.44.0-rc.1 / 2023-05-03
8
+ ## 2.45.0-rc.0 / 2023-06-05
8
9
 
9
- * [BUGFIX] Labels: Set after Del would be ignored, which broke some relabeling rules. #12322
10
+ This release is a LTS (Long-Term Support) release of Prometheus and will
11
+ receive security, documentation and bugfix patches for at least 12 months.
12
+ Please read more about our LTS release cycle at
13
+ <https://prometheus.io/docs/introduction/release-cycle/>.
10
14
 
11
- ## 2.44.0-rc.0 / 2023-04-22
15
+ * [FEATURE] API: New limit parameter to limit the number of items returned by `/api/v1/status/tsdb` endpoint. #12336
16
+ * [FEATURE] Config: Add limits to global config. #12126
17
+ * [FEATURE] Consul SD: Added support for `path_prefix`. #12372
18
+ * [FEATURE] Native histograms: Add option to scrape both classic and native histograms. #12350
19
+ * [FEATURE] Native histograms: Added support for two more arithmetic operators `avg_over_time` and `sum_over_time`. #12262
20
+ * [FEATURE] Promtool: When providing the block id, only one block will be loaded and analyzed. #12031
21
+ * [FEATURE] Remote-write: New Azure ad configuration to support remote writing directly to Azure Monitor workspace. #11944
22
+ * [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
+ * [ENHANCEMENT] Native histograms: bucket size can now be limited to avoid scrape fails. #12254
25
+ * [ENHANCEMENT] TSDB: Dropped series are now deleted from the WAL sooner. #12297
26
+ * [BUGFIX] Native histograms: ChunkSeries iterator now checks if a new sample can be appended to the open chunk. #12185
27
+ * [BUGFIX] Native histograms: Fix Histogram Appender `Appendable()` segfault. #12357
28
+ * [BUGFIX] Native histograms: Fix setting reset header to gauge histograms in seriesToChunkEncoder. #12329
29
+ * [BUGFIX] TSDB: Tombstone intervals are not modified after Get() call. #12245
30
+ * [BUGFIX] TSDB: Use path/filepath to set the WAL directory. #12349
31
+
32
+ ## 2.44.0 / 2023-05-13
12
33
 
13
34
  This version is built with Go tag `stringlabels`, to use the smaller data
14
35
  structure for Labels that was optional in the previous release. For more
@@ -18,6 +39,7 @@ details about this code change see #10991.
18
39
  * [FEATURE] Remote-read: Handle native histograms. #12085, #12192
19
40
  * [FEATURE] Promtool: Health and readiness check of prometheus server in CLI. #12096
20
41
  * [FEATURE] PromQL: Add `query_samples_total` metric, the total number of samples loaded by all queries. #12251
42
+ * [ENHANCEMENT] Storage: Optimise buffer used to iterate through samples. #12326
21
43
  * [ENHANCEMENT] Scrape: Reduce memory allocations on target labels. #12084
22
44
  * [ENHANCEMENT] PromQL: Use faster heap method for `topk()` / `bottomk()`. #12190
23
45
  * [ENHANCEMENT] Rules API: Allow filtering by rule name. #12270
@@ -27,6 +49,10 @@ details about this code change see #10991.
27
49
  * [BUGFIX] TSDB: Block compaction failed when shutting down. #12179
28
50
  * [BUGFIX] TSDB: Out-of-order chunks could be ignored if the write-behind log was deleted. #12127
29
51
 
52
+ ## 2.43.1 / 2023-05-03
53
+
54
+ * [BUGFIX] Labels: `Set()` after `Del()` would be ignored, which broke some relabeling rules. #12322
55
+
30
56
  ## 2.43.0 / 2023-03-21
31
57
 
32
58
  We are working on some performance improvements in Prometheus, which are only
@@ -40,7 +66,7 @@ the gains on their production architecture. We are providing release artefacts
40
66
  improvements for testing. #10991
41
67
 
42
68
  * [FEATURE] Promtool: Add HTTP client configuration to query commands. #11487
43
- * [FEATURE] Scrape: Add `include_scrape_configs` to include scrape configs from different files. #12019
69
+ * [FEATURE] Scrape: Add `scrape_config_files` to include scrape configs from different files. #12019
44
70
  * [FEATURE] HTTP client: Add `no_proxy` to exclude URLs from proxied requests. #12098
45
71
  * [FEATURE] HTTP client: Add `proxy_from_enviroment` to read proxies from env variables. #12098
46
72
  * [ENHANCEMENT] API: Add support for setting lookback delta per query via the API. #12088
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prometheus-io/lezer-promql",
3
- "version": "0.44.0-rc.2",
3
+ "version": "0.45.0-rc.1",
4
4
  "description": "lezer-based PromQL grammar",
5
5
  "main": "dist/index.cjs",
6
6
  "type": "module",
@@ -30,9 +30,9 @@
30
30
  "test": "NODE_OPTIONS=--experimental-vm-modules jest"
31
31
  },
32
32
  "devDependencies": {
33
- "@lezer/generator": "^1.2.2",
34
- "@lezer/lr": "^1.3.1",
35
- "@lezer/highlight": "^1.1.3"
33
+ "@lezer/generator": "^1.2.3",
34
+ "@lezer/lr": "^1.3.6",
35
+ "@lezer/highlight": "^1.1.6"
36
36
  },
37
37
  "peerDependencies": {
38
38
  "@lezer/lr": "^1.2.3",