Skip to content

Commit 4da24bf

Browse files
authored
docs: Update readme to include v7 support time & some small fixes (#12543)
We want to support v7 with critical bug fixes until EOY 2024. So we're explicitly stating this in the readme, and I also fixed/updated some other small things.
1 parent e9a073c commit 4da24bf

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

README.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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
4040
package. 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
7784
Setup 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

Comments
 (0)