@grafana/scenes 5.36.0--canary.1004.12431956361.0 → 5.36.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +27 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,30 @@
|
|
1
|
+
# v5.36.0 (Fri Dec 20 2024)
|
2
|
+
|
3
|
+
### Release Notes
|
4
|
+
|
5
|
+
#### AdHocFiltersVariable: provide updateFilters method to allow updating filters without emitting SceneVariableValueChangedEvent ([#1004](https://github.com/grafana/scenes/pull/1004))
|
6
|
+
|
7
|
+
New AdHocFiltersVariable method `updateFilters` to allow updating filters state. Allows skipping emit of `SceneVariableValueChangedEvent` to prevent filter changes from notifying dependent scene objects.
|
8
|
+
|
9
|
+
---
|
10
|
+
|
11
|
+
#### 🚀 Enhancement
|
12
|
+
|
13
|
+
- AdHocFiltersVariable: provide updateFilters method to allow updating filters without emitting SceneVariableValueChangedEvent [#1004](https://github.com/grafana/scenes/pull/1004) ([@gtk-grafana](https://github.com/gtk-grafana))
|
14
|
+
|
15
|
+
#### 🐛 Bug Fix
|
16
|
+
|
17
|
+
- fix: groupBy manual applyMode [#1010](https://github.com/grafana/scenes/pull/1010) ([@joannaWebDev](https://github.com/joannaWebDev))
|
18
|
+
- remove .only from test [#1008](https://github.com/grafana/scenes/pull/1008) ([@Sergej-Vlasov](https://github.com/Sergej-Vlasov))
|
19
|
+
|
20
|
+
#### Authors: 3
|
21
|
+
|
22
|
+
- [@Sergej-Vlasov](https://github.com/Sergej-Vlasov)
|
23
|
+
- Galen Kistler ([@gtk-grafana](https://github.com/gtk-grafana))
|
24
|
+
- Joanna ([@joannaWebDev](https://github.com/joannaWebDev))
|
25
|
+
|
26
|
+
---
|
27
|
+
|
1
28
|
# v5.35.0 (Wed Dec 18 2024)
|
2
29
|
|
3
30
|
#### 🚀 Enhancement
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@grafana/scenes",
|
3
|
-
"version": "5.36.0
|
3
|
+
"version": "5.36.0",
|
4
4
|
"description": "Grafana framework for building dynamic dashboards",
|
5
5
|
"author": "Grafana Labs",
|
6
6
|
"license": "AGPL-3.0-only",
|
@@ -115,5 +115,5 @@
|
|
115
115
|
"prettier --write"
|
116
116
|
]
|
117
117
|
},
|
118
|
-
"gitHead": "
|
118
|
+
"gitHead": "60b8409115f0f46f62d1d3c1ab791dd79eb16a0f"
|
119
119
|
}
|