Skip to content

Commit

Permalink
chore(deps): update azure azure-sdk-for-net monorepo (#185)
Browse files Browse the repository at this point in the history
* chore(deps): update azure azure-sdk-for-net monorepo

* Fix nullable

---------

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: guillaume.caya <guillaume.caya@gsoft.com>
  • Loading branch information
3 people authored Dec 18, 2024
1 parent bfb37df commit b0b69e3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Shared/DomainEventWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ internal sealed class DomainEventWrapper
{
public DomainEventWrapper(EventGridEvent eventGridEvent)
{
this.Data = eventGridEvent.Data.ToObjectFromJson<JsonObject>();
this.Data = eventGridEvent.Data.ToObjectFromJson<JsonObject>()!;
this.DomainEventName = eventGridEvent.EventType;
this.DomainEventSchema = EventSchema.EventGridEvent;
}

public DomainEventWrapper(CloudEvent cloudEvent)
{
this.Data = cloudEvent.Data!.ToObjectFromJson<JsonObject>();
this.Data = cloudEvent.Data!.ToObjectFromJson<JsonObject>()!;
this.DomainEventName = cloudEvent.Type;
this.DomainEventSchema = EventSchema.CloudEvent;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.12.1" />
<PackageReference Include="Azure.Core" Version="1.43.0" />
<PackageReference Include="Azure.Identity" Version="1.13.1" />
<PackageReference Include="Azure.Core" Version="1.44.1" />
<PackageReference Include="Azure.Messaging.EventGrid" Version="4.26.0" />
<PackageReference Include="Azure.Messaging.EventGrid.Namespaces" Version="1.0.0" />
<PackageReference Include="Microsoft.Extensions.Azure" Version="1.7.5" />
Expand Down

0 comments on commit b0b69e3

Please sign in to comment.