Skip to content

Commit b6b56b0

Browse files
authored
Package updates, fix max connections exceeded from Build.ps1 (#1730)
1 parent 762bb4f commit b6b56b0

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"rollForward": false
1818
},
1919
"dotnet-reportgenerator-globaltool": {
20-
"version": "5.4.5",
20+
"version": "5.4.7",
2121
"commands": [
2222
"reportgenerator"
2323
],

Build.ps1

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ function VerifySuccessExitCode {
55
}
66

77
Write-Host "$(pwsh --version)"
8-
Write-Host "Active .NET SDK: $(dotnet --version)"
9-
Write-Host "Using version suffix: $versionSuffix"
8+
Write-Host ".NET SDK $(dotnet --version)"
109

1110
Remove-Item -Recurse -Force artifacts -ErrorAction SilentlyContinue
1211
Remove-Item -Recurse -Force * -Include coverage.cobertura.xml

package-versions.props

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<BenchmarkDotNetVersion>0.14.*</BenchmarkDotNetVersion>
1212
<BlushingPenguinVersion>1.0.*</BlushingPenguinVersion>
1313
<BogusVersion>35.6.*</BogusVersion>
14-
<CodeAnalysisVersion>4.13.*</CodeAnalysisVersion>
14+
<CodeAnalysisVersion>4.14.*</CodeAnalysisVersion>
1515
<CoverletVersion>6.0.*</CoverletVersion>
1616
<DapperVersion>2.1.*</DapperVersion>
1717
<FluentAssertionsVersion>7.2.*</FluentAssertionsVersion>
@@ -20,12 +20,12 @@
2020
<KiotaVersion>1.*</KiotaVersion>
2121
<MicrosoftApiClientVersion>9.0.*</MicrosoftApiClientVersion>
2222
<MicrosoftApiServerVersion>9.0.*</MicrosoftApiServerVersion>
23-
<NSwagApiClientVersion>14.3.*</NSwagApiClientVersion>
23+
<NSwagApiClientVersion>14.4.*</NSwagApiClientVersion>
2424
<NewtonsoftJsonVersion>13.0.*</NewtonsoftJsonVersion>
25-
<ScalarAspNetCoreVersion>2.1.*</ScalarAspNetCoreVersion>
25+
<ScalarAspNetCoreVersion>2.3.*</ScalarAspNetCoreVersion>
2626
<SwashbuckleVersion>8.*-*</SwashbuckleVersion>
2727
<SystemTextJsonVersion>9.0.*</SystemTextJsonVersion>
28-
<TestSdkVersion>17.13.*</TestSdkVersion>
28+
<TestSdkVersion>17.14.*</TestSdkVersion>
2929
<XunitVersion>2.9.*</XunitVersion>
3030
<XunitVisualStudioVersion>2.8.*</XunitVisualStudioVersion>
3131
</PropertyGroup>

run-docker-postgres.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ param(
1111
docker container stop jsonapi-postgresql-db
1212
docker container stop jsonapi-postgresql-management
1313

14-
docker run --pull always --rm --detach --name jsonapi-postgresql-db -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=postgres -p 5432:5432 postgres:latest
14+
docker run --pull always --rm --detach --name jsonapi-postgresql-db -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=postgres -p 5432:5432 postgres:latest -N 500
1515

1616
if ($UI) {
1717
docker run --pull always --rm --detach --name jsonapi-postgresql-management --link jsonapi-postgresql-db:db -e PGADMIN_DEFAULT_EMAIL=admin@admin.com -e PGADMIN_DEFAULT_PASSWORD=postgres -p 5050:80 dpage/pgadmin4:latest

0 commit comments

Comments
 (0)