Skip to content

Commit 6d471b9

Browse files
committed
ref: Changelog
1 parent 0ad436e commit 6d471b9

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44

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

7-
- [apm] fix: Sampling of traces (#2500)
7+
- [apm] fix: Sampling of traces work now only depending on the client option `tracesSampleRate` (#2500)
8+
- [apm] fix: Remove internal `makeRoot` parameter from `hub.startSpan` (#2500)
9+
- [apm] fix: Made constructor of `Span` internal, only use `hub.startSpan` or `Sentry.startSpan` in the future (#2500)
10+
- [apm] ref: Refactored SpanRecorder to work correctly when recording child spans (#2500)
11+
- [apm] feat: Now individual transaction can be sent without relying on the Scope (#2500)
812
- [apm] ref: Remove status from tags in transaction (#2497)
913
- [browser] fix: Respect breadcrumbs sentry:false option (#2499)
1014

packages/apm/src/span.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ export class Span implements SpanInterface, SpanContext {
117117
* You should never call the custructor manually, always use `hub.startSpan()`.
118118
* @internal
119119
* @hideconstructor
120+
* @hidden
120121
*/
121122
public constructor(spanContext?: SpanContext, hub?: Hub) {
122123
if (isInstanceOf(hub, Hub)) {

0 commit comments

Comments
 (0)