diff --git a/CHANGELOG.md b/CHANGELOG.md index 723196487..099c4a95d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,43 @@ +# v8.17.0 (Thu Sep 10 2026) + +#### πŸš€ Enhancement + +- `@grafana/scenes` + - Macros: Add $__namespace macro [#1639](https://github.com/grafana/scenes/pull/1639) ([@ivanortegaalba](https://github.com/ivanortegaalba)) + - AdhocFilters: Fixes incorrect border color [#1624](https://github.com/grafana/scenes/pull/1624) ([@torkelo](https://github.com/torkelo)) +- `scenes-app`, `@grafana/scenes-react`, `@grafana/scenes` + - Deps: Migrate to React 19.2.8 [#1620](https://github.com/grafana/scenes/pull/1620) ([@Sergej-Vlasov](https://github.com/Sergej-Vlasov)) + +#### πŸ› Bug Fix + +- CI: Release through a pull request instead of committing to main [#1640](https://github.com/grafana/scenes/pull/1640) ([@Sergej-Vlasov](https://github.com/Sergej-Vlasov)) +- fix(security/medium/packages/scenes-app): update dependency react-router-dom to v6.30.5 [security] [#1615](https://github.com/grafana/scenes/pull/1615) ([@renovate-sh-app[bot]](https://github.com/renovate-sh-app[bot])) +- `@grafana/scenes` + - Variables: Localize the native All option label [#1638](https://github.com/grafana/scenes/pull/1638) ([@Sergej-Vlasov](https://github.com/Sergej-Vlasov)) + - AdHocFiltersVariable: Stop rendering match all pills as disabled [#1622](https://github.com/grafana/scenes/pull/1622) ([@samjewell](https://github.com/samjewell)) + - QueryVariable: surface query errors reported only via data.errors [#1635](https://github.com/grafana/scenes/pull/1635) ([@tskarhed](https://github.com/tskarhed)) + - Filters: Do not store empty groupBy values [#1633](https://github.com/grafana/scenes/pull/1633) ([@mdvictor](https://github.com/mdvictor)) + - Variables: Fix multi value picker leaving the variable out of sync when clearing [#1631](https://github.com/grafana/scenes/pull/1631) ([@ivanortegaalba](https://github.com/ivanortegaalba)) + - Dashboards: Add assistant button in panel status popup [#1629](https://github.com/grafana/scenes/pull/1629) ([@mdvictor](https://github.com/mdvictor)) + - Variables: Fix multi value picker staying empty after clearing the selection [#1630](https://github.com/grafana/scenes/pull/1630) ([@ivanortegaalba](https://github.com/ivanortegaalba)) + - fix(SceneQueryRunner): secondary query behavior fixes [#1597](https://github.com/grafana/scenes/pull/1597) ([@gtk-grafana](https://github.com/gtk-grafana) [@drew08t](https://github.com/drew08t)) + - Performance: Export POST_STORM_WINDOW from SceneRenderProfiler [#1618](https://github.com/grafana/scenes/pull/1618) ([@mmandrus](https://github.com/mmandrus)) + +#### Authors: 10 + +- [@renovate-sh-app[bot]](https://github.com/renovate-sh-app[bot]) +- [@Sergej-Vlasov](https://github.com/Sergej-Vlasov) +- Drew Slobodnjak ([@drew08t](https://github.com/drew08t)) +- Galen Kistler ([@gtk-grafana](https://github.com/gtk-grafana)) +- Ivan Ortega Alba ([@ivanortegaalba](https://github.com/ivanortegaalba)) +- Michael Mandrus ([@mmandrus](https://github.com/mmandrus)) +- Sam Jewell ([@samjewell](https://github.com/samjewell)) +- Tobias Skarhed ([@tskarhed](https://github.com/tskarhed)) +- Torkel Γ–degaard ([@torkelo](https://github.com/torkelo)) +- Victor Marin ([@mdvictor](https://github.com/mdvictor)) + +--- + # v8.16.1 (Thu Aug 20 2026) #### πŸ› Bug Fix diff --git a/lerna.json b/lerna.json index 0bb5128d1..5e43cc6bf 100644 --- a/lerna.json +++ b/lerna.json @@ -2,7 +2,7 @@ "npmClient": "yarn", "useNx": false, "$schema": "node_modules/lerna/schemas/lerna-schema.json", - "version": "8.16.1", + "version": "8.17.0", "packages": [ "packages/*" ] diff --git a/packages/scenes-app/package.json b/packages/scenes-app/package.json index bfaff7727..dbc89f541 100644 --- a/packages/scenes-app/package.json +++ b/packages/scenes-app/package.json @@ -1,7 +1,7 @@ { "name": "scenes-app", "private": true, - "version": "8.16.1", + "version": "8.17.0", "author": "Grafana Labs", "license": "Apache-2.0", "description": "A basic grafana app plugin", diff --git a/packages/scenes-react/CHANGELOG.md b/packages/scenes-react/CHANGELOG.md index 6502adfb6..e3aca50c4 100644 --- a/packages/scenes-react/CHANGELOG.md +++ b/packages/scenes-react/CHANGELOG.md @@ -1,3 +1,15 @@ +# v8.17.0 (Thu Sep 10 2026) + +#### πŸš€ Enhancement + +- Deps: Migrate to React 19.2.8 [#1620](https://github.com/grafana/scenes/pull/1620) ([@Sergej-Vlasov](https://github.com/Sergej-Vlasov)) + +#### Authors: 1 + +- [@Sergej-Vlasov](https://github.com/Sergej-Vlasov) + +--- + # v8.16.0 (Wed Aug 19 2026) #### πŸ› Bug Fix diff --git a/packages/scenes-react/package.json b/packages/scenes-react/package.json index e478f6614..fe5ff9df5 100644 --- a/packages/scenes-react/package.json +++ b/packages/scenes-react/package.json @@ -1,6 +1,6 @@ { "name": "@grafana/scenes-react", - "version": "8.16.1", + "version": "8.17.0", "description": "Grafana framework for building dynamic dashboards", "author": "Grafana Labs", "license": "Apache-2.0", diff --git a/packages/scenes/CHANGELOG.md b/packages/scenes/CHANGELOG.md index ad639750d..a36eeedf9 100644 --- a/packages/scenes/CHANGELOG.md +++ b/packages/scenes/CHANGELOG.md @@ -1,3 +1,37 @@ +# v8.17.0 (Thu Sep 10 2026) + +#### πŸš€ Enhancement + +- Macros: Add $__namespace macro [#1639](https://github.com/grafana/scenes/pull/1639) ([@ivanortegaalba](https://github.com/ivanortegaalba)) +- Deps: Migrate to React 19.2.8 [#1620](https://github.com/grafana/scenes/pull/1620) ([@Sergej-Vlasov](https://github.com/Sergej-Vlasov)) +- AdhocFilters: Fixes incorrect border color [#1624](https://github.com/grafana/scenes/pull/1624) ([@torkelo](https://github.com/torkelo)) + +#### πŸ› Bug Fix + +- Variables: Localize the native All option label [#1638](https://github.com/grafana/scenes/pull/1638) ([@Sergej-Vlasov](https://github.com/Sergej-Vlasov)) +- AdHocFiltersVariable: Stop rendering match all pills as disabled [#1622](https://github.com/grafana/scenes/pull/1622) ([@samjewell](https://github.com/samjewell)) +- QueryVariable: surface query errors reported only via data.errors [#1635](https://github.com/grafana/scenes/pull/1635) ([@tskarhed](https://github.com/tskarhed)) +- Filters: Do not store empty groupBy values [#1633](https://github.com/grafana/scenes/pull/1633) ([@mdvictor](https://github.com/mdvictor)) +- Variables: Fix multi value picker leaving the variable out of sync when clearing [#1631](https://github.com/grafana/scenes/pull/1631) ([@ivanortegaalba](https://github.com/ivanortegaalba)) +- Dashboards: Add assistant button in panel status popup [#1629](https://github.com/grafana/scenes/pull/1629) ([@mdvictor](https://github.com/mdvictor)) +- Variables: Fix multi value picker staying empty after clearing the selection [#1630](https://github.com/grafana/scenes/pull/1630) ([@ivanortegaalba](https://github.com/ivanortegaalba)) +- fix(SceneQueryRunner): secondary query behavior fixes [#1597](https://github.com/grafana/scenes/pull/1597) ([@gtk-grafana](https://github.com/gtk-grafana) [@drew08t](https://github.com/drew08t)) +- Performance: Export POST_STORM_WINDOW from SceneRenderProfiler [#1618](https://github.com/grafana/scenes/pull/1618) ([@mmandrus](https://github.com/mmandrus)) + +#### Authors: 9 + +- [@Sergej-Vlasov](https://github.com/Sergej-Vlasov) +- Drew Slobodnjak ([@drew08t](https://github.com/drew08t)) +- Galen Kistler ([@gtk-grafana](https://github.com/gtk-grafana)) +- Ivan Ortega Alba ([@ivanortegaalba](https://github.com/ivanortegaalba)) +- Michael Mandrus ([@mmandrus](https://github.com/mmandrus)) +- Sam Jewell ([@samjewell](https://github.com/samjewell)) +- Tobias Skarhed ([@tskarhed](https://github.com/tskarhed)) +- Torkel Γ–degaard ([@torkelo](https://github.com/torkelo)) +- Victor Marin ([@mdvictor](https://github.com/mdvictor)) + +--- + # v8.16.1 (Thu Aug 20 2026) #### πŸ› Bug Fix diff --git a/packages/scenes/package.json b/packages/scenes/package.json index d8fc33615..74a1579dc 100644 --- a/packages/scenes/package.json +++ b/packages/scenes/package.json @@ -1,6 +1,6 @@ { "name": "@grafana/scenes", - "version": "8.16.1", + "version": "8.17.0", "description": "Grafana framework for building dynamic dashboards", "author": "Grafana Labs", "license": "Apache-2.0",