Skip to content

Commit 6e2c87e

Browse files
committed
Merge branch 'master' into constantinius/feat/dynamic-sampling/organization-settings
* master: (511 commits) docs(cloudflare): several semantic and stylistic fixes in code examples for cloudflare workers (#12482) chore(replay): Clarify network bandwidth and show how to reduce perf impact for mobile SDKs (#12479) chore(replay): Update product docs FAQ (#12474) ref: Drop remaining usage of `<Note>` (#12476) Update debugmeta.mdx (#12436) Fix queue_producer_transaction string termination error in example code (#12463) Adjust for sentry-ruby changes (#12455) Fixed incorrect instrument.mjs filename (#12454) Updating feature flags docs location (#12453) ref: Remove `<Note>` component in favor of using `<Alert>` (#12467) feat: send content feedback plausible events (#12400) docs(native): document how to set attribute on spans/transactions feat(express): Add warning about express v5 (#12465) chore(jira): Add instructions for installing Jira for self-hosted sentry users (#12433) chore: Update Codecov Bundler Plugin Version (#12459) Bump API schema to 421589ca (#12461) fix(platform): Enable scrolling via keyboard buttons (#12460) feat: Update `Expandable` style (#12457) Add Kotlin examples and fix typo in Java and Android Scopes docs (#12458) doc(js): Document how to set attribute on all spans (#12449) ...
2 parents be109c7 + f940420 commit 6e2c87e

File tree

1,731 files changed

+23431
-14003
lines changed

Some content is hidden

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

1,731 files changed

+23431
-14003
lines changed

.env.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
# 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-
NEXT_PUBLIC_ALGOLIA_APP_ID=OOK48W9UCL
7-
NEXT_PUBLIC_ALGOLIA_SEARCH_KEY=ca98597f559459c216891b75989832f8
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.

.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: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@
3636
# /src/docs/product/discover-queries/ @getsentry/visibility
3737
# /src/docs/product/performance/ @getsentry/visibility
3838

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

41-
# /.github/labels.yml @getsentry/open-source
42-
# /.github/workflows/react-to-product-owners-yml-changes.yml @getsentry/open-source
43-
# /bin/react-to-product-owners-yml-changes.py @getsentry/open-source
44-
# /bin/react-to-product-owners-yml-changes.sh @getsentry/open-source
41+
# /.github/labels.yml @getsentry/dev-infra
42+
# /.github/workflows/react-to-product-owners-yml-changes.yml @getsentry/dev-infra
43+
# /bin/react-to-product-owners-yml-changes.py @getsentry/dev-infra
44+
# /bin/react-to-product-owners-yml-changes.sh @getsentry/dev-infra
4545

4646
# ###### Replays #######
4747

@@ -51,4 +51,6 @@
5151
# /src/platforms/javascript/common/session-replay/ @getsentry/replay @getsentry/replay-sdk-web
5252
# /src/wizard/javascript/replay-onboarding/ @getsentry/replay @getsentry/replay-sdk-web
5353

54+
# /src/docs/product/dev-toolbar/ @getsentry/replay
55+
5456
# ###### End Replays #######

.github/workflows/algolia-index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- 'develop-docs/**'
2626
- uses: oven-sh/setup-bun@v2
2727
with:
28-
bun-version: latest
28+
bun-version: '1.1.34'
2929

3030
- uses: actions/cache@v4
3131
id: cache

.github/workflows/bump-api-schema-sha.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,19 @@ jobs:
1212
name: 'Bump API Schema SHA'
1313
steps:
1414
- uses: actions/[email protected]
15+
- name: Get auth token
16+
id: token
17+
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0
18+
with:
19+
app-id: ${{ vars.SENTRY_INTERNAL_APP_ID }}
20+
private-key: ${{ secrets.SENTRY_INTERNAL_APP_PRIVATE_KEY }}
1521
- name: 'Bump API Schema SHA'
1622
shell: bash
1723
env:
1824
# An elevated token is necessary because with plain github.token
1925
# GitHub does not recursively call workflows, which means CI does not
2026
# kick off for the PR we're about to create.
21-
GITHUB_TOKEN: ${{ secrets.GH_RELEASE_PAT }}
27+
GITHUB_TOKEN: ${{ steps.token.outputs.token }}
2228
run: |
2329
set -euo pipefail
2430

.github/workflows/lint-404s.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- 'platform-includes/**'
2626
dev-docs:
2727
- 'develop-docs/**'
28-
- uses: oven-sh/setup-bun@v1
28+
- uses: oven-sh/setup-bun@v2
2929
with:
3030
bun-version: latest
3131

.github/workflows/prepare-release.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,20 @@ jobs:
1313
runs-on: ubuntu-latest
1414
name: "Release a new version"
1515
steps:
16+
- name: Get auth token
17+
id: token
18+
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0
19+
with:
20+
app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }}
21+
private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }}
1622
- uses: actions/[email protected]
1723
with:
18-
token: ${{ secrets.GH_RELEASE_PAT }}
24+
token: ${{ steps.token.outputs.token }}
1925
fetch-depth: 0
2026
- name: Prepare release
2127
uses: getsentry/action-prepare-release@v1
2228
env:
23-
GITHUB_TOKEN: ${{ secrets.GH_RELEASE_PAT }}
29+
GITHUB_TOKEN: ${{ steps.token.outputs.token }}
2430
with:
2531
version: ${{ github.event.inputs.version }}
2632
force: ${{ github.event.inputs.force }}

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ repos:
1313
- id: detect-private-key
1414
exclude: |
1515
(?x)^(
16-
develop-docs/application/config.mdx|
16+
develop-docs/backend/config.mdx|
1717
develop-docs/integrations/github.mdx|
1818
develop-docs/self-hosted/sso.mdx
1919
)$

0 commit comments

Comments
 (0)