Skip to content

Commit b2e866a

Browse files
JamesHenrymydea
andauthored
chore: make unit tests cacheable, fix package graph (#7108)
--------- Co-authored-by: Francesco Novy <francesco.novy@sentry.io>
1 parent 7f4c4ec commit b2e866a

File tree

4 files changed

+9
-20
lines changed

4 files changed

+9
-20
lines changed

CHANGELOG.md

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

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

7-
## 7.38.0
8-
9-
- feat: Put `abs_path` into stack frame object (#7167)
10-
- feat(integrations): Deprecate `Offline` integration (#7063)
11-
- feat(otel): Convert exception otel events to sentry errors (#7165)
12-
- feat(replay): Change LCP calculation (#7187)
13-
- feat(tracing): Support Apollo/GraphQL with NestJS (#7194)
14-
- feat(tracing): Track `PerformanceResourceTiming.renderBlockingStatus` (#7127)
15-
- feat(tracing|core): Remove transaction name change recording (#7197)
16-
- fix(browser): Ensure dedupe integration ignores non-errors (#7172)
17-
- fix(core): Skip empty integrations (#7204)
18-
- fix(nextjs): Fix faulty import in Next.js .d.ts (#7175)
19-
- fix(otel): Make otel.kind be a string (#7182)
20-
- fix(react): Make fallback render types more accurate (#7198)
21-
- fix(replay): Debounced flushes not respecting `maxWait` (#7207, #7208)
22-
- ref(replay): Improve logging for stopped replay (#7174)
23-
24-
Work in this release contributed by @lucas-zimermann. Thank you for your contribution!
25-
267
## 7.37.2
278

289
This release includes changes and fixes around text masking and blocking in Replay's `rrweb` dependency. See versions [1.102.0](https://github.com/getsentry/rrweb/releases/tag/1.102.0) and [1.103.0](https://github.com/getsentry/rrweb/releases/tag/1.103.0).

nx.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"build:bundle",
88
"build:transpile",
99
"build:types",
10-
"lint:eslint"
10+
"lint:eslint",
11+
"test:unit"
1112
],
1213
"cacheDirectory": ".nxcache"
1314
}
@@ -69,6 +70,11 @@
6970
"lint:eslint": {
7071
"inputs": ["default"],
7172
"outputs": []
73+
},
74+
"test:unit": {
75+
"dependsOn": ["build:types", "^build:types", "build:transpile", "^build:transpile"],
76+
"inputs": ["default"],
77+
"outputs": ["{projectRoot}/coverage"]
7278
}
7379
}
7480
}

packages/integrations/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"tslib": "^1.9.3"
2323
},
2424
"devDependencies": {
25+
"@sentry/browser": "7.38.0",
2526
"chai": "^4.1.2"
2627
},
2728
"scripts": {

packages/node/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"tslib": "^1.9.3"
2626
},
2727
"devDependencies": {
28+
"@sentry/tracing": "7.38.0",
2829
"@types/cookie": "0.3.2",
2930
"@types/express": "^4.17.14",
3031
"@types/lru-cache": "^5.1.0",

0 commit comments

Comments
 (0)