Skip to content

Commit

Permalink
feat(profiling): Support ingesting mixed android/js profiles for reac…
Browse files Browse the repository at this point in the history
…t-native (#375)

* Support ingesting mixed android/js profiles for react-native
  • Loading branch information
viglia authored Dec 19, 2023
1 parent e6bb1c1 commit 03b2f69
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
**Features**:

- Return the emitted regressions in response. ([#372](https://github.com/getsentry/vroom/pull/372))
- Support ingesting mixed android/js profiles for react-native ([#375](https://github.com/getsentry/vroom/pull/375)) --> this will let us store those profiles but it won't render the js part yet. A coming change will support that.

**Internal**:

Expand All @@ -21,6 +22,8 @@

- Relicense under FSL-1.0-Apache-2.0. ([#366](https://github.com/getsentry/vroom/pull/366))

**Bug Fixes**:

**Internal**:

- Updated craft build rules to no longer bump version after move to FSL license
Expand Down
1 change: 1 addition & 0 deletions internal/profile/legacy.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ type (
OrganizationID uint64 `json:"organization_id"`
Platform platform.Platform `json:"platform"`
Profile json.RawMessage `json:"profile,omitempty"`
JsProfile json.RawMessage `json:"js_profile,omitempty"`
ProfileID string `json:"profile_id"`
ProjectID uint64 `json:"project_id"`
Received timeutil.Time `json:"received"`
Expand Down
1 change: 1 addition & 0 deletions internal/speedscope/speedscope.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ type (
OrganizationID uint64 `json:"organizationID"` //nolint:unused
Platform platform.Platform `json:"platform"` //nolint:unused
Profile json.RawMessage `json:"-"` //nolint:unused
JsProfile json.RawMessage `json:"-"` //nolint:unused
ProfileID string `json:"profileID"` //nolint:unused
ProjectID uint64 `json:"projectID"` //nolint:unused
Received timeutil.Time `json:"received"` //nolint:unused
Expand Down

0 comments on commit 03b2f69

Please sign in to comment.