Skip to content

build: Bump the nuget-other group with 5 updates#280

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/nuget/nuget-other-5132e21030
Closed

build: Bump the nuget-other group with 5 updates#280
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/nuget/nuget-other-5132e21030

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 10, 2026

Updated FastEndpoints from 8.0.1 to 8.1.0.

Release notes

Sourced from FastEndpoints's releases.

8.1


⚠️ Sponsorship Level Critically Low ⚠️

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=true in 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 JsonSerializable attributes 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 subscriberID instead 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 JsonSerializable attributes for request and response DTO types if they were collection types such as List<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. The H token 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)/step

// Runs at a consistent but spread-out minute each hour
trigger = TriggerBuilder.Create()
    .WithIdentity("myTrigger", "myGroup")
    .WithCronSchedule("0 H * * * ?")
    .Build();

// Runs every 15 minutes, starting at a hash-determined offset
trigger = TriggerBuilder.Create()
    .WithIdentity("myTrigger", "myGroup")
    .WithCronSchedule("0 H/15 * * * ?")
    .Build();

The 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 StructuredLoggingJobHistoryPlugin and StructuredLoggingTriggerHistoryPlugin provide 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.

quartz.plugin.jobHistory.type = Quartz.Plugin.History.StructuredLoggingJobHistoryPlugin, Quartz.Plugins
quartz.plugin.triggerHistory.type = Quartz.Plugin.History.StructuredLoggingTriggerHistoryPlugin, Quartz.Plugins

Message templates are fully configurable via standard Quartz property configuration.

Bug Fixes

  • Fix triggers getting permanently stuck in ACQUIRED state — Triggers could become permanently stuck if the scheduler crashed or was killed between acquiring a trigger and firing it. (#​2980)
  • Fix StoreCalendar overriding paused trigger state — Storing a calendar with updateTriggers: true no longer resets paused triggers back to normal state. (#​2968)
  • Fix DoCheckin not retrying transient database errors — Cluster checkin now properly retries on transient database failures instead of silently failing. (#​2970)
  • Fix Dashboard /_blazor endpoint conflict — The Quartz Dashboard no longer conflicts with host applications that also use Blazor. (#​2975)
  • Fix spurious ERROR log on zombie transaction rollback — Rolling back a zombie transaction no longer logs a misleading ERROR. (#​2978)

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_TIME column

A new optional column MISFIRE_ORIG_FIRE_TIME on QRTZ_TRIGGERS enables correct ScheduledFireTimeUtc for misfired triggers when using "fire now" misfire policies. Without it, ScheduledFireTimeUtc equals FireTimeUtc for 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

  • Fix DisallowConcurrentExecution jobs running simultaneously in cluster (#​2697)
  • Fix false cluster recovery causing DisallowConcurrentExecution violation (#​2915)
  • Fix triggers stuck in BLOCKED state for DisallowConcurrentExecution jobs (#​2822)
  • Fix FIRED_TRIGGERS not cleaned up on job deletion mid-execution (#​1696)
  • Handle transient database exceptions (deadlocks) with automatic retry (#​2883, #​2952)
  • Fix PostgreSQL transaction abort error on lock contention (#​2884)
  • Fix SQLite "database is locked" errors with dedicated semaphore (#​2323)
  • Add MySQL FORCE INDEX hints for slow trigger acquisition queries (#​547)

Trigger state and fire time accuracy

  • Fix GetTriggerState returning Complete instead of Blocked for executing triggers (#​2255)
  • Fix RAMJobStore.TriggersFired skipping triggers causing wrong trigger/job execution (#​1386)
  • Fix ScheduledFireTimeUtc returning wrong value after misfire (#​2899)
  • Fix PreviousFireTimeUtc reset to null on restart with OverWriteExistingData=true (#​1834)
  • Fix SimpleTrigger first fire time wrong when created long before scheduling (#​2455)
  • Fix CronTrigger double-firing when rescheduled with old StartTimeUtc (#​2909)
  • Fix recovery trigger missing original JobData (#​2083)
  • Fix misfired blocked triggers not being deleted from database (#​1646)
  • Fix DoNothing misfire policy skipping fire times within threshold (#​2912)

DST and time handling

  • Fix DailyTimeIntervalTrigger extra fire during DST fall-back (#​2917)
  • Fix DailyTimeIntervalTrigger mutating StartTimeUtc during fire time computation (#​2906)
  • Fix DailyTimeIntervalTrigger RepeatCount to apply per day (#​1633)
  • Fix scheduler thread stuck after system clock jumps backward (#​1508)
  • Fix ComputeFireTimesBetween modifying trigger StartTimeUtc (#​2722)

Scheduler lifecycle and threading

  • Fix scheduler hang on shutdown: replace Monitor.Wait with async SemaphoreSlim (#​2877)
  • Fix shutdown deadlock (#​2830)
  • Release acquired triggers on shutdown instead of leaking them (#​2881)
  • Fix DedicatedThreadPool threads leaking on scheduler shutdown (#​1357)
  • Use dedicated thread for scheduler loop to prevent missed triggers under high CPU (#​781)

Job execution

  • Fix RefireImmediately with JobChainingJobListener firing chain prematurely (#​663)
  • Fix AsyncLocal flow from IJobFactory.NewJob to IJob.Execute (#​1528)
  • Add IJobDetail property to JobExecutionException (#​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

Dependencies

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

Dependencies

New Contributors

Full 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

Dependencies

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

Dependencies

New Contributors

Full 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

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>
@dependabot dependabot bot added .NET Pull requests that update .NET code dependencies Pull requests that update a dependency file labels Apr 10, 2026
@github-actions
Copy link
Copy Markdown

github-actions bot commented Apr 10, 2026

NAUR Ecosystem CI Report

Updated: Friday, April 10, 2026 at 11:26 PM PDT

Global Validation

  • Ticket Check: Skipped

Service Validation Dashboard

ServiceLintFormatBuildUnit TestStatus

Failure & Warning Details

No failures or warnings detected.


Generated by NAUR CI Bot | View Run

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Apr 11, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Apr 11, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file .NET Pull requests that update .NET code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants