Skip to content

Commit c181a15

Browse files
github-actions[bot]e11syneSpecc
authored
Update prod (#407)
* fix(releases): cover case with empty map body (#397) * imp(email): link to billing (#398) * imp(email): link to billing * chore(email): update patterns * imp(paymaster): add paid until field for workspace (#400) * feat(paymaster): support paid until workspace field * chore(paymaster): update types and test * chore(): lint fix * chore(): lint fix * imp(CI): update ubuntu version * test(paymaster): add new testcase * chore(paymaster): lint fix * feat(sentry): parse release from event contexts (#401) * feat(sentry): parse release from event contexts * imp(sentry): add task to js worker if release passed * chore(sentry): lint fix * chore(sentry): remove an outdated todo * fix(grouper): get matching pattern fix (#404) * chore(sentry): rm breadcrumbs addon (#406) --------- Co-authored-by: e11sy <130844513+e11sy@users.noreply.github.com> Co-authored-by: Peter <specc.dev@gmail.com>
1 parent 7ffdb00 commit c181a15

4 files changed

Lines changed: 1 addition & 8 deletions

File tree

workers/sentry/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hawk-worker-sentry",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Handles events in Sentry format",
55
"main": "src/index.ts",
66
"author": "CodeX",

workers/sentry/src/utils/converter.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@ export function composeAddons(eventPayload: SentryEvent): EventData<DefaultAddon
129129
'transaction',
130130
'modules',
131131
'fingerprint',
132-
'breadcrumbs',
133132
'tags',
134133
'extra',
135134
];

workers/sentry/tests/converter.test.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -197,9 +197,6 @@ describe('converter utils', () => {
197197
transaction: 'test-transaction',
198198
modules: { key: 'value' },
199199
fingerprint: [ 'test-fingerprint' ],
200-
breadcrumbs: [ {
201-
message: 'Test breadcrumb',
202-
} ],
203200
tags: { key: 'value' },
204201
extra: { key: 'value' },
205202
});

workers/sentry/tests/index.test.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -775,9 +775,6 @@ describe('SentryEventWorker', () => {
775775
},
776776
},
777777
addons: {
778-
breadcrumbs: {
779-
values: [],
780-
},
781778
environment: 'production',
782779
platform: 'python',
783780
extra: {

0 commit comments

Comments
 (0)