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

chore: Prepare release 1.1.0 #58

Merged
merged 1 commit into from
Nov 21, 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
39 changes: 39 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
## 1.1.0

- feat: Portable Debug Data images (#56)
- feat: Breadcrumb level (#57)
- feat: #16 Include host machine environment details (#55)
- fix: nullability requirement
- fix: #31 use GeneratedRegex (2024-10-01)
- docs: #17 document BrowserStats and BrowserSpecs (#54)
- test: #18 RaygunErrorBoundary tests (#53)
- ci: fix broken ci components (#51)

## 1.0.0

- feat: #34 OnBeforeSend
- feat: #29 throttled background processing
- feat: #30 Offline Storage
- feat: MAUI Blazor Hybrid support
- docs: Cleanup READMEs
- chore: Cleanup TODO comments
- chore: Version 1.0.0

## 0.0.2 - Alpha Release

- feat: Raygun4Blazor - Preview 1
- feat: #13 Support JavaScript stack trace
- feat: #27 Internal RaygunLogger
- feat: #26 User Manager
- feat: #22 Blazor Server support
- fix: #9 Fix warnings
- fix: fix missing README warning
- refactor: #21 Remove .NetCore from namespace
- test: fix tests
- ci: Create dependabot.yml
- ci: GH Action title check
- ci: Set dependabot interval to "monthly"
- chore: add .idea to gitignore
- chore: Issue and PR templates
- chore: Preparing for release 0.0.2

4 changes: 2 additions & 2 deletions src/Raygun.Blazor.Maui/Raygun.Blazor.Maui.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
<!-- NuGet Package config -->
<PackageReadmeFile>README.md</PackageReadmeFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>1.0.0</Version>
<PackageVersion>1.0.0</PackageVersion>
<Version>1.1.0</Version>
<PackageVersion>1.1.0</PackageVersion>
<Authors>Raygun Limited</Authors>
<Title>Raygun for MAUI Blazor Hybrid</Title>
<Description>Raygun's Crash Reporting extension for MAUI Blazor Hybrid apps</Description>
Expand Down
4 changes: 2 additions & 2 deletions src/Raygun.Blazor.Server/Raygun.Blazor.Server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<!-- NuGet Package config -->
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>1.0.0</Version>
<PackageVersion>1.0.0</PackageVersion>
<Version>1.1.0</Version>
<PackageVersion>1.1.0</PackageVersion>
<Authors>Raygun Limited</Authors>
<Title>Raygun for Blazor Server</Title>
<Description>Raygun's Crash Reporting extension for Blazor Server</Description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<!-- NuGet Package config -->
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>1.0.0</Version>
<PackageVersion>1.0.0</PackageVersion>
<Version>1.1.0</Version>
<PackageVersion>1.1.0</PackageVersion>
<Authors>Raygun Limited</Authors>
<Title>Raygun for Blazor WebAssembly</Title>
<Description>Raygun's Crash Reporting extension for Blazor WebAssembly</Description>
Expand Down
2 changes: 1 addition & 1 deletion src/Raygun.Blazor/Models/ClientDetails.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ internal ClientDetails(string? name = "Raygun4Blazor")
Name = name;
Version = Assembly.GetExecutingAssembly()
.GetCustomAttribute<AssemblyInformationalVersionAttribute>()
?.InformationalVersion ?? "1.0.0";
?.InformationalVersion ?? "1.1.0";
ClientUrl = "https://github.com/MindscapeHQ/raygun4blazor";
}

Expand Down
4 changes: 2 additions & 2 deletions src/Raygun.Blazor/Raygun.Blazor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

<!-- NuGet Package config -->
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>1.0.0</Version>
<PackageVersion>1.0.0</PackageVersion>
<Version>1.1.0</Version>
<PackageVersion>1.1.0</PackageVersion>
<Authors>Raygun Limited</Authors>
<Title>Raygun for Blazor</Title>
<Description>Raygun's Crash Reporting Provider for Blazor .NET</Description>
Expand Down
Loading