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

Prepare GA release 8.0.0 #1840

Merged
merged 3 commits into from
Feb 13, 2024
Merged
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
12 changes: 6 additions & 6 deletions Dependencies.targets
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup Label="Common Versions">
<EFCoreVersion>8.0.0</EFCoreVersion>
<EFCoreVersion>[8.0.0, 8.1.0-0)</EFCoreVersion>
</PropertyGroup>

<ItemGroup Label="Dependencies">
Expand All @@ -9,8 +9,8 @@
<PackageReference Update="Microsoft.EntityFrameworkCore.Relational" Version="$(EFCoreVersion)" />
<PackageReference Update="Microsoft.EntityFrameworkCore" Version="$(EFCoreVersion)" />

<PackageReference Update="MySqlConnector" Version="2.3.1" />
<PackageReference Update="MySqlConnector.DependencyInjection" Version="2.3.1" />
<PackageReference Update="MySqlConnector" Version="2.3.5" />
<PackageReference Update="MySqlConnector.DependencyInjection" Version="2.3.5" />

<PackageReference Update="NetTopologySuite" Version="2.5.0" />
<PackageReference Update="System.Text.Json" Version="8.0.0" />
Expand All @@ -30,9 +30,9 @@
<PackageReference Update="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
<PackageReference Update="Microsoft.Extensions.DependencyModel" Version="8.0.0" />
<PackageReference Update="Microsoft.Extensions.Logging" Version="8.0.0" />
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="1.1.1" />
<PackageReference Update="Moq" Version="4.20.69" />
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="8.0.0" />
<PackageReference Update="Moq" Version="4.20.70" />
<PackageReference Update="System.Collections.Immutable" Version="8.0.0" />
<PackageReference Update="System.ComponentModel.TypeConverter" Version="4.3.0" />
<PackageReference Update="System.Diagnostics.DiagnosticSource" Version="8.0.0" />
Expand Down
2 changes: 1 addition & 1 deletion Version.props
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
- "servicing" - EF Core release independent, code quality production ready, mainly bugfixes
-->
<VersionPrefix>8.0.0</VersionPrefix>
<PreReleaseVersionLabel>silver</PreReleaseVersionLabel>
<PreReleaseVersionLabel>rtm</PreReleaseVersionLabel>
<PreReleaseVersionIteration>1</PreReleaseVersionIteration>

<!--
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,12 +124,9 @@ public virtual MySqlDbContextOptionsBuilder EnableStringComparisonTranslations(b
=> WithOption(e => e.WithStringComparisonTranslations(enable));

/// <summary>
/// Configures the context to translate string related methods, containing a parameter of type <see cref="StringComparison"/>,
/// to their SQL equivalent, even though MySQL might not be able to use indexes when executing the query, resulting in decreased
/// performance. Whether MySQL is able to use indexes for the query, depends on the <see cref="StringComparison"/> option, the
/// underlying collation and the scenario.
/// It is also possible to just use `EF.Functions.Collate()`, possibly in addition to `string.ToUpper()` if needed, to achieve
/// the same result but with full control over the SQL generation.
/// Configures the context to translate using primitive collections. At the time of the Pomelo 8.0.0 release, MySQL Server can
/// crash when using primitive collections with JSON and MariaDB support is incomplete. Support and translations in regards to
/// this option can change at any time in the future. This optin is disabled by default. Enabled at your own risk.
/// </summary>
public virtual MySqlDbContextOptionsBuilder EnablePrimitiveCollectionsSupport(bool enable = true)
=> WithOption(e => e.WithPrimitiveCollectionsSupport(enable));
Expand Down
Loading