Skip to content

Package updates, fix max connections exceeded from Build.ps1 #1730

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

Merged
merged 1 commit into from
May 21, 2025
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 .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"rollForward": false
},
"dotnet-reportgenerator-globaltool": {
"version": "5.4.5",
"version": "5.4.7",
"commands": [
"reportgenerator"
],
Expand Down
3 changes: 1 addition & 2 deletions Build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ function VerifySuccessExitCode {
}

Write-Host "$(pwsh --version)"
Write-Host "Active .NET SDK: $(dotnet --version)"
Write-Host "Using version suffix: $versionSuffix"
Write-Host ".NET SDK $(dotnet --version)"

Remove-Item -Recurse -Force artifacts -ErrorAction SilentlyContinue
Remove-Item -Recurse -Force * -Include coverage.cobertura.xml
Expand Down
8 changes: 4 additions & 4 deletions package-versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<BenchmarkDotNetVersion>0.14.*</BenchmarkDotNetVersion>
<BlushingPenguinVersion>1.0.*</BlushingPenguinVersion>
<BogusVersion>35.6.*</BogusVersion>
<CodeAnalysisVersion>4.13.*</CodeAnalysisVersion>
<CodeAnalysisVersion>4.14.*</CodeAnalysisVersion>
<CoverletVersion>6.0.*</CoverletVersion>
<DapperVersion>2.1.*</DapperVersion>
<FluentAssertionsVersion>7.2.*</FluentAssertionsVersion>
Expand All @@ -20,12 +20,12 @@
<KiotaVersion>1.*</KiotaVersion>
<MicrosoftApiClientVersion>9.0.*</MicrosoftApiClientVersion>
<MicrosoftApiServerVersion>9.0.*</MicrosoftApiServerVersion>
<NSwagApiClientVersion>14.3.*</NSwagApiClientVersion>
<NSwagApiClientVersion>14.4.*</NSwagApiClientVersion>
<NewtonsoftJsonVersion>13.0.*</NewtonsoftJsonVersion>
<ScalarAspNetCoreVersion>2.1.*</ScalarAspNetCoreVersion>
<ScalarAspNetCoreVersion>2.3.*</ScalarAspNetCoreVersion>
<SwashbuckleVersion>8.*-*</SwashbuckleVersion>
<SystemTextJsonVersion>9.0.*</SystemTextJsonVersion>
<TestSdkVersion>17.13.*</TestSdkVersion>
<TestSdkVersion>17.14.*</TestSdkVersion>
<XunitVersion>2.9.*</XunitVersion>
<XunitVisualStudioVersion>2.8.*</XunitVisualStudioVersion>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion run-docker-postgres.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ param(
docker container stop jsonapi-postgresql-db
docker container stop jsonapi-postgresql-management

docker run --pull always --rm --detach --name jsonapi-postgresql-db -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=postgres -p 5432:5432 postgres:latest
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

if ($UI) {
docker run --pull always --rm --detach --name jsonapi-postgresql-management --link jsonapi-postgresql-db:db -e [email protected] -e PGADMIN_DEFAULT_PASSWORD=postgres -p 5050:80 dpage/pgadmin4:latest
Expand Down
Loading