Skip to content

Commit

Permalink
release 0.0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
bitsandfoxes committed May 20, 2021
1 parent 242955c commit 4eb3013
Show file tree
Hide file tree
Showing 32 changed files with 2,975 additions and 31 deletions.
41 changes: 31 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,31 @@
# Changelog

## 0.0.14

- il2cpp remove zeroes from path ([#179](https://github.com/getsentry/sentry-unity/pull/179))
- Flag simulator based on Application.isEditor ([#184](https://github.com/getsentry/sentry-unity/pull/184))
- Simulator is set only when Application.isEditor is true ([#190](https://github.com/getsentry/sentry-unity/pull/190))

### Features

- Sentry UnityLogger aligned to Unity Debug API ([#163](https://github.com/getsentry/sentry-unity/pull/163))
- Scene manager integration for breadcrumbs ([#170](https://github.com/getsentry/sentry-unity/pull/170))

### Fixes

- SDK version format correction ([#120](https://github.com/getsentry/sentry-unity/pull/120))
- Auto compression option is part of drop down (no extra checkbox) ([#160](https://github.com/getsentry/sentry-unity/pull/160))
- Rename DiagnosticsLogger to DiagnosticLogger ([#168](https://github.com/getsentry/sentry-unity/pull/168))
- SentryOptions config proper check ([#176](https://github.com/getsentry/sentry-unity/pull/176))
- Diagnostic logger writes to console that it was disabled ([#183](https://github.com/getsentry/sentry-unity/pull/183))

## 0.0.13

- No documented changes.
- Missing meta files warnings ([#146](https://github.com/getsentry/sentry-unity/pull/146))

## 0.0.12

- Craft Release v2
- Release process improvements

## 0.0.11

Expand All @@ -18,27 +37,29 @@

## 0.0.9

- UPM meta updated (#124)
- Bump dotnet 3.3.4 (#132)
- UPM meta updated ([#124](https://github.com/getsentry/sentry-unity/pull/124))
- Bump dotnet 3.3.4 ([#132](https://github.com/getsentry/sentry-unity/pull/132))
- https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md#334
- Bug fixes for performance monitoring
- Ability to keep failed envelopes for troubleshooting when they are too large
- Unity Sentry SDK programmatic setup ([#130](https://github.com/getsentry/sentry-unity/pull/130))
- SentryWindow updated

## 0.0.8

### Fixes

- Bump sentry-dotnet to 8ca0906 - fix IL2CPP crash (#122)
- IL2CPP players crash due to startup time detection (#123)
- Bump sentry-dotnet to 8ca0906 - fix IL2CPP crash ([#122](https://github.com/getsentry/sentry-unity/pull/122))
- IL2CPP players crash due to startup time detection ([#123](https://github.com/getsentry/sentry-unity/pull/123))

## 0.0.7

### Features

- Strip zeroes for ill2cpp builds (#108)
- Proper sdk name reporting for sentry event (#111)
- Bump .NET SDK to 3.3.1 (#115)
- Release package samples (#113)
- Strip zeroes for ill2cpp builds ([#108](https://github.com/getsentry/sentry-unity/pull/108))
- Proper sdk name reporting for sentry event ([#111](https://github.com/getsentry/sentry-unity/pull/111))
- Bump .NET SDK to 3.3.1 ([#115](https://github.com/getsentry/sentry-unity/pull/115))
- Release package samples ([#113](https://github.com/getsentry/sentry-unity/pull/113))

## 0.0.6

Expand Down
33 changes: 33 additions & 0 deletions Documentation~/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Sentry SDK for Unity

> Use [official documentation](https://docs.sentry.io/platforms/unity/) for more information.
Start using it by opening `Tools` -> `Sentry` in the `Unity` editor.


Minimal configuration:

* `DSN` - Get your [Sentry DSN](https://docs.sentry.io/product/sentry-basics/dsn-explainer/) when you create a new project in Sentry. Or in the project settings.


### Quick example

[Sentry's the documentation](https://docs.sentry.io/platforms/unity) includes **much** more you can do, including performance monitoring, adding tags, and more. But to get you started, here's a simple example using Unity's `Debug.LogError`:

Create `MonoBehaviour` and assign it to any object you have in the scene, press play.

```csharp
using UnityEngine;

public class TestMonoBehaviour : MonoBehaviour
{
void Start()
{
Debug.Log("Log");
Debug.LogWarning("Warning");
Debug.LogError("Error");
}
}
```

Check your Sentry web dashboard.
2 changes: 1 addition & 1 deletion Editor.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified Editor/Sentry.Unity.Editor.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion Editor/Sentry.Unity.Editor.dll.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Runtime.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Runtime/Microsoft.Bcl.AsyncInterfaces.dll.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified Runtime/Sentry.Unity.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion Runtime/Sentry.Unity.dll.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified Runtime/Sentry.Unity.pdb
Binary file not shown.
2 changes: 1 addition & 1 deletion Runtime/Sentry.Unity.pdb.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Runtime/Sentry.dll.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Runtime/Sentry.xml.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Runtime/System.Buffers.dll.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Runtime/System.Collections.Immutable.dll.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Runtime/System.Memory.dll.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Runtime/System.Numerics.Vectors.dll.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Runtime/System.Reflection.Metadata.dll.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Runtime/System.Runtime.CompilerServices.Unsafe.dll.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Runtime/System.Text.Encodings.Web.dll.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Runtime/System.Text.Json.dll.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Runtime/System.Threading.Tasks.Extensions.dll.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Runtime/link.xml.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 4eb3013

Please sign in to comment.