Skip to content

Commit 8802799

Browse files
authored
Merge pull request #12675 from getsentry/prepare-release/8.13.0
meta(changelog): Update changelog for 8.13.0
2 parents 7e29803 + e0f995f commit 8802799

File tree

137 files changed

+1499
-714
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

137 files changed

+1499
-714
lines changed

.craft.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,9 @@ targets:
9797
- name: npm
9898
id: '@sentry/bun'
9999
includeNames: /^sentry-bun-\d.*\.tgz$/
100+
- name: npm
101+
id: '@sentry/nestjs'
102+
includeNames: /^sentry-nestjs-\d.*\.tgz$/
100103

101104
## 6. Fullstack/Meta Frameworks (depending on Node and Browser or Framework SDKs)
102105
- name: npm

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1067,7 +1067,7 @@ jobs:
10671067
'generic-ts3.8',
10681068
'node-fastify',
10691069
'node-hapi',
1070-
'node-nestjs',
1070+
'nestjs',
10711071
'node-exports-test-app',
10721072
'node-koa',
10731073
'node-connect',

.size-limit.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ module.exports = [
211211
import: createImport('init'),
212212
ignore: [...builtinModules, ...nodePrefixedBuiltinModules],
213213
gzip: true,
214-
limit: '135 KB',
214+
limit: '140 KB',
215215
},
216216
{
217217
name: '@sentry/node - without tracing',
@@ -237,7 +237,7 @@ module.exports = [
237237
import: createImport('init'),
238238
ignore: [...builtinModules, ...nodePrefixedBuiltinModules],
239239
gzip: true,
240-
limit: '125 KB',
240+
limit: '130 KB',
241241
},
242242
];
243243

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,23 @@
44

55
- "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott
66

7+
## 8.13.0
8+
9+
### Important Changes
10+
11+
- **feat(nestjs): Add Nest SDK** This release adds a dedicated SDK for [NestJS](https://nestjs.com/) (`@sentry/nestjs`)
12+
in alpha state. The SDK is a drop-in replacement for the Sentry Node SDK (`@sentry/node`) supporting the same set of
13+
features. See the [docs](https://docs.sentry.io/platforms/javascript/guides/nestjs/) for how to use the SDK.
14+
15+
### Other Changes
16+
17+
- deps: Bump bundler plugins to `2.20.1` (#12641)
18+
- deps(nextjs): Remove react peer dep and allow rc (#12670)
19+
- feat: Update OTEL deps (#12635)
20+
- feat(deps): bump @prisma/instrumentation from 5.15.0 to 5.15.1 (#12627)
21+
- feat(node): Add context info for missing instrumentation (#12639)
22+
- fix(feedback): Improve feedback error message (#12647)
23+
724
## 8.12.0
825

926
### Important Changes

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,3 +118,11 @@ Our program is currently running on an invitation basis. If you're interested in
118118
to [email protected] and tell us, that you are interested in auditing this repository.
119119

120120
For more details, please have a look at https://sentry.io/security/#vulnerability-disclosure.
121+
122+
## Contributors
123+
124+
Thanks to everyone who contributed to the Sentry JavaScript SDK!
125+
126+
<a href="https://github.com/getsentry/sentry-javascript/graphs/contributors">
127+
<img src="https://contributors-img.web.app/image?repo=getsentry/sentry-javascript" />
128+
</a>

dev-packages/e2e-tests/test-applications/node-nestjs/package.json renamed to dev-packages/e2e-tests/test-applications/nestjs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "node-nestjs",
2+
"name": "nestjs",
33
"version": "0.0.1",
44
"private": true,
55
"scripts": {
@@ -18,7 +18,7 @@
1818
"@nestjs/common": "^10.0.0",
1919
"@nestjs/core": "^10.0.0",
2020
"@nestjs/platform-express": "^10.0.0",
21-
"@sentry/node": "latest || *",
21+
"@sentry/nestjs": "latest || *",
2222
"@sentry/types": "latest || *",
2323
"reflect-metadata": "^0.2.0",
2424
"rxjs": "^7.8.1"

0 commit comments

Comments
 (0)