Skip to content

Commit e5c82c0

Browse files
authored
Merge branch 'master' into cameroncooke/docs/snapshotpreviews-metadata
2 parents 6bc12af + b7c2f2f commit e5c82c0

36 files changed

Lines changed: 157 additions & 52 deletions

File tree

develop-docs/backend/application-domains/tasks/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ def test_schedule_task(self, mock_deliver: MagicMock) -> None:
342342
mock_deliver.delay.assert_called_with(webhook_one.id)
343343
```
344344

345-
<Alert type="warning">
345+
<Alert level="warning">
346346
Mocking tasks will not validate that parameters are JSON compatible, nor will it catch TypeErrors from signature mismatches.
347347
</Alert>
348348

develop-docs/development-infrastructure/testing.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ with in_test_hide_transaction_boundary():
285285
users = user_service.get_many(filter={"user_ids": list(owners)})
286286
```
287287

288-
<Alert type="warning">
288+
<Alert level="warning">
289289
Bypassing safety checks is not recommended and usage can cause consistency
290290
issues and data loss.
291291
</Alert>

docs/contributing/approach/sdk-docs/write-getting-started.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ noindex: true
44
sidebar_order: 30
55
---
66

7-
<Alert type="info">
7+
<Alert level="info">
88
This page describes the legacy "Getting Started" guide format. New SDKs and
99
guides that have been updated should use the [Quick Start guide
1010
format](/contributing/approach/sdk-docs/write-quick-start/).

docs/contributing/approach/sdk-docs/write-quick-start.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sidebar_order: 25
66

77
New SDKs should use the Quick Start guide format outlined on this page. You may still encounter Getting Started guides for existing SDKs.
88

9-
<Alert type="info" title="Note">
9+
<Alert level="info" title="Note">
1010
If you want to update an existing Getting Started Guide without refactoring it
1111
into a Quick Start guide, see [How to Write - Getting
1212
Started](/contributing/approach/sdk-docs/write-getting-started/). If you're
@@ -133,7 +133,7 @@ If the content you want to include doesn't already exist, create a new file for
133133

134134
Integrate this content into your guide using the `PlatformSection` component.
135135

136-
<Alert type="info">
136+
<Alert level="info">
137137
If the SDK supports performance monitoring, add it to the list that links back
138138
into the SDK content from Product, stored in
139139
[`/docs/product/dashboards/sentry-dashboards/index.mdx`](https://github.com/getsentry/sentry-docs/blob/master/docs/product/dashboards/sentry-dashboards/index.mdx) (Sentry Dashboards index, which includes a Set Up section and platform redirect to tracing).

docs/platforms/apple/guides/ios/size-analysis/insights.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Below are a list of available insights for iOS builds, followed by more details
3434

3535
**How to fix**: Strip symbols from release builds and instead use debug symbols in separate dSYM files for crash reporters.
3636

37-
<Alert type="warning">
37+
<Alert level="warning">
3838
Stripping symbols before creating a dSYM breaks crash symbolication. Confirm
3939
your release build still produces and uploads dSYMs (or another crash reporter
4040
has them) before stripping.
@@ -50,7 +50,7 @@ strip -rSTx AppBinary -o AppBinaryStripped
5050

5151
To automate stripping in your project after building, add a Run Script phase that skips non-release builds and leaves Apple-signed frameworks untouched:
5252

53-
<Alert type="warning">
53+
<Alert level="warning">
5454
This script will strip the main app binary along with any binaries in the
5555
`Frameworks/` directory. This is a sample script that **may require
5656
adjustments** for your project.
@@ -304,7 +304,7 @@ Xcode now limits the export trie to just that allowlist.
304304

305305
**How to fix**: Enable [Source maps](https://reactnative.dev/docs/debugging-release-builds) when building your release app.
306306

307-
<Alert type="warning">
307+
<Alert level="warning">
308308
Stripping debug information breaks crash symbolication. Source maps need to be
309309
uploaded separately to your crash reporter.
310310
</Alert>

docs/platforms/dotnet/common/user-feedback/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ var eventId = SentrySdk.CaptureMessage("An event that will receive user feedback
2525
SentrySdk.CaptureFeedback("It broke.", "user@example.com", "The User", associatedEventId: eventId);
2626
```
2727

28-
<Alert type="info">
28+
<Alert level="info">
2929

3030
Note that Sentry will reject and drop any feedback events where the email address is invalid. To avoid this, the Sentry SDK for .NET removes invalid email addresses before sending feedback. Ideally you should validate the email address before calling this API.
3131

docs/platforms/javascript/common/configuration/event-loop-block.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ For detailed usage instructions and configuration options, see the [`eventLoopBl
6060

6161
## Deprecated Application Not Responding (ANR) Integration
6262

63-
<Alert type="warning">
63+
<Alert level="warning">
6464

6565
**Deprecated**: The `anrIntegration` is deprecated. Please use the [`eventLoopBlockIntegration`](../integrations/event-loop-block) instead for better performance and more comprehensive monitoring.
6666

docs/platforms/javascript/common/configuration/integrations/anr.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ supported:
2424
- javascript.tanstackstart-react
2525
---
2626

27-
<Alert type="warning">
27+
<Alert level="warning">
2828

2929
**Deprecated**: This integration is deprecated. Please use the [`eventLoopBlockIntegration`](./event-loop-block) instead for better performance and more comprehensive monitoring.
3030

docs/platforms/javascript/common/configuration/integrations/httpclient.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Default: `[/.*/]`
6060

6161
_Type: `boolean`_
6262

63-
<Alert type="warning">
63+
<Alert level="warning">
6464
This option has to be specified on the root Sentry.init options, not the
6565
integration options!
6666
</Alert>

docs/platforms/javascript/guides/angular/manual-setup.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ sidebar_order: 1
44
description: "Learn how to set up the Sentry Angular SDK manually."
55
---
66

7-
<Alert type="info">
7+
<Alert level="info">
88
For the fastest setup, we recommend using the [wizard
99
installer](/platforms/javascript/guides/angular).
1010
</Alert>

0 commit comments

Comments
 (0)