@parca/profile 0.19.46 → 0.19.47

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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.19.47](https://github.com/parca-dev/parca/compare/@parca/profile@0.19.46...@parca/profile@0.19.47) (2025-09-02)
7
+
8
+ **Note:** Version bump only for package @parca/profile
9
+
6
10
  ## [0.19.46](https://github.com/parca-dev/parca/compare/@parca/profile@0.19.45...@parca/profile@0.19.46) (2025-08-28)
7
11
 
8
12
  **Note:** Version bump only for package @parca/profile
@@ -25,7 +25,7 @@ export function MetricsGraphSection({ showMetricsGraph, setDisplayHideMetricsGra
25
25
  const to = range.getToMs();
26
26
  let mergedProfileParams = {};
27
27
  if (query.profileType().delta) {
28
- mergedProfileParams = { mergeFrom: from, mergeTo: to };
28
+ mergedProfileParams = { mergeFrom: from * 1000000, mergeTo: to * 1000000 };
29
29
  }
30
30
  setTimeRangeSelection(range);
31
31
  selectQuery({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parca/profile",
3
- "version": "0.19.46",
3
+ "version": "0.19.47",
4
4
  "description": "Profile viewing libraries",
5
5
  "dependencies": {
6
6
  "@floating-ui/react": "^0.27.12",
@@ -79,5 +79,5 @@
79
79
  "access": "public",
80
80
  "registry": "https://registry.npmjs.org/"
81
81
  },
82
- "gitHead": "bc38b540d40201fc382ace82bc0803bf84034bfc"
82
+ "gitHead": "bb4ac9df3124432f6733cec5d84e74a68ad30338"
83
83
  }
@@ -76,7 +76,7 @@ export function MetricsGraphSection({
76
76
  const to = range.getToMs();
77
77
  let mergedProfileParams = {};
78
78
  if (query.profileType().delta) {
79
- mergedProfileParams = {mergeFrom: from, mergeTo: to};
79
+ mergedProfileParams = {mergeFrom: from * 1_000_000, mergeTo: to * 1_000_000};
80
80
  }
81
81
  setTimeRangeSelection(range);
82
82
  selectQuery({