Skip to content

Commit

Permalink
Merge pull request #153 from bugsnag/next
Browse files Browse the repository at this point in the history
Release v1.7.1
  • Loading branch information
richardelms authored Dec 8, 2024
2 parents b31b143 + 515522a commit 0ea5142
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
{
"name": "BugsnagPerformance"
}
{
"name": "BugsnagPerformance",
"rootNamespace": "",
"references": [
"BugsnagUnity"
],
"includePlatforms": [],
"excludePlatforms": [],
"allowUnsafeCode": false,
"overrideReferences": false,
"precompiledReferences": [],
"autoReferenced": true,
"defineConstraints": [],
"versionDefines": [],
"noEngineReferences": false
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
internal static class Version
{
//TODO set this using sed or something in the release automation task
public const string VersionString = "1.7.0";
public const string VersionString = "1.7.1";
}
}
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v1.7.1 (2024-12-06)

### Bug Fixes

- Fix an issue where using this SDK with v8.3.0+ of the BugSnag Unity Notifier would cause an exception while trying to resolve the BugsnagUnityWebRequest wrapper [#151](https://github.com/bugsnag/bugsnag-unity-performance/pull/151)

## v1.7.0 (2024-11-14)

### Additions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,19 @@ public override void Run()

private IEnumerator DoRun()
{
#if UNITY_2022_2_OR_NEWER
WWWForm form = new WWWForm();
form.AddField("data", "1234567890");
yield return BugsnagUnityWebRequest.Post(FAIL_URL, form).SendWebRequest();
#else
yield return BugsnagUnityWebRequest.Post(FAIL_URL, "1234567890").SendWebRequest();
#endif
yield return new WaitForSeconds(1);
BugsnagUnityWebRequest.Post(Main.MazeHost, "1234567890").SendWebRequest();
#if UNITY_2022_2_OR_NEWER
yield return BugsnagUnityWebRequest.Post(Main.MazeHost, form).SendWebRequest();
#else
yield return BugsnagUnityWebRequest.Post(Main.MazeHost, "1234567890").SendWebRequest();
#endif
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,13 @@ public override void PreparePerformanceConfig(string apiKey, string host)

public override void Run()
{
#if UNITY_2022_2_OR_NEWER
WWWForm form = new WWWForm();
form.AddField("data", "1234567890");
BugsnagUnityWebRequest.Post(Main.MazeHost, form).SendWebRequest();
#else
BugsnagUnityWebRequest.Post(Main.MazeHost, "1234567890").SendWebRequest();
#endif
}

}

0 comments on commit 0ea5142

Please sign in to comment.