Skip to content

Commit 052779d

Browse files
authored
Merge branch 'master' into buenaflor/v9-update-snippets
2 parents 179bf1d + dfdad54 commit 052779d

File tree

439 files changed

+5216
-2033
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

439 files changed

+5216
-2033
lines changed

.github/CODEOWNERS

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
# Requiring review from security team for Content-Security-Policy changes
44
**/vercel.json @getsentry/security
55

6-
# owners-api is tagged here but anyone can just approve the SHA Bump PRs
7-
/src/build/resolveOpenAPI.ts @getsentry/owners-api
8-
96
# Codeowners listed below are used as a reference for the Sentry team to know who to contact for a given area of the codebase.
107

118
# /src/platforms/android/ @getsentry/team-mobile-core

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ contact_links:
77
url: https://github.com/getsentry/self-hosted/issues/new
88
about: Please use the `self-hosted` repo for questions about self-hosted Sentry.
99
- name: An issue with one of the SDKs
10-
url: https://github.com/search?q=topic%3Acrash-reporting+org%3Agetsentry+fork%3Atrue
10+
url: https://github.com/search?q=topic%3Asdk+org%3Agetsentry&type=repositories
1111
about: Please use the relevant SDK repository to report any issues.

.github/ISSUE_TEMPLATE/issue-content-01-sdks.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: '📝 SDK Documentation'
2-
labels: ['Type: Content', 'SDKs']
2+
labels: ['Docs', 'SDKs']
33
description: Missing, incorrect, or unclear documentation of SDKs.
4-
type: Improvement
54
body:
65
- type: markdown
76
attributes:

.github/ISSUE_TEMPLATE/issue-content-02-product.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: '📝 Product Documentation'
2-
labels: ['Type: Content', 'Product']
2+
labels: ['Docs', 'Product']
33
description: Missing, incorrect, or unclear documentation of product features.
4-
type: Improvement
54
body:
65
- type: markdown
76
attributes:

.github/ISSUE_TEMPLATE/issue-content-03-develop.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: '📝 Documentation on develop.sentry.dev'
2-
labels: ['Type: Content', 'Develop']
2+
labels: ['Docs', 'Develop']
33
description: Missing, incorrect, or unclear developer documentation.
4-
type: Improvement
54
body:
65
- type: markdown
76
attributes:

.github/ISSUE_TEMPLATE/issue-platform-404.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: '💻 Docs Platform: 🔗 404 Error'
2-
labels: 'Type: Platform,404'
2+
labels: ['Docs Platform', 'Bug', '404']
33
description: Broken links, missing pages, and other 404 errors.
4-
type: Bug
54
body:
65
- type: textarea
76
id: url

.github/ISSUE_TEMPLATE/issue-platform-bug.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
name: '💻 Docs Platform: 🐞 Bug'
2-
labels: 'Type: Platform'
3-
type: Bug
2+
labels: ['Docs Platform', 'Bug']
43
description: Problems with the technical platform of our docs.
54
body:
65
- type: textarea

.github/ISSUE_TEMPLATE/issue-platform-improvement.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: '💻 Docs Platform: ✨ Improvement'
2-
labels: 'Type: Platform'
2+
labels: ['Docs Platform', 'Improvement']
33
description: Ideas on how we can improve the technical capabilities of our docs platform.
4-
type: Improvement
54
body:
65
- type: textarea
76
id: problem

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# Logs
2-
logs
32
*.log
43
npm-debug.log*
54
yarn-debug.log*

apps/changelog/src/client/components/editor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ function Editor({name, defaultValue, minRows = 15}: EditorProps) {
169169
minRows={minRows}
170170
required
171171
value={value}
172-
className="w-full"
172+
className="form-textarea w-full"
173173
onChange={e => setValue(e.target.value)}
174174
// aria-invalid={actionData?.errors?.content ? true : undefined}
175175
// aria-errormessage={

0 commit comments

Comments
 (0)