-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
meta(changelog): Update changelog for 10.3.0 #17356
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
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…calls (#17284) closes #17283 includes these attributes for `mcp.server` spans: - `mcp.prompt.result.description` - `mcp.prompt.result.message_content` - `mcp.prompt.result.message_role` - `mcp.prompt.result.message_count` Example: <img width="835" height="300" alt="Screenshot 2025-08-01 at 12 40 46" src="https://github.com/user-attachments/assets/592d876b-807a-4f3e-a9b2-406e10f5a83d" /> Needed to make `attributeExtraction.ts` <300 lines of code (requirement) so it's now split between `sessionExtraction.ts`, `sessionExtraction.ts` and `resultExtraction.ts`. So changes explained so it's easier to review: - The only function this PR adds is `extractPromptResultAttributes` inside `resultExtraction.ts`. - It adds the prompt results as PII in `piiFiltering.ts`. Just add them to the `set`. - adds a `else if (method === 'prompts/get')` to execute the `extractPromptResultAttributes` function. - adds a test that checks we're capturing the results and updates the PII test to check PII result attributes are being removed if sending PII is not enabled.
[Gitflow] Merge master into develop
Commits like `meta: Re-organize changelog to add v8 page` tripped this up. Our changelog entries always follow `meta(changelog)` so we should just check for that.
This streamlines the build logs for sveltekit. For this, I aligned how we handle source maps setting with other SDKs, which is a bit different then how sveltekit did it. 1. Only show log messages when `debug: true` 2. Show short warning when `sourceMaps: false` and `debug: false`, more details when `debug: true` is set 3. Re-organize how `filesToDeleteAfterUpload` is set, based on other SDKs (?? I hope that makes sense....) --------- Co-authored-by: Abhijeet Prasad <[email protected]>
…CLI fails (#17081) Sentry CLI's `cli.releases.uploadSourceMaps` method previously never rejected when the actual CLI binary execution exited with an error code. In CLI 2.49.0 and 2.50.0 I added a new execution mode variant (`rejectOnError`) which continues to pipe stdio to the process (the RR SDKs' upload script) but now also rejects on error. This patch bumps Sentry CLI and configures it to actually reject now. We already catch the rejection and fail silently. Nothing changed here.
…egration` (#17216) [#17218](#17218) adjusted data URI stack line parsing for most errors that go through the stack parsers (fully for node, line truncation in general). This patch now applies a similar logic to `globalHandlersIntegration` which in some conditions applies a stack frame that doesn't go through the same stack parser.
As raised in #16969, the Bun SDK doesn't currently export `skipOpenTelemetrySetup` in the SDK init options type, altghough the option can be correctly passed to the underlying `NodeClient`. This patch exports the option now.
- Increase the threshold of inactivity between potential navigations from 300ms to 1.5s - Change how we treat interactions: - Previously, we'd take interactions happening _before_ the last root span was started into account - Now, we reset the interaction timestamp when we start a new navigation _root_ span. So from that moment on, we'll consider every new navigation span a redirect iff: - no interaction happened within 1.5s (from root span start) - the new span was started within 1.5s - there is still an active root span
andreiborza
approved these changes
Aug 8, 2025
size-limit report 📦
|
6ffdb77
to
f0661fc
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.