Rename Quartz.Redis package to Quartz.Extensions.Redis#3053
Merged
Conversation
4 tasks
The package id Quartz.Redis is already taken on nuget.org by an unrelated v1.0.0 published before our prefix reservation existed, so the 3.x release pipeline gets HTTP 403 when trying to publish under that id. Commit cc2a646 worked around it by setting IsPackable=false; this change picks a new, available id and removes the workaround. Quartz.Extensions.Redis was chosen as an umbrella id (mirroring Quartz.Extensions.DependencyInjection / Quartz.Extensions.Hosting) so that future Redis capabilities — e.g. an actual Redis-backed job store — can ship in the same package rather than fragmenting across multiple ids. Also moves RedisSemaphore from Quartz.Impl.AdoJobStore to Quartz.Impl.Redis; the class implements ISemaphore and has no dependency on the ADO job store, so its old namespace was misleading. Integration test fixtures move along with it. The package was never published, so there are no consumers to migrate. Co-Authored-By: Claude Opus 4.7 (1M context) <[email protected]>
Cosmetic only: places Quartz.Extensions.Redis next to Quartz.Extensions.DependencyInjection so the Quartz.Extensions.* family sits contiguously. No behavioral change. Co-Authored-By: Claude Opus 4.7 (1M context) <[email protected]>
lahma
force-pushed
the
rename-redis-package-3x
branch
from
April 25, 2026 10:38
775abb8 to
22aa280
Compare
|
4 tasks
lahma
added a commit
that referenced
this pull request
Apr 25, 2026
Port of #3053 (3.x) to 4.x. The package id Quartz.Redis is already taken on nuget.org by an unrelated v1.0.0 published before our prefix reservation existed, so any attempt to publish the package fails with HTTP 403. Quartz.Extensions.Redis was chosen as an umbrella id (mirroring Quartz.Extensions.DependencyInjection / Quartz.Extensions.Hosting) so that future Redis capabilities — e.g. an actual Redis-backed job store — can ship in the same package rather than fragmenting across multiple ids. Also moves RedisSemaphore from Quartz.Impl.AdoJobStore to Quartz.Impl.Redis. The class implements ISemaphore and doesn't depend on ADO-specific types like JobStoreSupport — only on lock abstractions (ISemaphore, ITablePrefixAware, ConnectionAndTransactionHolder) that happen to live in the AdoJobStore namespace today, so the file still has a using Quartz.Impl.AdoJobStore;. Integration test fixtures move along with it. Both quartz-3.x/packages/redis.md and quartz-4.x/packages/redis.md are updated since main carries both copies of the docs. The package was never published, so there are no consumers to migrate — no compat shims, no type forwarders. Co-authored-by: Claude Opus 4.7 (1M context) <[email protected]>
This was referenced Apr 27, 2026
Merged
Closed
Closed
This was referenced May 20, 2026
This was referenced Jun 1, 2026
This was referenced Jun 8, 2026
This was referenced Jun 21, 2026
This was referenced Jun 28, 2026
This was referenced Jul 5, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Summary
Quartz.Redisis already taken on nuget.org by an unrelated v1.0.0 (published before ourQuartz.*prefix reservation existed), so the 3.x release pipeline gets HTTP 403 when trying to publish under that id. Commit cc2a646 worked around it by settingIsPackable=false; this PR picks an available id and removes the workaround.Quartz.Extensions.Redis— chosen as an umbrella id (mirroringQuartz.Extensions.DependencyInjection/Quartz.Extensions.Hosting) so that future Redis capabilities — e.g. an actual Redis-backed job store — can ship in the same package rather than fragmenting across multiple ids.RedisSemaphorefromQuartz.Impl.AdoJobStoretoQuartz.Impl.Redis. The class implementsISemaphoreand doesn't depend on ADO-specific types likeJobStoreSupport— only on lock abstractions (ISemaphore,ITablePrefixAware,ConnectionAndTransactionHolder) that happen to live in the AdoJobStore namespace today, so the file still has ausing Quartz.Impl.AdoJobStore;. Integration test fixtures move along with it.Rebased onto 3.x after #3054 merged so CI restore is no longer blocked by the OpenTelemetry NU1902.
Test plan
dotnet build Quartz.slnx -c Release— full solution clean, 0 warnings / 0 errors (after rebase on the merged vuln fix)dotnet build src/Quartz.Extensions.Redis/Quartz.Extensions.Redis.csproj -c Release— clean acrossnet462,netstandard2.0,net8.0dotnet build src/Quartz.Tests.Integration/Quartz.Tests.Integration.csproj -c Release— cleandotnet build src/Quartz.Tests.Unit/Quartz.Tests.Unit.csproj -c Release— cleandotnet pack src/Quartz.Extensions.Redis/Quartz.Extensions.Redis.csproj— producesQuartz.Extensions.Redis.<version>.nupkgwith the new id, assemblyQuartz.Extensions.Redis.dllfor all 3 TFMs, andredis.mdembedded as the package readmepr-integration-redis.yml) passes — confirms the renamed project + relocated test fixtures still wire up against a real Redis containerPre-publish prerequisite
Before tagging the next 3.x release, please confirm in the NuGet portal that the existing
Quartz.*prefix reservation coversQuartz.Extensions.*(it should, but the cc2a646 incident was caused by an unverified assumption about prefix coverage).A follow-up PR will port the same change to
main(4.x).🤖 Generated with Claude Code