Skip to content

Commit 68be2db

Browse files
committed
feat(core)!: Remove makeFifoCache method
1 parent 2d4f8e9 commit 68be2db

File tree

4 files changed

+1
-77
lines changed

4 files changed

+1
-77
lines changed

docs/migration/v8-to-v9.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ It will be removed in a future major version.
106106

107107
- The `getNumberOfUrlSegments` method has been removed. There is no replacement.
108108
- The `validSeverityLevels` export has been removed. There is no replacement.
109+
- The `makeFifoCache` method has been removed. There is no replacement.
109110

110111
### `@sentry/nestjs`
111112

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

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

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,6 @@ export {
162162
} from './baggage';
163163

164164
export { getSanitizedUrlString, parseUrl, stripUrlQueryAndFragment } from './url';
165-
// eslint-disable-next-line deprecation/deprecation
166-
export { makeFifoCache } from './cache';
167165
export { eventFromMessage, eventFromUnknownInput, exceptionFromError, parseStackFrames } from './eventbuilder';
168166
export { callFrameToStackFrame, watchdogTimer } from './anr';
169167
export { LRUMap } from './lru';

packages/utils/src/index.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ import {
108108
loadModule as loadModule_imported,
109109
logger as logger_imported,
110110
makeDsn as makeDsn_imported,
111-
makeFifoCache as makeFifoCache_imported,
112111
makePromiseBuffer as makePromiseBuffer_imported,
113112
markFunctionWrapped as markFunctionWrapped_imported,
114113
maybeInstrument as maybeInstrument_imported,
@@ -647,10 +646,6 @@ export const parseUrl = parseUrl_imported;
647646
/** @deprecated Import from `@sentry/core` instead. */
648647
export const stripUrlQueryAndFragment = stripUrlQueryAndFragment_imported;
649648

650-
/** @deprecated Import from `@sentry/core` instead. */
651-
// eslint-disable-next-line deprecation/deprecation
652-
export const makeFifoCache = makeFifoCache_imported;
653-
654649
import type {
655650
AddRequestDataToEventOptions as AddRequestDataToEventOptions_imported,
656651
InternalGlobal as InternalGlobal_imported,

0 commit comments

Comments
 (0)