Merge pull request #15478 from jan--f/prep-release-3.0.1

prepare release 3.0.1
This commit is contained in:
Arthur Silva Sens 2024-11-28 14:12:32 -03:00 committed by GitHub
commit 1f56e8492c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with 25 additions and 17 deletions

View File

@ -2,6 +2,14 @@
## unreleased
## 3.0.1 / 2024-11-28
The first bug fix release for Prometheus 3.
* [BUGFIX] Promql: Make subqueries left open. #15431
* [BUGFIX] Fix memory leak when query log is enabled. #15434
* [BUGFIX] Support utf8 names on /v1/label/:name/values endpoint. #15399
## 3.0.0 / 2024-11-14
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/).

View File

@ -1 +1 @@
3.0.0
3.0.1

View File

@ -1,7 +1,7 @@
{
"name": "@prometheus-io/mantine-ui",
"private": true,
"version": "0.300.0",
"version": "0.300.1",
"type": "module",
"scripts": {
"start": "vite",
@ -28,7 +28,7 @@
"@microsoft/fetch-event-source": "^2.0.1",
"@nexucis/fuzzy": "^0.5.1",
"@nexucis/kvsearch": "^0.9.1",
"@prometheus-io/codemirror-promql": "0.300.0",
"@prometheus-io/codemirror-promql": "0.300.1",
"@reduxjs/toolkit": "^2.2.1",
"@tabler/icons-react": "^3.19.0",
"@tanstack/react-query": "^5.59.0",

View File

@ -1,6 +1,6 @@
{
"name": "@prometheus-io/codemirror-promql",
"version": "0.300.0",
"version": "0.300.1",
"description": "a CodeMirror mode for the PromQL language",
"types": "dist/esm/index.d.ts",
"module": "dist/esm/index.js",
@ -29,7 +29,7 @@
},
"homepage": "https://github.com/prometheus/prometheus/blob/main/web/ui/module/codemirror-promql/README.md",
"dependencies": {
"@prometheus-io/lezer-promql": "0.300.0",
"@prometheus-io/lezer-promql": "0.300.1",
"lru-cache": "^11.0.1"
},
"devDependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@prometheus-io/lezer-promql",
"version": "0.300.0",
"version": "0.300.1",
"description": "lezer-based PromQL grammar",
"main": "dist/index.cjs",
"type": "module",

View File

@ -1,12 +1,12 @@
{
"name": "prometheus-io",
"version": "0.300.0",
"version": "0.300.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "prometheus-io",
"version": "0.300.0",
"version": "0.300.1",
"workspaces": [
"mantine-ui",
"module/*"
@ -24,7 +24,7 @@
},
"mantine-ui": {
"name": "@prometheus-io/mantine-ui",
"version": "0.300.0",
"version": "0.300.1",
"dependencies": {
"@codemirror/autocomplete": "^6.18.1",
"@codemirror/language": "^6.10.2",
@ -42,7 +42,7 @@
"@microsoft/fetch-event-source": "^2.0.1",
"@nexucis/fuzzy": "^0.5.1",
"@nexucis/kvsearch": "^0.9.1",
"@prometheus-io/codemirror-promql": "0.300.0",
"@prometheus-io/codemirror-promql": "0.300.1",
"@reduxjs/toolkit": "^2.2.1",
"@tabler/icons-react": "^3.19.0",
"@tanstack/react-query": "^5.59.0",
@ -155,10 +155,10 @@
},
"module/codemirror-promql": {
"name": "@prometheus-io/codemirror-promql",
"version": "0.300.0",
"version": "0.300.1",
"license": "Apache-2.0",
"dependencies": {
"@prometheus-io/lezer-promql": "0.300.0",
"@prometheus-io/lezer-promql": "0.300.1",
"lru-cache": "^11.0.1"
},
"devDependencies": {
@ -188,7 +188,7 @@
},
"module/lezer-promql": {
"name": "@prometheus-io/lezer-promql",
"version": "0.300.0",
"version": "0.300.1",
"license": "Apache-2.0",
"devDependencies": {
"@lezer/generator": "^1.7.1",

View File

@ -1,7 +1,7 @@
{
"name": "prometheus-io",
"description": "Monorepo for the Prometheus UI",
"version": "0.300.0",
"version": "0.300.1",
"private": true,
"scripts": {
"build": "bash build_ui.sh --all",

View File

@ -1,12 +1,12 @@
{
"name": "@prometheus-io/app",
"version": "0.300.0",
"version": "0.300.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@prometheus-io/app",
"version": "0.300.0",
"version": "0.300.1",
"dependencies": {
"@codemirror/autocomplete": "^6.17.0",
"@codemirror/commands": "^6.6.0",

View File

@ -1,6 +1,6 @@
{
"name": "@prometheus-io/app",
"version": "0.300.0",
"version": "0.300.1",
"private": true,
"dependencies": {
"@codemirror/autocomplete": "^6.17.0",