Skip to content

Commit 424914c

Browse files
authored
Merge pull request #11606 from getsentry/prepare-release/8.0.0-beta.0
meta(changelog): Add changelog for v8.0.0-beta.0
2 parents 9e6c368 + a1b65e8 commit 424914c

File tree

413 files changed

+6932
-2689
lines changed

Some content is hidden

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

413 files changed

+6932
-2689
lines changed

.github/dependabot.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ updates:
1515
allow:
1616
- dependency-name: "@sentry/cli"
1717
- dependency-name: "@sentry/vite-plugin"
18+
- dependency-name: "@opentelemetry/*"
19+
- dependency-name: "@prisma/instrumentation"
20+
- dependency-name: "opentelemetry-instrumentation-fetch-node"
1821
versioning-strategy: increase
1922
commit-message:
2023
prefix: feat

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -411,6 +411,7 @@ jobs:
411411
${{ github.workspace }}/packages/browser/build/bundles/**
412412
${{ github.workspace }}/packages/replay/build/bundles/**
413413
${{ github.workspace }}/packages/replay-canvas/build/bundles/**
414+
${{ github.workspace }}/packages/feedback/build/bundles/**
414415
${{ github.workspace }}/packages/**/*.tgz
415416
${{ github.workspace }}/packages/aws-serverless/build/aws/dist-serverless/*.zip
416417
@@ -621,21 +622,20 @@ jobs:
621622
- bundle
622623
- bundle_min
623624
- bundle_replay
624-
- bundle_replay_min
625625
- bundle_tracing
626-
- bundle_tracing_min
627626
- bundle_tracing_replay
628-
- bundle_tracing_replay_min
627+
- bundle_tracing_replay_feedback
628+
- bundle_tracing_replay_feedback_min
629629
project:
630630
- chromium
631631
include:
632632
# Only check all projects for esm & full bundle
633633
# We also shard the tests as they take the longest
634-
- bundle: bundle_tracing_replay_min
634+
- bundle: bundle_tracing_replay_feedback_min
635635
project: ''
636636
shard: 1
637637
shards: 2
638-
- bundle: bundle_tracing_replay_min
638+
- bundle: bundle_tracing_replay_feedback_min
639639
project: ''
640640
shard: 2
641641
shards: 2
@@ -652,7 +652,7 @@ jobs:
652652
shards: 3
653653
exclude:
654654
# Do not run the default chromium-only tests
655-
- bundle: bundle_tracing_replay_min
655+
- bundle: bundle_tracing_replay_feedback_min
656656
project: 'chromium'
657657
- bundle: esm
658658
project: 'chromium'

.github/workflows/canary.yml

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ on:
1212
env:
1313
HEAD_COMMIT: ${{ github.event.inputs.commit || github.sha }}
1414

15+
CACHED_BUILD_PATHS: |
16+
${{ github.workspace }}/packages/*/*.tgz
17+
${{ github.workspace }}/dev-packages/event-proxy-server/build
18+
${{ github.workspace }}/node_modules
19+
${{ github.workspace }}/packages/*/node_modules
20+
${{ github.workspace }}/dev-packages/*/node_modules
21+
1522
permissions:
1623
contents: read
1724
issues: write
@@ -33,10 +40,7 @@ jobs:
3340
- name: Check canary cache
3441
uses: actions/cache@v4
3542
with:
36-
path: |
37-
${{ github.workspace }}/packages/*/*.tgz
38-
${{ github.workspace }}/node_modules
39-
${{ github.workspace }}/packages/*/node_modules
43+
path: ${{ env.CACHED_BUILD_PATHS }}
4044
key: canary-${{ env.HEAD_COMMIT }}
4145
- name: Install dependencies
4246
run: yarn install
@@ -94,24 +98,22 @@ jobs:
9498
- uses: pnpm/action-setup@v2
9599
with:
96100
version: 8.3.1
101+
97102
- name: Set up Node
98103
uses: actions/setup-node@v4
99104
with:
100-
node-version-file: 'package.json'
105+
node-version-file: 'dev-packages/e2e-tests/package.json'
101106

102107
- name: Restore canary cache
103108
uses: actions/cache/restore@v4
104109
with:
105-
path: |
106-
${{ github.workspace }}/packages/*/*.tgz
107-
${{ github.workspace }}/node_modules
108-
${{ github.workspace }}/packages/*/node_modules
110+
path: ${{ env.CACHED_BUILD_PATHS }}
109111
key: canary-${{ env.HEAD_COMMIT }}
110112

111113
- name: Get node version
112114
id: versions
113115
run: |
114-
echo "echo node=$(jq -r '.volta.node' package.json)" >> $GITHUB_OUTPUT
116+
echo "echo node=$(jq -r '.volta.node' dev-packages/e2e-tests/package.json)" >> $GITHUB_OUTPUT
115117
116118
- name: Validate Verdaccio
117119
run: yarn test:validate

0 commit comments

Comments
 (0)