Skip to content
Open
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
5 changes: 3 additions & 2 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
<PackageVersion Include="Microsoft.Extensions.Options" Version="$(DotNetExtensionsVersion)" />
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.Diagnostics.HealthChecks" Version="$(DotNetExtensionsVersion)" />
<PackageVersion Include="Microsoft.OpenApi" Version="2.11.0" />
<!-- OpenTelemetry packages -->
<PackageVersion Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.15.3" />
<PackageVersion Include="OpenTelemetry.Extensions.Hosting" Version="1.15.3" />
Expand Down Expand Up @@ -107,8 +108,8 @@
<PackageVersion Include="RavenDB.TestDriver" Version="6.2.1" />
<PackageVersion Include="YamlDotNet" Version="16.3.0" />
<PackageVersion Include="Squad.Agents.AI" Version="0.5.1-preview.16" />
<PackageVersion Include="SurrealDb.MinimalApis.Extensions" Version="0.10.2" />
<PackageVersion Include="SurrealDb.Net" Version="0.10.2" />
<PackageVersion Include="SurrealDb.MinimalApis.Extensions" Version="1.0.0" />
<PackageVersion Include="SurrealDb.Net" Version="1.0.0" />
<PackageVersion Include="Swashbuckle.AspNetCore" Version="7.3.1" />
<PackageVersion Include="Microsoft.PowerShell.SDK" Version="7.4.10" />
<PackageVersion Include="ModelContextProtocol" Version="0.4.0-preview.3" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@

<ItemGroup>
<PackageReference Include="Bogus" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" VersionOverride="10.0.10" />

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

Is there a reason that we wouldn't bump this in the Directory.Packages.props? If we start using VersionOverrides it becomes a problem trying to keep on top of where versions are coming from (I do acknowledge that this is in the examples project, but once a pattern starts somewhere it spreads).

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

I did not want to break the other projects just to upgrade mine. I think there must be a plan to upgrade packages at some point. I can do another PR after to deal with that if you want.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

Is there a need to bump it? Or do we end up with transient dependency collisions if it's not updated?

<PackageReference Include="Microsoft.OpenApi" />
<PackageReference Include="SurrealDb.MinimalApis.Extensions" />
</ItemGroup>

Expand Down
Loading