Skip to content

Commit 2a19115

Browse files
authored
Merge pull request #18 from ANDDEV-OSS/&DEV/npgsql-scram
PostgreSQL SCRAM auth until dbup-postgresql nuget released #14
2 parents 42bf69d + cf21e43 commit 2a19115

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ The tool has almost all the features the DbUp has, but without a single line of
5757

5858
|Date|Version|Description|
5959
|-|-|-|
60+
|2022-01-30|1.6.2|PostgreSQL SCRAM authentication support interim fix
6061
|2022-01-29|1.6.1|BUGFIX: 'version' and '--version' should return exit code 0
6162
|2021-10-03|1.6.0|Add a 'journalTo' option to dbup.yml
6263
|2021-03-28|1.5.0|Add support of .Net Core 3.1 and .Net 5.0

src/dbup-cli/dbup-cli.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<LangVersion>latest</LangVersion>
1919
<Product>DbUp Command Line Interface</Product>
2020
<Authors>Sergey Tregub</Authors>
21-
<Version>1.6.1</Version>
21+
<Version>1.6.2</Version>
2222
<RepositoryUrl>https://github.com/drwatson1/dbup-cli</RepositoryUrl>
2323
<Company />
2424
<Copyright>Copyright (c) 2022 Sergey Tregub</Copyright>
@@ -28,7 +28,7 @@
2828
<PackAsTool>true</PackAsTool>
2929
<ToolCommandName>dbup</ToolCommandName>
3030
<PackageOutputPath>./nupkg</PackageOutputPath>
31-
<PackageReleaseNotes>BUGFIX: 'version' and '--version' should return exit code 0</PackageReleaseNotes>
31+
<PackageReleaseNotes>PostgreSQL SCRAM authentication support interim fix</PackageReleaseNotes>
3232
<Title>DbUp Command Line Interface</Title>
3333
<Description>Command line tool, that can be installed as a .Net global tool, that helps you to deploy changes to databases. It tracks which SQL scripts have been run already, and runs the change scripts that are needed to get your database up to date.</Description>
3434
<PackageLicenseUrl></PackageLicenseUrl>
@@ -58,6 +58,7 @@
5858
<PackageReference Include="dbup-postgresql" Version="4.5.0" />
5959
<PackageReference Include="dbup-sqlserver" Version="4.5.0" />
6060
<PackageReference Include="DotNetEnv" Version="2.1.1" />
61+
<PackageReference Include="Npgsql" Version="3.2.7" />
6162
<PackageReference Include="Optional" Version="4.0.0" />
6263
<PackageReference Include="System.Text.Encoding.CodePages" Version="5.0.0" />
6364
<PackageReference Include="YamlDotNet" Version="9.1.4" />

0 commit comments

Comments
 (0)