Release 3.4.0 (#16600)

This commit is contained in:
Jan-Otto Kröpke 2025-05-17 08:40:29 +02:00 committed by GitHub
parent 7a92230652
commit 93f7c78211
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 13 additions and 13 deletions

View File

@ -1,6 +1,6 @@
# Changelog
## 3.4.0-rc.0 / 2025-04-29
## 3.4.0 / 2025-05-16
* [CHANGE] Config: Make setting out-of-order native histograms feature (`--enable-feature=ooo-native-histograms`) a no-op. Out-of-order native histograms are now always enabled when `out_of_order_time_window` is greater than zero and `--enable-feature=native-histograms` is set. #16207
* [FEATURE] OTLP translate: Add feature flag for optionally translating OTel explicit bucket histograms into native histograms with custom buckets. #15850

View File

@ -1 +1 @@
3.4.0-rc.0
3.4.0

View File

@ -1,7 +1,7 @@
{
"name": "@prometheus-io/mantine-ui",
"private": true,
"version": "0.304.0-rc.0",
"version": "0.304.0",
"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.304.0-rc.0",
"@prometheus-io/codemirror-promql": "0.304.0",
"@reduxjs/toolkit": "^2.7.0",
"@tabler/icons-react": "^3.31.0",
"@tanstack/react-query": "^5.74.7",

View File

@ -1,6 +1,6 @@
{
"name": "@prometheus-io/codemirror-promql",
"version": "0.304.0-rc.0",
"version": "0.304.0",
"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.304.0-rc.0",
"@prometheus-io/lezer-promql": "0.304.0",
"lru-cache": "^11.1.0"
},
"devDependencies": {

View File

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

View File

@ -24,7 +24,7 @@
},
"mantine-ui": {
"name": "@prometheus-io/mantine-ui",
"version": "0.304.0-rc.0",
"version": "0.304.0",
"dependencies": {
"@codemirror/autocomplete": "^6.18.6",
"@codemirror/language": "^6.11.0",
@ -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.304.0-rc.0",
"@prometheus-io/codemirror-promql": "0.304.0",
"@reduxjs/toolkit": "^2.7.0",
"@tabler/icons-react": "^3.31.0",
"@tanstack/react-query": "^5.74.7",
@ -189,10 +189,10 @@
},
"module/codemirror-promql": {
"name": "@prometheus-io/codemirror-promql",
"version": "0.304.0-rc.0",
"version": "0.304.0",
"license": "Apache-2.0",
"dependencies": {
"@prometheus-io/lezer-promql": "0.304.0-rc.0",
"@prometheus-io/lezer-promql": "0.304.0",
"lru-cache": "^11.1.0"
},
"devDependencies": {
@ -222,7 +222,7 @@
},
"module/lezer-promql": {
"name": "@prometheus-io/lezer-promql",
"version": "0.304.0-rc.0",
"version": "0.304.0",
"license": "Apache-2.0",
"devDependencies": {
"@lezer/generator": "^1.7.3",

View File

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