-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into martinhaintz/fix-flutter-multiview
* master: (213 commits) Remove feature flag documentation from issue details page (#11734) docs(insights): Remove EA note from Queries re: MongoDB (#11735) docs(nuxt): `piniaIntegration` in Nuxt (#11684) feat(flags): Add OpenFeature and LaunchDarkly integration documentation (#11675) Cleaning up mermaid code and made it a bit more readable in dark mode (#11726) docs(scopes): Add graphics for scope forking (#11702) Unreal Engine plugin documentation update (#11625) Bump API schema to 25e528ff (#11728) Bump API schema to 12bd311c (#11725) fix dark theme resolution (#11718) Update sign in to go to sentry (#11723) getsentry/relay@4bdad17 API examples syntax highlighting (#11715) feat: Convert mermaid code blocks to SVGs client side (#11690) Trace context is required for transactions (#11456) deps: Bump SDK to 8.36.0 (#11696) getsentry/relay@2e2587c MAUI screenshot `SetBeforeScreenshotCapture`(#11672) Add CSS rule to fix color of bold links (#11707) Fix small typo on web-vitals-concepts (#11706) ...
- Loading branch information
Showing
663 changed files
with
14,727 additions
and
3,885 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: "📝 Documentation on develop.sentry.dev" | ||
labels: ["Type: Content", "Develop"] | ||
description: Missing, incorrect, or unclear developer documentation. | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: |- | ||
Is the documentation issue something you know how to fix? Consider contributing to Open Source by opening a PR to fix it instead! | ||
- type: input | ||
id: area-specific | ||
attributes: | ||
label: Which section? | ||
description: Which section of the developer documentation needs to be updated? | ||
validations: | ||
required: true | ||
- type: input | ||
id: page-url | ||
attributes: | ||
label: Page URL | ||
description: Please provide the URL of the page which should be changed (if applicable). | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: What were you looking for/trying to do/expecting? | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Suggested Solution | ||
description: If you have an idea on how we can solve this, please share. | ||
- type: markdown | ||
attributes: | ||
value: |- | ||
## Thanks 🙏 | ||
Check our [triage docs](https://open.sentry.io/triage/) for what to expect next. | ||
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Enforce Version Conventions | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
branches: [master] | ||
|
||
jobs: | ||
check-version-convention: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install bun | ||
uses: oven-sh/setup-bun@v2 | ||
with: | ||
bun-version: latest | ||
|
||
- name: Run script for checking conventions | ||
run: bun scripts/check-version-conventions.ts |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,16 +21,16 @@ | |
"@radix-ui/react-icons": "^1.3.0", | ||
"@radix-ui/react-toolbar": "^1.0.4", | ||
"@radix-ui/themes": "^2.0.3", | ||
"@sentry/nextjs": "8.29.0", | ||
"@sentry/nextjs": "8.36.0", | ||
"@spotlightjs/spotlight": "^2.1.1", | ||
"next": "^15.0.0-canary.83", | ||
"next": "15.0.0-rc.1", | ||
"next-auth": "^4.24.5", | ||
"next-mdx-remote": "^4.4.1", | ||
"nextjs-toploader": "^1.6.6", | ||
"nuqs": "^1.17.7", | ||
"prism-sentry": "^1.0.2", | ||
"react": "beta", | ||
"react-dom": "beta", | ||
"react": "19.0.0-rc-cd22717c-20241013", | ||
"react-dom": "19.0.0-rc-cd22717c-20241013", | ||
"react-select": "^5.7.3", | ||
"react-textarea-autosize": "^8.5.3", | ||
"rehype-prism-plus": "^1.6.3", | ||
|
@@ -44,8 +44,8 @@ | |
"@tailwindcss/forms": "^0.5.7", | ||
"@tailwindcss/typography": "^0.5.10", | ||
"@types/node": "^20", | ||
"@types/react": "^18", | ||
"@types/react-dom": "^18.3.0", | ||
"@types/react": "npm:[email protected]", | ||
"@types/react-dom": "npm:[email protected]", | ||
"@types/rss": "^0.0.32", | ||
"autoprefixer": "^10.4.17", | ||
"dotenv-cli": "^7.4.2", | ||
|
@@ -58,5 +58,9 @@ | |
}, | ||
"volta": { | ||
"extends": "../../package.json" | ||
}, | ||
"resolutions": { | ||
"@types/react": "npm:[email protected]", | ||
"@types/react-dom": "npm:[email protected]" | ||
} | ||
} |
Oops, something went wrong.