Skip to content

Commit

Permalink
Update readme and migration guide
Browse files Browse the repository at this point in the history
  • Loading branch information
andreiborza committed Dec 23, 2024
1 parent 02645c7 commit 749035d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions docs/migration/v8-to-v9.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,10 @@ Object.defineProperty(exports, '__esModule', { value: true });
The SDK no longer contains these statements.
Let us know if this is causing issues in your setup by opening an issue on GitHub.

### `@sentry/deno`

- The Sentry import from the deno registry has changed from `import * as Sentry from 'https://deno.land/x/sentry/index.mjs'` to `import * as Sentry from 'https://deno.land/x/sentry/build/index.mjs'`

## 6. Type Changes

In v8, types have been exported from `@sentry/types`, while implementations have been exported from other classes.
Expand Down
2 changes: 1 addition & 1 deletion packages/deno/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ and hook into the environment. Note that you can turn off almost all side effect

```javascript
// Import from the Deno registry
import * as Sentry from 'https://deno.land/x/sentry/index.mjs';
import * as Sentry from 'https://deno.land/x/sentry/build/index.mjs';

// or import from npm registry
import * as Sentry from 'npm:@sentry/deno';
Expand Down

0 comments on commit 749035d

Please sign in to comment.