build: Bump the nuget-other group with 5 updates#280
Closed
dependabot[bot] wants to merge 1 commit intomainfrom
Closed
build: Bump the nuget-other group with 5 updates#280dependabot[bot] wants to merge 1 commit intomainfrom
dependabot[bot] wants to merge 1 commit intomainfrom
Conversation
Bumps FastEndpoints from 8.0.1 to 8.1.0 Bumps Quartz.Extensions.Hosting from 3.16.1 to 3.17.1 Bumps Scalar.AspNetCore from 2.13.8 to 2.13.21 Bumps TUnit from 1.19.22 to 1.30.8 Bumps TUnit.Assertions from 1.19.22 to 1.30.8 --- updated-dependencies: - dependency-name: FastEndpoints dependency-version: 8.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-other - dependency-name: Quartz.Extensions.Hosting dependency-version: 3.17.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-other - dependency-name: Scalar.AspNetCore dependency-version: 2.13.21 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-other - dependency-name: TUnit dependency-version: 1.30.8 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-other - dependency-name: TUnit.Assertions dependency-version: 1.30.8 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-other ... Signed-off-by: dependabot[bot] <support@github.com>
NAUR Ecosystem CI ReportUpdated: Friday, April 10, 2026 at 11:26 PM PDT Global Validation
Service Validation Dashboard
Failure & Warning Details✅ No failures or warnings detected. Generated by NAUR CI Bot | View Run |
Contributor
Author
|
Looks like these dependencies are updatable in another way, so this is no longer needed. |
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.
Updated FastEndpoints from 8.0.1 to 8.1.0.
Release notes
Sourced from FastEndpoints's releases.
8.1
Due to low financial backing by the community, FastEndpoints will soon be going into "Bugfix Only" mode until the situation improves. Please join the discussion here and help out if you can.
New 🎉
Dual mode testing support for 'AppFixture'
You can now use the same app fixture (without any conditional code in your tests) to run WAF based tests during regular development, and run smoke tests against a native aot build during a CI/CD pipeline run by simply doing
dotnet test MyTestProject.csproj -p:NativeAotTestMode=truein the pipeline. This way you are able to have a faster feedback loop during development and also verify that everything works the same once the app is built with native aot by running the same set of tests against the aot build without any special handling in your code. See the documentation here.Fluent generics support for serializer context generator
The STJ serializer context generator now supports endpoints defined with fluent generics.
Referenced project + Nuget package support for the serializer context generator
The generated serializer context will now have
JsonSerializableattributes for request and response DTOs from referenced source projects as well as Nuget packages. Previously the generator was only capable of generating attributes for DTOs from the current project directory.Ability to configure a pre-determined list of "known subscribers" for remote event queues
Remote event subscribers can now supply an explicit
subscriberIDinstead of relying on the auto generated client identity, and event hubs can be configured with a known list of subscriber IDs to begin queuing events for them from app startup onward. Known subscriber pre-seeding does not affect round-robin mode, which still delivers only to currently connected subscribers.Fixes 🪲
Stack overflow issue with .NET 8 and 9
A stack overflow exception was being thrown in .NET 8/9 due to cyclical calls in TypeInfoResolver, which .NET 10 has solved. We've added a workaround to prevent this from happening.
Serializer context generator was skipping collection DTO types
The serializer context generator tool was not creating
JsonSerializableattributes for request and response DTO types if they were collection types such asList<Request>,IEnumerable<Response>, etc.... (truncated)
Commits viewable in compare view.
Updated Quartz.Extensions.Hosting from 3.16.1 to 3.17.1.
Release notes
Sourced from Quartz.Extensions.Hosting's releases.
3.17.1
Highlights
Jenkins-style H (hash) token for cron expressions
Quartz.NET now supports the
H(hash) token in cron expressions, inspired by Jenkins. TheHtoken resolves to a deterministic value based on the trigger's identity, spreading job execution times to avoid the thundering herd problem when many triggers share the same schedule.Supported forms:
H,H(min-max),H/step,H(min-max)/stepThe hash seed is automatically derived from the trigger's identity (name + group) when using
TriggerBuilder, or can be provided explicitly. See the cron trigger documentation for full details.Structured logging history plugins
New
StructuredLoggingJobHistoryPluginandStructuredLoggingTriggerHistoryPluginprovide first-class support for structured logging frameworks like Serilog and NLog. Unlike the existing logging plugins that use index-based format placeholders ({0},{1}), these use named MEL-style message template parameters ({JobName},{TriggerGroup}, etc.), making log output queryable in structured logging sinks and avoiding template cache memory leaks.Message templates are fully configurable via standard Quartz property configuration.
Bug Fixes
updateTriggers: trueno longer resets paused triggers back to normal state. (#2968)/_blazorendpoint conflict — The Quartz Dashboard no longer conflicts with host applications that also use Blazor. (#2975)Full Changelog: quartznet/quartznet@v3.17.0...v3.17.1
3.17.0
This is a major bug-fix release with 40+ fixes spanning trigger state management, clustering reliability, DST handling, misfire accuracy, and scheduler lifecycle. An optional database schema migration improves misfire handling.
Highlights
Optional database migration:
MISFIRE_ORIG_FIRE_TIMEcolumnA new optional column
MISFIRE_ORIG_FIRE_TIMEonQRTZ_TRIGGERSenables correctScheduledFireTimeUtcfor misfired triggers when using "fire now" misfire policies. Without it,ScheduledFireTimeUtcequalsFireTimeUtcfor misfired triggers (the pre-existing behavior). RAMJobStore does not require this migration.Migration script:
database/schema_30_add_misfire_orig_fire_time.sql(covers SQL Server, PostgreSQL, MySQL, SQLite, Oracle, Firebird)Clustering and concurrency fixes
DisallowConcurrentExecutionjobs running simultaneously in cluster (#2697)DisallowConcurrentExecutionviolation (#2915)DisallowConcurrentExecutionjobs (#2822)FIRED_TRIGGERSnot cleaned up on job deletion mid-execution (#1696)Trigger state and fire time accuracy
GetTriggerStatereturning Complete instead of Blocked for executing triggers (#2255)RAMJobStore.TriggersFiredskipping triggers causing wrong trigger/job execution (#1386)ScheduledFireTimeUtcreturning wrong value after misfire (#2899)PreviousFireTimeUtcreset to null on restart withOverWriteExistingData=true(#1834)SimpleTriggerfirst fire time wrong when created long before scheduling (#2455)CronTriggerdouble-firing when rescheduled with oldStartTimeUtc(#2909)JobData(#2083)DoNothingmisfire policy skipping fire times within threshold (#2912)DST and time handling
DailyTimeIntervalTriggerextra fire during DST fall-back (#2917)DailyTimeIntervalTriggermutatingStartTimeUtcduring fire time computation (#2906)DailyTimeIntervalTriggerRepeatCountto apply per day (#1633)ComputeFireTimesBetweenmodifying trigger StartTimeUtc (#2722)Scheduler lifecycle and threading
Monitor.Waitwith asyncSemaphoreSlim(#2877)DedicatedThreadPoolthreads leaking on scheduler shutdown (#1357)Job execution
RefireImmediatelywithJobChainingJobListenerfiring chain prematurely (#663)AsyncLocalflow fromIJobFactory.NewJobtoIJob.Execute(#1528)IJobDetailproperty toJobExecutionException(#1442)... (truncated)
Commits viewable in compare view.
Updated Scalar.AspNetCore from 2.13.8 to 2.13.21.
Release notes
Sourced from Scalar.AspNetCore's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated TUnit from 1.19.22 to 1.30.8.
Release notes
Sourced from TUnit's releases.
1.30.8
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.30.0...v1.30.8
1.30.0
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.29.0...v1.30.0
1.29.0
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.28.7...v1.29.0
1.28.7
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.28.5...v1.28.7
1.28.5
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.28.0...v1.28.5
1.28.0
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.27.0...v1.28.0
1.27.0
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.25.0...v1.27.0
1.25.0
What's Changed
Other Changes
defaultconstraint on explicit interface implementations with unconstrained generics by @thomhurst in Fix missingdefaultconstraint on explicit interface implementations with unconstrained generics thomhurst/TUnit#5363Dependencies
Full Changelog: thomhurst/TUnit@v1.24.31...v1.25.0
1.24.31
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.24.18...v1.24.31
1.24.18
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.24.13...v1.24.18
1.24.13
What's Changed
Other Changes
UseTestingPlatformProtocolreference for vscode by @erwinkramer in Remove defunctUseTestingPlatformProtocolreference for vscode thomhurst/TUnit#5328Dependencies
New Contributors
UseTestingPlatformProtocolreference for vscode thomhurst/TUnit#5328Full Changelog: thomhurst/TUnit@v1.24.0...v1.24.13
1.24.0
What's Changed
Other Changes
Dependencies
New Contributors
Full Changelog: thomhurst/TUnit@v1.23.7...v1.24.0
1.23.7
What's Changed
Other Changes
Dependencies
New Contributors
Full Changelog: thomhurst/TUnit@v1.22.19...v1.23.7
1.22.19
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.22.6...v1.22.19
1.22.6
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.22.3...v1.22.6
1.22.3
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.22.0...v1.22.3
1.22.0
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.21.30...v1.22.0
1.21.30
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.21.24...v1.21.30
1.21.24
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.21.20...v1.21.24
1.21.20
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.21.6...v1.21.20
1.21.6
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.21.0...v1.21.6
1.21.0
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.20.0...v1.21.0
1.20.0
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.19.74...v1.20.0
1.19.74
What's Changed
Other Changes
Dependencies
New Contributors
Full Changelog: thomhurst/TUnit@v1.19.57...v1.19.74
1.19.57
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.19.22...v1.19.57
Commits viewable in compare view.
Updated TUnit.Assertions from 1.19.22 to 1.30.8.
Release notes
Sourced from TUnit.Assertions's releases.
1.30.8
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.30.0...v1.30.8
1.30.0
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.29.0...v1.30.0
1.29.0
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.28.7...v1.29.0
1.28.7
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.28.5...v1.28.7
1.28.5
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.28.0...v1.28.5
1.28.0
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.27.0...v1.28.0
1.27.0
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.25.0...v1.27.0
1.25.0
What's Changed
Other Changes
defaultconstraint on explicit interface implementations with unconstrained generics by @thomhurst in Fix missingdefaultconstraint on explicit interface implementations with unconstrained generics thomhurst/TUnit#5363Dependencies
Full Changelog: thomhurst/TUnit@v1.24.31...v1.25.0
1.24.31
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.24.18...v1.24.31
1.24.18
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.24.13...v1.24.18
1.24.13
What's Changed
Other Changes
UseTestingPlatformProtocolreference for vscode by @erwinkramer in Remove defunctUseTestingPlatformProtocolreference for vscode thomhurst/TUnit#5328Dependencies
New Contributors
UseTestingPlatformProtocolreference for vscode thomhurst/TUnit#5328Full Changelog: thomhurst/TUnit@v1.24.0...v1.24.13
1.24.0
What's Changed
Other Changes
Dependencies
New Contributors
Full Changelog: thomhurst/TUnit@v1.23.7...v1.24.0
1.23.7
What's Changed
Other Changes
Dependencies
New Contributors
Full Changelog: thomhurst/TUnit@v1.22.19...v1.23.7
1.22.19
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.22.6...v1.22.19
1.22.6
What's Changed
Other Changes
Dependencies
Full Changelog: thomhurst/TUnit@v1.22.3...v1.22.6
1.22.3
What's Changed
Other Changes
Dependencies
Full Changelog: https://github.com/thomhurst/T...
...
Description has been truncated