You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+62-5Lines changed: 62 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,74 @@
1
1
# Changelog
2
2
3
+
## 5.1.0 (2021-06-24)
4
+
5
+
### Enhancements
6
+
7
+
* Add event metadata for CPU and graphics capabilities and migrated entries from the Unity tab to the device and app tabs, to better match other platforms [#297](https://github.com/bugsnag/bugsnag-unity/pull/297):
8
+
*`unity.companyName` -> `app.companyName`
9
+
*`unity.productName` -> `app.name`
10
+
*`unity.version` -> `app.version`
11
+
*`unity.platform` -> `app.type`
12
+
*`unity.osLanguage` -> `device.osLanguage`
13
+
*`unity.unityException` -> removed as a duplicate of the error class
14
+
*`unity.unityLogType` -> removed as is contained in the error class for generic logs
15
+
16
+
* Add `EnabledBreadcrumbTypes` configuration option to enable/disable automatically recorded breadcrumbs [#301](https://github.com/bugsnag/bugsnag-unity/pull/301)
17
+
* Add `MaxBreadcrumbs` configuration option to control the number of breadcrumbs collected on all platforms
* Fix duplicate events being sent for Android C/C++ crashes
59
+
3
60
## 5.0.0 (2021-06-08)
4
61
5
62
This version contains **breaking** changes, as bugsnag-unity has been updated to use the latest available versions of bugsnag-android (v4.22.2 -> v5.9.4) and bugsnag-cocoa (v5.23.5 -> v6.9.3).
6
63
7
-
Please see the [upgrade guide](UPGRADING.md) for details of all the changes and instructions on how to upgrade.
64
+
Please see the [upgrade guide](./UPGRADING.md) for details of all the changes and instructions on how to upgrade.
8
65
9
66
### Bug fixes
10
-
11
-
* Stop scene changes overiding context when manually set
67
+
68
+
* Stop scene changes overrriding context when manually set
0. Set the version number in the change log and `build.cake`
117
-
1. Commit the changelog and version updates:
116
+
1. Checkout the `next` branch. Set the version number in the change log and `build.cake`.
117
+
118
+
2. Commit the changelog and version updates:
118
119
119
120
```
120
121
git add CHANGELOG.md build.cake
121
-
git commit -m "Release v4.x.x"
122
+
git commit -m "Release v5.x.x"
122
123
```
123
-
2. Make a pull request to merge the changes
124
-
3. Once merged, tag the new release version, pushing the tag to GitHub:
124
+
3. Make a pull request to merge the changes into `master`
125
+
126
+
4. Once merged, tag the new release version, pushing the tag to GitHub:
125
127
126
128
```
127
-
git tag v4.x.x
128
-
git push origin v4.x.x
129
+
git tag v5.x.x
130
+
git push origin v5.x.x
129
131
```
130
-
4. Wait. The CI build will build the new package and create a draft release.
131
-
Verify that the release looks good, copy in the changelog entry and publish
132
-
the draft.
132
+
133
+
5. Wait. The CI build will build the new package and create a draft release.
134
+
135
+
6. Verify that the release looks good, upload the unity packages to the release, copy in the changelog entry into the release notes and publish the draft.
0 commit comments