Skip to content
This repository was archived by the owner on Apr 27, 2023. It is now read-only.

Commit cfcdd4e

Browse files
committed
prepare for 1.1.0 release
1 parent e3088f6 commit cfcdd4e

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 1.1.0
4+
* Add context menu (triggered by right clicking the flamegraph)
5+
* Add toolbar
6+
* Allow focusing on a subtree
7+
* Allow searching nodes that match a specific string
8+
* Visual updates
9+
310
## 1.0.0
411

512
Initial release.

build-panel.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -euo pipefail
44

55
# TODO update this, use tags instead
6-
UPSTREAM_BRANCH="chore/grafana-panel-webpack"
6+
#UPSTREAM_BRANCH="007c54f6357c354c3093fec3f8de87252e2c73e6"
77
PACKAGE_VERSION=$(cat package.json \
88
| grep version \
99
| head -1 \
@@ -19,7 +19,10 @@ cloneDst="pyroscope"
1919
rm -Rf dist/
2020
rm -Rf "$cloneDst"
2121

22-
git clone --depth 1 --branch "$UPSTREAM_BRANCH" https://github.com/pyroscope-io/pyroscope.git "$cloneDst"
22+
#git clone --depth 1 --branch "$UPSTREAM_BRANCH" https://github.com/pyroscope-io/pyroscope.git "$cloneDst"
23+
git clone --depth 1 --branch "main" https://github.com/pyroscope-io/pyroscope.git "$cloneDst"
24+
git -C "$cloneDst" checkout "007c54f6357c354c3093fec3f8de87252e2c73e6"
25+
2326

2427

2528
# https://github.com/typicode/husky/issues/851

0 commit comments

Comments
 (0)