@sentry/nuxt 10.45.0 → 10.46.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/module.js +15 -10
- package/build/cjs/module.js.map +1 -1
- package/build/cjs/vite/databaseConfig.js +10 -2
- package/build/cjs/vite/databaseConfig.js.map +1 -1
- package/build/cjs/vite/sentryVitePlugin.js.map +1 -1
- package/build/cjs/vite/storageConfig.js +6 -2
- package/build/cjs/vite/storageConfig.js.map +1 -1
- package/build/cjs/vite/utils.js +21 -2
- package/build/cjs/vite/utils.js.map +1 -1
- package/build/esm/module.js +16 -11
- package/build/esm/module.js.map +1 -1
- package/build/esm/package.json +1 -1
- package/build/esm/vite/databaseConfig.js +10 -2
- package/build/esm/vite/databaseConfig.js.map +1 -1
- package/build/esm/vite/sentryVitePlugin.js.map +1 -1
- package/build/esm/vite/storageConfig.js +6 -2
- package/build/esm/vite/storageConfig.js.map +1 -1
- package/build/esm/vite/utils.js +21 -3
- package/build/esm/vite/utils.js.map +1 -1
- package/build/module/module.json +1 -1
- package/build/module/module.mjs +38 -14
- package/build/module/runtime/plugins/database-legacy.server.d.ts +5 -0
- package/build/module/runtime/plugins/database-legacy.server.js +6 -0
- package/build/module/runtime/plugins/database.server.d.ts +1 -1
- package/build/module/runtime/plugins/database.server.js +3 -147
- package/build/module/runtime/plugins/handler-legacy.server.d.ts +2 -0
- package/build/module/runtime/plugins/handler-legacy.server.js +4 -0
- package/build/module/runtime/plugins/handler.server.d.ts +6 -0
- package/build/module/runtime/plugins/handler.server.js +6 -0
- package/build/module/runtime/plugins/sentry.server.js +6 -29
- package/build/module/runtime/plugins/storage-legacy.server.d.ts +5 -0
- package/build/module/runtime/plugins/storage-legacy.server.js +6 -0
- package/build/module/runtime/plugins/storage.server.d.ts +4 -2
- package/build/module/runtime/plugins/storage.server.js +3 -168
- package/build/module/runtime/utils/database-span-data.d.ts +16 -2
- package/build/module/runtime/utils/instrumentDatabase.d.ts +9 -0
- package/build/module/runtime/utils/instrumentDatabase.js +147 -0
- package/build/module/runtime/utils/instrumentStorage.d.ts +7 -0
- package/build/module/runtime/utils/instrumentStorage.js +169 -0
- package/build/module/runtime/utils/patchEventHandler.d.ts +6 -0
- package/build/module/runtime/utils/patchEventHandler.js +25 -0
- package/build/types/module.d.ts.map +1 -1
- package/build/types/runtime/plugins/database-legacy.server.d.ts +6 -0
- package/build/types/runtime/plugins/database-legacy.server.d.ts.map +1 -0
- package/build/types/runtime/plugins/database.server.d.ts +1 -1
- package/build/types/runtime/plugins/database.server.d.ts.map +1 -1
- package/build/types/runtime/plugins/handler-legacy.server.d.ts +3 -0
- package/build/types/runtime/plugins/handler-legacy.server.d.ts.map +1 -0
- package/build/types/runtime/plugins/handler.server.d.ts +7 -0
- package/build/types/runtime/plugins/handler.server.d.ts.map +1 -0
- package/build/types/runtime/plugins/sentry.server.d.ts.map +1 -1
- package/build/types/runtime/plugins/storage-legacy.server.d.ts +6 -0
- package/build/types/runtime/plugins/storage-legacy.server.d.ts.map +1 -0
- package/build/types/runtime/plugins/storage.server.d.ts +4 -2
- package/build/types/runtime/plugins/storage.server.d.ts.map +1 -1
- package/build/types/runtime/utils/database-span-data.d.ts +16 -2
- package/build/types/runtime/utils/database-span-data.d.ts.map +1 -1
- package/build/types/runtime/utils/instrumentDatabase.d.ts +10 -0
- package/build/types/runtime/utils/instrumentDatabase.d.ts.map +1 -0
- package/build/types/runtime/utils/instrumentStorage.d.ts +8 -0
- package/build/types/runtime/utils/instrumentStorage.d.ts.map +1 -0
- package/build/types/runtime/utils/patchEventHandler.d.ts +7 -0
- package/build/types/runtime/utils/patchEventHandler.d.ts.map +1 -0
- package/build/types/runtime/utils.d.ts.map +1 -1
- package/build/types/vite/databaseConfig.d.ts +1 -1
- package/build/types/vite/databaseConfig.d.ts.map +1 -1
- package/build/types/vite/sentryVitePlugin.d.ts.map +1 -1
- package/build/types/vite/storageConfig.d.ts +1 -1
- package/build/types/vite/storageConfig.d.ts.map +1 -1
- package/build/types/vite/utils.d.ts +6 -1
- package/build/types/vite/utils.d.ts.map +1 -1
- package/package.json +16 -8
|
@@ -1,9 +1,23 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { ConnectorName } from 'db0';
|
|
2
2
|
export interface DatabaseSpanData {
|
|
3
3
|
[key: string]: string | number | undefined;
|
|
4
4
|
}
|
|
5
|
+
/**
|
|
6
|
+
* A minimal database connection configuration type compatible with both nitropack (Nitro v2) and nitro (Nitro v3+).
|
|
7
|
+
* Mirrors the shape of `DatabaseConnectionConfig` from both packages.
|
|
8
|
+
*/
|
|
9
|
+
export interface DatabaseConnectionConfig {
|
|
10
|
+
connector?: ConnectorName;
|
|
11
|
+
options?: {
|
|
12
|
+
host?: string;
|
|
13
|
+
port?: number;
|
|
14
|
+
dataDir?: string;
|
|
15
|
+
name?: string;
|
|
16
|
+
[key: string]: unknown;
|
|
17
|
+
};
|
|
18
|
+
}
|
|
5
19
|
/**
|
|
6
20
|
* Extracts span attributes from the database configuration.
|
|
7
21
|
*/
|
|
8
|
-
export declare function getDatabaseSpanData(config?:
|
|
22
|
+
export declare function getDatabaseSpanData(config?: DatabaseConnectionConfig): Partial<DatabaseSpanData>;
|
|
9
23
|
//# sourceMappingURL=database-span-data.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"database-span-data.d.ts","sourceRoot":"","sources":["../../../../src/runtime/utils/database-span-data.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"database-span-data.d.ts","sourceRoot":"","sources":["../../../../src/runtime/utils/database-span-data.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,KAAK,CAAC;AAEzC,MAAM,WAAW,gBAAgB;IAC/B,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,SAAS,CAAC;CAC5C;AAED;;;GAGG;AACH,MAAM,WAAW,wBAAwB;IACvC,SAAS,CAAC,EAAE,aAAa,CAAC;IAC1B,OAAO,CAAC,EAAE;QACR,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;KACxB,CAAC;CACH;AAED;;GAEG;AACH,wBAAgB,mBAAmB,CAAC,MAAM,CAAC,EAAE,wBAAwB,GAAG,OAAO,CAAC,gBAAgB,CAAC,CAmChG"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { Database } from 'db0';
|
|
2
|
+
import { type DatabaseConnectionConfig } from './database-span-data';
|
|
3
|
+
/**
|
|
4
|
+
* Creates the Nitro database plugin setup by instrumenting the configured database instances.
|
|
5
|
+
*
|
|
6
|
+
* Called from the version-specific plugin entry points (database.server.ts / database-legacy.server.ts)
|
|
7
|
+
* which supply the correct `useDatabase` import for their respective Nitro version.
|
|
8
|
+
*/
|
|
9
|
+
export declare function createDatabasePlugin(useDatabase: (name: string) => Database, databaseConfig: Record<string, DatabaseConnectionConfig>): void;
|
|
10
|
+
//# sourceMappingURL=instrumentDatabase.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"instrumentDatabase.d.ts","sourceRoot":"","sources":["../../../../src/runtime/utils/instrumentDatabase.ts"],"names":[],"mappings":"AAYA,OAAO,KAAK,EAAE,QAAQ,EAAqB,MAAM,KAAK,CAAC;AACvD,OAAO,EAAE,KAAK,wBAAwB,EAA8C,MAAM,sBAAsB,CAAC;AAgBjH;;;;;GAKG;AACH,wBAAgB,oBAAoB,CAClC,WAAW,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,QAAQ,EACvC,cAAc,EAAE,MAAM,CAAC,MAAM,EAAE,wBAAwB,CAAC,GACvD,IAAI,CAqBN"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Creates the Nitro storage plugin setup by instrumenting all relevant storage drivers.
|
|
3
|
+
*
|
|
4
|
+
* The `useStorage` parameter is typed as `() => unknown` because nitropack (Nitro v2) and nitro (Nitro v3+) define `StorageValue` differently.
|
|
5
|
+
* Cast to `NitroStorage` is safe since all Nitro versions expose `getMounts()` at runtime.
|
|
6
|
+
*/
|
|
7
|
+
export declare function createStoragePlugin(useStorage: () => unknown, userStorageMounts: string[]): Promise<void>;
|
|
8
|
+
//# sourceMappingURL=instrumentStorage.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"instrumentStorage.d.ts","sourceRoot":"","sources":["../../../../src/runtime/utils/instrumentStorage.ts"],"names":[],"mappings":"AAwDA;;;;;GAKG;AACH,wBAAsB,mBAAmB,CAAC,UAAU,EAAE,MAAM,OAAO,EAAE,iBAAiB,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CA6B/G"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Patches the H3 event handler of Nitro.
|
|
3
|
+
*
|
|
4
|
+
* Uses a TypeScript generic type to ensure the returned handler type fits different versions of Nitro.
|
|
5
|
+
*/
|
|
6
|
+
export declare function patchEventHandler<H3EventHandler extends Function>(handler: H3EventHandler): H3EventHandler;
|
|
7
|
+
//# sourceMappingURL=patchEventHandler.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"patchEventHandler.d.ts","sourceRoot":"","sources":["../../../../src/runtime/utils/patchEventHandler.ts"],"names":[],"mappings":"AAQA;;;;GAIG;AACH,wBAAgB,iBAAiB,CAAC,cAAc,SAAS,QAAQ,EAAE,OAAO,EAAE,cAAc,GAAG,cAAc,CAqB1G"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/runtime/utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAiB,OAAO,EAAE,mBAAmB,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/runtime/utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAiB,OAAO,EAAE,mBAAmB,EAAE,MAAM,cAAc,CAAC;AAEhF,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,iBAAiB,CAAC;AAC5D,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAC;AACtD,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,KAAK,CAAC;AAEnD;;;GAGG;AACH,wBAAgB,mBAAmB,CAAC,YAAY,EAAE,oBAAoB,GAAG,SAAS,GAAG,OAAO,CAiB3F;AAED;;;;GAIG;AACH,wBAAgB,wBAAwB,CAAC,IAAI,EAAE,qBAAqB,CAAC,MAAM,CAAC,EAAE,SAAS,CAAC,EAAE,mBAAmB,GAAG,IAAI,CAcnH;AAED;;;;;GAKG;AACH,wBAAgB,eAAe,CAAC,OAAO,EAAE;IACvC,KAAK,EAAE,OAAO,CAAC;IACf,QAAQ,CAAC,EAAE,uBAAuB,GAAG,IAAI,CAAC;IAC1C,IAAI,CAAC,EAAE,MAAM,CAAC;CACf,GAAG,IAAI,CA2BP"}
|
|
@@ -3,5 +3,5 @@ import type { SentryNuxtModuleOptions } from '../common/types';
|
|
|
3
3
|
/**
|
|
4
4
|
* Sets up the database instrumentation.
|
|
5
5
|
*/
|
|
6
|
-
export declare function addDatabaseInstrumentation(nitro: NitroConfig, moduleOptions?: SentryNuxtModuleOptions): void;
|
|
6
|
+
export declare function addDatabaseInstrumentation(nitro: NitroConfig, isLegacyNitro: boolean, moduleOptions?: SentryNuxtModuleOptions): void;
|
|
7
7
|
//# sourceMappingURL=databaseConfig.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"databaseConfig.d.ts","sourceRoot":"","sources":["../../../src/vite/databaseConfig.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,iBAAiB,CAAC;AAG/D;;GAEG;AACH,wBAAgB,0BAA0B,
|
|
1
|
+
{"version":3,"file":"databaseConfig.d.ts","sourceRoot":"","sources":["../../../src/vite/databaseConfig.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,iBAAiB,CAAC;AAG/D;;GAEG;AACH,wBAAgB,0BAA0B,CACxC,KAAK,EAAE,WAAW,EAClB,aAAa,EAAE,OAAO,EACtB,aAAa,CAAC,EAAE,uBAAuB,GACtC,IAAI,CAoCN"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sentryVitePlugin.d.ts","sourceRoot":"","sources":["../../../src/vite/sentryVitePlugin.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"sentryVitePlugin.d.ts","sourceRoot":"","sources":["../../../src/vite/sentryVitePlugin.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AACzC,OAAO,KAAK,EAAa,MAAM,EAAc,MAAM,MAAM,CAAC;AAC1D,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,iBAAiB,CAAC;AAG/D;;GAEG;AACH,wBAAgB,+BAA+B,CAAC,OAAO,EAAE;IACvD,IAAI,EAAE,IAAI,CAAC;IACX,aAAa,EAAE,uBAAuB,CAAC;IACvC,iBAAiB,EAAE,OAAO,CAAC;CAC5B,GAAG,MAAM,CAoCT"}
|
|
@@ -2,5 +2,5 @@ import type { Nuxt } from '@nuxt/schema';
|
|
|
2
2
|
/**
|
|
3
3
|
* Prepares the storage config export to be used in the runtime storage instrumentation.
|
|
4
4
|
*/
|
|
5
|
-
export declare function addStorageInstrumentation(nuxt: Nuxt): void;
|
|
5
|
+
export declare function addStorageInstrumentation(nuxt: Nuxt, isLegacyNitro: boolean): void;
|
|
6
6
|
//# sourceMappingURL=storageConfig.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"storageConfig.d.ts","sourceRoot":"","sources":["../../../src/vite/storageConfig.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AAGzC;;GAEG;AACH,wBAAgB,yBAAyB,CAAC,IAAI,EAAE,IAAI,GAAG,IAAI,
|
|
1
|
+
{"version":3,"file":"storageConfig.d.ts","sourceRoot":"","sources":["../../../src/vite/storageConfig.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AAGzC;;GAEG;AACH,wBAAgB,yBAAyB,CAAC,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,OAAO,GAAG,IAAI,CAiBlF"}
|
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
import type { Nuxt } from '@nuxt/schema';
|
|
2
|
+
/**
|
|
3
|
+
* Gets the major version of the installed nitro package.
|
|
4
|
+
* Returns 2 as the default if nitro is not found or the version cannot be determined.
|
|
5
|
+
*/
|
|
6
|
+
export declare function getNitroMajorVersion(): Promise<number>;
|
|
2
7
|
/**
|
|
3
8
|
* Find the default SDK init file for the given type (client or server).
|
|
4
9
|
* The sentry.server.config file is prioritized over the instrument.server file.
|
|
@@ -49,5 +54,5 @@ export declare function constructFunctionReExport(pathWithQuery: string, entryId
|
|
|
49
54
|
*
|
|
50
55
|
* @see https://nuxt.com/docs/guide/concepts/esm#aliasing-libraries
|
|
51
56
|
*/
|
|
52
|
-
export declare function addOTelCommonJSImportAlias(nuxt: Nuxt): void;
|
|
57
|
+
export declare function addOTelCommonJSImportAlias(nuxt: Nuxt, isNitroV3?: boolean): void;
|
|
53
58
|
//# sourceMappingURL=utils.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/vite/utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AAKzC;;;GAGG;AACH,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,QAAQ,GAAG,QAAQ,EAAE,IAAI,CAAC,EAAE,IAAI,GAAG,MAAM,GAAG,SAAS,CAqCjG;AAED;;GAEG;AACH,wBAAgB,+BAA+B,CAAC,WAAW,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAIlF;AAED,eAAO,MAAM,oBAAoB,gCAAgC,CAAC;AAClE,eAAO,MAAM,wBAAwB,qCAAqC,CAAC;AAC3E,eAAO,MAAM,2BAA2B,wCAAwC,CAAC;AACjF,eAAO,MAAM,mBAAmB,qBAAqB,CAAC;AAEtD;;;;;GAKG;AACH,wBAAgB,yBAAyB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAI7D;AAED;;;;;GAKG;AACH,wBAAgB,sCAAsC,CAAC,KAAK,EAAE,MAAM,GAAG;IAAE,IAAI,EAAE,MAAM,EAAE,CAAC;IAAC,QAAQ,EAAE,MAAM,EAAE,CAAA;CAAE,CA2B5G;AAED;;;;GAIG;AACH,wBAAgB,mCAAmC,CACjD,gBAAgB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,GAAG,IAAI,EACjD,0BAA0B,EAAE,MAAM,EAAE,EACpC,KAAK,CAAC,EAAE,OAAO,GACd,MAAM,CAmCR;AAED;;GAEG;AACH,wBAAgB,yBAAyB,CAAC,aAAa,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM,CAsBxF;AAED;;;;;;;;;GASG;AACH,wBAAgB,0BAA0B,CAAC,IAAI,EAAE,IAAI,GAAG,IAAI,
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/vite/utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AAKzC;;;GAGG;AACH,wBAAsB,oBAAoB,IAAI,OAAO,CAAC,MAAM,CAAC,CAY5D;AAED;;;GAGG;AACH,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,QAAQ,GAAG,QAAQ,EAAE,IAAI,CAAC,EAAE,IAAI,GAAG,MAAM,GAAG,SAAS,CAqCjG;AAED;;GAEG;AACH,wBAAgB,+BAA+B,CAAC,WAAW,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAIlF;AAED,eAAO,MAAM,oBAAoB,gCAAgC,CAAC;AAClE,eAAO,MAAM,wBAAwB,qCAAqC,CAAC;AAC3E,eAAO,MAAM,2BAA2B,wCAAwC,CAAC;AACjF,eAAO,MAAM,mBAAmB,qBAAqB,CAAC;AAEtD;;;;;GAKG;AACH,wBAAgB,yBAAyB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAI7D;AAED;;;;;GAKG;AACH,wBAAgB,sCAAsC,CAAC,KAAK,EAAE,MAAM,GAAG;IAAE,IAAI,EAAE,MAAM,EAAE,CAAC;IAAC,QAAQ,EAAE,MAAM,EAAE,CAAA;CAAE,CA2B5G;AAED;;;;GAIG;AACH,wBAAgB,mCAAmC,CACjD,gBAAgB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,GAAG,IAAI,EACjD,0BAA0B,EAAE,MAAM,EAAE,EACpC,KAAK,CAAC,EAAE,OAAO,GACd,MAAM,CAmCR;AAED;;GAEG;AACH,wBAAgB,yBAAyB,CAAC,aAAa,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM,CAsBxF;AAED;;;;;;;;;GASG;AACH,wBAAgB,0BAA0B,CAAC,IAAI,EAAE,IAAI,EAAE,SAAS,UAAQ,GAAG,IAAI,CAY9E"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sentry/nuxt",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.46.0",
|
|
4
4
|
"description": "Official Sentry SDK for Nuxt",
|
|
5
5
|
"repository": "git://github.com/getsentry/sentry-javascript.git",
|
|
6
6
|
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/nuxt",
|
|
@@ -45,22 +45,30 @@
|
|
|
45
45
|
"access": "public"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
|
-
"nuxt": ">=3.7.0 || 4.x"
|
|
48
|
+
"nuxt": ">=3.7.0 || 4.x || 5.x",
|
|
49
|
+
"nitro": "2.x || 3.x"
|
|
50
|
+
},
|
|
51
|
+
"peerDependenciesMeta": {
|
|
52
|
+
"nitro": {
|
|
53
|
+
"optional": true
|
|
54
|
+
}
|
|
49
55
|
},
|
|
50
56
|
"dependencies": {
|
|
51
57
|
"@nuxt/kit": "^3.13.2",
|
|
52
|
-
"@sentry/browser": "10.
|
|
53
|
-
"@sentry/cloudflare": "10.
|
|
54
|
-
"@sentry/core": "10.
|
|
55
|
-
"@sentry/node": "10.
|
|
56
|
-
"@sentry/node-core": "10.
|
|
58
|
+
"@sentry/browser": "10.46.0",
|
|
59
|
+
"@sentry/cloudflare": "10.46.0",
|
|
60
|
+
"@sentry/core": "10.46.0",
|
|
61
|
+
"@sentry/node": "10.46.0",
|
|
62
|
+
"@sentry/node-core": "10.46.0",
|
|
57
63
|
"@sentry/rollup-plugin": "^5.1.1",
|
|
58
64
|
"@sentry/vite-plugin": "^5.1.0",
|
|
59
|
-
"@sentry/vue": "10.
|
|
65
|
+
"@sentry/vue": "10.46.0",
|
|
66
|
+
"local-pkg": "^1.1.2"
|
|
60
67
|
},
|
|
61
68
|
"devDependencies": {
|
|
62
69
|
"@nuxt/module-builder": "^0.8.4",
|
|
63
70
|
"@nuxt/nitro-server": "^3.21.1",
|
|
71
|
+
"nitro": "^3.0.260311-beta",
|
|
64
72
|
"nuxi": "^3.25.1",
|
|
65
73
|
"nuxt": "3.17.7",
|
|
66
74
|
"vite": "^5.4.11"
|