Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: hangfire-postgres/Hangfire.PostgreSql
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.20.4
Choose a base ref
...
head repository: hangfire-postgres/Hangfire.PostgreSql
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.20.5
Choose a head ref
  • 5 commits
  • 2 files changed
  • 2 contributors

Commits on Dec 21, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    4474974 View commit details
  2. Merge pull request #338 from yurii-hunter/bugfix-migrations

    Fix schema version update in PostgreSqlObjectsInstaller on script failure
    azygis authored Dec 21, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    0484d61 View commit details

Commits on Dec 24, 2023

  1. Build release config

    azygis authored Dec 24, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    cea8a66 View commit details
  2. Update pack.yml

    azygis authored Dec 24, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    4301169 View commit details
  3. Update pack.yml

    azygis authored Dec 24, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    3a47370 View commit details
Showing with 6 additions and 4 deletions.
  1. +4 −4 .github/workflows/pack.yml
  2. +2 −0 src/Hangfire.PostgreSql/PostgreSqlObjectsInstaller.cs
8 changes: 4 additions & 4 deletions .github/workflows/pack.yml
Original file line number Diff line number Diff line change
@@ -22,9 +22,9 @@ jobs:
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
run: dotnet build --no-restore -c Release
- name: Pack
run: dotnet pack --no-build --output publish
run: dotnet pack -c Release --no-build --output publish
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.2
with:
@@ -63,9 +63,9 @@ jobs:
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
run: dotnet build -c Release --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal --logger "trx;LogFileName=TestResults.trx" || true
run: dotnet test -c Release --no-build --verbosity normal --logger "trx;LogFileName=TestResults.trx" || true
- name: Test Report
uses: dorny/test-reporter@v1
if: always()
2 changes: 2 additions & 0 deletions src/Hangfire.PostgreSql/PostgreSqlObjectsInstaller.cs
Original file line number Diff line number Diff line change
@@ -94,6 +94,8 @@ public static void Install(NpgsqlConnection connection, string schemaName = "han
{
_logger.ErrorException("Error while executing install/upgrade", ex);
}

throw;
}

previousVersion = version;