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

[DI-1386] - Release Data Import 2.3.4 #137

Merged
merged 1 commit into from
Aug 29, 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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#tag 8.0-alpine
FROM mcr.microsoft.com/dotnet/aspnet@sha256:646b1c5ff36375f35f6149b0ce19ca095f97b4b882b90652801e9fbe82bcfa8a
LABEL maintainer="Ed-Fi Alliance, LLC and Contributors <[email protected]>"
ENV VERSION="2.3.3"
ENV VERSION="2.3.4"
ENV TZ=${TIME_ZONE}

# Alpine image does not contain Globalization Cultures library so we need to install ICU library to get fopr LINQ expression to work
Expand Down
6 changes: 3 additions & 3 deletions Installer/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@ Configure DataImport
$p = @{
ToolsPath = "C:/temp/tools"
DbConnectionInfo = $dbConnectionInfo
PackageVersion = '2.3.3.0'
PackageVersion = '2.3.4.0'
}

UserRecoveryToken is optional. This value can be used to recover/ reset the application user credentials
$p = @{
ToolsPath = "C:/temp/tools"
DbConnectionInfo = $dbConnectionInfo
PackageVersion = '2.3.3.0'
PackageVersion = '2.3.4.0'
UserRecoveryToken = "bEnFYNociET2R1Wua3DHzwfU5u"
}
#>
Expand All @@ -62,7 +62,7 @@ $packageSource = Split-Path $PSScriptRoot -Parent
$p = @{
ToolsPath = "C:/temp/tools"
DbConnectionInfo = $dbConnectionInfo
PackageVersion = '2.3.3.0'
PackageVersion = '2.3.4.0'
PackageSource = $packageSource
}

Expand Down