@prometheus-io/lezer-promql 0.44.0 → 0.45.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.
- package/CHANGELOG.md +29 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
|
|
4
|
+
## 2.45.0 / 2023-06-23
|
|
5
|
+
|
|
6
|
+
This release is a LTS (Long-Term Support) release of Prometheus and will
|
|
7
|
+
receive security, documentation and bugfix patches for at least 12 months.
|
|
8
|
+
Please read more about our LTS release cycle at
|
|
9
|
+
<https://prometheus.io/docs/introduction/release-cycle/>.
|
|
10
|
+
|
|
11
|
+
* [FEATURE] API: New limit parameter to limit the number of items returned by `/api/v1/status/tsdb` endpoint. #12336
|
|
12
|
+
* [FEATURE] Config: Add limits to global config. #12126
|
|
13
|
+
* [FEATURE] Consul SD: Added support for `path_prefix`. #12372
|
|
14
|
+
* [FEATURE] Native histograms: Add option to scrape both classic and native histograms. #12350
|
|
15
|
+
* [FEATURE] Native histograms: Added support for two more arithmetic operators `avg_over_time` and `sum_over_time`. #12262
|
|
16
|
+
* [FEATURE] Promtool: When providing the block id, only one block will be loaded and analyzed. #12031
|
|
17
|
+
* [FEATURE] Remote-write: New Azure ad configuration to support remote writing directly to Azure Monitor workspace. #11944
|
|
18
|
+
* [FEATURE] TSDB: Samples per chunk are now configurable with flag `storage.tsdb.samples-per-chunk`. By default set to its former value 120. #12055
|
|
19
|
+
* [ENHANCEMENT] Native histograms: bucket size can now be limited to avoid scrape fails. #12254
|
|
20
|
+
* [ENHANCEMENT] TSDB: Dropped series are now deleted from the WAL sooner. #12297
|
|
21
|
+
* [BUGFIX] Native histograms: ChunkSeries iterator now checks if a new sample can be appended to the open chunk. #12185
|
|
22
|
+
* [BUGFIX] Native histograms: Fix Histogram Appender `Appendable()` segfault. #12357
|
|
23
|
+
* [BUGFIX] Native histograms: Fix setting reset header to gauge histograms in seriesToChunkEncoder. #12329
|
|
24
|
+
* [BUGFIX] TSDB: Tombstone intervals are not modified after Get() call. #12245
|
|
25
|
+
* [BUGFIX] TSDB: Use path/filepath to set the WAL directory. #12349
|
|
26
|
+
|
|
3
27
|
## 2.44.0 / 2023-05-13
|
|
4
28
|
|
|
5
29
|
This version is built with Go tag `stringlabels`, to use the smaller data
|
|
@@ -20,6 +44,10 @@ details about this code change see #10991.
|
|
|
20
44
|
* [BUGFIX] TSDB: Block compaction failed when shutting down. #12179
|
|
21
45
|
* [BUGFIX] TSDB: Out-of-order chunks could be ignored if the write-behind log was deleted. #12127
|
|
22
46
|
|
|
47
|
+
## 2.43.1 / 2023-05-03
|
|
48
|
+
|
|
49
|
+
* [BUGFIX] Labels: `Set()` after `Del()` would be ignored, which broke some relabeling rules. #12322
|
|
50
|
+
|
|
23
51
|
## 2.43.0 / 2023-03-21
|
|
24
52
|
|
|
25
53
|
We are working on some performance improvements in Prometheus, which are only
|
|
@@ -33,7 +61,7 @@ the gains on their production architecture. We are providing release artefacts
|
|
|
33
61
|
improvements for testing. #10991
|
|
34
62
|
|
|
35
63
|
* [FEATURE] Promtool: Add HTTP client configuration to query commands. #11487
|
|
36
|
-
* [FEATURE] Scrape: Add `
|
|
64
|
+
* [FEATURE] Scrape: Add `scrape_config_files` to include scrape configs from different files. #12019
|
|
37
65
|
* [FEATURE] HTTP client: Add `no_proxy` to exclude URLs from proxied requests. #12098
|
|
38
66
|
* [FEATURE] HTTP client: Add `proxy_from_enviroment` to read proxies from env variables. #12098
|
|
39
67
|
* [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.
|
|
3
|
+
"version": "0.45.0",
|
|
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.
|
|
34
|
-
"@lezer/lr": "^1.3.
|
|
35
|
-
"@lezer/highlight": "^1.1.
|
|
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",
|