Upgrade the migration service to version 1.1.0
parent
24b32301ba
commit
46d46896e5
|
@ -1,7 +1,7 @@
|
|||
<Project>
|
||||
<Import Project="dependencies.props" />
|
||||
<PropertyGroup>
|
||||
<Version>1.1.2</Version>
|
||||
<Version>1.1.3</Version>
|
||||
<Authors>Tudor Stanciu</Authors>
|
||||
<Company>STA</Company>
|
||||
<PackageTags>IdentityServer</PackageTags>
|
||||
|
|
|
@ -45,7 +45,7 @@ namespace IdentityServer.Api
|
|||
services.AddSwagger("Identity Server API", AuthorizationType.None);
|
||||
|
||||
// Data access
|
||||
services.AddMigration(DatabaseType.SQLServer);
|
||||
services.AddMigration(DatabaseType.SQLServer, MetadataLocation.Database);
|
||||
services.AddDataAccess();
|
||||
|
||||
// Application
|
||||
|
|
|
@ -43,4 +43,10 @@
|
|||
◾ Store and compare passwords as hash to improve system security
|
||||
</Content>
|
||||
</Note>
|
||||
<Note>
|
||||
<Version>1.1.3</Version>
|
||||
<Content>
|
||||
◾ Upgrade the migration service to version 1.1.0. Migration metadata is now stored in the sql server database.
|
||||
</Content>
|
||||
</Note>
|
||||
</ReleaseNotes>
|
|
@ -2,7 +2,7 @@
|
|||
# chmod u+x build-amd64.sh
|
||||
echo "Welcome!"
|
||||
|
||||
version="1.1.2"
|
||||
version="1.1.3"
|
||||
localRegistryPass="***REMOVED***"
|
||||
|
||||
echo "Create docker image with version $version."
|
||||
|
|
|
@ -12,6 +12,6 @@
|
|||
<EntityFrameworkCorePackageVersion>5.0.12</EntityFrameworkCorePackageVersion>
|
||||
<NDBExtensionsSwaggerPackageVersion>1.0.2</NDBExtensionsSwaggerPackageVersion>
|
||||
<NDBApplicationPackageVersion>1.0.0</NDBApplicationPackageVersion>
|
||||
<NDBDatabaseMigrationPackageVersion>1.0.2</NDBDatabaseMigrationPackageVersion>
|
||||
<NDBDatabaseMigrationPackageVersion>1.1.0</NDBDatabaseMigrationPackageVersion>
|
||||
</PropertyGroup>
|
||||
</Project>
|
|
@ -1,8 +1,8 @@
|
|||
#!/bin/sh
|
||||
echo "Welcome!"
|
||||
|
||||
version="1.0.1"
|
||||
oldver="1.0.0"
|
||||
version="1.1.3"
|
||||
oldver="1.1.2"
|
||||
|
||||
echo "Pull docker image identity-server:$version from registry."
|
||||
docker pull alpine-nexus:8500/identity/identity-server:$version
|
||||
|
|
Loading…
Reference in New Issue