@parca/profile 0.16.340 → 0.16.341
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 +4 -0
- package/dist/ProfileSource.d.ts +1 -1
- package/dist/ProfileSource.js +1 -1
- package/package.json +5 -5
- package/src/ProfileSource.tsx +1 -1
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.341](https://github.com/parca-dev/parca/compare/@parca/profile@0.16.340...@parca/profile@0.16.341) (2024-02-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @parca/profile
|
|
9
|
+
|
|
6
10
|
## [0.16.340](https://github.com/parca-dev/parca/compare/@parca/profile@0.16.339...@parca/profile@0.16.340) (2024-02-12)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @parca/profile
|
package/dist/ProfileSource.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ export interface ProfileSelection {
|
|
|
16
16
|
ProfileSource: () => ProfileSource;
|
|
17
17
|
Type: () => string;
|
|
18
18
|
}
|
|
19
|
-
export declare const timeFormat = "
|
|
19
|
+
export declare const timeFormat = "yyyy-MM-dd HH:mm:ss '(UTC)'";
|
|
20
20
|
export declare function ParamsString(params: {
|
|
21
21
|
[key: string]: string;
|
|
22
22
|
}): string;
|
package/dist/ProfileSource.js
CHANGED
|
@@ -14,7 +14,7 @@ import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-run
|
|
|
14
14
|
import { ProfileDiffSelection_Mode, QueryRequest_Mode, QueryRequest_ReportType, Timestamp, } from '@parca/client';
|
|
15
15
|
import { ProfileType, Query } from '@parca/parser';
|
|
16
16
|
import { formatDate } from '@parca/utilities';
|
|
17
|
-
export const timeFormat = "
|
|
17
|
+
export const timeFormat = "yyyy-MM-dd HH:mm:ss '(UTC)'";
|
|
18
18
|
export function ParamsString(params) {
|
|
19
19
|
return Object.keys(params)
|
|
20
20
|
.map(function (key) {
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@parca/profile",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.341",
|
|
4
4
|
"description": "Profile viewing libraries",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@parca/client": "^0.16.102",
|
|
7
|
-
"@parca/components": "^0.16.
|
|
7
|
+
"@parca/components": "^0.16.251",
|
|
8
8
|
"@parca/dynamicsize": "^0.16.60",
|
|
9
9
|
"@parca/hooks": "^0.0.40",
|
|
10
10
|
"@parca/parser": "^0.16.68",
|
|
11
|
-
"@parca/store": "^0.16.
|
|
12
|
-
"@parca/utilities": "^0.0.
|
|
11
|
+
"@parca/store": "^0.16.128",
|
|
12
|
+
"@parca/utilities": "^0.0.56",
|
|
13
13
|
"@tanstack/react-query": "^4.0.5",
|
|
14
14
|
"@types/react-beautiful-dnd": "^13.1.3",
|
|
15
15
|
"apache-arrow": "^12.0.0",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"access": "public",
|
|
52
52
|
"registry": "https://registry.npmjs.org/"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "1e56ee8a3d821ac02819b9264f55464787d6e667"
|
|
55
55
|
}
|
package/src/ProfileSource.tsx
CHANGED
|
@@ -38,7 +38,7 @@ export interface ProfileSelection {
|
|
|
38
38
|
Type: () => string;
|
|
39
39
|
}
|
|
40
40
|
|
|
41
|
-
export const timeFormat = "
|
|
41
|
+
export const timeFormat = "yyyy-MM-dd HH:mm:ss '(UTC)'";
|
|
42
42
|
|
|
43
43
|
export function ParamsString(params: {[key: string]: string}): string {
|
|
44
44
|
return Object.keys(params)
|