@parca/profile 0.16.433 → 0.16.434

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.434 (2024-10-02)
7
+
8
+ **Note:** Version bump only for package @parca/profile
9
+
6
10
  ## [0.16.433](https://github.com/parca-dev/parca/compare/@parca/profile@0.16.432...@parca/profile@0.16.433) (2024-09-12)
7
11
 
8
12
  **Note:** Version bump only for package @parca/profile
@@ -65,7 +65,7 @@ export const arrowToString = (buffer) => {
65
65
  return buffer;
66
66
  }
67
67
  if (ArrayBuffer.isView(buffer)) {
68
- return String.fromCharCode.apply(null, buffer);
68
+ return new TextDecoder().decode(buffer);
69
69
  }
70
70
  return '';
71
71
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parca/profile",
3
- "version": "0.16.433",
3
+ "version": "0.16.434",
4
4
  "description": "Profile viewing libraries",
5
5
  "dependencies": {
6
6
  "@headlessui/react": "^1.7.19",
@@ -73,5 +73,5 @@
73
73
  "access": "public",
74
74
  "registry": "https://registry.npmjs.org/"
75
75
  },
76
- "gitHead": "4498039beaa1a99136cd0fcb9ba44788c362809f"
76
+ "gitHead": "0f4f3556b879052fcc0e2da8616e0e6e1c92ab6b"
77
77
  }
@@ -102,7 +102,7 @@ export const arrowToString = (buffer: any): string | null => {
102
102
  return buffer;
103
103
  }
104
104
  if (ArrayBuffer.isView(buffer)) {
105
- return String.fromCharCode.apply(null, buffer as unknown as number[]);
105
+ return new TextDecoder().decode(buffer);
106
106
  }
107
107
  return '';
108
108
  };