@sentry/remix
Advanced tools
Comparing version 7.67.0-beta.0 to 7.67.0
@@ -46,3 +46,3 @@ Object.defineProperty(exports, '__esModule', { value: true }); | ||
type: 'instrument', | ||
handled: true, | ||
handled: false, | ||
data: eventData, | ||
@@ -49,0 +49,0 @@ }); |
@@ -88,3 +88,3 @@ var { | ||
type: 'instrument', | ||
handled: true, | ||
handled: false, | ||
data: { | ||
@@ -91,0 +91,0 @@ function: name, |
@@ -44,3 +44,3 @@ import { withScope, captureException } from '@sentry/core'; | ||
type: 'instrument', | ||
handled: true, | ||
handled: false, | ||
data: eventData, | ||
@@ -47,0 +47,0 @@ }); |
@@ -83,3 +83,3 @@ import { _optionalChain } from '@sentry/utils/esm/buildPolyfills'; | ||
type: 'instrument', | ||
handled: true, | ||
handled: false, | ||
data: { | ||
@@ -86,0 +86,0 @@ function: name, |
{ | ||
"name": "@sentry/remix", | ||
"version": "7.67.0-beta.0", | ||
"version": "7.67.0", | ||
"description": "Official Sentry SDK for Remix", | ||
@@ -31,7 +31,7 @@ "repository": "git://github.com/getsentry/sentry-javascript.git", | ||
"@sentry/cli": "2.20.5", | ||
"@sentry/core": "7.67.0-beta.0", | ||
"@sentry/node": "7.67.0-beta.0", | ||
"@sentry/react": "7.67.0-beta.0", | ||
"@sentry/types": "7.67.0-beta.0", | ||
"@sentry/utils": "7.67.0-beta.0", | ||
"@sentry/core": "7.67.0", | ||
"@sentry/node": "7.67.0", | ||
"@sentry/react": "7.67.0", | ||
"@sentry/types": "7.67.0", | ||
"@sentry/utils": "7.67.0", | ||
"tslib": "^2.4.1 || ^1.9.3", | ||
@@ -38,0 +38,0 @@ "yargs": "^17.6.0" |
@@ -9,7 +9,20 @@ /* eslint-disable no-console */ | ||
async function createRelease(argv, URL_PREFIX, BUILD_PATH) { | ||
const RELEASE = argv.release || (await sentry.releases.proposeVersion()); | ||
let release; | ||
await sentry.releases.new(RELEASE); | ||
if (!argv.release) { | ||
try { | ||
release = await sentry.releases.proposeVersion(); | ||
} catch (error) { | ||
console.warn('[sentry] Failed to propose a release version.'); | ||
console.warn('[sentry] You can specify a release version with `--release` flag.'); | ||
console.warn('[sentry] For example: `sentry-upload-sourcemaps --release 1.0.0`'); | ||
throw error; | ||
} | ||
} else { | ||
release = argv.release; | ||
} | ||
await sentry.releases.uploadSourceMaps(RELEASE, { | ||
await sentry.releases.new(release); | ||
await sentry.releases.uploadSourceMaps(release, { | ||
urlPrefix: URL_PREFIX, | ||
@@ -20,3 +33,3 @@ include: [BUILD_PATH], | ||
await sentry.releases.finalize(RELEASE); | ||
await sentry.releases.finalize(release); | ||
@@ -23,0 +36,0 @@ if (argv.deleteAfterUpload) { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
434128
3270
0
+ Added@sentry-internal/tracing@7.67.0(transitive)
+ Added@sentry/browser@7.67.0(transitive)
+ Added@sentry/core@7.67.0(transitive)
+ Added@sentry/node@7.67.0(transitive)
+ Added@sentry/react@7.67.0(transitive)
+ Added@sentry/replay@7.67.0(transitive)
+ Added@sentry/types@7.67.0(transitive)
+ Added@sentry/utils@7.67.0(transitive)
- Removed@sentry-internal/tracing@7.67.0-beta.0(transitive)
- Removed@sentry/browser@7.67.0-beta.0(transitive)
- Removed@sentry/core@7.67.0-beta.0(transitive)
- Removed@sentry/node@7.67.0-beta.0(transitive)
- Removed@sentry/react@7.67.0-beta.0(transitive)
- Removed@sentry/replay@7.67.0-beta.0(transitive)
- Removed@sentry/types@7.67.0-beta.0(transitive)
- Removed@sentry/utils@7.67.0-beta.0(transitive)
Updated@sentry/core@7.67.0
Updated@sentry/node@7.67.0
Updated@sentry/react@7.67.0
Updated@sentry/types@7.67.0
Updated@sentry/utils@7.67.0