-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Enhanced to support Hangfire 1.5, fixed tests. * Added word "revised" to nuspecs. * Breaking - Uses 'Hangfire.Core' 1.5.7 * Breaking - Uses 'Npgsql' 3.1.3 * Updated to Newtonsoft.Json 8.0.3 * Updated Moq to 4.5.8 * Fixes "NotSupportedException: Specified method is not supported." error in dashboard. * Added zero processin latency * Updated nuspec file to reflect latest merge issues (#33 and $31 of original frankhommers repo)
- Loading branch information
Showing
34 changed files
with
4,629 additions
and
3,780 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
@echo off | ||
.nuget\NuGet.exe install .nuget\packages.config -OutputDirectory packages | ||
powershell.exe -NoProfile -ExecutionPolicy unrestricted -Command "& {Import-Module '.\packages\psake.*\tools\psake.psm1'; invoke-psake .\psake-project.ps1 %*; if ($LastExitCode -and $LastExitCode -ne 0) {write-host "ERROR CODE: $LastExitCode" -fore RED; exit $lastexitcode} }" | ||
powershell.exe -NoProfile -ExecutionPolicy unrestricted -Command "& {Import-Module '.\packages\psake.*\tools\psake.psm1'; invoke-psake .\psake-project.ps1 -framework "4.6" %*; if ($LastExitCode -and $LastExitCode -ne 0) {write-host "ERROR CODE: $LastExitCode" -fore RED; exit $lastexitcode} }" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,32 @@ | ||
<?xml version="1.0"?> | ||
<package > | ||
<metadata> | ||
<id>Hangfire.PostgreSql</id> | ||
<version>1.3.1</version> | ||
<title>Hangfire PostgreSql Storage</title> | ||
<authors>Frank Hommers</authors> | ||
<owners>frankhommers</owners> | ||
<projectUrl>http://hmm.rs/Hangfire.PostgreSql</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<licenseUrl>https://raw.github.com/frankhommers/Hangfire.PostgreSql/master/LICENSE.md</licenseUrl> | ||
<description>PostgreSql storage implementation for Hangfire (background job system for ASP.NET applications).</description> | ||
<copyright>Copyright © 2014 Frank Hommers</copyright> | ||
<tags>Hangfire PostgreSql Postgres</tags> | ||
<releaseNotes> | ||
https://github.com/frankhommers/Hangfire.PostgreSql/releases | ||
1.3.4 | ||
* Breaking - Use 'Hangfire.Core' 1.3.4. | ||
* Breaking - Use 'Npgsql' 2.2.4.1. | ||
* Shows schema name in dashboard | ||
* Fix GetTimelineStats / GetHourlyTimelineStats incorrect order | ||
</releaseNotes> | ||
<dependencies> | ||
<dependency id="Hangfire.Core" version="1.3.4" /> | ||
<dependency id="Dapper" version="1.38" /> | ||
<dependency id="Npgsql" version="2.2.4.1" /> | ||
</dependencies> | ||
<id>Hangfire.PostgreSql</id> | ||
<version>1.4.0</version> | ||
<title>Hangfire PostgreSql Storage</title> | ||
<authors>Frank Hommers and others (Burhan Irmikci (barhun), Zachary Sims(zsims), kgamecarter, Stafford Williams (staff0rd), briangweber, Viktor Svyatokha (ahydrax), Christopher Dresel (Dresel), Vytautas Kasparavičius (vytautask)</authors> | ||
<owners>frankhommers</owners> | ||
<projectUrl>http://hmm.rs/Hangfire.PostgreSql</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<licenseUrl>https://raw.github.com/frankhommers/Hangfire.PostgreSql/master/LICENSE.md</licenseUrl> | ||
<description>PostgreSql storage implementation for Hangfire (background job system for ASP.NET applications).</description> | ||
<summary>Latest build of Hangfire.PostgreSql with many fixes and new PostgreSql driver support.</summary> | ||
<copyright>Copyright © 2014-2016 Frank Hommers and others</copyright> | ||
<tags>Hangfire PostgreSql Postgres</tags> | ||
<releaseNotes> | ||
https://github.com/frankhommers/Hangfire.PostgreSql/releases | ||
1.4.0 | ||
* Compatibility with new Npgsql #33 (https://github.com/frankhommers/Hangfire.PostgreSql/issues/33) | ||
* Fixed "Could not place a lock on the resource: Lock timeout" #31 (https://github.com/frankhommers/Hangfire.PostgreSql/issues/31) | ||
</releaseNotes> | ||
<dependencies> | ||
<dependency id="Hangfire.Core" version="1.5.7" /> | ||
<dependency id="Dapper" version="1.40" /> | ||
<dependency id="Npgsql" version="3.1.3" /> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="Net45\Hangfire.PostgreSql.dll" target="lib\net45" /> | ||
<file src="Net45\Hangfire.PostgreSql.xml" target="lib\net45" /> | ||
<file src="Net45\Hangfire.PostgreSql.dll" target="lib\net452" /> | ||
<file src="Net45\Hangfire.PostgreSql.xml" target="lib\net452" /> | ||
</files> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
ce0e1e3
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should fix #31 (misstyped with "$" symbol).