Skip to content

Commit 037bcdd

Browse files
authored
fix: The asmdef no explicitly sets the included platforms (#1974)
* switched from 'include all' to explicit selection * Updated CHANGELOG.md * Updated CHANGELOG.md
1 parent 02a8d13 commit 037bcdd

File tree

2 files changed

+25
-15
lines changed

2 files changed

+25
-15
lines changed

CHANGELOG.md

+5-12
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,21 @@
22

33
## Unreleased
44

5-
### Dependencies
6-
7-
- Bump Java SDK from v7.19.0 to v7.20.0 ([#1947](https://github.com/getsentry/sentry-unity/pull/1947))
8-
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#7200)
9-
- [diff](https://github.com/getsentry/sentry-java/compare/7.19.0...7.20.0)
105
### Fixes
116

7+
- The SDK now sets the supported platforms in the `.asmdef` explicitely, preventing runtime issues on currently non-supported platforms ([#1974](https://github.com/getsentry/sentry-unity/pull/1974))
128
- Fixed iOS native SDK initialization that could cause memory management issues ([#1964](https://github.com/getsentry/sentry-unity/pull/1964))
139
- The SDK now properly sets up logging by respecting the debug settings set during the configure callback. Logs created during the configuration of the native SDKs no longer get lost ([#1959]https://github.com/getsentry/sentry-unity/pull/1959)
1410
- ANR events now include the relevant mechanism they have been captured from ([#1955](https://github.com/getsentry/sentry-unity/pull/1955))
1511

1612
### Dependencies
1713

18-
- Bump Cocoa SDK from v8.42.0 to v8.43.0 ([#1949](https://github.com/getsentry/sentry-unity/pull/1949))
14+
- Bump Cocoa SDK from v8.42.0 to v8.43.0 ([#1945](https://github.com/getsentry/sentry-unity/pull/1945), [#1949](https://github.com/getsentry/sentry-unity/pull/1949))
1915
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8430)
2016
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.42.0...8.43.0)
21-
- Bump Java SDK from v7.19.0 to v7.19.1 ([#1946](https://github.com/getsentry/sentry-unity/pull/1946))
22-
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#7191)
23-
- [diff](https://github.com/getsentry/sentry-java/compare/7.19.0...7.19.1)
24-
- Bump Cocoa SDK from v8.42.0 to v8.42.1 ([#1945](https://github.com/getsentry/sentry-unity/pull/1945))
25-
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8421)
26-
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.42.0...8.42.1)
17+
- Bump Java SDK from v7.19.0 to v7.20.0 ([#1946](https://github.com/getsentry/sentry-unity/pull/1946), [#1947](https://github.com/getsentry/sentry-unity/pull/1947))
18+
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#7200)
19+
- [diff](https://github.com/getsentry/sentry-java/compare/7.19.0...7.20.0)
2720
- Bump CLI from v2.39.1 to v2.40.0 ([#1948](https://github.com/getsentry/sentry-unity/pull/1948))
2821
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2400)
2922
- [diff](https://github.com/getsentry/sentry-cli/compare/2.39.1...2.40.0)
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,24 @@
11
{
22
"name": "io.sentry.unity.dev.runtime",
3-
"references": [""],
4-
"includePlatforms": [],
3+
"references": [
4+
""
5+
],
6+
"includePlatforms": [
7+
"Android",
8+
"Editor",
9+
"GameCoreScarlett",
10+
"GameCoreXboxOne",
11+
"iOS",
12+
"LinuxStandalone64",
13+
"Lumin",
14+
"macOSStandalone",
15+
"Stadia",
16+
"Switch",
17+
"WSA",
18+
"WebGL",
19+
"WindowsStandalone32",
20+
"WindowsStandalone64"
21+
],
522
"excludePlatforms": [],
623
"allowUnsafeCode": false,
724
"overrideReferences": false,
@@ -10,4 +27,4 @@
1027
"defineConstraints": [],
1128
"versionDefines": [],
1229
"noEngineReferences": false
13-
}
30+
}

0 commit comments

Comments
 (0)