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 2.1.11 #45

Merged
merged 1 commit into from
Sep 26, 2024
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
8 changes: 4 additions & 4 deletions Backtrace/Backtrace.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageTags>Backtrace Error Diagnostic Tools Debug Bug Bugs StackTrace</PackageTags>
<tags>Backtrace Error Diagnostic Tools Debug Bug Bugs StackTrace</tags>
<PackageVersion>2.1.10</PackageVersion>
<PackageVersion>2.1.11</PackageVersion>
<Product>Backtrace</Product>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<projectUrl>https://github.com/backtrace-labs/backtrace-csharp</projectUrl>
Expand All @@ -18,14 +18,14 @@
<Summary>Backtrace's integration with C# app allows customers to catch and report handled and unhandled C# exceptions to their Backtrace instance, instantly offering the ability to prioritize and debug errors.</Summary>
<RepositoryUrl>https://github.com/backtrace-labs/backtrace-csharp</RepositoryUrl>
<NeutralLanguage>en</NeutralLanguage>
<Version>2.1.10</Version>
<Version>2.1.11</Version>
<PackageLanguage>en-US</PackageLanguage>
<Copyright>Backtrace I/O</Copyright>
<Authors>Backtrace I/O</Authors>
<Owners>Backtrace I/O</Owners>
<Company>Backtrace I/O</Company>
<AssemblyVersion>2.1.10.0</AssemblyVersion>
<FileVersion>2.1.10.0</FileVersion>
<AssemblyVersion>2.1.11.0</AssemblyVersion>
<FileVersion>2.1.11.0</FileVersion>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

Expand Down
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,24 @@
# Backtrace C# Release Notes

## Version 2.1.11 - 26.09.2024

Bugfix:
- Fixed an Exception due to unsupported `process.TotalProcessorTime` usage (#44).

## Version 2.1.10 - 02.07.2024

Improvements:

- Updated dependencies to the latest verison.
- On uncaught exception, store a report in the database rather sending it to API. If the database is not available, try sending a report to the server (#36).
- Added `application.session`, `application.version`, `backtrace.agent` and `backtrace.version` attributes.
- Read `application.version` and `version` attributes only when the assembly is available.
- Added support for the `error.type` attribute (#42).
- Fixed the problem when the `guid` attribute value was set incorrectly (#43).

Maintenance:

Maintenance:
- Removed codeql-analysis action
- Removed codeql-analysis action
- Moved testing and building to Github action (#37, #40)
- Added a CICD pipeline for releasing a new version of libraries

Expand Down