Skip to content

Conversation

@coolguyzone
Copy link
Contributor

DESCRIBE YOUR PR

Tell us what you're changing and why. If your PR resolves an issue, please link it so it closes automatically.

IS YOUR CHANGE URGENT?

Help us prioritize incoming PRs by letting us know when the change needs to go live.

  • Urgent deadline (GA date, etc.):
  • Other deadline:
  • None: Not urgent, can wait up to 1 week+

SLA

  • Teamwork makes the dream work, so please add a reviewer to your PRs.
  • Please give the docs team up to 1 week to review your PR unless you've added an urgent due date to it.
    Thanks in advance for your help!

PRE-MERGE CHECKLIST

Make sure you've checked the following before merging your changes:

  • Checked Vercel preview for correctness, including links
  • PR was reviewed and approved by any necessary SMEs (subject matter experts)
  • PR was reviewed and approved by a member of the Sentry docs team

LEGAL BOILERPLATE

Look, I get it. The entity doing business as "Sentry" was incorporated in the State of Delaware in 2015 as Functional Software, Inc. and is gonna need some rights from me in order to utilize my contributions in this here PR. So here's the deal: I retain all rights, title and interest in and to my contributions, and by keeping this boilerplate intact I confirm that Sentry can use, modify, copy, and redistribute my contributions, under Sentry's choice of terms.

EXTRA RESOURCES

@vercel
Copy link

vercel bot commented Dec 17, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Review Updated (UTC)
sentry-docs Ready Ready Preview, Comment Dec 18, 2025 11:56pm
1 Skipped Deployment
Project Deployment Review Updated (UTC)
develop-docs Ignored Ignored Preview Dec 18, 2025 11:56pm

Copy link
Contributor

@sfanahata sfanahata left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤘

Comment on lines 25 to 34
sidebar_order: node.frontmatter.sidebar_order,
sidebar_title: node.frontmatter.sidebar_title,
sidebar_hidden: node.frontmatter.sidebar_hidden,
beta: node.frontmatter.beta,
new: node.frontmatter.new,
section_end_divider: node.frontmatter.section_end_divider,
sidebar_section: node.frontmatter.sidebar_section,
},
path: '/' + node.path + '/',
});

This comment was marked as outdated.

isActive={!isPlatformSidebar && unversionedPath === root}
topLevel
beta={parentNode.node?.context.beta}
isNew={parentNode.node?.context.new}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Beta badge uses wrong node, will never display

The beta and isNew props are sourced from parentNode.node?.context, but parentNode is the empty-named child entity whose node is always null due to how toTree constructs the tree. The actual frontmatter data with beta: true is on entity.node, not parentNode.node. This means the beta badge will never appear on section headers like "Size Analysis" even though the frontmatter is correctly set. The code should use entity.node?.context.beta and entity.node?.context.new instead, consistent with how title is retrieved on line 255.

Fix in Cursor Fix in Web

@codeowner-assignment codeowner-assignment bot requested a review from a team December 18, 2025 23:45
description: "Learn about managing the release ID and customizing Spring Boot to your organization's needs."
---

Sentry's Spring Boot integration automatically includes the release and sets options as described in the following sections.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Unrelated trailing whitespace change in Spring Boot file

This file has a trailing space added that is unrelated to the PR's purpose of updating size analysis to beta. The advanced-usage.mdx file for Spring Boot documentation was likely open in an editor and inadvertently modified while working on the size analysis changes.

Fix in Cursor Fix in Web

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants