Skip to content

Commit

Permalink
v5.16.1 (#262)
Browse files Browse the repository at this point in the history
- *Fixed:* Upgraded dependencies related to `System.Text.Json`; resolve [Microsoft Security Advisory CVE-2024-43485](GHSA-8g4q-xg66-9fp4).
  • Loading branch information
chullybun authored Oct 11, 2024
1 parent a4d1086 commit 65af953
Show file tree
Hide file tree
Showing 41 changed files with 106 additions and 131 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

Represents the **NuGet** versions.

## v5.16.1
- *Fixed:* Upgraded dependencies related to `System.Text.Json`; resolve [Microsoft Security Advisory CVE-2024-43485](https://github.com/advisories/GHSA-8g4q-xg66-9fp4).

## v5.16.0
- *Enhancement:* Database code-generation defaults to the use of [JSON](https://learn.microsoft.com/en-us/sql/relational-databases/json/json-data-sql-server)-serialized parameters versus UDT/TVP to minimize the need for additional database objects; specifically [User-Defined Types](https://learn.microsoft.com/en-us/sql/t-sql/statements/create-type-transact-sql) (UDT).
- A new `CollectionType` property has been added to the code-generation configuration for query-based collection passing; supports `JSON` (default) and `UDT` (previous) values. Note that for JSON passing a `NVARCHAR(MAX)` type should be used.
Expand Down
2 changes: 1 addition & 1 deletion Common.targets
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Version>5.16.0</Version>
<Version>5.16.1</Version>
<LangVersion>preview</LangVersion>
<Authors>Avanade</Authors>
<Company>Avanade</Company>
Expand Down
2 changes: 1 addition & 1 deletion samples/Cdr.Banking/Cdr.Banking.Api/Cdr.Banking.Api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ImplicitUsings>true</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CoreEx.AspNetCore" Version="3.25.6" />
<PackageReference Include="CoreEx.AspNetCore" Version="3.27.0" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="6.8.1" />
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<Folder Include="DataSvc\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CoreEx.AspNetCore" Version="3.25.6" />
<PackageReference Include="CoreEx.Cosmos" Version="3.25.6" />
<PackageReference Include="CoreEx.Validation" Version="3.25.6" />
<PackageReference Include="CoreEx.AspNetCore" Version="3.27.0" />
<PackageReference Include="CoreEx.Cosmos" Version="3.27.0" />
<PackageReference Include="CoreEx.Validation" Version="3.27.0" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
<Folder Include="Entities\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CoreEx" Version="3.25.6" />
<PackageReference Include="CoreEx" Version="3.27.0" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="CoreEx.UnitTesting.NUnit" Version="3.25.6" />
<PackageReference Include="CoreEx.UnitTesting.NUnit" Version="3.27.0" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion samples/Demo/Beef.Demo.Api/Beef.Demo.Api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CoreEx.AspNetCore" Version="3.25.6" />
<PackageReference Include="CoreEx.AspNetCore" Version="3.27.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.8.1" />
<PackageReference Include="Swashbuckle.AspNetCore.Newtonsoft" Version="6.8.1" />
</ItemGroup>
Expand Down
29 changes: 13 additions & 16 deletions samples/Demo/Beef.Demo.Api/Controllers/PersonController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,22 @@ public partial class PersonController
[HttpPost("api/v1/persons/extend-response", Name = "Person_ExtendResponse")]
[ProducesResponseType(typeof(string), (int)HttpStatusCode.OK)]
[ProducesResponseType((int)HttpStatusCode.NoContent)]
public Task<IActionResult> ExtendResponse(string? name)
=> _webApi.PostWithResultAsync(Request, p =>
{
return Result.GoAsync(() => _manager.ExtendResponseAsync(name)) // Execute the business logic.
.ThenAs(r => // Then handle response where Result.IsSuccess; otherwise, allow to bubble out.
public Task<IActionResult> ExtendResponse(string? name) => _webApi.PostWithResultAsync(Request, p =>
Result.GoAsync(() => _manager.ExtendResponseAsync(name)) // Execute the business logic.
.ThenAs(r => // Then handle response where Result.IsSuccess; otherwise, allow any error/exceptions to bubble out.
{
var ia = p.CreateActionResult(r, HttpStatusCode.OK); // Use standard CoreEx to create a ValueContentResult with an OK status to handle the response.
if (ia is ValueContentResult vcr) // Ensure is a ValueContentResult, and if so, then manipulate.
{
var ia = ValueContentResult.CreateResult(r, HttpStatusCode.OK, null, _webApi.JsonSerializer, p.RequestOptions, false, null); // Use standard CoreEx ValueContentResult to handle the response.
if (ia is ValueContentResult vcr) // Ensure is a ValueContentResult, and if so, then manipulate.
vcr.BeforeExtension = hr => // Extend the reponse by adding a new header.
{
vcr.BeforeExtension = hr => // Extend the reponse by adding a new header.
{
hr.Headers.Add("X-Beef-Test", "123");
return Task.CompletedTask;
};
}
hr.Headers.Add("X-Beef-Test", "123");
return Task.CompletedTask;
};
}
return ia;
});
}, alternateStatusCode: HttpStatusCode.NoContent, operationType: CoreEx.OperationType.Unspecified);
return ia;
}), alternateStatusCode: HttpStatusCode.NoContent, operationType: CoreEx.OperationType.Unspecified);
}
}

Expand Down
16 changes: 8 additions & 8 deletions samples/Demo/Beef.Demo.Business/Beef.Demo.Business.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="CoreEx" Version="3.25.6" />
<PackageReference Include="CoreEx.AspNetCore" Version="3.25.6" />
<PackageReference Include="CoreEx.Cosmos" Version="3.25.6" />
<PackageReference Include="CoreEx.Database" Version="3.25.6" />
<PackageReference Include="CoreEx.Database.SqlServer" Version="3.25.6" />
<PackageReference Include="CoreEx.EntityFrameworkCore" Version="3.25.6" />
<PackageReference Include="CoreEx.Validation" Version="3.25.6" />
<PackageReference Include="CoreEx.FluentValidation" Version="3.25.6" />
<PackageReference Include="CoreEx" Version="3.27.0" />
<PackageReference Include="CoreEx.AspNetCore" Version="3.27.0" />
<PackageReference Include="CoreEx.Cosmos" Version="3.27.0" />
<PackageReference Include="CoreEx.Database" Version="3.27.0" />
<PackageReference Include="CoreEx.Database.SqlServer" Version="3.27.0" />
<PackageReference Include="CoreEx.EntityFrameworkCore" Version="3.27.0" />
<PackageReference Include="CoreEx.Validation" Version="3.27.0" />
<PackageReference Include="CoreEx.FluentValidation" Version="3.27.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.20" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion samples/Demo/Beef.Demo.Common/Beef.Demo.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<Folder Include="Agents\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CoreEx" Version="3.25.6" />
<PackageReference Include="CoreEx" Version="3.27.0" />
<PackageReference Include="Grpc.Tools" Version="2.66.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
2 changes: 1 addition & 1 deletion samples/Demo/Beef.Demo.Database/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public static MigrationArgs ConfigureMigrationArgs(MigrationArgs args)
{
args.AddAssembly<Program>();
args.AddSchemaOrder("Sec", "Ref", "Demo");
args.UseBeefSchema();
args.IncludeExtendedSchemaScripts();
return args;
}
}
Expand Down
2 changes: 1 addition & 1 deletion samples/Demo/Beef.Demo.Test/Beef.Demo.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="CoreEx.UnitTesting" Version="3.25.6" />
<PackageReference Include="CoreEx.UnitTesting" Version="3.27.0" />
<PackageReference Include="NUnit.Analyzers" Version="4.3.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
2 changes: 1 addition & 1 deletion samples/My.Hr/My.Hr.Api/My.Hr.Api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ImplicitUsings>true</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CoreEx.AspNetCore" Version="3.25.6" />
<PackageReference Include="CoreEx.AspNetCore" Version="3.27.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.8.1" />
<PackageReference Include="Swashbuckle.AspNetCore.Newtonsoft" Version="6.8.1" />
</ItemGroup>
Expand Down
7 changes: 1 addition & 6 deletions samples/My.Hr/My.Hr.Business/Data/HrDb.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,8 @@
/// <summary>
/// Represents the <b>My.Hr</b> database.
/// </summary>
public class HrDb : SqlServerDatabase
public class HrDb(Func<SqlConnection> create, ILogger<HrDb>? logger = null) : SqlServerDatabase(create, logger)
{
/// <summary>
/// Initializes a new instance of the <see cref="HrDb"/> class.
/// </summary>
public HrDb(Func<SqlConnection> create, ILogger<HrDb>? logger = null) : base(create, logger) { }

/// <inheritdoc/>
protected override Task OnConnectionOpenAsync(DbConnection connection, CancellationToken cancellationToken)
=> SetSqlSessionContextAsync(cancellationToken: cancellationToken);
Expand Down
8 changes: 4 additions & 4 deletions samples/My.Hr/My.Hr.Business/My.Hr.Business.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CoreEx" Version="3.25.6" />
<PackageReference Include="CoreEx.Database.SqlServer" Version="3.25.6" />
<PackageReference Include="CoreEx.EntityFrameworkCore" Version="3.25.6" />
<PackageReference Include="CoreEx.Validation" Version="3.25.6" />
<PackageReference Include="CoreEx" Version="3.27.0" />
<PackageReference Include="CoreEx.Database.SqlServer" Version="3.27.0" />
<PackageReference Include="CoreEx.EntityFrameworkCore" Version="3.27.0" />
<PackageReference Include="CoreEx.Validation" Version="3.27.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.31" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion samples/My.Hr/My.Hr.Common/My.Hr.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CoreEx" Version="3.25.6" />
<PackageReference Include="CoreEx" Version="3.27.0" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion samples/My.Hr/My.Hr.Database/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ static Task<int> Main(string[] args) => SqlServerMigrationConsole
/// </summary>
/// <param name="args">The <see cref="MigrationArgs"/>.</param>
/// <returns>The <see cref="MigrationArgs"/>.</returns>
public static MigrationArgs ConfigureMigrationArgs(MigrationArgs args) => args.AddAssembly<Program>().UseBeefSchema();
public static MigrationArgs ConfigureMigrationArgs(MigrationArgs args) => args.AddAssembly<Program>().IncludeExtendedSchemaScripts();
}
4 changes: 2 additions & 2 deletions samples/My.Hr/My.Hr.Test/My.Hr.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="CoreEx" Version="3.25.6" />
<PackageReference Include="CoreEx" Version="3.27.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand All @@ -42,7 +42,7 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="CoreEx.UnitTesting.NUnit" Version="3.25.6" />
<PackageReference Include="CoreEx.UnitTesting.NUnit" Version="3.27.0" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions samples/MyEf.Hr/MyEf.Hr.Api/MyEf.Hr.Api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CoreEx.AspNetCore" Version="3.25.6" />
<PackageReference Include="CoreEx.Azure" Version="3.25.6" />
<PackageReference Include="CoreEx.AspNetCore" Version="3.27.0" />
<PackageReference Include="CoreEx.Azure" Version="3.27.0" />
<PackageReference Include="OpenTelemetry.Instrumentation.EntityFrameworkCore" Version="1.0.0-beta.11" />
<PackageReference Include="AspNetCore.HealthChecks.Azure.Storage.Blobs" Version="8.0.1" />
<PackageReference Include="Azure.Monitor.OpenTelemetry.AspNetCore" Version="1.2.0" />
Expand Down
12 changes: 3 additions & 9 deletions samples/MyEf.Hr/MyEf.Hr.Business/Data/HrEfDb.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,6 @@
/// <summary>
/// Represents the <b>My.Hr</b> database using Entity Framework.
/// </summary>
public class HrEfDb : EfDb<HrEfDbContext>
{
/// <summary>
/// Initializes a new instance of the <see cref="HrEfDb"/> class.
/// </summary>
/// <param name="dbContext">The entity framework database context.</param>
/// <param name="mapper">The <see cref="IMapper"/>.</param>
public HrEfDb(HrEfDbContext dbContext, IMapper mapper) : base(dbContext, mapper) { }
}
/// <param name="dbContext">The entity framework database context.</param>
/// <param name="mapper">The <see cref="IMapper"/>.</param>
public class HrEfDb(HrEfDbContext dbContext, IMapper mapper) : EfDb<HrEfDbContext>(dbContext, mapper) { }
10 changes: 5 additions & 5 deletions samples/MyEf.Hr/MyEf.Hr.Business/MyEf.Hr.Business.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CoreEx" Version="3.25.6" />
<PackageReference Include="CoreEx.Database.SqlServer" Version="3.25.6" />
<PackageReference Include="CoreEx.EntityFrameworkCore" Version="3.25.6" />
<PackageReference Include="CoreEx.Validation" Version="3.25.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.8" />
<PackageReference Include="CoreEx" Version="3.27.0" />
<PackageReference Include="CoreEx.Database.SqlServer" Version="3.27.0" />
<PackageReference Include="CoreEx.EntityFrameworkCore" Version="3.27.0" />
<PackageReference Include="CoreEx.Validation" Version="3.27.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.10" />
</ItemGroup>
<ItemGroup>
<Folder Include="Data\EfModel\Generated\" />
Expand Down
2 changes: 1 addition & 1 deletion samples/MyEf.Hr/MyEf.Hr.Common/MyEf.Hr.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CoreEx" Version="3.25.6" />
<PackageReference Include="CoreEx" Version="3.27.0" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion samples/MyEf.Hr/MyEf.Hr.Database/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ static Task<int> Main(string[] args) => SqlServerMigrationConsole
/// </summary>
/// <param name="args">The <see cref="MigrationArgs"/>.</param>
/// <returns>The <see cref="MigrationArgs"/>.</returns>
public static MigrationArgs ConfigureMigrationArgs(MigrationArgs args) => args.AddAssembly<Program>().UseBeefSchema();
public static MigrationArgs ConfigureMigrationArgs(MigrationArgs args) => args.AddAssembly<Program>().IncludeExtendedSchemaScripts();
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="CoreEx.Azure" Version="3.25.6" />
<PackageReference Include="CoreEx.Validation" Version="3.25.6" />
<PackageReference Include="CoreEx.Azure" Version="3.27.0" />
<PackageReference Include="CoreEx.Validation" Version="3.27.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="1.23.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.ServiceBus" Version="5.22.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.18.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.18.1" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.ApplicationInsights" Version="1.4.0" />
<PackageReference Include="Microsoft.ApplicationInsights.WorkerService" Version="2.22.0" />
<PackageReference Include="Microsoft.Extensions.Http.Polly" Version="8.0.8" />
<PackageReference Include="Microsoft.Extensions.Http.Polly" Version="8.0.10" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MyEf.Hr.Common\MyEf.Hr.Common.csproj" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="CoreEx.UnitTesting.NUnit" Version="3.25.6" />
<PackageReference Include="CoreEx.UnitTesting.NUnit" Version="3.27.0" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions samples/MyEf.Hr/MyEf.Hr.Test/MyEf.Hr.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="CoreEx" Version="3.25.6" />
<PackageReference Include="CoreEx" Version="3.27.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand All @@ -42,7 +42,7 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="CoreEx.UnitTesting.NUnit" Version="3.25.6" />
<PackageReference Include="CoreEx.UnitTesting.NUnit" Version="3.27.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,15 @@
"type": "generated",
"generator": "constant",
"parameters": {
"value": "3.25.6"
"value": "3.27.0"
},
"replaces": "CoreExVersion"
},
"beef_version": {
"type": "generated",
"generator": "constant",
"parameters": {
"value": "5.16.0"
"value": "5.16.1"
},
"replaces": "BeefVersion"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<!--#endif -->
<PackageReference Include="CoreEx.Validation" Version="CoreExVersion" />
<!--#if (implement_sqlserver) -->
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.10" />
<!--#endif -->
<!--#if (implement_mysql) -->
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="8.0.2" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public static Task<int> Main(string[] args) => PostgresMigrationConsole
/// <returns>The <see cref="MigrationArgs"/>.</returns>
/// <remarks>This is also invoked from the unit tests to ensure consistency of execution.</remarks>
#if (implement_database)
public static MigrationArgs ConfigureMigrationArgs(MigrationArgs args) => args.AddAssembly<Program>().UseBeefSchema();
public static MigrationArgs ConfigureMigrationArgs(MigrationArgs args) => args.AddAssembly<Program>().IncludeExtendedSchemaScripts();
#endif
#if (implement_sqlserver || implement_mysql || implement_postgres)
public static MigrationArgs ConfigureMigrationArgs(MigrationArgs args) => args.AddAssembly<Program>();
Expand Down
4 changes: 2 additions & 2 deletions tools/Beef.CodeGen.Core/Beef.CodeGen.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="OnRamp" Version="2.2.2" />
<PackageReference Include="DbEx" Version="2.6.1" />
<PackageReference Include="OnRamp" Version="2.2.3" />
<PackageReference Include="DbEx" Version="2.7.1" />
<PackageReference Include="Microsoft.OpenApi.Readers" Version="1.6.22" />
</ItemGroup>

Expand Down
4 changes: 2 additions & 2 deletions tools/Beef.Database.Core/Beef.Database.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CoreEx.Database" Version="3.25.6" />
<PackageReference Include="DbEx" Version="2.6.1" />
<PackageReference Include="CoreEx.Database" Version="3.27.0" />
<PackageReference Include="DbEx" Version="2.7.1" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading

0 comments on commit 65af953

Please sign in to comment.