Skip to content

Commit a39bd3d

Browse files
authored
Merge pull request #15355 from getsentry/prepare-release/9.0.0
meta(changelog): Update changelog for 9.0.0
2 parents 5a73804 + 9986eb8 commit a39bd3d

File tree

6 files changed

+14
-280
lines changed

6 files changed

+14
-280
lines changed

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,6 @@ A comprehensive migration guide outlining all changes for all the frameworks can
153153
- fix(nextjs): Flush with `waitUntil` in `captureRequestError` (#15146)
154154
- fix(nextjs): Use batched devserver symbolication endpoint (#15335)
155155
- fix(node): Don't leak `__span` property into breadcrumbs (#14798)
156-
- fix(node): Ensure `httpIntegration` propagates traces (#15233)
157156
- fix(node): Fix sample rand propagation for negative sampling decisions (#15045)
158157
- fix(node): Missing `release` from ANR sessions (#15138)
159158
- fix(node): Set the correct fallback URL fields for outgoing https requests if they are not defined (#15316)

dev-packages/node-integration-tests/suites/tracing/requests/http-no-tracing-no-spans/scenario.ts

Lines changed: 0 additions & 61 deletions
This file was deleted.

dev-packages/node-integration-tests/suites/tracing/requests/http-no-tracing-no-spans/test.ts

Lines changed: 0 additions & 95 deletions
This file was deleted.

packages/core/src/utils-hoist/baggage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ function baggageHeaderToObject(baggageHeader: string): Record<string, string> {
130130
* @returns a baggage header string, or `undefined` if the object didn't have any values, since an empty baggage header
131131
* is not spec compliant.
132132
*/
133-
export function objectToBaggageHeader(object: Record<string, string>): string | undefined {
133+
function objectToBaggageHeader(object: Record<string, string>): string | undefined {
134134
if (Object.keys(object).length === 0) {
135135
// An empty baggage header is not spec compliant: We return undefined.
136136
return undefined;

packages/core/src/utils-hoist/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,6 @@ export {
128128
baggageHeaderToDynamicSamplingContext,
129129
dynamicSamplingContextToSentryBaggageHeader,
130130
parseBaggageHeader,
131-
objectToBaggageHeader,
132131
} from './baggage';
133132

134133
export { getSanitizedUrlString, parseUrl, stripUrlQueryAndFragment } from './url';

0 commit comments

Comments
 (0)