@prometheus-io/lezer-promql 0.43.0-rc.1 → 0.43.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 +7 -7
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,10 +1,10 @@
1
1
  # Changelog
2
2
 
3
- ## 2.43.0-rc.1 / 2023-03-16
3
+ ## 2.43.1 / 2023-05-03
4
4
 
5
- * [BUGFIX] Fixed a bug where changes in the Builder's Range function could lead to skipped labels during iteration (#12145)
5
+ * [BUGFIX] Labels: `Set()` after `Del()` would be ignored, which broke some relabeling rules. #12322
6
6
 
7
- ## 2.43.0-rc.0 / 2023-03-09
7
+ ## 2.43.0 / 2023-03-21
8
8
 
9
9
  We are working on some performance improvements in Prometheus, which are only
10
10
  built into Prometheus when compiling it using the Go tag `stringlabels`
@@ -12,12 +12,12 @@ built into Prometheus when compiling it using the Go tag `stringlabels`
12
12
  structure for labels that uses a single string to hold all the label/values,
13
13
  resulting in a smaller heap size and some speedups in most cases. We would like
14
14
  to encourage users who are interested in these improvements to help us measure
15
- the gains on their production architecture. Building Prometheus from source
16
- with the `stringlabels` Go tag and providing feedback on its effectiveness in
17
- their specific use cases would be incredibly helpful to us. #10991
15
+ the gains on their production architecture. We are providing release artefacts
16
+ `2.43.0+stringlabels` and Docker images tagged `v2.43.0-stringlabels` with those
17
+ improvements for testing. #10991
18
18
 
19
19
  * [FEATURE] Promtool: Add HTTP client configuration to query commands. #11487
20
- * [FEATURE] Scrape: Add `include_scrape_configs` to include scrape configs from different files. #12019
20
+ * [FEATURE] Scrape: Add `scrape_config_files` to include scrape configs from different files. #12019
21
21
  * [FEATURE] HTTP client: Add `no_proxy` to exclude URLs from proxied requests. #12098
22
22
  * [FEATURE] HTTP client: Add `proxy_from_enviroment` to read proxies from env variables. #12098
23
23
  * [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.43.0-rc.1",
3
+ "version": "0.43.1",
4
4
  "description": "lezer-based PromQL grammar",
5
5
  "main": "dist/index.cjs",
6
6
  "type": "module",