Skip to content

Commit

Permalink
Merge branch 'master' into feat/flutter-support
Browse files Browse the repository at this point in the history
# Conflicts:
#	CHANGELOG.md
  • Loading branch information
denrase committed Jan 22, 2025
2 parents 853149e + 2c67fd3 commit 4864d08
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@

## Unreleased

- Always send platform query param to auth page ([#757](https://github.com/getsentry/sentry-wizard/pull/757))
- feat(flutter): Add Flutter support ([#735](https://github.com/getsentry/sentry-wizard/pull/735))

## 3.39.0

- Always send platform query param to auth page ([#757](https://github.com/getsentry/sentry-wizard/pull/757))
- fix(nextjs): Mention correct local auth token file during source map generation ([#764](https://github.com/getsentry/sentry-wizard/pull/764))

## 3.38.0

- feat(react-native): Add minimum supported Sentry React Native SDK version detection (>=5.0.0) ([#752](https://github.com/getsentry/sentry-wizard/pull/752))
Expand Down
2 changes: 1 addition & 1 deletion e2e-tests/test-applications/nextjs-test-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"dependencies": {
"react": "^18",
"react-dom": "^18",
"next": "14.2.14"
"next": "14.2.21"
},
"devDependencies": {
"typescript": "^5",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sentry/wizard",
"version": "3.38.0",
"version": "3.39.0",
"homepage": "https://github.com/getsentry/sentry-wizard",
"repository": "https://github.com/getsentry/sentry-wizard",
"description": "Sentry wizard helping you to configure your project",
Expand Down
10 changes: 3 additions & 7 deletions src/sourcemaps/sourcemaps-wizard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -267,13 +267,9 @@ export async function configureCI(
'create-react-app',
].includes(selectedTool);

// some non-cli-based flows also use the .sentryclirc file
const usesSentryCliRc = selectedTool === 'nextjs';

const authTokenFile =
isCliBasedFlowTool || usesSentryCliRc
? SENTRY_CLI_RC_FILE
: SENTRY_DOT_ENV_FILE;
const authTokenFile = isCliBasedFlowTool
? SENTRY_CLI_RC_FILE
: SENTRY_DOT_ENV_FILE;

if (!isUsingCI) {
clack.log.info(
Expand Down
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1927,9 +1927,9 @@ create-require@^1.1.0:
integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==

cross-spawn@^7.0.2, cross-spawn@^7.0.3:
version "7.0.3"
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
version "7.0.6"
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f"
integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==
dependencies:
path-key "^3.1.0"
shebang-command "^2.0.0"
Expand Down

0 comments on commit 4864d08

Please sign in to comment.