@prometheus-io/lezer-promql 0.54.0-rc.1 → 0.54.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 +8 -4
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,10 +1,14 @@
1
1
  # Changelog
2
2
 
3
- ## 2.54.0-rc.1 / 2024-08-05
3
+ ## 2.54.1 / 2024-08-27
4
4
 
5
- * [BUGFIX] TSDB: Exclude OOO chunks mapped after compaction starts (introduced by #14396). #14584
5
+ * [BUGFIX] Scraping: allow multiple samples on same series, with explicit timestamps. #14685
6
+ * [BUGFIX] Docker SD: fix crash in `match_first_network` mode when container is reconnected to a new network. #14654
7
+ * [BUGFIX] PromQL: fix experimental native histograms getting corrupted due to vector selector bug in range queries. #14538
8
+ * [BUGFIX] PromQL: fix experimental native histogram counter reset detection on stale samples. #14514
9
+ * [BUGFIX] PromQL: fix native histograms getting corrupted due to vector selector bug in range queries. #14605
6
10
 
7
- ## 2.54.0-rc.0 / 2024-07-19
11
+ ## 2.54.0 / 2024-08-09
8
12
 
9
13
  Release 2.54 brings a release candidate of a major new version of [Remote Write: 2.0](https://prometheus.io/docs/specs/remote_write_spec_2_0/).
10
14
  This is experimental at this time and may still change.
@@ -22,7 +26,7 @@ Remote-write v2 is enabled by default, but can be disabled via feature-flag `web
22
26
  * [ENHANCEMENT] TSDB: Optimise seek within index. #14393
23
27
  * [ENHANCEMENT] TSDB: Optimise deletion of stale series. #14307
24
28
  * [ENHANCEMENT] TSDB: Reduce locking to optimise adding and removing series. #13286,#14286
25
- * [ENHANCEMENT] TSDB: Small optimisation: streamline special handling for out-of-order data. #14396
29
+ * [ENHANCEMENT] TSDB: Small optimisation: streamline special handling for out-of-order data. #14396,#14584
26
30
  * [ENHANCEMENT] Regexps: Optimize patterns with multiple prefixes. #13843,#14368
27
31
  * [ENHANCEMENT] Regexps: Optimize patterns containing multiple literal strings. #14173
28
32
  * [ENHANCEMENT] AWS SD: expose Primary IPv6 addresses as __meta_ec2_primary_ipv6_addresses. #14156
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prometheus-io/lezer-promql",
3
- "version": "0.54.0-rc.1",
3
+ "version": "0.54.1",
4
4
  "description": "lezer-based PromQL grammar",
5
5
  "main": "dist/index.cjs",
6
6
  "type": "module",