Skip to content

Commit

Permalink
Merge branch 'release/1.0.0-beta.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
getsentry-bot committed Aug 5, 2024
2 parents 44709b3 + 8360938 commit 3e97ba5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
9 changes: 4 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
# Changelog

## Unreleased

## 1.0.0-beta.1

### How to Upgrade to Version 1:

- Angular minimum supported version changed to version 14, upgrade to Angular 14 or higher for using the latest SDK.

- When using the package `@sentry/angular-ivy`, you will need to replace it by `@sentry/angular`.

- enableOutOfMemoryTracking was removed and replaced by enableWatchdogTerminationTracking.
- `enableOutOfMemoryTracking` was removed and replaced by `enableWatchdogTerminationTracking`.

- We recommend reading the
[migration guide docs](https://docs.sentry.io/platforms/javascript/migration/v7-to-v8/#migration-codemod) to find out
- This release bumps the dependency for the JavaScript SDK from v7 to v8. We recommend reading the
[migration guide docs](https://docs.sentry.io/platforms/javascript/migration/v7-to-v8/) to find out
how to address any breaking changes in your code for your specific platform or framework.

To automate upgrading to v8 as much as possible, use our migration codemod `@sentry/migr8`:
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"type": "git",
"url": "https://github.com/getsentry/sentry-capacitor"
},
"version": "0.18.0",
"version": "1.0.0-beta.1",
"description": "Official Sentry SDK for Capacitor",
"types": "dist/esm/index.d.ts",
"main": "dist/build/index.js",
Expand Down Expand Up @@ -111,7 +111,9 @@
"transform": {
"^.+\\.(ts)$": "ts-jest"
},
"setupFilesAfterEnv": ["jest-extended/all"],
"setupFilesAfterEnv": [
"jest-extended/all"
],
"globals": {
"__DEV__": true,
"ts-jest": {
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const SDK_PACKAGE_NAME = 'npm:@sentry/capacitor';
export const SDK_NAME = 'sentry.javascript.capacitor';
export const SDK_VERSION = '0.18.0';
export const SDK_VERSION = '1.0.0-beta.1';

0 comments on commit 3e97ba5

Please sign in to comment.