@parca/profile 0.16.466 → 0.16.467

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.16.467](https://github.com/parca-dev/parca/compare/@parca/profile@0.16.466...@parca/profile@0.16.467) (2025-01-22)
7
+
8
+ **Note:** Version bump only for package @parca/profile
9
+
6
10
  ## [0.16.466](https://github.com/parca-dev/parca/compare/@parca/profile@0.16.465...@parca/profile@0.16.466) (2025-01-21)
7
11
 
8
12
  **Note:** Version bump only for package @parca/profile
@@ -36,8 +36,8 @@ export const IcicleChartRootNode = React.memo(function IcicleChartRootNodeNonMem
36
36
  }
37
37
  return (_jsx(_Fragment, { children: childRows.map(row => {
38
38
  const groupByFields = (groupByMetadata?.get(row)).toJSON();
39
- const tsStr = arrowToString(groupByFields.timestamp);
40
- const tsNanos = BigInt(parseInt(tsStr, 10)) * 1000000n;
39
+ const tsStr = arrowToString(groupByFields.time_nanos);
40
+ const tsNanos = BigInt(parseInt(tsStr, 10));
41
41
  const durationStr = arrowToString(groupByFields.duration);
42
42
  const duration = parseInt(durationStr, 10);
43
43
  const x = tsXScale(tsNanos);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parca/profile",
3
- "version": "0.16.466",
3
+ "version": "0.16.467",
4
4
  "description": "Profile viewing libraries",
5
5
  "dependencies": {
6
6
  "@headlessui/react": "^1.7.19",
@@ -75,5 +75,5 @@
75
75
  "access": "public",
76
76
  "registry": "https://registry.npmjs.org/"
77
77
  },
78
- "gitHead": "52e2c4c6308b962fd0b4d87acc9b0dc4614812f3"
78
+ "gitHead": "2515639e6593c345f1ed3499da31cfcb0c8b932e"
79
79
  }
@@ -87,9 +87,9 @@ export const IcicleChartRootNode = React.memo(function IcicleChartRootNodeNonMem
87
87
  groupByMetadata?.get(row) as StructRow<Record<string, Binary>>
88
88
  ).toJSON();
89
89
 
90
- const tsStr = arrowToString(groupByFields.timestamp) as string;
90
+ const tsStr = arrowToString(groupByFields.time_nanos) as string;
91
91
 
92
- const tsNanos = BigInt(parseInt(tsStr, 10)) * 1000000n;
92
+ const tsNanos = BigInt(parseInt(tsStr, 10));
93
93
  const durationStr = arrowToString(groupByFields.duration) as string;
94
94
  const duration = parseInt(durationStr, 10);
95
95