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

Update EventStore Client to latest #1059

Open
wants to merge 2 commits into
base: develop-v1
Choose a base branch
from

Conversation

warren-pieterse
Copy link

Update EventStore Client to EventStore.Client.Grpc.Streams v23.3.5

@CLAassistant
Copy link

CLAassistant commented Oct 22, 2024

CLA assistant check
All committers have signed the CLA.

Copy link
Member

@rasmus rasmus left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just some minor comments

Comment on lines +21 to +24
<ItemGroup>
<None Remove="C:\Work\Picup\git\EventFlow\Source\EventFlow.EventStores.EventStore\..\..\icon-128.png" />
<None Remove="C:\Work\Picup\git\EventFlow\Source\EventFlow.EventStores.EventStore\..\..\README.md" />
</ItemGroup>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<ItemGroup>
<None Remove="C:\Work\Picup\git\EventFlow\Source\EventFlow.EventStores.EventStore\..\..\icon-128.png" />
<None Remove="C:\Work\Picup\git\EventFlow\Source\EventFlow.EventStores.EventStore\..\..\README.md" />
</ItemGroup>

Comment on lines +96 to +101
logger.LogDebug(
"Wrote entity {0} with version {1} ({2},{3})",
id,
expectedVersion,
writeResult.LogPosition.CommitPosition,
writeResult.LogPosition.PreparePosition);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

{1} etc. should have proper names

<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<TargetFrameworks>net8.0</TargetFrameworks>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be awesome if all of them could be supported

Suggested change
<TargetFrameworks>net8.0</TargetFrameworks>
<TargetFrameworks>netstandard2.1;netcoreapp3.1;net6.0;net8.0</TargetFrameworks>

@rasmus
Copy link
Member

rasmus commented Dec 24, 2024

Hmmm, seems EventStore is being re-branded https://www.kurrent.io/blog/kurrent-re-brand-faq

Would it make sense to hold off completing this until the rebrand is done?

image

@rasmus
Copy link
Member

rasmus commented Dec 24, 2024

Here's the "correct" content (with old NuGet package references) needed

EventFlow.EventStores.EventStore.csproj

<Project Sdk="Microsoft.NET.Sdk">
  <PropertyGroup>
    <TargetFrameworks>netstandard2.1;netcoreapp3.1;net6.0;net8.0</TargetFrameworks>
    <Title>EventFlow.EventStores.EventStore</Title>
    <Description>Event Store event store for EventFlow. Download it from https://geteventstore.com/</Description>
    <PackageTags>CQRS ES event sourcing EventStore</PackageTags>
    <DocumentationFile>bin\$(Configuration)\$(TargetFramework)\EventFlow.EventStores.EventStore.xml</DocumentationFile>
    <IsPackable>true</IsPackable>
  </PropertyGroup>
   
  <ItemGroup>
    <PackageReference Include="EventStore.Client" Version="5.0.1" />
    <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
  </ItemGroup>

  <ItemGroup>
    <ProjectReference Include="..\EventFlow\EventFlow.csproj" />
  </ItemGroup>
</Project>

EventFlow.EventStores.EventStore.Tests.csproj

<Project Sdk="Microsoft.NET.Sdk">
  <PropertyGroup>
    <TargetFrameworks>netcoreapp3.1;net6.0;net8.0</TargetFrameworks>
    <IsPackable>False</IsPackable>
  </PropertyGroup>

  <ItemGroup>
    <PackageReference Include="nunit" Version="3.13.2" />
    <PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
    <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
  </ItemGroup>

  <ItemGroup>
    <ProjectReference Include="..\EventFlow.EventStores.EventStore\EventFlow.EventStores.EventStore.csproj" />
    <ProjectReference Include="..\EventFlow.TestHelpers\EventFlow.TestHelpers.csproj" />
  </ItemGroup>
  
  <ItemGroup>
    <Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
  </ItemGroup>
</Project>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants