Skip to content
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

Bump @sentry/browser from 7.75.1 to 9.10.1 #13704

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 28, 2025

Bumps @sentry/browser from 7.75.1 to 9.10.1.

Release notes

Sourced from @​sentry/browser's releases.

9.10.1

  • fix: Correct @​sentry-internal/feedback docs to match the code (#15874)
  • deps: Bump bundler plugins to version 3.2.4 (#15909)

Bundle size 📦

Path Size
@​sentry/browser 23.08 KB
@​sentry/browser - with treeshaking flags 22.88 KB
@​sentry/browser (incl. Tracing) 36.49 KB
@​sentry/browser (incl. Tracing, Replay) 73.65 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 67 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 78.3 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 90.87 KB
@​sentry/browser (incl. Feedback) 40.21 KB
@​sentry/browser (incl. sendFeedback) 27.71 KB
@​sentry/browser (incl. FeedbackAsync) 32.5 KB
@​sentry/react 24.86 KB
@​sentry/react (incl. Tracing) 38.39 KB
@​sentry/vue 27.3 KB
@​sentry/vue (incl. Tracing) 38.18 KB
@​sentry/svelte 23.12 KB
CDN Bundle 24.33 KB
CDN Bundle (incl. Tracing) 36.51 KB
CDN Bundle (incl. Tracing, Replay) 71.53 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 76.71 KB
CDN Bundle - uncompressed 70.93 KB
CDN Bundle (incl. Tracing) - uncompressed 108.11 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 219.4 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 231.97 KB
@​sentry/nextjs (client) 39.68 KB
@​sentry/sveltekit (client) 36.92 KB
@​sentry/node 142.91 KB
@​sentry/node - without tracing 96.12 KB
@​sentry/aws-serverless 120.46 KB

9.10.0

Important Changes

  • feat: Add support for logs

    • feat(node): Add logging public APIs to Node SDKs (#15764)
    • feat(core): Add support for beforeSendLog (#15814)
    • feat(core): Add support for parameterizing logs (#15812)
    • fix: Remove critical log severity level (#15824)

    All JavaScript SDKs other than @sentry/cloudflare and @sentry/deno now support sending logs via dedicated methods as part of Sentry's upcoming logging product.

    Logging is gated by an experimental option, _experiments.enableLogs.

... (truncated)

Changelog

Sourced from @​sentry/browser's changelog.

9.10.1

  • fix: Correct @​sentry-internal/feedback docs to match the code (#15874)
  • deps: Bump bundler plugins to version 3.2.4 (#15909)

9.10.0

Important Changes

  • feat: Add support for logs

    • feat(node): Add logging public APIs to Node SDKs (#15764)
    • feat(core): Add support for beforeSendLog (#15814)
    • feat(core): Add support for parameterizing logs (#15812)
    • fix: Remove critical log severity level (#15824)

    All JavaScript SDKs other than @sentry/cloudflare and @sentry/deno now support sending logs via dedicated methods as part of Sentry's upcoming logging product.

    Logging is gated by an experimental option, _experiments.enableLogs.

    Sentry.init({
      dsn: 'PUBLIC_DSN',
      // `enableLogs` must be set to true to use the logging features
      _experiments: { enableLogs: true },
    });
    const { trace, debug, info, warn, error, fatal, fmt } = Sentry.logger;
    trace('Starting database connection', { database: 'users' });
    debug('Cache miss for user', { userId: 123 });
    error('Failed to process payment', { orderId: 'order_123', amount: 99.99 });
    fatal('Database connection pool exhausted', { database: 'users', activeConnections: 100 });
    // Structured logging via the fmt helper function. When you use fmt, the string template and parameters are sent separately so they can be queried independently in Sentry.
    info(fmt(Updated profile for user ${userId}));
    warn(fmt(Rate limit approaching for endpoint ${endpoint}. Requests: ${requests}, Limit: ${limit}));

    With server-side SDKs like @sentry/node, @sentry/bun or server-side of @sentry/nextjs or @sentry/sveltekit, you can do structured logging without needing the fmt helper function.

    const { info, warn } = Sentry.logger;
    info('User %s logged in successfully', [123]);
    warn('Failed to load user %s data', [123], { errorCode: 404 });

    To filter logs, or update them before they are sent to Sentry, you can use the _experiments.beforeSendLog option.

... (truncated)

Commits
  • 979fe8f release: 9.10.1
  • c72d02b Merge pull request #15910 from getsentry/prepare-release/9.10.1
  • 2139b59 meta(changelog): Update changelog for VERSION
  • bcb15ba deps: Bump bundler plugins to version 3.2.4 (#15909)
  • 4dc7006 Merge pull request #15876 from getsentry/master
  • dbde86c Merge branch 'release/9.10.0'
  • 791d9e3 fix: Correct @​sentry-internal/feedback docs to match the code (#15874)
  • e383fff release: 9.10.0
  • 03d4ab1 Merge pull request #15867 from getsentry/prepare-release/9.10.0
  • d430d96 meta(changelog): Update changelog for 9.10.0
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@sentry/browser](https://github.com/getsentry/sentry-javascript) from 7.75.1 to 9.10.1.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@7.75.1...9.10.1)

---
updated-dependencies:
- dependency-name: "@sentry/browser"
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added Dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 28, 2025
@dependabot dependabot bot requested a review from a team as a code owner March 28, 2025 18:25
Copy link

Hello 👋! When you're ready to run Chromatic, please apply the run_chromatic label to this PR.

You will need to reapply the label each time you want to run Chromatic.

Click here to see the Chromatic project.

Copy link

Size Change: +4.67 kB (+0.51%)

Total Size: 929 kB

Filename Size Change
dotcom-rendering/dist/7116.client.web.********************.js 0 B -23 kB (removed) 🏆
dotcom-rendering/dist/index.client.web.********************.js 46.3 kB -104 B (-0.22%)
dotcom-rendering/dist/8614.client.web.********************.js 27.8 kB +27.8 kB (new file) 🆕
ℹ️ View Unchanged
Filename Size Change
dotcom-rendering/dist/1031.client.web.********************.js 3.76 kB 0 B
dotcom-rendering/dist/1262.client.web.********************.js 4.49 kB 0 B
dotcom-rendering/dist/1401.client.web.********************.js 441 B 0 B
dotcom-rendering/dist/1451.client.web.********************.js 5.41 kB 0 B
dotcom-rendering/dist/1477.client.web.********************.js 3.03 kB 0 B
dotcom-rendering/dist/1646.client.web.********************.js 4.44 kB 0 B
dotcom-rendering/dist/1714.client.web.********************.js 2.87 kB 0 B
dotcom-rendering/dist/1786.client.web.********************.js 3.31 kB 0 B
dotcom-rendering/dist/1879.client.web.********************.js 3.69 kB 0 B
dotcom-rendering/dist/2188.client.web.********************.js 6.22 kB 0 B
dotcom-rendering/dist/2482.client.web.********************.js 44.8 kB 0 B
dotcom-rendering/dist/2544.client.web.********************.js 2.62 kB 0 B
dotcom-rendering/dist/2586.client.web.********************.js 3.03 kB 0 B
dotcom-rendering/dist/2701.client.web.********************.js 2.68 kB 0 B
dotcom-rendering/dist/280.client.web.********************.js 531 B 0 B
dotcom-rendering/dist/2940.client.web.********************.js 4.5 kB 0 B
dotcom-rendering/dist/3051.client.web.********************.js 2.11 kB 0 B
dotcom-rendering/dist/3137.client.web.********************.js 3.08 kB 0 B
dotcom-rendering/dist/342.client.web.********************.js 4.17 kB 0 B
dotcom-rendering/dist/356.client.web.********************.js 4.5 kB 0 B
dotcom-rendering/dist/3769.client.web.********************.js 22.7 kB 0 B
dotcom-rendering/dist/39.client.web.********************.js 3.07 kB 0 B
dotcom-rendering/dist/3937.client.web.********************.js 4.6 kB 0 B
dotcom-rendering/dist/4030.client.web.********************.js 3.85 kB 0 B
dotcom-rendering/dist/4040.client.web.********************.js 2.89 kB 0 B
dotcom-rendering/dist/4170.client.web.********************.js 18.4 kB 0 B
dotcom-rendering/dist/433.client.web.********************.js 16.5 kB 0 B
dotcom-rendering/dist/4337.client.web.********************.js 15.1 kB 0 B
dotcom-rendering/dist/4501.client.web.********************.js 4.29 kB 0 B
dotcom-rendering/dist/4552.client.web.********************.js 3.64 kB 0 B
dotcom-rendering/dist/4693.client.web.********************.js 2.51 kB 0 B
dotcom-rendering/dist/4793.client.web.********************.js 5.03 kB 0 B
dotcom-rendering/dist/4916.client.web.********************.js 3.55 kB 0 B
dotcom-rendering/dist/5598.client.web.********************.js 2.87 kB 0 B
dotcom-rendering/dist/5835.client.web.********************.js 7.89 kB 0 B
dotcom-rendering/dist/6021.client.web.********************.js 11.5 kB 0 B
dotcom-rendering/dist/6061.client.web.********************.js 3.63 kB 0 B
dotcom-rendering/dist/6075.client.web.********************.js 2.86 kB 0 B
dotcom-rendering/dist/6110.client.web.********************.js 3.54 kB 0 B
dotcom-rendering/dist/6627.client.web.********************.js 10.4 kB 0 B
dotcom-rendering/dist/6885.client.web.********************.js 4.76 kB 0 B
dotcom-rendering/dist/6931.client.web.********************.js 2.63 kB 0 B
dotcom-rendering/dist/6940.client.web.********************.js 526 B 0 B
dotcom-rendering/dist/7094.client.web.********************.js 156 B 0 B
dotcom-rendering/dist/7280.client.web.********************.js 3.27 kB 0 B
dotcom-rendering/dist/7350.client.web.********************.js 3.32 kB 0 B
dotcom-rendering/dist/7540.client.web.********************.js 2.74 kB 0 B
dotcom-rendering/dist/7544.client.web.********************.js 4.77 kB 0 B
dotcom-rendering/dist/7546.client.web.********************.js 7.75 kB 0 B
dotcom-rendering/dist/7765.client.web.********************.js 17.9 kB 0 B
dotcom-rendering/dist/7861.client.web.********************.js 617 B 0 B
dotcom-rendering/dist/7975.client.web.********************.js 4.14 kB 0 B
dotcom-rendering/dist/8030.client.web.********************.js 4.3 kB 0 B
dotcom-rendering/dist/8277.client.web.********************.js 3.66 kB 0 B
dotcom-rendering/dist/8856.client.web.********************.js 4.8 kB 0 B
dotcom-rendering/dist/8861.client.web.********************.js 3.39 kB 0 B
dotcom-rendering/dist/8918.client.web.********************.js 20.4 kB 0 B
dotcom-rendering/dist/8967.client.web.********************.js 4.33 kB 0 B
dotcom-rendering/dist/9072.client.web.********************.js 3.64 kB 0 B
dotcom-rendering/dist/9242.client.web.********************.js 3.76 kB 0 B
dotcom-rendering/dist/9558.client.web.********************.js 3.53 kB 0 B
dotcom-rendering/dist/9631.client.web.********************.js 2.84 kB 0 B
dotcom-rendering/dist/9665.client.web.********************.js 4.14 kB 0 B
dotcom-rendering/dist/9703.client.web.********************.js 3.1 kB 0 B
dotcom-rendering/dist/9851.client.web.********************.js 3.75 kB 0 B
dotcom-rendering/dist/9861.client.web.********************.js 3.18 kB 0 B
dotcom-rendering/dist/Accessibility-importable.client.web.********************.js 8.42 kB 0 B
dotcom-rendering/dist/AdBlockAsk-importable.client.web.********************.js 2.99 kB 0 B
dotcom-rendering/dist/AdPortals-importable.client.web.********************.js 4.75 kB 0 B
dotcom-rendering/dist/AlreadyVisited-importable.client.web.********************.js 423 B 0 B
dotcom-rendering/dist/AppsEpic-importable.client.web.********************.js 3.63 kB 0 B
dotcom-rendering/dist/AppsFooter-importable.client.web.********************.js 2.7 kB 0 B
dotcom-rendering/dist/AppsLightboxImage-importable.client.web.********************.js 2.66 kB 0 B
dotcom-rendering/dist/AppsLightboxImageStore-importable.client.web.********************.js 2.58 kB 0 B
dotcom-rendering/dist/AudioAtomWrapper-importable.client.web.********************.js 2.76 kB 0 B
dotcom-rendering/dist/AudioPlayerWrapper-importable.client.web.********************.js 6.61 kB 0 B
dotcom-rendering/dist/AustralianTerritorySwitcher-importable.client.web.********************.js 4.6 kB 0 B
dotcom-rendering/dist/Branding-importable.client.web.********************.js 2.88 kB 0 B
dotcom-rendering/dist/braze-web-sdk-core.client.web.********************.js 37.2 kB 0 B
dotcom-rendering/dist/BrazeMessaging-importable.client.web.********************.js 1.68 kB 0 B
dotcom-rendering/dist/CalloutBlockComponent-importable.client.web.********************.js 6.74 kB 0 B
dotcom-rendering/dist/CalloutEmbedBlockComponent-importable.client.web.********************.js 5.76 kB 0 B
dotcom-rendering/dist/CardCommentCount-importable.client.web.********************.js 2.67 kB 0 B
dotcom-rendering/dist/Carousel-importable.client.web.********************.js 6.67 kB 0 B
dotcom-rendering/dist/CarouselForNewsletters-importable.client.web.********************.js 4.54 kB 0 B
dotcom-rendering/dist/ChartAtom-importable.client.web.********************.js 538 B 0 B
dotcom-rendering/dist/CommentCount-importable.client.web.********************.js 2.29 kB 0 B
dotcom-rendering/dist/CrosswordComponent-importable.client.web.********************.js 2.72 kB 0 B
dotcom-rendering/dist/DiscussionApps-importable.client.web.********************.js 1.07 kB 0 B
dotcom-rendering/dist/DiscussionMeta-importable.client.web.********************.js 2.4 kB 0 B
dotcom-rendering/dist/DiscussionWeb-importable.client.web.********************.js 3.45 kB 0 B
dotcom-rendering/dist/DocumentBlockComponent-importable.client.web.********************.js 2.82 kB 0 B
dotcom-rendering/dist/Dropdown-importable.client.web.********************.js 954 B 0 B
dotcom-rendering/dist/EditionSwitcherBanner-importable.client.web.********************.js 4.43 kB 0 B
dotcom-rendering/dist/EmbedBlockComponent-importable.client.web.********************.js 3.94 kB 0 B
dotcom-rendering/dist/EnhancePinnedPost-importable.client.web.********************.js 2.02 kB 0 B
dotcom-rendering/dist/FetchOnwardsData-importable.client.web.********************.js 1.95 kB 0 B
dotcom-rendering/dist/FilterKeyEventsToggle-importable.client.web.********************.js 3.71 kB 0 B
dotcom-rendering/dist/FocusStyles-importable.client.web.********************.js 616 B 0 B
dotcom-rendering/dist/FollowWrapper-importable.client.web.********************.js 2.52 kB 0 B
dotcom-rendering/dist/FootballMatchesPageWrapper-importable.client.web.********************.js 7.59 kB 0 B
dotcom-rendering/dist/FootballTablesPageWrapper-importable.client.web.********************.js 5.78 kB 0 B
dotcom-rendering/dist/FooterLabel-importable.client.web.********************.js 341 B 0 B
dotcom-rendering/dist/FooterReaderRevenueLinks-importable.client.web.********************.js 3.43 kB 0 B
dotcom-rendering/dist/frameworks.client.web.********************.js 20.8 kB 0 B
dotcom-rendering/dist/FrontSubNav-importable.client.web.********************.js 7.47 kB 0 B
dotcom-rendering/dist/GetCricketScoreboard-importable.client.web.********************.js 6.28 kB 0 B
dotcom-rendering/dist/GetMatchNav-importable.client.web.********************.js 11.5 kB 0 B
dotcom-rendering/dist/GetMatchStats-importable.client.web.********************.js 7.99 kB 0 B
dotcom-rendering/dist/GetMatchTabs-importable.client.web.********************.js 2.58 kB 0 B
dotcom-rendering/dist/guardian-braze-components-banner.client.web.********************.js 15.8 kB 0 B
dotcom-rendering/dist/guardian-braze-components-end-of-article.client.web.********************.js 10.2 kB 0 B
dotcom-rendering/dist/GuideAtomWrapper-importable.client.web.********************.js 783 B 0 B
dotcom-rendering/dist/InstagramBlockComponent-importable.client.web.********************.js 2.9 kB 0 B
dotcom-rendering/dist/InteractiveAtomMessenger-importable.client.web.********************.js 852 B 0 B
dotcom-rendering/dist/InteractiveBlockComponent-importable.client.web.********************.js 8.73 kB 0 B
dotcom-rendering/dist/InteractiveContentsBlockComponent-importable.client.web.********************.js 3.77 kB 0 B
dotcom-rendering/dist/KeyEventsCarousel-importable.client.web.********************.js 5.71 kB 0 B
dotcom-rendering/dist/KnowledgeQuizAtom-importable.client.web.********************.js 3.2 kB 0 B
dotcom-rendering/dist/LatestLinks-importable.client.web.********************.js 6.4 kB 0 B
dotcom-rendering/dist/LightboxHash-importable.client.web.********************.js 434 B 0 B
dotcom-rendering/dist/LightboxLayout-importable.client.web.********************.js 6.54 kB 0 B
dotcom-rendering/dist/LiveBlogEpic-importable.client.web.********************.js 3.59 kB 0 B
dotcom-rendering/dist/LiveblogGutterAskWrapper-importable.client.web.********************.js 2.52 kB 0 B
dotcom-rendering/dist/LiveblogNotifications-importable.client.web.********************.js 4.82 kB 0 B
dotcom-rendering/dist/Liveness-importable.client.web.********************.js 4.72 kB 0 B
dotcom-rendering/dist/ManyNewsletterSignUp-importable.client.web.********************.js 7.68 kB 0 B
dotcom-rendering/dist/MapEmbedBlockComponent-importable.client.web.********************.js 6.04 kB 0 B
dotcom-rendering/dist/Metrics-importable.client.web.********************.js 2.69 kB 0 B
dotcom-rendering/dist/MostViewedFooter-importable.client.web.********************.js 4.01 kB 0 B
dotcom-rendering/dist/MostViewedFooterData-importable.client.web.********************.js 6.11 kB 0 B
dotcom-rendering/dist/MostViewedRightWithAd-importable.client.web.********************.js 5.26 kB 0 B
dotcom-rendering/dist/OnwardsUpper-importable.client.web.********************.js 5.39 kB 0 B
dotcom-rendering/dist/PersonalityQuizAtom-importable.client.web.********************.js 3.36 kB 0 B
dotcom-rendering/dist/ProfileAtom-importable.client.web.********************.js 546 B 0 B
dotcom-rendering/dist/ProfileAtomWrapper-importable.client.web.********************.js 804 B 0 B
dotcom-rendering/dist/PulsingDot-importable.client.web.********************.js 749 B 0 B
dotcom-rendering/dist/QandaAtom-importable.client.web.********************.js 542 B 0 B
dotcom-rendering/dist/ReaderRevenueDev-importable.client.web.********************.js 468 B 0 B
dotcom-rendering/dist/readerRevenueDevUtils.client.web.********************.js 1.69 kB 0 B
dotcom-rendering/dist/RelativeTime-importable.client.web.********************.js 2.55 kB 0 B
dotcom-rendering/dist/RichLinkComponent-importable.client.web.********************.js 6.12 kB 0 B
dotcom-rendering/dist/ScrollableFeature-importable.client.web.********************.js 6.32 kB 0 B
dotcom-rendering/dist/ScrollableHighlights-importable.client.web.********************.js 5.83 kB 0 B
dotcom-rendering/dist/ScrollableMedium-importable.client.web.********************.js 2.1 kB 0 B
dotcom-rendering/dist/ScrollableSmall-importable.client.web.********************.js 2.07 kB 0 B
dotcom-rendering/dist/SecureSignup-importable.client.web.********************.js 4.23 kB 0 B
dotcom-rendering/dist/SendTargetingParams-importable.client.web.********************.js 2.22 kB 0 B
dotcom-rendering/dist/sentry.client.web.********************.js 815 B +10 B (+1.24%)
dotcom-rendering/dist/SetABTests-importable.client.web.********************.js 3.92 kB 0 B
dotcom-rendering/dist/SetAdTargeting-importable.client.web.********************.js 486 B 0 B
dotcom-rendering/dist/ShareButton-importable.client.web.********************.js 2.17 kB 0 B
dotcom-rendering/dist/shimport.client.web.********************.js 2.8 kB 0 B
dotcom-rendering/dist/ShowHideContainers-importable.client.web.********************.js 892 B 0 B
dotcom-rendering/dist/ShowMore-importable.client.web.********************.js 918 B 0 B
dotcom-rendering/dist/SignInGateMain.client.web.********************.js 4.38 kB 0 B
dotcom-rendering/dist/SignInGateMainCheckoutComplete.client.web.********************.js 5.47 kB 0 B
dotcom-rendering/dist/SignInGateSelector-importable.client.web.********************.js 8.55 kB 0 B
dotcom-rendering/dist/SlideshowCarousel-importable.client.web.********************.js 4.51 kB 0 B
dotcom-rendering/dist/SlotBodyEnd-importable.client.web.********************.js 4.77 kB 0 B
dotcom-rendering/dist/SpotifyBlockComponent-importable.client.web.********************.js 5.78 kB 0 B
dotcom-rendering/dist/StickyBottomBanner-importable.client.web.********************.js 6.02 kB 0 B
dotcom-rendering/dist/SubNav-importable.client.web.********************.js 2.43 kB 0 B
dotcom-rendering/dist/TableOfContents-importable.client.web.********************.js 3.51 kB 0 B
dotcom-rendering/dist/TimelineAtom-importable.client.web.********************.js 1.23 kB 0 B
dotcom-rendering/dist/Titlepiece-importable.client.web.********************.js 14.7 kB 0 B
dotcom-rendering/dist/TopBar-importable.client.web.********************.js 8.1 kB +1 B (+0.01%)
dotcom-rendering/dist/TopBarSupport-importable.client.web.********************.js 2.51 kB -1 B (-0.04%)
dotcom-rendering/dist/TweetBlockComponent-importable.client.web.********************.js 1.13 kB 0 B
dotcom-rendering/dist/UnsafeEmbedBlockComponent-importable.client.web.********************.js 2.91 kB 0 B
dotcom-rendering/dist/VideoFacebookBlockComponent-importable.client.web.********************.js 6.05 kB 0 B
dotcom-rendering/dist/VineBlockComponent-importable.client.web.********************.js 3.3 kB 0 B
dotcom-rendering/dist/YoutubeBlockComponent-importable.client.web.********************.js 841 B 0 B

compressed-size-action

Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 3, 2025

Superseded by #13732.

@dependabot dependabot bot closed this Apr 3, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/sentry/browser-9.10.1 branch April 3, 2025 18:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Dependencies Pull requests that update a dependency file dotcom-rendering javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants