Skip to content
This repository was archived by the owner on Feb 15, 2026. It is now read-only.
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
16 changes: 16 additions & 0 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,20 @@ jobs:
--self-contained true \
-p:PublishSingleFile=true \
-o ./verify-publish

# Summary job that depends on all matrix jobs
# This provides a single status check for branch protection
pr-check-summary:
needs: multi-platform-test
runs-on: ubuntu-latest
if: always()

steps:
- name: Check multi-platform-test results
run: |
if [ "${{ needs.multi-platform-test.result }}" != "success" ]; then
echo "One or more platform tests failed"
exit 1
fi
echo "All platform tests passed successfully"

2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.0] - 2025-12-19

### Added
- **PostgreSQL database support** - Full schema extraction for PostgreSQL databases
- `PostgreSqlSchemaExtractor` implementing `ISchemaExtractor` for PostgreSQL connectivity
Expand Down
4 changes: 2 additions & 2 deletions src/DbDiff.Application.Tests/DbDiff.Application.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
Expand All @@ -22,4 +22,4 @@
<ProjectReference Include="..\DbDiff.Application\DbDiff.Application.csproj" />
</ItemGroup>

</Project>
</Project>
5 changes: 3 additions & 2 deletions src/DbDiff.Application/DbDiff.Application.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<ItemGroup>
<ProjectReference Include="..\DbDiff.Domain\DbDiff.Domain.csproj" />
Expand All @@ -12,7 +12,8 @@
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.0.1</Version>
<Version>0.1.0</Version>
</PropertyGroup>

</Project>

5 changes: 3 additions & 2 deletions src/DbDiff.Cli/DbDiff.Cli.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<ItemGroup>
<ProjectReference Include="..\DbDiff.Application\DbDiff.Application.csproj" />
Expand All @@ -20,7 +20,7 @@
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.0.1</Version>
<Version>0.1.0</Version>
</PropertyGroup>

<ItemGroup>
Expand All @@ -30,3 +30,4 @@
</ItemGroup>

</Project>

5 changes: 3 additions & 2 deletions src/DbDiff.Domain/DbDiff.Domain.csproj
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.0.1</Version>
<Version>0.1.0</Version>
</PropertyGroup>

</Project>

5 changes: 3 additions & 2 deletions src/DbDiff.Infrastructure/DbDiff.Infrastructure.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<ItemGroup>
<ProjectReference Include="..\DbDiff.Domain\DbDiff.Domain.csproj" />
Expand All @@ -13,7 +13,8 @@
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.0.1</Version>
<Version>0.1.0</Version>
</PropertyGroup>

</Project>

Loading