Skip to content

Commit

Permalink
chore: Update all deps across project
Browse files Browse the repository at this point in the history
  • Loading branch information
nikcio committed Nov 20, 2024
1 parent f5638c1 commit 4fdd319
Show file tree
Hide file tree
Showing 31 changed files with 10,370 additions and 3,513 deletions.
8 changes: 4 additions & 4 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/starlight": "^0.26.2",
"astro": "^4.15.2",
"sharp": "^0.33.3",
"starlight-links-validator": "^0.9.0"
"@astrojs/starlight": "^0.29.2",
"astro": "^4.16.13",
"sharp": "^0.33.5",
"starlight-links-validator": "^0.13.2"
}
}
1,286 changes: 613 additions & 673 deletions docs/pnpm-lock.yaml

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using HotChocolate.Types;
using Nikcio.UHeadless;
using Nikcio.UHeadless.Defaults.Authorization;
using UrlTracker.Core.Models;
using UrlTracker.Middleware.Background;

namespace Code.Examples.Headless.UrlTrackerExample;
Expand Down Expand Up @@ -49,7 +50,7 @@ public async Task<TrackErrorStatusCodeResponse> TrackErrorStatusCodeAsync(
{
case StatusCodes.Status404NotFound:
IClientErrorProcessorQueue clientErrorProcessorQueue = resolverContext.Service<IClientErrorProcessorQueue>();
await clientErrorProcessorQueue.WriteAsync(new ClientErrorProcessorItem(url, timestamp, referrer)).ConfigureAwait(false);
await clientErrorProcessorQueue.WriteAsync(new ClientErrorProcessorItem(Url.Parse(url), timestamp, referrer)).ConfigureAwait(false);
break;
case StatusCodes.Status500InternalServerError:
logger.LogError("Internal server error occurred at {Timestamp} for URL {Url} with referrer {Referrer}", timestamp, url, referrer);
Expand Down
20 changes: 16 additions & 4 deletions examples/code-examples/code-examples.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,32 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="HotChocolate.AspNetCore" Version="13.9.14" />
<PackageReference Include="HotChocolate.AspNetCore.Authorization" Version="13.9.14" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.11" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.2" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.2" />
<PackageReference Include="Skybrud.Umbraco.Redirects" Version="13.0.4" />
<PackageReference Include="Umbraco.Cms" Version="13.3.2" />
<PackageReference Include="Umbraco.Cms" Version="13.5.2" />
</ItemGroup>

<ItemGroup>
<!-- Opt-in to app-local ICU to ensure consistent globalization APIs across different platforms -->
<PackageReference Include="Microsoft.ICU.ICU4C.Runtime" Version="72.1.0.3" />
<PackageReference Include="Umbraco.Community.Contentment" Version="5.0.0" />
<PackageReference Include="UrlTracker" Version="13.2.0-alpha0003" />
<PackageReference Include="uSync" Version="13.2.3" />
<PackageReference Include="Umbraco.Community.Contentment" Version="5.0.2" />
<PackageReference Include="UrlTracker" Version="13.2.0" />
<PackageReference Include="uSync" Version="13.2.5" />
<ProjectReference Include="..\..\src\Nikcio.UHeadless\Nikcio.UHeadless.csproj" />
<RuntimeHostConfigurationOption Include="System.Globalization.AppLocalIcu" Value="72.1.0.3" Condition="$(RuntimeIdentifier.StartsWith('linux')) or $(RuntimeIdentifier.StartsWith('win')) or ('$(RuntimeIdentifier)' == '' and !$([MSBuild]::IsOSPlatform('osx')))" />
</ItemGroup>

<ItemGroup>
<PackageReference Update="Microsoft.VisualStudio.Threading.Analyzers" Version="17.12.19">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>

<PropertyGroup>
<!-- Razor files are needed for the backoffice to work correctly -->
<CopyRazorGenerateFilesToPublishDirectory>true</CopyRazorGenerateFilesToPublishDirectory>
Expand Down
Loading

0 comments on commit 4fdd319

Please sign in to comment.