Skip to content

Commit 2e59ab6

Browse files
authored
Merge branch 'master' into next-steps-config
2 parents da270ce + 6e3feff commit 2e59ab6

File tree

4,055 files changed

+104487
-41599
lines changed

Some content is hidden

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

4,055 files changed

+104487
-41599
lines changed

.env.example

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,7 @@
11
# rename this file to .env and supply the values listed below
22
# also make sure they are available to the build tool (e.g. Netlify)
3-
# warning: variables prefixed with GATSBY_ will be made available to client-side code
3+
# warning: variables prefixed with NEXT_PUBLIC_ will be made available to client-side code
44
# be careful not to expose sensitive data (in this case your Algolia admin key)
55

6-
GATSBY_ALGOLIA_APP_ID=OOK48W9UCL
7-
GATSBY_ALGOLIA_SEARCH_KEY=ca98597f559459c216891b75989832f8
8-
GATSBY_ALGOLIA_INDEX_PREFIX=test-sentry-
9-
# ALGOLIA_ADMIN_KEY=
10-
# ALGOLIA_INDEX=0
11-
# SENTRY_AUTH_TOKEN=
12-
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/changelog
13-
NEXTAUTH_URL=http://localhost:3000
14-
NEXTAUTH_SECRET=secret
6+
NEXT_PUBLIC_ALGOLIA_APP_ID=
7+
NEXT_PUBLIC_ALGOLIA_SEARCH_KEY=

.env.production

Lines changed: 0 additions & 3 deletions
This file was deleted.

.env.test

Lines changed: 0 additions & 5 deletions
This file was deleted.

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
.babelrc.js
2+
apps/changelog

.eslintrc.js

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,10 @@
1-
/* eslint-env node */
2-
/* eslint import/no-nodejs-modules:0 */
3-
41
module.exports = {
52
extends: ['sentry-docs', 'plugin:@next/next/recommended'],
63
globals: {
7-
jest: true,
84
Atomics: 'readonly',
95
SharedArrayBuffer: 'readonly',
106
},
117
rules: {
128
'import/no-nodejs-modules': 'off',
139
},
14-
overrides: [
15-
{
16-
files: ['*.ts', '*.tsx'],
17-
rules: {
18-
// Reach is vendored into gatsby. They have their own webpack
19-
// resolution for it which this eslint plugin can't seem to detect
20-
'import/no-unresolved': ['error', {ignore: ['@reach']}],
21-
},
22-
},
23-
],
2410
};

.github/CODEOWNERS

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners#codeowners-syntax
22

33
# Requiring review from security team for Content-Security-Policy changes
4-
/vercel.json @getsentry/security
4+
**/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
68

79
# Codeowners listed below are used as a reference for the Sentry team to know who to contact for a given area of the codebase.
810

@@ -34,7 +36,7 @@
3436
# /src/docs/product/discover-queries/ @getsentry/visibility
3537
# /src/docs/product/performance/ @getsentry/visibility
3638

37-
# /src/docs/product/cli/dif/ @getsentry/owners-native
39+
# /src/docs/cli/dif.mdx @getsentry/owners-native
3840

3941
# /.github/labels.yml @getsentry/open-source
4042
# /.github/workflows/react-to-product-owners-yml-changes.yml @getsentry/open-source
@@ -43,11 +45,10 @@
4345

4446
# ###### Replays #######
4547

46-
# /src/docs/product/session-replay/ @getsentry/replay
47-
# /src/includes/feature-stage-beta-session-replay.mdx @getsentry/replay
48-
# /src/platform-includes/session-replay/ @getsentry/replay @getsentry/replay-sdk-web
49-
# /src/platforms/javascript/common/session-replay/ @getsentry/replay @getsentry/replay-sdk-web
50-
# /src/wizard/javascript/replay-onboarding/ @getsentry/replay @getsentry/replay-sdk-web
48+
# /src/docs/product/session-replay/ @getsentry/replay
49+
# /src/includes/session-replay-web-report-bug.mdx @getsentry/replay
50+
# /src/platform-includes/session-replay/ @getsentry/replay @getsentry/replay-sdk-web
51+
# /src/platforms/javascript/common/session-replay/ @getsentry/replay @getsentry/replay-sdk-web
52+
# /src/wizard/javascript/replay-onboarding/ @getsentry/replay @getsentry/replay-sdk-web
5153

5254
# ###### End Replays #######
53-
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
name: "📝 SDK Documentation"
2+
labels: ["Type: Content", "SDKs"]
3+
description: Missing, incorrect, or unclear documentation of SDKs.
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |-
8+
Is the documentation issue something you know how to fix? Consider contributing to Open Source by opening a PR to fix it instead!
9+
- type: dropdown
10+
id: area
11+
attributes:
12+
label: SDK
13+
description: Which SDK documentation are we talking about?
14+
options:
15+
- Android SDK
16+
- Apple SDK
17+
- Dart SDK
18+
- Elixir SDK
19+
- Flutter SDK
20+
- Go SDK
21+
- Java SDK
22+
- JavaScript SDK
23+
- Kotlin Multiplatform SDK
24+
- Native SDK
25+
- .NET SDK
26+
- PHP SDK
27+
- PowerShell SDK
28+
- Python SDK
29+
- React Native SDK
30+
- Ruby SDK
31+
- Rust SDK
32+
- Unity SDK
33+
- Unreal Engine SDK
34+
- Sentry CLI
35+
- All JavaScript SDKs
36+
- All Backend SDKs
37+
- All Mobile SDKs
38+
- All Gaming SDKs
39+
- All SDKs
40+
- Other
41+
validations:
42+
required: true
43+
- type: textarea
44+
id: description
45+
attributes:
46+
label: Description
47+
description: What were you looking for/trying to do/expecting?
48+
validations:
49+
required: true
50+
- type: textarea
51+
id: solution
52+
attributes:
53+
label: Suggested Solution
54+
description: If you have an idea on how we can solve this, please share.
55+
validations:
56+
required: false
57+
- type: markdown
58+
attributes:
59+
value: |-
60+
## Thanks 🙏
61+
Check our [triage docs](https://open.sentry.io/triage/) for what to expect next.
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: "📝 Product Documentation"
2+
labels: ["Type: Content", "Product"]
3+
description: Missing, incorrect, or unclear documentation of product features.
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |-
8+
Is the documentation issue something you know how to fix? Consider contributing to Open Source by opening a PR to fix it instead!
9+
- type: input
10+
id: area-specific
11+
attributes:
12+
label: Which part? Which one?
13+
description: Which area of the core Sentry product?
14+
validations:
15+
required: true
16+
- type: textarea
17+
id: description
18+
attributes:
19+
label: Description
20+
description: What were you looking for/trying to do/expecting?
21+
validations:
22+
required: true
23+
- type: textarea
24+
id: solution
25+
attributes:
26+
label: Suggested Solution
27+
description: If you have an idea on how we can solve this, please share.
28+
validations:
29+
required: true
30+
- type: markdown
31+
attributes:
32+
value: |-
33+
## Thanks 🙏
34+
Check our [triage docs](https://open.sentry.io/triage/) for what to expect next.
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: "📝 Documentation on develop.sentry.dev"
2+
labels: ["Type: Content", "Develop"]
3+
description: Missing, incorrect, or unclear developer documentation.
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |-
8+
Is the documentation issue something you know how to fix? Consider contributing to Open Source by opening a PR to fix it instead!
9+
- type: input
10+
id: area-specific
11+
attributes:
12+
label: Which section?
13+
description: Which section of the developer documentation needs to be updated?
14+
validations:
15+
required: true
16+
- type: input
17+
id: page-url
18+
attributes:
19+
label: Page URL
20+
description: Please provide the URL of the page which should be changed (if applicable).
21+
- type: textarea
22+
id: description
23+
attributes:
24+
label: Description
25+
description: What were you looking for/trying to do/expecting?
26+
validations:
27+
required: true
28+
- type: textarea
29+
id: solution
30+
attributes:
31+
label: Suggested Solution
32+
description: If you have an idea on how we can solve this, please share.
33+
- type: markdown
34+
attributes:
35+
value: |-
36+
## Thanks 🙏
37+
Check our [triage docs](https://open.sentry.io/triage/) for what to expect next.
38+

.github/ISSUE_TEMPLATE/issue-content.yml

Lines changed: 0 additions & 46 deletions
This file was deleted.

0 commit comments

Comments
 (0)