update version to 6.1.0
This commit is contained in:
@ -74,8 +74,8 @@ namespace Oqtane.Infrastructure
|
||||
case "6.0.1":
|
||||
Upgrade_6_0_1(tenant, scope);
|
||||
break;
|
||||
case "6.0.2":
|
||||
Upgrade_6_0_2(tenant, scope);
|
||||
case "6.1.0":
|
||||
Upgrade_6_1_0(tenant, scope);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -484,14 +484,14 @@ namespace Oqtane.Infrastructure
|
||||
RemoveAssemblies(assemblies, "6.0.1");
|
||||
}
|
||||
|
||||
private void Upgrade_6_0_2(Tenant tenant, IServiceScope scope)
|
||||
private void Upgrade_6_1_0(Tenant tenant, IServiceScope scope)
|
||||
{
|
||||
// remove MySql.EntityFrameworkCore package (replaced by Pomelo.EntityFrameworkCore.MySql)
|
||||
string[] assemblies = {
|
||||
"MySql.EntityFrameworkCore.dll"
|
||||
};
|
||||
|
||||
RemoveAssemblies(assemblies, "6.0.2");
|
||||
RemoveAssemblies(assemblies, "6.1.0");
|
||||
}
|
||||
|
||||
private void AddPagesToSites(IServiceScope scope, Tenant tenant, List<PageTemplate> pageTemplates)
|
||||
|
@ -7,7 +7,7 @@ using Oqtane.Repository;
|
||||
namespace Oqtane.Migrations.Master
|
||||
{
|
||||
[DbContext(typeof(MasterDBContext))]
|
||||
[Migration("Master.06.00.02.01")]
|
||||
[Migration("Master.06.01.00.01")]
|
||||
public class AddThemeVersion : MultiDatabaseMigration
|
||||
{
|
||||
public AddThemeVersion(IDatabase database) : base(database)
|
@ -7,7 +7,7 @@ using Oqtane.Repository;
|
||||
namespace Oqtane.Migrations.Tenant
|
||||
{
|
||||
[DbContext(typeof(TenantDBContext))]
|
||||
[Migration("Tenant.06.00.02.01")]
|
||||
[Migration("Tenant.06.01.00.01")]
|
||||
public class AddFolderCacheControl : MultiDatabaseMigration
|
||||
{
|
||||
public AddFolderCacheControl(IDatabase database) : base(database)
|
@ -3,7 +3,7 @@
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<Configurations>Debug;Release</Configurations>
|
||||
<Version>6.0.2</Version>
|
||||
<Version>6.1.0</Version>
|
||||
<Product>Oqtane</Product>
|
||||
<Authors>Shaun Walker</Authors>
|
||||
<Company>.NET Foundation</Company>
|
||||
@ -11,7 +11,7 @@
|
||||
<Copyright>.NET Foundation</Copyright>
|
||||
<PackageProjectUrl>https://www.oqtane.org</PackageProjectUrl>
|
||||
<PackageLicenseUrl>https://github.com/oqtane/oqtane.framework/blob/dev/LICENSE</PackageLicenseUrl>
|
||||
<PackageReleaseNotes>https://github.com/oqtane/oqtane.framework/releases/tag/v6.0.2</PackageReleaseNotes>
|
||||
<PackageReleaseNotes>https://github.com/oqtane/oqtane.framework/releases/tag/v6.1.0</PackageReleaseNotes>
|
||||
<RepositoryUrl>https://github.com/oqtane/oqtane.framework</RepositoryUrl>
|
||||
<RepositoryType>Git</RepositoryType>
|
||||
<RootNamespace>Oqtane</RootNamespace>
|
||||
|
Reference in New Issue
Block a user