@@ -28,7 +28,7 @@ convenient interface and improved consistency between various JavaScript environ
2828
2929## Contents
3030
31- - [ Contributing] ( https://github.com/getsentry/sentry-javascript/blob/master /CONTRIBUTING.md )
31+ - [ Contributing] ( https://github.com/getsentry/sentry-javascript/blob/develop /CONTRIBUTING.md )
3232- [ Supported Platforms] ( #supported-platforms )
3333- [ Installation and Usage] ( #installation-and-usage )
3434- [ Other Packages] ( #other-packages )
@@ -40,7 +40,6 @@ For each major JavaScript platform, there is a specific high-level SDK that prov
4040package. Please refer to the README and instructions of those SDKs for more detailed information:
4141
4242- [ ` @sentry/browser ` ] ( https://github.com/getsentry/sentry-javascript/tree/master/packages/browser ) : SDK for Browsers
43- - [ ` @sentry/bun ` ] ( https://github.com/getsentry/sentry-javascript/tree/master/packages/bun ) : SDK for Bun
4443- [ ` @sentry/node ` ] ( https://github.com/getsentry/sentry-javascript/tree/master/packages/node ) : SDK for Node including
4544 integrations for Express
4645- [ ` @sentry/angular ` ] ( https://github.com/getsentry/sentry-javascript/tree/master/packages/angular ) : Browser SDK for
@@ -52,6 +51,7 @@ package. Please refer to the README and instructions of those SDKs for more deta
5251- [ ` @sentry/sveltekit ` ] ( https://github.com/getsentry/sentry-javascript/tree/master/packages/sveltekit ) : SDK for
5352 SvelteKit
5453- [ ` @sentry/vue ` ] ( https://github.com/getsentry/sentry-javascript/tree/master/packages/vue ) : Browser SDK for Vue
54+ - [ ` @sentry/solid ` ] ( https://github.com/getsentry/sentry-javascript/tree/master/packages/solid ) : Browser SDK for Solid
5555- [ ` @sentry/gatsby ` ] ( https://github.com/getsentry/sentry-javascript/tree/master/packages/gatsby ) : SDK for Gatsby
5656- [ ` @sentry/nextjs ` ] ( https://github.com/getsentry/sentry-javascript/tree/master/packages/nextjs ) : SDK for Next.js
5757- [ ` @sentry/remix ` ] ( https://github.com/getsentry/sentry-javascript/tree/master/packages/remix ) : SDK for Remix
@@ -64,6 +64,13 @@ package. Please refer to the README and instructions of those SDKs for more deta
6464 native crashes
6565- [ ` @sentry/capacitor ` ] ( https://github.com/getsentry/sentry-capacitor ) : SDK for Capacitor Apps and Ionic with support
6666 for native crashes
67+ - [ ` @sentry/bun ` ] ( https://github.com/getsentry/sentry-javascript/tree/master/packages/bun ) : SDK for Bun
68+ - [ ` @sentry/deno ` ] ( https://github.com/getsentry/sentry-javascript/tree/master/packages/deno ) : SDK for Deno
69+
70+ ## Version Support Policy
71+
72+ The current version of the SDK is 8.x. Version 7.x of the SDK will continue to receive critical bugfixes until end
73+ of 2024.
6774
6875## Installation and Usage
6976
@@ -77,14 +84,14 @@ yarn add @sentry/browser
7784Setup and usage of these SDKs always follows the same principle.
7885
7986``` javascript
80- import { init , captureMessage } from ' @sentry/browser' ;
87+ import * as Sentry from ' @sentry/browser' ;
8188
82- init ({
89+ Sentry . init ({
8390 dsn: ' __DSN__' ,
8491 // ...
8592});
8693
87- captureMessage (' Hello, world!' );
94+ Sentry . captureMessage (' Hello, world!' );
8895```
8996
9097## Other Packages
0 commit comments