Skip to content

Bun projects unable to have release health #18516

@Asynchronite

Description

@Asynchronite

Is there an existing issue for this?

How do you use Sentry?

Self-hosted/on-premise

Which SDK are you using?

@sentry/bun

SDK Version

10.30.0

Framework Version

Sapphire 5.4.0

Link to Sentry event

N/A

Reproduction Example/SDK Setup

import * as Sentry from '@sentry/bun'
import { version } from '../../package.json'

Sentry.init({
	dsn: '__DSN__',
	environment: (Bun.env.NODE_ENV == "dev" ? "dev" : "production"),
	enabled: (Bun.env.NODE_ENV != "dev"),
	
	enableLogs: true,
	debug: true,
	
	sampleRate: 1.0,
	tracesSampleRate: 0.5,
	
	release: "bot@" + version,
	
	integrations: [
		Sentry.consoleLoggingIntegration(),
	],
});

Steps to Reproduce

  1. Create a new bun project
  2. Initialize your project in JS like mentioned above.
  3. Deploy your application and look at the Sentry Dashboard. You will see no release health data.

Expected Result

Sentry showing release health data such as Crash free sessions and crash free users.

Actual Result

Sentry does not show any of these.

Image Image

Additional Context

N/A

Priority

React with 👍 to help prioritize this issue. Please use comments to provide useful context, avoiding +1 or me too, to help us triage it.

Metadata

Metadata

Assignees

Labels

No labels
No labels

Projects

Status

No status

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions