Skip to content

Commit 7c6b184

Browse files
author
Grafana Labs
committed
Update CHANGELOG.md [skip ci]
1 parent 8fd6192 commit 7c6b184

File tree

2 files changed

+65
-0
lines changed

2 files changed

+65
-0
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
# v0.0.29 (Mon Mar 27 2023)
2+
3+
#### 🐛 Bug Fix
4+
5+
- ScenesApp: Change to workspace dependency [#99](https://github.com/grafana/scenes/pull/99) ([@torkelo](https://github.com/torkelo))
6+
- Yarn: Caching should work [#93](https://github.com/grafana/scenes/pull/93) ([@torkelo](https://github.com/torkelo))
7+
- `@grafana/scenes`
8+
- Enable auto [#107](https://github.com/grafana/scenes/pull/107) ([@torkelo](https://github.com/torkelo))
9+
- Fix type import [#104](https://github.com/grafana/scenes/pull/104) ([@torkelo](https://github.com/torkelo))
10+
- Macros: Share SkipFormattingValue value between AllUrlVariablesMacro and UrlTimeRangeMacro [#101](https://github.com/grafana/scenes/pull/101) ([@torkelo](https://github.com/torkelo))
11+
- Scene: Support for new types of "macro" variables starting with __all_variables [#98](https://github.com/grafana/scenes/pull/98) ([@domasx2](https://github.com/domasx2) [@torkelo](https://github.com/torkelo))
12+
- UrlSyncManager: Improvements and fixes [#96](https://github.com/grafana/scenes/pull/96) ([@torkelo](https://github.com/torkelo))
13+
- Changelog: Clean up auto crap [#94](https://github.com/grafana/scenes/pull/94) ([@torkelo](https://github.com/torkelo))
14+
15+
#### Authors: 2
16+
17+
- Domas ([@domasx2](https://github.com/domasx2))
18+
- Torkel Ödegaard ([@torkelo](https://github.com/torkelo))
19+
20+
---
21+
122
# vNext
223

324
* UrlSync: SceneObject that implement url sync _urlSync property will now see a change to how updateFromUrl is called. It is now called with null values when url query parameters are removed. Before the UrlSyncManager would remember the initial state and pass that to updateFromUrl, but now if you want to preserve your current state or set to some initial state you have to handle that logic inside updateFromUrl.

packages/scenes/CHANGELOG.md

+44
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,47 @@
1+
# v0.0.32 (Mon Mar 27 2023)
2+
3+
#### 🐛 Bug Fix
4+
5+
- Enable auto [#107](https://github.com/grafana/scenes/pull/107) ([@torkelo](https://github.com/torkelo))
6+
- Fix type import [#104](https://github.com/grafana/scenes/pull/104) ([@torkelo](https://github.com/torkelo))
7+
- my bad ([@torkelo](https://github.com/torkelo))
8+
- Fix type import ([@torkelo](https://github.com/torkelo))
9+
- Macros: Share SkipFormattingValue value between AllUrlVariablesMacro and UrlTimeRangeMacro [#101](https://github.com/grafana/scenes/pull/101) ([@torkelo](https://github.com/torkelo))
10+
- Share skip formatting ([@torkelo](https://github.com/torkelo))
11+
- Scene: Support for new types of "macro" variables starting with __all_variables [#98](https://github.com/grafana/scenes/pull/98) ([@domasx2](https://github.com/domasx2) [@torkelo](https://github.com/torkelo))
12+
- Removed some old code ([@torkelo](https://github.com/torkelo))
13+
- Updates ([@torkelo](https://github.com/torkelo))
14+
- More refactoring ([@torkelo](https://github.com/torkelo))
15+
- Refactoring and added time range macro ([@torkelo](https://github.com/torkelo))
16+
- Refactoring ([@torkelo](https://github.com/torkelo))
17+
- fix ([@torkelo](https://github.com/torkelo))
18+
- Fixed ts issues ([@torkelo](https://github.com/torkelo))
19+
- Merge branch 'main' of github.com:grafana/scenes into scene-url-variables ([@torkelo](https://github.com/torkelo))
20+
- ScenesApp: Change to workspace dependency [#99](https://github.com/grafana/scenes/pull/99) ([@torkelo](https://github.com/torkelo))
21+
- UrlSyncManager: Improvements and fixes [#96](https://github.com/grafana/scenes/pull/96) ([@torkelo](https://github.com/torkelo))
22+
- remove unused arg ([@torkelo](https://github.com/torkelo))
23+
- Add skipUrlSync support ([@torkelo](https://github.com/torkelo))
24+
- Variables: Add support for macro variables like __all_variables ([@torkelo](https://github.com/torkelo))
25+
- Merge branch 'scene-interpolate-all-variables' into domas-interpolate-all-variables ([@torkelo](https://github.com/torkelo))
26+
- Simplify logic ([@torkelo](https://github.com/torkelo))
27+
- minor fix ([@torkelo](https://github.com/torkelo))
28+
- Made tests a bit clear on what scenario they where testing ([@torkelo](https://github.com/torkelo))
29+
- remove unnessary cleanup in EmbeddedScene ([@torkelo](https://github.com/torkelo))
30+
- UrlSyncManager: Improvements and fixes ([@torkelo](https://github.com/torkelo))
31+
- Update ([@torkelo](https://github.com/torkelo))
32+
- Changelog: Clean up auto crap [#94](https://github.com/grafana/scenes/pull/94) ([@torkelo](https://github.com/torkelo))
33+
- Fixing changelog ([@torkelo](https://github.com/torkelo))
34+
- test ([@torkelo](https://github.com/torkelo))
35+
- Yarn: Caching should work [#93](https://github.com/grafana/scenes/pull/93) ([@torkelo](https://github.com/torkelo))
36+
- interpolate all variables ([@domasx2](https://github.com/domasx2))
37+
38+
#### Authors: 2
39+
40+
- Domas ([@domasx2](https://github.com/domasx2))
41+
- Torkel Ödegaard ([@torkelo](https://github.com/torkelo))
42+
43+
---
44+
145
# v0.0.28 (Tue Mar 21 2023)
246

347
- Removal of isEditing from SceneComponentProps (also $editor from SceneObjectState, and sceneGraph.getSceneEditor)

0 commit comments

Comments
 (0)