@prometheus-io/lezer-promql 0.300.0 → 0.300.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 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  ## unreleased
4
4
 
5
+ ## 3.0.1 / 2024-11-28
6
+
7
+ The first bug fix release for Prometheus 3.
8
+
9
+ * [BUGFIX] Promql: Make subqueries left open. #15431
10
+ * [BUGFIX] Fix memory leak when query log is enabled. #15434
11
+ * [BUGFIX] Support utf8 names on /v1/label/:name/values endpoint. #15399
12
+
5
13
  ## 3.0.0 / 2024-11-14
6
14
 
7
15
  This release includes new features such as a brand new UI and UTF-8 support enabled by default. As this marks the first new major version in seven years, several breaking changes are introduced. The breaking changes are mainly around the removal of deprecated feature flags and CLI arguments, and the full list can be found below. For users that want to upgrade we recommend to read through our [migration guide](https://prometheus.io/docs/prometheus/3.0/migration/).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prometheus-io/lezer-promql",
3
- "version": "0.300.0",
3
+ "version": "0.300.1",
4
4
  "description": "lezer-based PromQL grammar",
5
5
  "main": "dist/index.cjs",
6
6
  "type": "module",