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

meta: Update changelog for 9.9.0 #15791

Merged
merged 16 commits into from
Mar 24, 2025
Merged

meta: Update changelog for 9.9.0 #15791

merged 16 commits into from
Mar 24, 2025

Conversation

Lms24
Copy link
Member

@Lms24 Lms24 commented Mar 24, 2025

Some nice new features :)

mydea and others added 15 commits March 21, 2025 10:30
This gets rid of some unnecessary invocations of `dropUndefinedKeys()`
that we have.
This PR adds logic to set the `previous_trace ` span link on root spans
(via `browserTracingIntegration`).

- added `linkPreviousTrace` integration option to control the trace
linking behaviour:
- everything is implemented within `browserTracingIntegration`, meaning
there's no bundle size hit for error-only users or users who only send
manual spans (the latter is a tradeoff but I think it's a fair one)
- added unit and integration tests for a bunch of scenarios

closes #14992

UPDATE: I rewrote the public API options from having two options
(`enablePreviousTrace` and `persistPreviousTrace`) to only one which
controls both aspects.
[Gitflow] Merge master into develop
trpc/trpc#6617 removed an unstable API we used
in the app. I just switched it over to use the stable replacement
Updates the implementation of `dropUndefinedKeys`:
- added early returns
- used for loops in case of larger data structures
- handle array case before object case to avoid calls to `isPojo`
- simplified `isPojo` by checking
[Object.prototype.constructor](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/constructor#description)


ref #15725
ref
#15725 (comment)

Similar to the work done in
#15765 we can avoid
usage of `addNonEnumerableProperty` with usage of a `WeakSet`.
ref #15526

Continuing off the work from
#15717, this PR adds
the logging public API to the Browser SDK. It also adds a basic flushing
strategy to the SDK that is timeout based. This is done to help save
bundle size.

The main file added was `log.ts`. This has three areas to look at:

1. The logger methods for `trace`, `debug`, `info`, `warn`, `error`,
`fatal` (the log severity levels) as well as an internal capture log
helper all these methods call.
2. `addFlushingListeners` which adds listeners to flush the logs buffer
on client flush and document visibility hidden.
3. a flush timeout that flushes logs after X seconds, which gets
restarted when new logs are captured.

I also removed any logs logic from the `BrowserClient`, which should
ensure this stays as bundle size efficient as possible.

Usage:

```js
import * as Sentry from "@sentry/browser";

Sentry.init({
  dsn: "your-dsn-here",
  _experiments: {
    enableLogs: true  // This is required to use the logging features
  }
});

// Trace level (lowest severity)
Sentry.logger.trace("This is a trace message", { userId: 123 });

// Debug level
Sentry.logger.debug("This is a debug message", { component: "UserProfile" });

// Info level
Sentry.logger.info("User logged in successfully", { userId: 123 });

// Warning level
Sentry.logger.warn("API response was slow", { responseTime: 2500 });

// Error level
Sentry.logger.error("Failed to load user data", { userId: 123, errorCode: 404 });

// Critical level
Sentry.logger.critical("Database connection failed", { dbHost: "primary-db" });

// Fatal level (highest severity)
Sentry.logger.fatal("Application is shutting down unexpectedly", { memory: "exhausted" });
```
Now that we support ES2020 (aka not IE11 anymore) and Node.js 18+, we
can get rid of `parseUrl` in favor of a method that just uses the
built-in URL object. This will save us some bundle size (given we can
remove that regex), and we get performance benefits from using native
code.

Instead of just blanket replacing `parseUrl`, we'll slowly convert all
it's usages to using a new helper, `parseStringToURL`.

Given we are updating the core package, I also went ahead and converted
`parseUrl` usage in `packages/core/src/fetch.ts`
Supercedes #13198

resolves #13197

Aligns fastify error handler with the express one.

1. Adds `shouldHandleError` to allow users to configure if errors should
be captured
2. Makes sure the default `shouldHandleError` does not capture errors
for 4xx and 3xx status codes.

## Usage

```js
setupFastifyErrorHandler(app, {
  shouldHandleError(_error, _request, reply) {
    return statusCode >= 500 || statusCode <= 399;
  },
});
```
In some places this should not really be needed, so we can skip this.
)

Noticed this was "incorrect" here, for all other places it seems
correct.
Due to PR #15710 the
Sentry server config is only processed inside the Nitro-part of Nuxt and
the server config file is emitted through the Rollup plugin.

It is not needed anymore to copy-paste the file manually (this has been
the case before as the file was added to the `.nuxt` folder - as it was
processed by Nuxt, not Nitro-only).

This fixes the "no such file" error [posted in this
comment](#13330 (comment)).

closes #13330
…ch" errors (#15729)

Closes #15709

This also adds tests for the various types of TypeErrors that fetch can
produce.
@Lms24 Lms24 force-pushed the prepare-release/9.9.0 branch from 673af4a to df794c2 Compare March 24, 2025 10:33
@Lms24 Lms24 requested review from lforst, s1gr1d and AbhiPrasad March 24, 2025 10:33
@Lms24 Lms24 self-assigned this Mar 24, 2025
Copy link
Member

@s1gr1d s1gr1d left a comment

Choose a reason for hiding this comment

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

Nice features 💯

Don't forget to base the PR on master

CHANGELOG.md Outdated

Please note that the logs product is still in early access. See the link above for more information.

- **feat(nextjs): Support `instrumentation-client.ts` ([#15705](https://github.com/getsentry/sentry-javascript/pull/15705))**
Copy link
Member

Choose a reason for hiding this comment

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

let's swap this and the linked traces entries here, IMHO that should be the ordering (as linked traces do not do anything for users in UI just yet 😅 )?

Copy link
Member Author

Choose a reason for hiding this comment

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

lol I thought I sorted alphanumeric but not event that was true 😅 Now it's nextjs -> previous trace -> logging (b/c of LA)

@Lms24 Lms24 force-pushed the prepare-release/9.9.0 branch from df794c2 to bb358cf Compare March 24, 2025 12:07
@Lms24 Lms24 changed the base branch from develop to master March 24, 2025 12:09
@Lms24 Lms24 requested a review from a team as a code owner March 24, 2025 12:09
@Lms24 Lms24 merged commit 80e19f2 into master Mar 24, 2025
26 checks passed
@Lms24 Lms24 deleted the prepare-release/9.9.0 branch March 24, 2025 12:16
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.

6 participants