Skip to content

Commit

Permalink
Merge pull request #5 from MindscapeHQ/1.0.1
Browse files Browse the repository at this point in the history
1.0.1
  • Loading branch information
QuantumNightmare authored May 20, 2024
2 parents 49842a3 + 455cb6c commit 094670b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGE-LOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log for Raygun4Aspire

### v1.0.1
- Fixed a bug where on some machines the crash reports will fail to be saved locally due to the invalid "|" character being used in the file name. This character has now been replaced with "-". You may want to manually rename previously persisted crash reports as such in the "raygun-data" Docker volume.
- Fixed a bug where the date times would not be displayed in the locally running Raygun app depending on your local date time formatting options.

### v1.0.0
- Initial release - up to par with the Raygun4Net.AspNetCore package.
- When running in the local development environment, Raygun crash reports are sent to a locally running Raygun app that's fetched from [Docker Hub](https://hub.docker.com/r/raygunowner/raygun-aspire-portal).
Expand Down
2 changes: 1 addition & 1 deletion src/Raygun4Aspire/Raygun4Aspire.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://raygun.com/platform/crash-reporting</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Version>1.0.0</Version>
<Version>1.0.1</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Raygun4Aspire/RaygunAspireWebAppBuilderExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public static IResourceBuilder<RaygunAspireWebAppResource> AddRaygun(this IDistr
{
var raygun = new RaygunAspireWebAppResource(name);
return builder.AddResource(raygun)
.WithAnnotation(new ContainerImageAnnotation { Image = "raygunowner/raygun-aspire-portal", Tag = "1.0.0" })
.WithAnnotation(new ContainerImageAnnotation { Image = "raygunowner/raygun-aspire-portal", Tag = "1.0.1" })
.WithAnnotation(new EndpointAnnotation(ProtocolType.Tcp, uriScheme: "http", port: port ?? DefaultHostPort, targetPort: 8080))
.WithBindMount("raygun-data", "/app/raygun")
.PublishAsContainer();
Expand Down
2 changes: 1 addition & 1 deletion src/RaygunAspireWebApp/RaygunAspireWebApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<version>1.0.0</version>
<version>1.0.1</version>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 094670b

Please sign in to comment.