Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
b177d04
feat: update sentry JS SDK to 10.x
edusperoni Dec 11, 2025
6591865
fix: remove unnecessary type assertion for rewriteFrameIntegration
edusperoni Dec 11, 2025
5e579cd
fix: replace logger with debug for error handling in withScope
edusperoni Dec 11, 2025
0040f13
fix: copy eventbuilder from sentry browser
edusperoni Dec 11, 2025
e678104
chore: remove build files from packages folder
edusperoni Dec 14, 2025
3532560
chore: remove unnecessary @sentry/types dependency
edusperoni Dec 14, 2025
9f6984d
feat: add enableTracing option and export enableNative in wrapper files
edusperoni Dec 14, 2025
283226f
feat: update Sentry integration with new breadcrumbs and error handli…
edusperoni Dec 14, 2025
6e84179
Merge branch 'master' into feat/js-sdk-update
edusperoni Aug 19, 2026
913248e
feat: update sentry JS SDK to 10.70.0 and sync isolation scope to native
edusperoni Aug 19, 2026
184008f
feat!: update native SDKs (sentry-cocoa 9.19.1, sentry-android 8.52.0…
edusperoni Aug 19, 2026
794307c
feat: capture uncaught errors via the runtime's global error events
edusperoni Aug 19, 2026
3cd8e0f
chore: remove unused patchGlobalPromise option and dead code from err…
edusperoni Aug 19, 2026
af4d1c3
feat: enrich events with native exception data and normalize captured…
edusperoni Aug 19, 2026
292479b
refactor: stop consuming the legacy combined stackTrace string
edusperoni Aug 19, 2026
49c7656
feat: improve capture of non-Error and native-object values
edusperoni Aug 19, 2026
3a4640c
fix: rename appHangsTimeoutInterval option to appHangTimeoutInterval
edusperoni Aug 19, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions demo-snippets/webpack.config.vue.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ module.exports.onWebpackConfig = function (config, env, params) {
});
config.resolve.symlinks = false;
config.devtool = 'source-map';
if (!process.env.SENTRY_AUTH_TOKEN) {
// Local builds without Sentry credentials skip the release/sourcemap upload.
return config;
}
config.plugins.push(
sentryWebpackPlugin({
org: process.env.SENTRY_ORG,
Expand Down
9 changes: 2 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,8 @@
"dependencies": {
"@nativescript-community/arraybuffers": "^1.1.5",
"@nativescript-community/plugin-seed-tools": "portal:tools",
"@sentry/browser": "7.111.0",
"@sentry/core": "7.111.0",
"@sentry/hub": "7.111.0",
"@sentry/integrations": "7.111.0",
"@sentry/tracing": "7.111.0",
"@sentry/types": "7.111.0",
"@sentry/utils": "8.0.0-beta.3"
"@sentry/browser": "^10.70.0",
"@sentry/core": "^10.70.0"
},
"repository": {
"type": "git",
Expand Down
10 changes: 0 additions & 10 deletions packages/sentry/breadcrumb.d.ts

This file was deleted.

34 changes: 0 additions & 34 deletions packages/sentry/breadcrumb.js

This file was deleted.

42 changes: 0 additions & 42 deletions packages/sentry/integrations/debugsymbolicator.d.ts

This file was deleted.

128 changes: 0 additions & 128 deletions packages/sentry/integrations/debugsymbolicator.js

This file was deleted.

13 changes: 0 additions & 13 deletions packages/sentry/integrations/default.d.ts

This file was deleted.

16 changes: 0 additions & 16 deletions packages/sentry/integrations/devicecontext.d.ts

This file was deleted.

83 changes: 0 additions & 83 deletions packages/sentry/integrations/devicecontext.js

This file was deleted.

16 changes: 0 additions & 16 deletions packages/sentry/integrations/eventorigin.d.ts

This file was deleted.

Loading