Skip to content

ref: Remove BrowserTracing #10653

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 55 commits into from
Feb 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
76b0095
remove test usages
Feb 14, 2024
a941362
fix
Feb 14, 2024
5f376a7
.
Feb 14, 2024
6eebdeb
wth man
Feb 15, 2024
361c22d
ref: Migrate transaction source from metadata to attributes
Feb 15, 2024
760124b
beep boop
Feb 15, 2024
2838b09
I am losing braincells
Feb 15, 2024
796eb84
ci happy pls
Feb 15, 2024
5eb1406
Tests
Feb 15, 2024
8771b70
tests
Feb 15, 2024
a657600
gimmemytimeback
Feb 15, 2024
3da613a
Merge remote-tracking branch 'origin/develop' into lorst-eliminate-tx…
Feb 15, 2024
9f44cc0
otel tests
Feb 16, 2024
317190f
fix
Feb 16, 2024
065dcfb
source not on all spans but on txns
Feb 16, 2024
a2d2464
tests
Feb 16, 2024
92a417d
Merge remote-tracking branch 'origin/develop' into lorst-eliminate-tx…
Feb 16, 2024
c7122a8
test
Feb 16, 2024
d8bfeb8
.
Feb 16, 2024
c6918d0
.
Feb 16, 2024
e0e1617
Merge remote-tracking branch 'origin/develop' into lorst-eliminate-tx…
Feb 16, 2024
2dbec1c
.
Feb 16, 2024
f95e476
Merge remote-tracking branch 'origin/develop' into rm-browsertracing
Feb 16, 2024
c23c59e
🙏
Feb 16, 2024
392548a
.
Feb 16, 2024
56601f1
.
Feb 16, 2024
64144de
Merge branch 'lorst-eliminate-txn-source' into rm-browsertracing
Feb 16, 2024
cd323cd
stuff
Feb 16, 2024
fec77bc
.
Feb 16, 2024
cc9bf5d
.
Feb 19, 2024
7f557f8
Merge remote-tracking branch 'origin/develop' into rm-browsertracing
Feb 20, 2024
fca8f2e
format
Feb 20, 2024
5e8d0b5
tests
Feb 21, 2024
f406cf0
Random removals
Feb 21, 2024
b8001ee
Merge remote-tracking branch 'origin/develop' into rm-browsertracing
Feb 21, 2024
1f8acd8
.
Feb 21, 2024
46942eb
.
Feb 21, 2024
a2acf46
.
Feb 21, 2024
b6ad00c
remove BrowserTracing browser integration tests
Feb 21, 2024
cc263b8
Merge remote-tracking branch 'origin/develop' into rm-browsertracing
Feb 21, 2024
e8f0edb
Merge remote-tracking branch 'origin/develop' into rm-browsertracing
Feb 22, 2024
5c7af00
fixing
Feb 22, 2024
d836152
lint
Feb 22, 2024
46ae773
god be on my side in these challenging times
Feb 22, 2024
a040760
undo bold changes
Feb 22, 2024
3d630b6
test(browser-integration): Sync loader script fixture
Feb 22, 2024
57473bc
sync
Feb 22, 2024
6944745
Merge branch 'lforst-update-loader' into rm-browsertracing
Feb 22, 2024
a91d7be
dayum
Feb 22, 2024
b1755c9
.
Feb 22, 2024
0dd2b99
Remove unnecessary tests
Feb 23, 2024
30ac18d
.
Feb 23, 2024
e70dfb6
rip
Feb 23, 2024
0a7a833
Merge remote-tracking branch 'origin/develop' into rm-browsertracing
Feb 23, 2024
1ffe69f
merge artifact
Feb 23, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .size-limit.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,28 @@ module.exports = [
{
name: '@sentry/browser (incl. Tracing, Replay, Feedback) - Webpack (gzipped)',
path: 'packages/browser/build/npm/esm/index.js',
import: '{ init, Replay, BrowserTracing, Feedback }',
import: '{ init, Replay, browserTracingIntegration, Feedback }',
gzip: true,
limit: '90 KB',
},
{
name: '@sentry/browser (incl. Tracing, Replay) - Webpack (gzipped)',
path: 'packages/browser/build/npm/esm/index.js',
import: '{ init, Replay, BrowserTracing }',
import: '{ init, Replay, browserTracingIntegration }',
gzip: true,
limit: '75 KB',
},
{
name: '@sentry/browser (incl. Tracing, Replay with Canvas) - Webpack (gzipped)',
path: 'packages/browser/build/npm/esm/index.js',
import: '{ init, Replay, BrowserTracing, ReplayCanvas }',
import: '{ init, Replay, browserTracingIntegration, ReplayCanvas }',
gzip: true,
limit: '90 KB',
},
{
name: '@sentry/browser (incl. Tracing, Replay) - Webpack with treeshaking flags (gzipped)',
path: 'packages/browser/build/npm/esm/index.js',
import: '{ init, Replay, BrowserTracing }',
import: '{ init, Replay, browserTracingIntegration }',
gzip: true,
limit: '75 KB',
modifyWebpackConfig: function (config) {
Expand All @@ -43,7 +43,7 @@ module.exports = [
{
name: '@sentry/browser (incl. Tracing) - Webpack (gzipped)',
path: 'packages/browser/build/npm/esm/index.js',
import: '{ init, BrowserTracing }',
import: '{ init, browserTracingIntegration }',
gzip: true,
limit: '35 KB',
},
Expand Down Expand Up @@ -138,7 +138,7 @@ module.exports = [
{
name: '@sentry/react (incl. Tracing, Replay) - Webpack (gzipped)',
path: 'packages/react/build/esm/index.js',
import: '{ init, BrowserTracing, Replay }',
import: '{ init, browserTracingIntegration, Replay }',
gzip: true,
limit: '75 KB',
},
Expand All @@ -154,7 +154,7 @@ module.exports = [
{
name: '@sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped)',
path: 'packages/nextjs/build/esm/client/index.js',
import: '{ init, BrowserTracing, Replay }',
import: '{ init, browserTracingIntegration, Replay }',
gzip: true,
limit: '110 KB',
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
waitForTransactionRequestOnUrl,
} from '../../../../utils/helpers';

sentryTest('should handle custom added BrowserTracing integration', async ({ getLocalTestUrl, page }) => {
sentryTest('should handle custom added browserTracingIntegration instances', async ({ getLocalTestUrl, page }) => {
if (shouldSkipTracingTest()) {
sentryTest.skip();
}
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading