Skip to content

Commit 887c855

Browse files
authored
Merge branch 'develop' into ci-yarn-deduplicate
2 parents c8a3415 + e8c0260 commit 887c855

File tree

55 files changed

+204
-144
lines changed

Some content is hidden

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

55 files changed

+204
-144
lines changed

.github/workflows/flaky-test-detector.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ jobs:
5151

5252
- name: Install Playwright
5353
uses: ./.github/actions/install-playwright
54+
with:
55+
browsers: 'chromium'
5456

5557
- name: Determine changed tests
5658
uses: dorny/[email protected]

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,15 @@
1010

1111
- "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott
1212

13-
Work in this release was contributed by @tjhiggins, @chris-basebone, @GrizliK1988, @davidturissini, @nwalters512, @aloisklink, @arturovt, @benjick, @maximepvrt, @mstrokin, @kunal-511, @jahands, @jrandolf, @tannerlinsley, @Zen-cronic and @nathankleyn. Thank you for your contributions!
13+
Work in this release was contributed by @tjhiggins, @chris-basebone, @GrizliK1988, @davidturissini, @nwalters512, @aloisklink, @arturovt, @benjick, @maximepvrt, @mstrokin, @kunal-511, @jahands, @jrandolf, @tannerlinsley, @Zen-cronic, @maxmaxme and @nathankleyn. Thank you for your contributions!
14+
15+
## 9.0.0-alpha.1
16+
17+
This is an alpha release of the upcoming major release of version 9.
18+
This release does not yet entail a comprehensive changelog as version 9 is not yet stable.
19+
20+
For this release's iteration of the migration guide, see the [Migration Guide as per `9.0.0-alpha.1`](https://github.com/getsentry/sentry-javascript/blob/e4333e5ce2d65be319ee6a5a5976f7c93983a417/docs/migration/v8-to-v9.md).
21+
Please note that the migration guide is work in progress and subject to change.
1422

1523
## 9.0.0-alpha.0
1624

dev-packages/browser-integration-tests/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/browser-integration-tests",
3-
"version": "9.0.0-alpha.0",
3+
"version": "9.0.0-alpha.1",
44
"main": "index.js",
55
"license": "MIT",
66
"engines": {
@@ -42,7 +42,7 @@
4242
"@babel/preset-typescript": "^7.16.7",
4343
"@playwright/test": "~1.50.0",
4444
"@sentry-internal/rrweb": "2.31.0",
45-
"@sentry/browser": "9.0.0-alpha.0",
45+
"@sentry/browser": "9.0.0-alpha.1",
4646
"axios": "1.7.7",
4747
"babel-loader": "^8.2.2",
4848
"fflate": "0.8.2",

dev-packages/browser-integration-tests/scripts/detectFlakyTests.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ ${changedPaths.join('\n')}
4646
try {
4747
await new Promise<void>((resolve, reject) => {
4848
const cp = childProcess.spawn(
49-
`npx playwright test ${testPaths.length ? testPaths.join(' ') : './suites'} --repeat-each ${repeatEachCount}`,
49+
`npx playwright test ${
50+
testPaths.length ? testPaths.join(' ') : './suites'
51+
} --repeat-each ${repeatEachCount} --project=chromium`,
5052
{ shell: true, cwd, stdio: 'inherit' },
5153
);
5254

dev-packages/bundle-analyzer-scenarios/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/bundle-analyzer-scenarios",
3-
"version": "9.0.0-alpha.0",
3+
"version": "9.0.0-alpha.1",
44
"description": "Scenarios to test bundle analysis with",
55
"repository": "git://github.com/getsentry/sentry-javascript.git",
66
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/dev-packages/bundle-analyzer-scenarios",

dev-packages/clear-cache-gh-action/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@sentry-internal/clear-cache-gh-action",
33
"description": "An internal Github Action to clear GitHub caches.",
4-
"version": "9.0.0-alpha.0",
4+
"version": "9.0.0-alpha.1",
55
"license": "MIT",
66
"engines": {
77
"node": ">=18"

dev-packages/e2e-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/e2e-tests",
3-
"version": "9.0.0-alpha.0",
3+
"version": "9.0.0-alpha.1",
44
"license": "MIT",
55
"private": true,
66
"scripts": {

dev-packages/external-contributor-gh-action/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@sentry-internal/external-contributor-gh-action",
33
"description": "An internal Github Action to add external contributors to the CHANGELOG.md file.",
4-
"version": "9.0.0-alpha.0",
4+
"version": "9.0.0-alpha.1",
55
"license": "MIT",
66
"engines": {
77
"node": ">=18"

dev-packages/node-integration-tests/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/node-integration-tests",
3-
"version": "9.0.0-alpha.0",
3+
"version": "9.0.0-alpha.1",
44
"license": "MIT",
55
"engines": {
66
"node": ">=18"
@@ -31,9 +31,9 @@
3131
"@nestjs/common": "10.4.6",
3232
"@nestjs/core": "10.4.6",
3333
"@nestjs/platform-express": "10.4.6",
34-
"@sentry/aws-serverless": "9.0.0-alpha.0",
35-
"@sentry/core": "9.0.0-alpha.0",
36-
"@sentry/node": "9.0.0-alpha.0",
34+
"@sentry/aws-serverless": "9.0.0-alpha.1",
35+
"@sentry/core": "9.0.0-alpha.1",
36+
"@sentry/node": "9.0.0-alpha.1",
3737
"@types/mongodb": "^3.6.20",
3838
"@types/mysql": "^2.15.21",
3939
"@types/pg": "^8.6.5",

dev-packages/rollup-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/rollup-utils",
3-
"version": "9.0.0-alpha.0",
3+
"version": "9.0.0-alpha.1",
44
"description": "Rollup utilities used at Sentry for the Sentry JavaScript SDK",
55
"repository": "git://github.com/getsentry/sentry-javascript.git",
66
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/rollup-utils",

0 commit comments

Comments
 (0)