Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 3.12.0 #241

Merged
merged 2 commits into from
Jan 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Backtrace Unity Release Notes

## Version 3.12.0

Improvements
- Exposed an option to get an application.session id via `BacktraceMetrics` (#238).
- Backtrace client now allows to set a key-value pair via `SetAttribute` method (#240).
- The `SetAttributes` method will now set attributes in the managed C# layer and the native layer (#240).

Bugfixes
- Correct links to the docs (#239).
- Fixed a problem where the game on Windows will crash in the release mode, due to lack of Backtrace native libraries (#236).
- Fixed an `error.type` attribute value during handling ANR on Windows (#237).
- Set correct `uname.sysname` for PS5 and Xbox.


## Version 3.11.0

Improvements
Expand Down
2 changes: 1 addition & 1 deletion Runtime/BacktraceClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace Backtrace.Unity
/// </summary>
public class BacktraceClient : MonoBehaviour, IBacktraceClient
{
public const string VERSION = "3.11.0";
public const string VERSION = "3.12.0";
internal const string DefaultBacktraceGameObjectName = "BacktraceClient";
public BacktraceConfiguration Configuration;

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "io.backtrace.unity",
"displayName": "Backtrace",
"version": "3.11.0",
"version": "3.12.0",
"unity": "2017.1",
"description": "Backtrace's integration with Unity games allows customers to capture and report handled and unhandled Unity exceptions to their Backtrace instance, instantly offering the ability to prioritize and debug software errors.",
"keywords": [
Expand Down
Loading