Skip to content

Commit

Permalink
Update Npgsql requirement from 5.0.* to 6.0.* (#131)
Browse files Browse the repository at this point in the history
* Update Npgsql requirement from 5.0.* to 6.0.*

Updates the requirements on [Npgsql](https://github.com/npgsql/npgsql) to permit the latest version.
- [Release notes](https://github.com/npgsql/npgsql/releases)
- [Commits](npgsql/npgsql@v5.0.0...v6.0.0)

---
updated-dependencies:
- dependency-name: Npgsql
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* Changed failing unit test tied to text in error message

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Erik A. Brandstadmoen <[email protected]>
  • Loading branch information
dependabot[bot] and erikbra authored Nov 10, 2021
1 parent e86e92d commit 23d84d2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ public class Failing_Scripts: Generic.Running_MigrationScripts.Failing_Scripts
protected override IGrateTestContext Context => GrateTestContext.PostgreSql;

protected override string ExpextedErrorMessageForInvalidSql =>
@"42703: column ""top"" does not exist";
@"42703: column ""top"" does not exist
POSITION: 8";
}
}
2 changes: 1 addition & 1 deletion grate.unittests/grate.unittests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<PackageReference Include="NSubstitute" Version="4.2.*" />
<PackageReference Include="Dapper" Version="2.0.*" />
<PackageReference Include="Oracle.ManagedDataAccess.Core" Version="3.21.*" />
<PackageReference Include="Npgsql" Version="5.0.*" />
<PackageReference Include="Npgsql" Version="6.0.*" />
<PackageReference Include="MySqlConnector" Version="2.0.*" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion grate/grate.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<PackageReference Include="System.CommandLine" Version="2.0.0-*" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="3.0.1" />
<PackageReference Include="Dapper" Version="2.0.*" />
<PackageReference Include="Npgsql" Version="5.0.*" />
<PackageReference Include="Npgsql" Version="6.0.*" />
<PackageReference Include="MySqlConnector" Version="2.0.*" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="6.0.0" />
</ItemGroup>
Expand Down

0 comments on commit 23d84d2

Please sign in to comment.