@grafana/scenes 6.12.0--canary.1121.15070832166.0 β†’ 6.12.0

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 +27 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,3 +1,30 @@
1
+ # v6.12.0 (Fri May 16 2025)
2
+
3
+ ### Release Notes
4
+
5
+ #### Scopes: Replace ScopesBridge with ScopesVariable ([#1121](https://github.com/grafana/scenes/pull/1121))
6
+
7
+ SceneScopesBridge is now replaced by ScopesVariable, which now needs to be added to a SceneVariableSet attached to every SceneAppPage or EmbeddedScene (whatever suits your scenario) where you want to use scopes. This variable is not visible in the UI. You can control whether scopes are enabled or disabled on a specific page/scene using the ScopesVariable or control this on a higher level using ScopesContext.
8
+
9
+ sceneGraph.getScopesBridge is replaced by sceneGraph.getScopes, which just returns the scopes (by looking up the ScopesVariable and getting it from it's value).
10
+
11
+ ---
12
+
13
+ #### πŸš€ Enhancement
14
+
15
+ - Scopes: Replace ScopesBridge with ScopesVariable [#1121](https://github.com/grafana/scenes/pull/1121) ([@torkelo](https://github.com/torkelo) [@tskarhed](https://github.com/tskarhed))
16
+
17
+ #### πŸ› Bug Fix
18
+
19
+ - README: Explain usage of the "release" label [#1126](https://github.com/grafana/scenes/pull/1126) ([@tskarhed](https://github.com/tskarhed))
20
+
21
+ #### Authors: 2
22
+
23
+ - Tobias Skarhed ([@tskarhed](https://github.com/tskarhed))
24
+ - Torkel Γ–degaard ([@torkelo](https://github.com/torkelo))
25
+
26
+ ---
27
+
1
28
  # v6.11.1 (Thu May 15 2025)
2
29
 
3
30
  #### πŸ› Bug Fix
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/scenes",
3
- "version": "6.12.0--canary.1121.15070832166.0",
3
+ "version": "6.12.0",
4
4
  "description": "Grafana framework for building dynamic dashboards",
5
5
  "author": "Grafana Labs",
6
6
  "license": "AGPL-3.0-only",
@@ -116,5 +116,5 @@
116
116
  "prettier --write"
117
117
  ]
118
118
  },
119
- "gitHead": "349d2a6aacb90b68ada9249d2c1438e59b856380"
119
+ "gitHead": "2b9eee751cf07a47beba38741a5eecf59f94bd3c"
120
120
  }