Compare commits

..

4 Commits

Author SHA1 Message Date
grafana-delivery-bot[bot] 9b9a6f6979 Release: update changelog for 11.5.3+security-01 (#104340)
* Update changelog

* baldm0mma/ update changelog

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: jev forsberg <jev.forsberg@grafana.com>
2025-04-22 16:07:09 -05:00
nmarrs 36b131b1b7 backport commit 2025-04-07 09:27:14 -05:00
Yuri Tseretyan aac667ec58 require editor to fetch config 2025-04-07 09:27:14 -05:00
Andres Martinez Gotor 4cc984f2c4 Sanitize paths before evaluating access to route 2025-04-07 09:27:14 -05:00
62 changed files with 257 additions and 254 deletions
-43
View File
@@ -1,43 +0,0 @@
# Owned by grafana-delivery-squad
# Intended to be dropped into the base repo, Ex: grafana/grafana
name: Dispatch sync to mirror
run-name: dispatch-sync-to-mirror-${{ github.ref_name }}
on:
workflow_dispatch:
push:
branches:
- "main"
- "v*.*.*"
- "release-*"
# This is run after the pull request has been merged, so we'll run against the target branch
jobs:
dispatch-job:
runs-on: ubuntu-latest
steps:
- name: "Generate token"
id: generate_token
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a
with:
# App needs Actions: Read/Write for the grafana/security-patch-actions repo
app_id: ${{ secrets.GRAFANA_DELIVERY_BOT_APP_ID }}
private_key: ${{ secrets.GRAFANA_DELIVERY_BOT_APP_PEM }}
- uses: actions/github-script@v7
if: github.repository == 'grafana/grafana'
with:
github-token: ${{ steps.generate_token.outputs.token }}
script: |
await github.rest.actions.createWorkflowDispatch({
owner: 'grafana',
repo: 'security-patch-actions',
workflow_id: 'mirror-branch-and-apply-patches-event.yml',
ref: 'main',
inputs: {
src_ref: "${{ github.ref_name }}",
src_repo: "${{ github.repository }}",
src_sha: "${{ github.sha }}",
dest_repo: "${{ github.repository }}-security-mirror",
patch_repo: "${{ github.repository }}-security-patches"
}
})
+25
View File
@@ -0,0 +1,25 @@
# Owned by grafana-release-guild
# Intended to be dropped into the base repo, Ex: grafana/grafana
name: Sync to mirror
run-name: sync-to-mirror-${{ github.ref_name }}
on:
workflow_dispatch:
push:
branches:
- "main"
- "v*.*.*"
- "release-*"
# This is run after the pull request has been merged, so we'll run against the target branch
jobs:
trigger_downstream_patch_mirror:
concurrency: patch-mirror-${{ github.ref_name }}
uses: grafana/security-patch-actions/.github/workflows/mirror-branch-and-apply-patches.yml@main
if: github.repository == 'grafana/grafana'
with:
ref: "${{ github.ref_name }}" # this is the target branch name, Ex: "main"
src_repo: "${{ github.repository }}"
dest_repo: "${{ github.repository }}-security-mirror"
patch_repo: "${{ github.repository }}-security-patches"
secrets: inherit
+7 -3
View File
@@ -1,11 +1,12 @@
<!-- 11.5.3 START -->
<!-- 11.5.3+security-01 START -->
# 11.5.3 (2025-03-25)
# 11.5.3+security-01 (2025-04-22)
### Features and enhancements
- **Chore:** Bump Go to 1.23.7 [#101581](https://github.com/grafana/grafana/pull/101581), [@macabu](https://github.com/macabu)
- **Chore:** Bump Go to 1.23.7 (Enterprise)
- **Chore:** Update CVE-affected dependencies [#102709](https://github.com/grafana/grafana/pull/102709), [@grambbledook](https://github.com/grambbledook)
### Bug fixes
@@ -14,9 +15,12 @@
- **Dashboard:** Fix the unintentional time range and variables updates on saving [#101671](https://github.com/grafana/grafana/pull/101671), [@harisrozajac](https://github.com/harisrozajac)
- **Dashboards:** Fix missing `v/e/i` keybindings to return back to dashboard [#102365](https://github.com/grafana/grafana/pull/102365), [@mdvictor](https://github.com/mdvictor)
- **InfluxDB:** Improve handling of template variables contained in regular expressions (InfluxQL) [#100977](https://github.com/grafana/grafana/pull/100977), [@aangelisc](https://github.com/aangelisc)
- **LDAP test:** Fix page crash [#102683](https://github.com/grafana/grafana/pull/102683), [@ashharrison90](https://github.com/ashharrison90)
- **Org redirection:** Fix linking between orgs [#102089](https://github.com/grafana/grafana/pull/102089), [@ashharrison90](https://github.com/ashharrison90)
- **Security:** Fix CVE-2025-3454
- **Security:** Fix CVE-2025-2703
<!-- 11.5.3 END -->
<!-- 11.5.3+security-01 END -->
<!-- 11.5.2 START -->
# 11.5.2 (2025-02-18)
@@ -1,6 +1,6 @@
{
"name": "@test-plugins/extensions-test-app",
"version": "11.5.4",
"version": "11.5.3",
"private": true,
"scripts": {
"build": "webpack -c ./webpack.config.ts --env production",
@@ -1,6 +1,6 @@
{
"name": "@test-plugins/grafana-e2etest-datasource",
"version": "11.5.4",
"version": "11.5.3",
"private": true,
"scripts": {
"build": "webpack -c ./webpack.config.ts --env production",
@@ -11,7 +11,7 @@
"author": "Grafana",
"license": "Apache-2.0",
"devDependencies": {
"@grafana/plugin-configs": "11.5.4",
"@grafana/plugin-configs": "11.5.3",
"@types/lodash": "4.17.7",
"@types/node": "22.10.2",
"@types/prismjs": "1.26.4",
+1 -1
View File
@@ -1,5 +1,5 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"npmClient": "yarn",
"version": "11.5.4"
"version": "11.5.3"
}
+1 -1
View File
@@ -3,7 +3,7 @@
"license": "AGPL-3.0-only",
"private": true,
"name": "grafana",
"version": "11.5.4",
"version": "11.5.3",
"repository": "github:grafana/grafana",
"scripts": {
"build": "NODE_ENV=production nx exec --verbose -- webpack --config scripts/webpack/webpack.prod.js --progress",
+2 -2
View File
@@ -2,7 +2,7 @@
"author": "Grafana Labs",
"license": "Apache-2.0",
"name": "@grafana/data",
"version": "11.5.4",
"version": "11.5.3",
"description": "Grafana Data Library",
"keywords": [
"typescript"
@@ -36,7 +36,7 @@
},
"dependencies": {
"@braintree/sanitize-url": "7.0.1",
"@grafana/schema": "11.5.4",
"@grafana/schema": "11.5.3",
"@types/d3-interpolate": "^3.0.0",
"@types/string-hash": "1.1.3",
"d3-interpolate": "3.0.1",
+1 -1
View File
@@ -2,7 +2,7 @@
"author": "Grafana Labs",
"license": "Apache-2.0",
"name": "@grafana/e2e-selectors",
"version": "11.5.4",
"version": "11.5.3",
"description": "Grafana End-to-End Test Selectors Library",
"keywords": [
"cli",
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@grafana/eslint-plugin",
"description": "ESLint rules for use within the Grafana repo. Not suitable (or supported) for external use.",
"version": "11.5.4",
"version": "11.5.3",
"main": "./index.cjs",
"author": "Grafana Labs",
"license": "Apache-2.0",
+3 -3
View File
@@ -2,7 +2,7 @@
"author": "Grafana Labs",
"license": "Apache-2.0",
"name": "@grafana/flamegraph",
"version": "11.5.4",
"version": "11.5.3",
"description": "Grafana flamegraph visualization component",
"keywords": [
"grafana",
@@ -44,8 +44,8 @@
],
"dependencies": {
"@emotion/css": "11.13.5",
"@grafana/data": "11.5.4",
"@grafana/ui": "11.5.4",
"@grafana/data": "11.5.3",
"@grafana/ui": "11.5.3",
"@leeoniya/ufuzzy": "1.0.18",
"d3": "^7.8.5",
"lodash": "4.17.21",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@grafana/saga-icons",
"version": "11.5.4",
"version": "11.5.3",
"private": true,
"description": "Icons for Grafana",
"author": "Grafana Labs",
@@ -3,7 +3,7 @@
"license": "AGPL-3.0-only",
"name": "@grafana/o11y-ds-frontend",
"private": true,
"version": "11.5.4",
"version": "11.5.3",
"description": "Library to manage traces in Grafana.",
"sideEffects": false,
"repository": {
@@ -18,12 +18,12 @@
},
"dependencies": {
"@emotion/css": "11.13.5",
"@grafana/data": "11.5.4",
"@grafana/e2e-selectors": "11.5.4",
"@grafana/data": "11.5.3",
"@grafana/e2e-selectors": "11.5.3",
"@grafana/experimental": "2.1.6",
"@grafana/runtime": "11.5.4",
"@grafana/schema": "11.5.4",
"@grafana/ui": "11.5.4",
"@grafana/runtime": "11.5.3",
"@grafana/schema": "11.5.3",
"@grafana/ui": "11.5.3",
"react-select": "5.9.0",
"react-use": "17.6.0",
"rxjs": "7.8.1",
+1 -1
View File
@@ -2,7 +2,7 @@
"name": "@grafana/plugin-configs",
"description": "Shared dependencies and files for core plugins",
"private": true,
"version": "11.5.4",
"version": "11.5.3",
"dependencies": {
"tslib": "2.8.1"
},
+6 -6
View File
@@ -2,7 +2,7 @@
"author": "Grafana Labs",
"license": "AGPL-3.0-only",
"name": "@grafana/prometheus",
"version": "11.5.4",
"version": "11.5.3",
"description": "Grafana Prometheus Library",
"keywords": [
"typescript"
@@ -38,12 +38,12 @@
"dependencies": {
"@emotion/css": "11.13.5",
"@floating-ui/react": "0.27.3",
"@grafana/data": "11.5.4",
"@grafana/data": "11.5.3",
"@grafana/experimental": "2.1.6",
"@grafana/faro-web-sdk": "1.12.2",
"@grafana/runtime": "11.5.4",
"@grafana/schema": "11.5.4",
"@grafana/ui": "11.5.4",
"@grafana/runtime": "11.5.3",
"@grafana/schema": "11.5.3",
"@grafana/ui": "11.5.3",
"@hello-pangea/dnd": "17.0.0",
"@leeoniya/ufuzzy": "1.0.18",
"@lezer/common": "1.2.3",
@@ -76,7 +76,7 @@
},
"devDependencies": {
"@emotion/eslint-plugin": "11.12.0",
"@grafana/e2e-selectors": "11.5.4",
"@grafana/e2e-selectors": "11.5.3",
"@grafana/tsconfig": "^2.0.0",
"@rollup/plugin-image": "3.0.3",
"@rollup/plugin-node-resolve": "16.0.0",
+5 -5
View File
@@ -2,7 +2,7 @@
"author": "Grafana Labs",
"license": "Apache-2.0",
"name": "@grafana/runtime",
"version": "11.5.4",
"version": "11.5.3",
"description": "Grafana Runtime Library",
"keywords": [
"grafana",
@@ -37,11 +37,11 @@
"postpack": "mv package.json.bak package.json"
},
"dependencies": {
"@grafana/data": "11.5.4",
"@grafana/e2e-selectors": "11.5.4",
"@grafana/data": "11.5.3",
"@grafana/e2e-selectors": "11.5.3",
"@grafana/faro-web-sdk": "^1.3.6",
"@grafana/schema": "11.5.4",
"@grafana/ui": "11.5.4",
"@grafana/schema": "11.5.3",
"@grafana/ui": "11.5.3",
"history": "4.10.1",
"lodash": "4.17.21",
"react-use": "17.6.0",
+1 -1
View File
@@ -2,7 +2,7 @@
"author": "Grafana Labs",
"license": "Apache-2.0",
"name": "@grafana/schema",
"version": "11.5.4",
"version": "11.5.3",
"description": "Grafana Schema Library",
"keywords": [
"typescript"
@@ -8,7 +8,7 @@
//
// Run 'make gen-cue' from repository root to regenerate.
export const pluginVersion = "11.5.4";
export const pluginVersion = "11.5.3";
export interface Options {
limit: number;
@@ -10,7 +10,7 @@
import * as common from '@grafana/schema';
export const pluginVersion = "11.5.4";
export const pluginVersion = "11.5.3";
export interface Options extends common.OptionsWithLegend, common.OptionsWithTooltip, common.OptionsWithTextFormatting {
/**
@@ -10,7 +10,7 @@
import * as common from '@grafana/schema';
export const pluginVersion = "11.5.4";
export const pluginVersion = "11.5.3";
export interface Options extends common.OptionsWithLegend, common.SingleStatBaseOptions {
displayMode: common.BarGaugeDisplayMode;
@@ -10,7 +10,7 @@
import * as common from '@grafana/schema';
export const pluginVersion = "11.5.4";
export const pluginVersion = "11.5.3";
export enum VizDisplayMode {
Candles = 'candles',
@@ -10,7 +10,7 @@
import * as ui from '@grafana/schema';
export const pluginVersion = "11.5.4";
export const pluginVersion = "11.5.3";
export enum HorizontalConstraint {
Center = 'center',
@@ -10,7 +10,7 @@
import * as common from '@grafana/schema';
export const pluginVersion = "11.5.4";
export const pluginVersion = "11.5.3";
export interface MetricStat {
/**
@@ -8,7 +8,7 @@
//
// Run 'make gen-cue' from repository root to regenerate.
export const pluginVersion = "11.5.4";
export const pluginVersion = "11.5.3";
export interface Options {
/**
@@ -8,7 +8,7 @@
//
// Run 'make gen-cue' from repository root to regenerate.
export const pluginVersion = "11.5.4";
export const pluginVersion = "11.5.3";
export interface Options {
selectedSeries: number;
@@ -8,7 +8,7 @@
//
// Run 'make gen-cue' from repository root to regenerate.
export const pluginVersion = "11.5.4";
export const pluginVersion = "11.5.3";
export type UpdateConfig = {
render: boolean,
@@ -10,7 +10,7 @@
import * as common from '@grafana/schema';
export const pluginVersion = "11.5.4";
export const pluginVersion = "11.5.3";
export type BucketAggregation = (DateHistogram | Histogram | Terms | Filters | GeoHashGrid | Nested);
@@ -10,7 +10,7 @@
import * as common from '@grafana/schema';
export const pluginVersion = "11.5.4";
export const pluginVersion = "11.5.3";
export interface Options extends common.SingleStatBaseOptions {
minVizHeight: number;
@@ -10,7 +10,7 @@
import * as ui from '@grafana/schema';
export const pluginVersion = "11.5.4";
export const pluginVersion = "11.5.3";
export interface Options {
basemap: ui.MapLayerOptions;
@@ -10,7 +10,7 @@
import * as ui from '@grafana/schema';
export const pluginVersion = "11.5.4";
export const pluginVersion = "11.5.3";
/**
* Controls the color mode of the heatmap
@@ -10,7 +10,7 @@
import * as common from '@grafana/schema';
export const pluginVersion = "11.5.4";
export const pluginVersion = "11.5.3";
export interface Options extends common.OptionsWithLegend, common.OptionsWithTooltip {
/**
@@ -10,7 +10,7 @@
import * as common from '@grafana/schema';
export const pluginVersion = "11.5.4";
export const pluginVersion = "11.5.3";
export interface Options {
dedupStrategy: common.LogsDedupStrategy;
@@ -10,7 +10,7 @@
import * as common from '@grafana/schema';
export const pluginVersion = "11.5.4";
export const pluginVersion = "11.5.3";
export enum QueryEditorMode {
Builder = 'builder',
@@ -8,7 +8,7 @@
//
// Run 'make gen-cue' from repository root to regenerate.
export const pluginVersion = "11.5.4";
export const pluginVersion = "11.5.3";
export interface Options {
/**
@@ -8,7 +8,7 @@
//
// Run 'make gen-cue' from repository root to regenerate.
export const pluginVersion = "11.5.4";
export const pluginVersion = "11.5.3";
export interface ArcOption {
/**
@@ -10,7 +10,7 @@
import * as common from '@grafana/schema';
export const pluginVersion = "11.5.4";
export const pluginVersion = "11.5.3";
/**
* Select the pie chart display style.
@@ -10,7 +10,7 @@
import * as common from '@grafana/schema';
export const pluginVersion = "11.5.4";
export const pluginVersion = "11.5.3";
export interface Options extends common.SingleStatBaseOptions {
colorMode: common.BigValueColorMode;
@@ -10,7 +10,7 @@
import * as ui from '@grafana/schema';
export const pluginVersion = "11.5.4";
export const pluginVersion = "11.5.3";
export interface Options extends ui.OptionsWithLegend, ui.OptionsWithTooltip, ui.OptionsWithTimezones {
/**
@@ -10,7 +10,7 @@
import * as ui from '@grafana/schema';
export const pluginVersion = "11.5.4";
export const pluginVersion = "11.5.3";
export interface Options extends ui.OptionsWithLegend, ui.OptionsWithTooltip, ui.OptionsWithTimezones {
/**
@@ -10,7 +10,7 @@
import * as ui from '@grafana/schema';
export const pluginVersion = "11.5.4";
export const pluginVersion = "11.5.3";
export interface Options {
/**
@@ -8,7 +8,7 @@
//
// Run 'make gen-cue' from repository root to regenerate.
export const pluginVersion = "11.5.4";
export const pluginVersion = "11.5.3";
export enum TextMode {
Code = 'code',
@@ -10,7 +10,7 @@
import * as common from '@grafana/schema';
export const pluginVersion = "11.5.4";
export const pluginVersion = "11.5.3";
export interface Options extends common.OptionsWithTimezones {
legend: common.VizLegendOptions;
@@ -10,7 +10,7 @@
import * as common from '@grafana/schema';
export const pluginVersion = "11.5.4";
export const pluginVersion = "11.5.3";
/**
* Identical to timeseries... except it does not have timezone settings
@@ -10,7 +10,7 @@
import * as common from '@grafana/schema';
export const pluginVersion = "11.5.4";
export const pluginVersion = "11.5.3";
export enum PointShape {
Circle = 'circle',
+5 -5
View File
@@ -3,7 +3,7 @@
"license": "AGPL-3.0-only",
"private": true,
"name": "@grafana/sql",
"version": "11.5.4",
"version": "11.5.3",
"repository": {
"type": "git",
"url": "http://github.com/grafana/grafana.git",
@@ -15,11 +15,11 @@
},
"dependencies": {
"@emotion/css": "11.13.5",
"@grafana/data": "11.5.4",
"@grafana/e2e-selectors": "11.5.4",
"@grafana/data": "11.5.3",
"@grafana/e2e-selectors": "11.5.3",
"@grafana/experimental": "2.1.6",
"@grafana/runtime": "11.5.4",
"@grafana/ui": "11.5.4",
"@grafana/runtime": "11.5.3",
"@grafana/ui": "11.5.3",
"@react-awesome-query-builder/ui": "6.6.4",
"immutable": "5.0.3",
"lodash": "4.17.21",
+4 -4
View File
@@ -2,7 +2,7 @@
"author": "Grafana Labs",
"license": "Apache-2.0",
"name": "@grafana/ui",
"version": "11.5.4",
"version": "11.5.3",
"description": "Grafana Components Library",
"keywords": [
"grafana",
@@ -50,10 +50,10 @@
"@emotion/react": "11.14.0",
"@emotion/serialize": "1.3.3",
"@floating-ui/react": "0.27.3",
"@grafana/data": "11.5.4",
"@grafana/e2e-selectors": "11.5.4",
"@grafana/data": "11.5.3",
"@grafana/e2e-selectors": "11.5.3",
"@grafana/faro-web-sdk": "^1.3.6",
"@grafana/schema": "11.5.4",
"@grafana/schema": "11.5.3",
"@hello-pangea/dnd": "17.0.0",
"@leeoniya/ufuzzy": "1.0.18",
"@monaco-editor/react": "4.6.0",
+9 -1
View File
@@ -302,7 +302,15 @@ func (proxy *DataSourceProxy) validateRequest() error {
}
// route match
if !strings.HasPrefix(proxy.proxyPath, route.Path) {
r1, err := util.CleanRelativePath(proxy.proxyPath)
if err != nil {
return err
}
r2, err := util.CleanRelativePath(route.Path)
if err != nil {
return err
}
if !strings.HasPrefix(r1, r2) {
continue
}
+8
View File
@@ -274,6 +274,14 @@ func TestDataSourceProxy_routeRule(t *testing.T) {
err = proxy.validateRequest()
require.NoError(t, err)
})
t.Run("path with slashes and user is editor", func(t *testing.T) {
ctx, _ := setUp()
proxy, err := setupDSProxyTest(t, ctx, ds, routes, "//api//admin")
require.NoError(t, err)
err = proxy.validateRequest()
require.Error(t, err)
})
})
t.Run("plugin route with RBAC protection user is allowed", func(t *testing.T) {
@@ -39,7 +39,7 @@
{
"method": "GET",
"path": "api/v1/alerts",
"reqRole": "Admin"
"reqRole": "Editor"
}
],
"info": {
@@ -2,14 +2,14 @@
"name": "@grafana-plugins/grafana-azure-monitor-datasource",
"description": "Grafana data source for Azure Monitor",
"private": true,
"version": "11.5.4",
"version": "11.5.3",
"dependencies": {
"@emotion/css": "11.13.5",
"@grafana/data": "11.5.4",
"@grafana/data": "11.5.3",
"@grafana/experimental": "2.1.6",
"@grafana/runtime": "11.5.4",
"@grafana/schema": "11.5.4",
"@grafana/ui": "11.5.4",
"@grafana/runtime": "11.5.3",
"@grafana/schema": "11.5.3",
"@grafana/ui": "11.5.3",
"@kusto/monaco-kusto": "^10.0.0",
"fast-deep-equal": "^3.1.3",
"i18next": "^24.0.0",
@@ -25,8 +25,8 @@
"tslib": "2.8.1"
},
"devDependencies": {
"@grafana/e2e-selectors": "11.5.4",
"@grafana/plugin-configs": "11.5.4",
"@grafana/e2e-selectors": "11.5.3",
"@grafana/plugin-configs": "11.5.3",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
@@ -2,15 +2,15 @@
"name": "@grafana-plugins/stackdriver",
"description": "Grafana data source for Google Cloud Monitoring",
"private": true,
"version": "11.5.4",
"version": "11.5.3",
"dependencies": {
"@emotion/css": "11.13.5",
"@grafana/data": "11.5.4",
"@grafana/data": "11.5.3",
"@grafana/experimental": "2.1.6",
"@grafana/google-sdk": "0.1.2",
"@grafana/runtime": "11.5.4",
"@grafana/schema": "11.5.4",
"@grafana/ui": "11.5.4",
"@grafana/runtime": "11.5.3",
"@grafana/schema": "11.5.3",
"@grafana/ui": "11.5.3",
"debounce-promise": "3.1.2",
"fast-deep-equal": "^3.1.3",
"i18next": "^24.0.0",
@@ -26,8 +26,8 @@
"tslib": "2.8.1"
},
"devDependencies": {
"@grafana/e2e-selectors": "11.5.4",
"@grafana/plugin-configs": "11.5.4",
"@grafana/e2e-selectors": "11.5.3",
"@grafana/plugin-configs": "11.5.3",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
@@ -2,22 +2,22 @@
"name": "@grafana-plugins/grafana-postgresql-datasource",
"description": "PostgreSQL data source plugin",
"private": true,
"version": "11.5.4",
"version": "11.5.3",
"dependencies": {
"@emotion/css": "11.13.5",
"@grafana/data": "11.5.4",
"@grafana/data": "11.5.3",
"@grafana/experimental": "2.1.6",
"@grafana/runtime": "11.5.4",
"@grafana/sql": "11.5.4",
"@grafana/ui": "11.5.4",
"@grafana/runtime": "11.5.3",
"@grafana/sql": "11.5.3",
"@grafana/ui": "11.5.3",
"lodash": "4.17.21",
"react": "18.2.0",
"rxjs": "7.8.1",
"tslib": "2.8.1"
},
"devDependencies": {
"@grafana/e2e-selectors": "11.5.4",
"@grafana/plugin-configs": "11.5.4",
"@grafana/e2e-selectors": "11.5.3",
"@grafana/plugin-configs": "11.5.3",
"@testing-library/dom": "10.4.0",
"@testing-library/react": "16.1.0",
"@testing-library/user-event": "14.5.2",
@@ -2,13 +2,13 @@
"name": "@grafana-plugins/grafana-pyroscope-datasource",
"description": "Continuous profiling for analysis of CPU and memory usage, down to the line number and throughout time. Saving infrastructure cost, improving performance, and increasing reliability.",
"private": true,
"version": "11.5.4",
"version": "11.5.3",
"dependencies": {
"@emotion/css": "11.13.5",
"@grafana/data": "11.5.4",
"@grafana/runtime": "11.5.4",
"@grafana/schema": "11.5.4",
"@grafana/ui": "11.5.4",
"@grafana/data": "11.5.3",
"@grafana/runtime": "11.5.3",
"@grafana/schema": "11.5.3",
"@grafana/ui": "11.5.3",
"fast-deep-equal": "^3.1.3",
"lodash": "4.17.21",
"monaco-editor": "0.34.1",
@@ -20,7 +20,7 @@
"tslib": "2.8.1"
},
"devDependencies": {
"@grafana/plugin-configs": "11.5.4",
"@grafana/plugin-configs": "11.5.3",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
@@ -2,14 +2,14 @@
"name": "@grafana-plugins/grafana-testdata-datasource",
"description": "Generates test data in different forms",
"private": true,
"version": "11.5.4",
"version": "11.5.3",
"dependencies": {
"@emotion/css": "11.13.5",
"@grafana/data": "11.5.4",
"@grafana/data": "11.5.3",
"@grafana/experimental": "2.1.6",
"@grafana/runtime": "11.5.4",
"@grafana/schema": "11.5.4",
"@grafana/ui": "11.5.4",
"@grafana/runtime": "11.5.3",
"@grafana/schema": "11.5.3",
"@grafana/ui": "11.5.3",
"d3-random": "^3.0.1",
"lodash": "4.17.21",
"micro-memoize": "^4.1.2",
@@ -22,8 +22,8 @@
"uuid": "11.0.5"
},
"devDependencies": {
"@grafana/e2e-selectors": "11.5.4",
"@grafana/plugin-configs": "11.5.4",
"@grafana/e2e-selectors": "11.5.3",
"@grafana/plugin-configs": "11.5.3",
"@testing-library/dom": "10.4.0",
"@testing-library/react": "16.1.0",
"@testing-library/user-event": "14.5.2",
@@ -2,7 +2,7 @@
"name": "@grafana-plugins/jaeger",
"description": "Jaeger plugin for Grafana",
"private": true,
"version": "11.5.4",
"version": "11.5.3",
"dependencies": {
"@emotion/css": "11.13.5",
"@grafana/data": "workspace:*",
@@ -2,22 +2,22 @@
"name": "@grafana-plugins/mssql",
"description": "MSSQL data source plugin",
"private": true,
"version": "11.5.4",
"version": "11.5.3",
"dependencies": {
"@emotion/css": "11.13.5",
"@grafana/data": "11.5.4",
"@grafana/data": "11.5.3",
"@grafana/experimental": "2.1.6",
"@grafana/runtime": "11.5.4",
"@grafana/sql": "11.5.4",
"@grafana/ui": "11.5.4",
"@grafana/runtime": "11.5.3",
"@grafana/sql": "11.5.3",
"@grafana/ui": "11.5.3",
"lodash": "4.17.21",
"react": "18.2.0",
"rxjs": "7.8.1",
"tslib": "2.8.1"
},
"devDependencies": {
"@grafana/e2e-selectors": "11.5.4",
"@grafana/plugin-configs": "11.5.4",
"@grafana/e2e-selectors": "11.5.3",
"@grafana/plugin-configs": "11.5.3",
"@testing-library/dom": "10.4.0",
"@testing-library/react": "16.1.0",
"@testing-library/user-event": "14.5.2",
@@ -2,22 +2,22 @@
"name": "@grafana-plugins/mysql",
"description": "MySQL data source plugin",
"private": true,
"version": "11.5.4",
"version": "11.5.3",
"dependencies": {
"@emotion/css": "11.13.5",
"@grafana/data": "11.5.4",
"@grafana/data": "11.5.3",
"@grafana/experimental": "2.1.6",
"@grafana/runtime": "11.5.4",
"@grafana/sql": "11.5.4",
"@grafana/ui": "11.5.4",
"@grafana/runtime": "11.5.3",
"@grafana/sql": "11.5.3",
"@grafana/ui": "11.5.3",
"lodash": "4.17.21",
"react": "18.2.0",
"rxjs": "7.8.1",
"tslib": "2.8.1"
},
"devDependencies": {
"@grafana/e2e-selectors": "11.5.4",
"@grafana/plugin-configs": "11.5.4",
"@grafana/e2e-selectors": "11.5.3",
"@grafana/plugin-configs": "11.5.3",
"@testing-library/dom": "10.4.0",
"@testing-library/react": "16.1.0",
"@testing-library/user-event": "14.5.2",
@@ -2,13 +2,13 @@
"name": "@grafana-plugins/parca",
"description": "Continuous profiling for analysis of CPU and memory usage, down to the line number and throughout time. Saving infrastructure cost, improving performance, and increasing reliability.",
"private": true,
"version": "11.5.4",
"version": "11.5.3",
"dependencies": {
"@emotion/css": "11.13.5",
"@grafana/data": "11.5.4",
"@grafana/runtime": "11.5.4",
"@grafana/schema": "11.5.4",
"@grafana/ui": "11.5.4",
"@grafana/data": "11.5.3",
"@grafana/runtime": "11.5.3",
"@grafana/schema": "11.5.3",
"@grafana/ui": "11.5.3",
"lodash": "4.17.21",
"monaco-editor": "0.34.1",
"react": "18.2.0",
@@ -18,7 +18,7 @@
"tslib": "2.8.1"
},
"devDependencies": {
"@grafana/plugin-configs": "11.5.4",
"@grafana/plugin-configs": "11.5.3",
"@testing-library/dom": "10.4.0",
"@testing-library/react": "16.1.0",
"@testing-library/user-event": "14.5.2",
@@ -2,7 +2,7 @@
"name": "@grafana-plugins/tempo",
"description": "Grafana plugin for the Tempo data source.",
"private": true,
"version": "11.5.4",
"version": "11.5.3",
"dependencies": {
"@emotion/css": "11.13.5",
"@grafana/data": "workspace:*",
@@ -39,7 +39,7 @@
"uuid": "11.0.5"
},
"devDependencies": {
"@grafana/plugin-configs": "11.5.4",
"@grafana/plugin-configs": "11.5.3",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
@@ -2,7 +2,7 @@
"name": "@grafana-plugins/zipkin",
"description": "Zipkin plugin for Grafana",
"private": true,
"version": "11.5.4",
"version": "11.5.3",
"dependencies": {
"@emotion/css": "11.13.5",
"@grafana/data": "workspace:*",
+2 -1
View File
@@ -641,7 +641,8 @@ function fieldValueColors(f: Field, theme: GrafanaTheme2): FieldColorValues {
let lasti = steps.length - 1;
for (let i = lasti; i > 0; i--) {
conds += `v >= ${steps[i].value} ? ${i} : `;
let rhs = Number(steps[i].value);
conds += `v >= ${rhs} ? ${i} : `;
}
conds += '0';
+79 -79
View File
@@ -2665,13 +2665,13 @@ __metadata:
resolution: "@grafana-plugins/grafana-azure-monitor-datasource@workspace:public/app/plugins/datasource/azuremonitor"
dependencies:
"@emotion/css": "npm:11.13.5"
"@grafana/data": "npm:11.5.4"
"@grafana/e2e-selectors": "npm:11.5.4"
"@grafana/data": "npm:11.5.3"
"@grafana/e2e-selectors": "npm:11.5.3"
"@grafana/experimental": "npm:2.1.6"
"@grafana/plugin-configs": "npm:11.5.4"
"@grafana/runtime": "npm:11.5.4"
"@grafana/schema": "npm:11.5.4"
"@grafana/ui": "npm:11.5.4"
"@grafana/plugin-configs": "npm:11.5.3"
"@grafana/runtime": "npm:11.5.3"
"@grafana/schema": "npm:11.5.3"
"@grafana/ui": "npm:11.5.3"
"@kusto/monaco-kusto": "npm:^10.0.0"
"@testing-library/dom": "npm:10.4.0"
"@testing-library/jest-dom": "npm:6.6.3"
@@ -2709,13 +2709,13 @@ __metadata:
resolution: "@grafana-plugins/grafana-postgresql-datasource@workspace:public/app/plugins/datasource/grafana-postgresql-datasource"
dependencies:
"@emotion/css": "npm:11.13.5"
"@grafana/data": "npm:11.5.4"
"@grafana/e2e-selectors": "npm:11.5.4"
"@grafana/data": "npm:11.5.3"
"@grafana/e2e-selectors": "npm:11.5.3"
"@grafana/experimental": "npm:2.1.6"
"@grafana/plugin-configs": "npm:11.5.4"
"@grafana/runtime": "npm:11.5.4"
"@grafana/sql": "npm:11.5.4"
"@grafana/ui": "npm:11.5.4"
"@grafana/plugin-configs": "npm:11.5.3"
"@grafana/runtime": "npm:11.5.3"
"@grafana/sql": "npm:11.5.3"
"@grafana/ui": "npm:11.5.3"
"@testing-library/dom": "npm:10.4.0"
"@testing-library/react": "npm:16.1.0"
"@testing-library/user-event": "npm:14.5.2"
@@ -2740,11 +2740,11 @@ __metadata:
resolution: "@grafana-plugins/grafana-pyroscope-datasource@workspace:public/app/plugins/datasource/grafana-pyroscope-datasource"
dependencies:
"@emotion/css": "npm:11.13.5"
"@grafana/data": "npm:11.5.4"
"@grafana/plugin-configs": "npm:11.5.4"
"@grafana/runtime": "npm:11.5.4"
"@grafana/schema": "npm:11.5.4"
"@grafana/ui": "npm:11.5.4"
"@grafana/data": "npm:11.5.3"
"@grafana/plugin-configs": "npm:11.5.3"
"@grafana/runtime": "npm:11.5.3"
"@grafana/schema": "npm:11.5.3"
"@grafana/ui": "npm:11.5.3"
"@testing-library/dom": "npm:10.4.0"
"@testing-library/jest-dom": "npm:6.6.3"
"@testing-library/react": "npm:16.1.0"
@@ -2780,13 +2780,13 @@ __metadata:
resolution: "@grafana-plugins/grafana-testdata-datasource@workspace:public/app/plugins/datasource/grafana-testdata-datasource"
dependencies:
"@emotion/css": "npm:11.13.5"
"@grafana/data": "npm:11.5.4"
"@grafana/e2e-selectors": "npm:11.5.4"
"@grafana/data": "npm:11.5.3"
"@grafana/e2e-selectors": "npm:11.5.3"
"@grafana/experimental": "npm:2.1.6"
"@grafana/plugin-configs": "npm:11.5.4"
"@grafana/runtime": "npm:11.5.4"
"@grafana/schema": "npm:11.5.4"
"@grafana/ui": "npm:11.5.4"
"@grafana/plugin-configs": "npm:11.5.3"
"@grafana/runtime": "npm:11.5.3"
"@grafana/schema": "npm:11.5.3"
"@grafana/ui": "npm:11.5.3"
"@testing-library/dom": "npm:10.4.0"
"@testing-library/react": "npm:16.1.0"
"@testing-library/user-event": "npm:14.5.2"
@@ -2862,13 +2862,13 @@ __metadata:
resolution: "@grafana-plugins/mssql@workspace:public/app/plugins/datasource/mssql"
dependencies:
"@emotion/css": "npm:11.13.5"
"@grafana/data": "npm:11.5.4"
"@grafana/e2e-selectors": "npm:11.5.4"
"@grafana/data": "npm:11.5.3"
"@grafana/e2e-selectors": "npm:11.5.3"
"@grafana/experimental": "npm:2.1.6"
"@grafana/plugin-configs": "npm:11.5.4"
"@grafana/runtime": "npm:11.5.4"
"@grafana/sql": "npm:11.5.4"
"@grafana/ui": "npm:11.5.4"
"@grafana/plugin-configs": "npm:11.5.3"
"@grafana/runtime": "npm:11.5.3"
"@grafana/sql": "npm:11.5.3"
"@grafana/ui": "npm:11.5.3"
"@testing-library/dom": "npm:10.4.0"
"@testing-library/react": "npm:16.1.0"
"@testing-library/user-event": "npm:14.5.2"
@@ -2893,13 +2893,13 @@ __metadata:
resolution: "@grafana-plugins/mysql@workspace:public/app/plugins/datasource/mysql"
dependencies:
"@emotion/css": "npm:11.13.5"
"@grafana/data": "npm:11.5.4"
"@grafana/e2e-selectors": "npm:11.5.4"
"@grafana/data": "npm:11.5.3"
"@grafana/e2e-selectors": "npm:11.5.3"
"@grafana/experimental": "npm:2.1.6"
"@grafana/plugin-configs": "npm:11.5.4"
"@grafana/runtime": "npm:11.5.4"
"@grafana/sql": "npm:11.5.4"
"@grafana/ui": "npm:11.5.4"
"@grafana/plugin-configs": "npm:11.5.3"
"@grafana/runtime": "npm:11.5.3"
"@grafana/sql": "npm:11.5.3"
"@grafana/ui": "npm:11.5.3"
"@testing-library/dom": "npm:10.4.0"
"@testing-library/react": "npm:16.1.0"
"@testing-library/user-event": "npm:14.5.2"
@@ -2924,11 +2924,11 @@ __metadata:
resolution: "@grafana-plugins/parca@workspace:public/app/plugins/datasource/parca"
dependencies:
"@emotion/css": "npm:11.13.5"
"@grafana/data": "npm:11.5.4"
"@grafana/plugin-configs": "npm:11.5.4"
"@grafana/runtime": "npm:11.5.4"
"@grafana/schema": "npm:11.5.4"
"@grafana/ui": "npm:11.5.4"
"@grafana/data": "npm:11.5.3"
"@grafana/plugin-configs": "npm:11.5.3"
"@grafana/runtime": "npm:11.5.3"
"@grafana/schema": "npm:11.5.3"
"@grafana/ui": "npm:11.5.3"
"@testing-library/dom": "npm:10.4.0"
"@testing-library/react": "npm:16.1.0"
"@testing-library/user-event": "npm:14.5.2"
@@ -2956,14 +2956,14 @@ __metadata:
resolution: "@grafana-plugins/stackdriver@workspace:public/app/plugins/datasource/cloud-monitoring"
dependencies:
"@emotion/css": "npm:11.13.5"
"@grafana/data": "npm:11.5.4"
"@grafana/e2e-selectors": "npm:11.5.4"
"@grafana/data": "npm:11.5.3"
"@grafana/e2e-selectors": "npm:11.5.3"
"@grafana/experimental": "npm:2.1.6"
"@grafana/google-sdk": "npm:0.1.2"
"@grafana/plugin-configs": "npm:11.5.4"
"@grafana/runtime": "npm:11.5.4"
"@grafana/schema": "npm:11.5.4"
"@grafana/ui": "npm:11.5.4"
"@grafana/plugin-configs": "npm:11.5.3"
"@grafana/runtime": "npm:11.5.3"
"@grafana/schema": "npm:11.5.3"
"@grafana/ui": "npm:11.5.3"
"@testing-library/dom": "npm:10.4.0"
"@testing-library/jest-dom": "npm:6.6.3"
"@testing-library/react": "npm:16.1.0"
@@ -3009,7 +3009,7 @@ __metadata:
"@grafana/lezer-traceql": "npm:0.0.20"
"@grafana/monaco-logql": "npm:^0.0.7"
"@grafana/o11y-ds-frontend": "workspace:*"
"@grafana/plugin-configs": "npm:11.5.4"
"@grafana/plugin-configs": "npm:11.5.3"
"@grafana/runtime": "workspace:*"
"@grafana/schema": "workspace:*"
"@grafana/ui": "workspace:*"
@@ -3121,12 +3121,12 @@ __metadata:
languageName: node
linkType: hard
"@grafana/data@npm:11.5.4, @grafana/data@workspace:*, @grafana/data@workspace:packages/grafana-data":
"@grafana/data@npm:11.5.3, @grafana/data@workspace:*, @grafana/data@workspace:packages/grafana-data":
version: 0.0.0-use.local
resolution: "@grafana/data@workspace:packages/grafana-data"
dependencies:
"@braintree/sanitize-url": "npm:7.0.1"
"@grafana/schema": "npm:11.5.4"
"@grafana/schema": "npm:11.5.3"
"@grafana/tsconfig": "npm:^2.0.0"
"@rollup/plugin-node-resolve": "npm:16.0.0"
"@types/d3-interpolate": "npm:^3.0.0"
@@ -3173,7 +3173,7 @@ __metadata:
languageName: unknown
linkType: soft
"@grafana/e2e-selectors@npm:11.5.4, @grafana/e2e-selectors@workspace:*, @grafana/e2e-selectors@workspace:packages/grafana-e2e-selectors":
"@grafana/e2e-selectors@npm:11.5.3, @grafana/e2e-selectors@workspace:*, @grafana/e2e-selectors@workspace:packages/grafana-e2e-selectors":
version: 0.0.0-use.local
resolution: "@grafana/e2e-selectors@workspace:packages/grafana-e2e-selectors"
dependencies:
@@ -3302,9 +3302,9 @@ __metadata:
"@babel/preset-env": "npm:7.26.0"
"@babel/preset-react": "npm:7.26.3"
"@emotion/css": "npm:11.13.5"
"@grafana/data": "npm:11.5.4"
"@grafana/data": "npm:11.5.3"
"@grafana/tsconfig": "npm:^2.0.0"
"@grafana/ui": "npm:11.5.4"
"@grafana/ui": "npm:11.5.3"
"@leeoniya/ufuzzy": "npm:1.0.18"
"@rollup/plugin-node-resolve": "npm:16.0.0"
"@testing-library/dom": "npm:10.4.0"
@@ -3386,13 +3386,13 @@ __metadata:
resolution: "@grafana/o11y-ds-frontend@workspace:packages/grafana-o11y-ds-frontend"
dependencies:
"@emotion/css": "npm:11.13.5"
"@grafana/data": "npm:11.5.4"
"@grafana/e2e-selectors": "npm:11.5.4"
"@grafana/data": "npm:11.5.3"
"@grafana/e2e-selectors": "npm:11.5.3"
"@grafana/experimental": "npm:2.1.6"
"@grafana/runtime": "npm:11.5.4"
"@grafana/schema": "npm:11.5.4"
"@grafana/runtime": "npm:11.5.3"
"@grafana/schema": "npm:11.5.3"
"@grafana/tsconfig": "npm:^2.0.0"
"@grafana/ui": "npm:11.5.4"
"@grafana/ui": "npm:11.5.3"
"@testing-library/dom": "npm:10.4.0"
"@testing-library/jest-dom": "npm:^6.1.2"
"@testing-library/react": "npm:16.1.0"
@@ -3416,7 +3416,7 @@ __metadata:
languageName: unknown
linkType: soft
"@grafana/plugin-configs@npm:11.5.4, @grafana/plugin-configs@workspace:*, @grafana/plugin-configs@workspace:packages/grafana-plugin-configs":
"@grafana/plugin-configs@npm:11.5.3, @grafana/plugin-configs@workspace:*, @grafana/plugin-configs@workspace:packages/grafana-plugin-configs":
version: 0.0.0-use.local
resolution: "@grafana/plugin-configs@workspace:packages/grafana-plugin-configs"
dependencies:
@@ -3489,14 +3489,14 @@ __metadata:
"@emotion/css": "npm:11.13.5"
"@emotion/eslint-plugin": "npm:11.12.0"
"@floating-ui/react": "npm:0.27.3"
"@grafana/data": "npm:11.5.4"
"@grafana/e2e-selectors": "npm:11.5.4"
"@grafana/data": "npm:11.5.3"
"@grafana/e2e-selectors": "npm:11.5.3"
"@grafana/experimental": "npm:2.1.6"
"@grafana/faro-web-sdk": "npm:1.12.2"
"@grafana/runtime": "npm:11.5.4"
"@grafana/schema": "npm:11.5.4"
"@grafana/runtime": "npm:11.5.3"
"@grafana/schema": "npm:11.5.3"
"@grafana/tsconfig": "npm:^2.0.0"
"@grafana/ui": "npm:11.5.4"
"@grafana/ui": "npm:11.5.3"
"@hello-pangea/dnd": "npm:17.0.0"
"@leeoniya/ufuzzy": "npm:1.0.18"
"@lezer/common": "npm:1.2.3"
@@ -3591,16 +3591,16 @@ __metadata:
languageName: unknown
linkType: soft
"@grafana/runtime@npm:11.5.4, @grafana/runtime@workspace:*, @grafana/runtime@workspace:packages/grafana-runtime":
"@grafana/runtime@npm:11.5.3, @grafana/runtime@workspace:*, @grafana/runtime@workspace:packages/grafana-runtime":
version: 0.0.0-use.local
resolution: "@grafana/runtime@workspace:packages/grafana-runtime"
dependencies:
"@grafana/data": "npm:11.5.4"
"@grafana/e2e-selectors": "npm:11.5.4"
"@grafana/data": "npm:11.5.3"
"@grafana/e2e-selectors": "npm:11.5.3"
"@grafana/faro-web-sdk": "npm:^1.3.6"
"@grafana/schema": "npm:11.5.4"
"@grafana/schema": "npm:11.5.3"
"@grafana/tsconfig": "npm:^2.0.0"
"@grafana/ui": "npm:11.5.4"
"@grafana/ui": "npm:11.5.3"
"@rollup/plugin-node-resolve": "npm:16.0.0"
"@rollup/plugin-terser": "npm:0.4.4"
"@testing-library/dom": "npm:10.4.0"
@@ -3711,7 +3711,7 @@ __metadata:
languageName: node
linkType: hard
"@grafana/schema@npm:11.5.4, @grafana/schema@workspace:*, @grafana/schema@workspace:packages/grafana-schema":
"@grafana/schema@npm:11.5.3, @grafana/schema@workspace:*, @grafana/schema@workspace:packages/grafana-schema":
version: 0.0.0-use.local
resolution: "@grafana/schema@workspace:packages/grafana-schema"
dependencies:
@@ -3729,17 +3729,17 @@ __metadata:
languageName: unknown
linkType: soft
"@grafana/sql@npm:11.5.4, @grafana/sql@workspace:*, @grafana/sql@workspace:packages/grafana-sql":
"@grafana/sql@npm:11.5.3, @grafana/sql@workspace:*, @grafana/sql@workspace:packages/grafana-sql":
version: 0.0.0-use.local
resolution: "@grafana/sql@workspace:packages/grafana-sql"
dependencies:
"@emotion/css": "npm:11.13.5"
"@grafana/data": "npm:11.5.4"
"@grafana/e2e-selectors": "npm:11.5.4"
"@grafana/data": "npm:11.5.3"
"@grafana/e2e-selectors": "npm:11.5.3"
"@grafana/experimental": "npm:2.1.6"
"@grafana/runtime": "npm:11.5.4"
"@grafana/runtime": "npm:11.5.3"
"@grafana/tsconfig": "npm:^2.0.0"
"@grafana/ui": "npm:11.5.4"
"@grafana/ui": "npm:11.5.3"
"@react-awesome-query-builder/ui": "npm:6.6.4"
"@testing-library/dom": "npm:10.4.0"
"@testing-library/jest-dom": "npm:^6.1.2"
@@ -3780,7 +3780,7 @@ __metadata:
languageName: node
linkType: hard
"@grafana/ui@npm:11.5.4, @grafana/ui@workspace:*, @grafana/ui@workspace:packages/grafana-ui":
"@grafana/ui@npm:11.5.3, @grafana/ui@workspace:*, @grafana/ui@workspace:packages/grafana-ui":
version: 0.0.0-use.local
resolution: "@grafana/ui@workspace:packages/grafana-ui"
dependencies:
@@ -3790,10 +3790,10 @@ __metadata:
"@emotion/serialize": "npm:1.3.3"
"@faker-js/faker": "npm:^9.0.0"
"@floating-ui/react": "npm:0.27.3"
"@grafana/data": "npm:11.5.4"
"@grafana/e2e-selectors": "npm:11.5.4"
"@grafana/data": "npm:11.5.3"
"@grafana/e2e-selectors": "npm:11.5.3"
"@grafana/faro-web-sdk": "npm:^1.3.6"
"@grafana/schema": "npm:11.5.4"
"@grafana/schema": "npm:11.5.3"
"@grafana/tsconfig": "npm:^2.0.0"
"@hello-pangea/dnd": "npm:17.0.0"
"@leeoniya/ufuzzy": "npm:1.0.18"
@@ -8330,7 +8330,7 @@ __metadata:
dependencies:
"@emotion/css": "npm:11.11.2"
"@grafana/data": "workspace:*"
"@grafana/plugin-configs": "npm:11.5.4"
"@grafana/plugin-configs": "npm:11.5.3"
"@grafana/runtime": "workspace:*"
"@grafana/schema": "workspace:*"
"@grafana/ui": "workspace:*"