Skip to content

Commit 0be23fe

Browse files
committed
meta: Prepare 5.0.0
1 parent 5c661ce commit 0be23fe

File tree

4 files changed

+16
-15
lines changed

4 files changed

+16
-15
lines changed

CHANGELOG.md

+8-12
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
## 5.0.0
44

5-
This major bump brings a lot of internal improvements. Also we extracted some integrations out of their packages and put
6-
them in their own package called `@sentry/integrations`. For a detailed guide how to upgrade from `4.x` to `5.x`
7-
consider our [migration guide](https://github.com/getsentry/sentry-javascript/blob/master/MIGRATION.md).
5+
This major bump brings a lot of internal improvements. Also, we extracted some integrations out of the SDKs and put them
6+
in their own package called `@sentry/integrations`. For a detailed guide how to upgrade from `4.x` to `5.x` refer to our
7+
[migration guide](https://github.com/getsentry/sentry-javascript/blob/master/MIGRATION.md).
88

99
**Migration from v4**
1010

11-
If you were using the SDK without any special abilities, basically, the way we describe it in the docs, you should be
12-
fine by just updating it. This is a **breaking** release since we removed some methods from the public API and removed
13-
some classes from the default export.
11+
If you were using the SDKs high level API, the way we describe it in the docs, you should be fine without any code
12+
changes. This is a **breaking** release since we removed some methods from the public API and removed some classes from
13+
the default export.
1414

1515
- **breaking** [node] fix: Events created from exception shouldn't have top-level message attribute
1616
- [utils] ref: Update wrap method to hide internal sentry flags
@@ -61,9 +61,6 @@ some classes from the default export.
6161
- [integrations] fix: Bug in vue integration with `attachProps`
6262
- **breaking** [core] ref: Remove SDK information integration
6363
- **breaking** [core] ref: Remove `install` function on integration interface
64-
65-
## 5.0.0-rc.4
66-
6764
- [node] feat: Add esm build
6865
- [integrations] feat: Fix build and prepare upload to cdn
6966
- [integrations] fix: Bug in vue integration with `attachProps`
@@ -93,9 +90,8 @@ some classes from the default export.
9390

9491
**Migration from v4**
9592

96-
This major bump brings a lot of internal improvements. If you were using the SDK without any special abilities,
97-
basically, the way we describe it in the docs, you should be fine by just updating it. This is a **breaking** release
98-
since we removed some methods from the public API and removed some classes from the default export.
93+
This major bump brings a lot of internal improvements. This is a **breaking** release since we removed some methods from
94+
the public API and removed some classes from the default export.
9995

10096
- **breaking** [node] fix: Events created from exception shouldn't have top-level message attribute
10197
- [utils] ref: Update wrap method to hide internal sentry flags

packages/integrations/README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,10 @@
1919

2020
## General
2121

22-
Pluggable integrations that can be used to enchance JS SDKs.
22+
Pluggable integrations that can be used to enhance JS SDKs.
23+
24+
All of the integrations can also be found on our CDN e.g.:
25+
26+
Angular integration: `https://browser.sentry-cdn.com/5.0.0/angular.min.js`
27+
28+
Please make sure to always to match the version of the integration with the version of the JS SDK you are loading.

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"extends": "./packages/typescript/tsconfig.json",
33
"compilerOptions": {
44
"baseUrl": "packages",
5-
"types": ["node"],
5+
"types": ["node", "angular"],
66
"paths": {
77
"@sentry/*": ["*/src"],
88
"raven-js": ["raven-js/src/singleton.js"],

typedoc.js

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ module.exports = {
99
'**/dist/**/*',
1010
'**/esm/**/*',
1111
'**/build/**/*',
12-
'**/packages/integrations/**/*',
1312
'**/packages/opentracing/**/*',
1413
'**/packages/typescript/**/*',
1514
'**/packages/raven-js/**/*',

0 commit comments

Comments
 (0)