Skip to content

Bump the nuget group with 15 updates - #159

Merged
christiaanderidder merged 1 commit into
mainfrom
dependabot/nuget/nuget-8a92c03cee
Apr 18, 2026
Merged

christiaanderidder merged 1 commit into
mainfrom
dependabot/nuget/nuget-8a92c03cee

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Apr 18, 2026

Copy link
Copy Markdown
Contributor

Updated Microsoft.AspNetCore.DataProtection.EntityFrameworkCore from 10.0.5 to 10.0.6.

Release notes

Sourced from Microsoft.AspNetCore.DataProtection.EntityFrameworkCore's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.AspNetCore.OpenApi from 10.0.5 to 10.0.6.

Release notes

Sourced from Microsoft.AspNetCore.OpenApi's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.EntityFrameworkCore.Design from 10.0.5 to 10.0.6.

Release notes

Sourced from Microsoft.EntityFrameworkCore.Design's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.EntityFrameworkCore.Sqlite from 10.0.5 to 10.0.6.

Release notes

Sourced from Microsoft.EntityFrameworkCore.Sqlite's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Extensions.Configuration.EnvironmentVariables from 10.0.5 to 10.0.6.

Release notes

Sourced from Microsoft.Extensions.Configuration.EnvironmentVariables's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Extensions.Configuration.Json from 10.0.5 to 10.0.6.

Release notes

Sourced from Microsoft.Extensions.Configuration.Json's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Extensions.Hosting from 10.0.5 to 10.0.6.

Release notes

Sourced from Microsoft.Extensions.Hosting's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Extensions.Hosting.Abstractions from 10.0.5 to 10.0.6.

Release notes

Sourced from Microsoft.Extensions.Hosting.Abstractions's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Extensions.Logging from 10.0.5 to 10.0.6.

Release notes

Sourced from Microsoft.Extensions.Logging's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Extensions.Logging.Console from 10.0.5 to 10.0.6.

Release notes

Sourced from Microsoft.Extensions.Logging.Console's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Extensions.Options.ConfigurationExtensions from 10.0.5 to 10.0.6.

Release notes

Sourced from Microsoft.Extensions.Options.ConfigurationExtensions's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Quartz.Extensions.Hosting from 3.17.1 to 3.18.0.

Release notes

Sourced from Quartz.Extensions.Hosting's releases.

3.18.0

Quartz.NET 3.18.0 is a major feature release with 8 new capabilities, performance improvements, and important bug fixes.

New Features

RFC 5545 RRULE recurrence trigger

Quartz.NET now supports scheduling with iCalendar recurrence rules (RFC 5545 RRULE), enabling complex patterns that cannot be expressed with cron expressions — such as "2nd Monday of every month" or "last weekday of March each year."

A custom lightweight RRULE engine (~1.5K LOC) handles all frequencies (YEARLY through SECONDLY), all BY* rules (BYDAY, BYMONTHDAY, BYSETPOS, etc.), COUNT, UNTIL, INTERVAL, and WKST. No new external dependencies. No database schema changes — uses the existing SIMPROP_TRIGGERS table.

ITrigger trigger = TriggerBuilder.Create()
    .WithIdentity("myTrigger")
    .WithRecurrenceSchedule("FREQ=MONTHLY;BYDAY=2MO", b => b
        .InTimeZone(TimeZoneInfo.FindSystemTimeZoneById("America/New_York")))
    .StartNow()
    .Build();
RRULE Pattern
FREQ=MONTHLY;BYDAY=2MO Every 2nd Monday of the month
FREQ=WEEKLY;INTERVAL=2;BYDAY=MO,WE,FR Every other week on Mon/Wed/Fri
FREQ=YEARLY;BYMONTH=3;BYDAY=MO,TU,WE,TH,FR;BYSETPOS=-1 Last weekday of March each year
FREQ=MONTHLY;BYMONTHDAY=-1 Last day of every month
FREQ=DAILY;BYDAY=MO,TU,WE,TH,FR Every weekday

(#​2990) — Closes #​1259

Execution groups for per-node thread limits

Tag triggers with an execution group to limit how many threads a category of jobs can consume concurrently on each node. This prevents resource-intensive jobs from starving lightweight work.

services.AddQuartz(q =>
{
    q.UseExecutionLimits(limits =>
    {
        limits.ForGroup("batch-jobs", maxConcurrent: 2);
        limits.ForDefaultGroup(maxConcurrent: 10);
        limits.ForOtherGroups(maxConcurrent: 5);
    });

    q.AddTrigger(t => t
        .ForJob("heavyJob")
        .WithExecutionGroup("batch-jobs")
        .WithCronSchedule("0 0/5 * * * ?"));
});

... (truncated)

Commits viewable in compare view.

Updated Scalar.AspNetCore from 2.13.22 to 2.14.1.

Release notes

Sourced from Scalar.AspNetCore's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated System.ServiceModel.Syndication from 10.0.5 to 10.0.6.

Release notes

Sourced from System.ServiceModel.Syndication's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated TUnit from 1.31.0 to 1.36.0.

Release notes

Sourced from TUnit's releases.

1.36.0

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.35.2...v1.36.0

1.35.2

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.35.0...v1.35.2

1.35.0

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.34.5...v1.35.0

1.34.5

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.34.0...v1.34.5

1.34.0

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.33.0...v1.34.0

1.33.0

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.32.0...v1.33.0

1.32.0

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.31.0...v1.32.0

Commits viewable in compare view.

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps Microsoft.AspNetCore.DataProtection.EntityFrameworkCore from 10.0.5 to 10.0.6
Bumps Microsoft.AspNetCore.OpenApi from 10.0.5 to 10.0.6
Bumps Microsoft.EntityFrameworkCore.Design from 10.0.5 to 10.0.6
Bumps Microsoft.EntityFrameworkCore.Sqlite from 10.0.5 to 10.0.6
Bumps Microsoft.Extensions.Configuration.EnvironmentVariables from 10.0.5 to 10.0.6
Bumps Microsoft.Extensions.Configuration.Json from 10.0.5 to 10.0.6
Bumps Microsoft.Extensions.Hosting from 10.0.5 to 10.0.6
Bumps Microsoft.Extensions.Hosting.Abstractions from 10.0.5 to 10.0.6
Bumps Microsoft.Extensions.Logging from 10.0.5 to 10.0.6
Bumps Microsoft.Extensions.Logging.Console from 10.0.5 to 10.0.6
Bumps Microsoft.Extensions.Options.ConfigurationExtensions from 10.0.5 to 10.0.6
Bumps Quartz.Extensions.Hosting from 3.17.1 to 3.18.0
Bumps Scalar.AspNetCore from 2.13.22 to 2.14.1
Bumps System.ServiceModel.Syndication from 10.0.5 to 10.0.6
Bumps TUnit from 1.31.0 to 1.36.0

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.DataProtection.EntityFrameworkCore
  dependency-version: 10.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Microsoft.AspNetCore.OpenApi
  dependency-version: 10.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Microsoft.EntityFrameworkCore.Design
  dependency-version: 10.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Microsoft.Extensions.Logging
  dependency-version: 10.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Microsoft.EntityFrameworkCore.Sqlite
  dependency-version: 10.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Microsoft.Extensions.Configuration.EnvironmentVariables
  dependency-version: 10.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Microsoft.Extensions.Configuration.Json
  dependency-version: 10.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Microsoft.Extensions.Hosting
  dependency-version: 10.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Microsoft.Extensions.Hosting.Abstractions
  dependency-version: 10.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Microsoft.Extensions.Logging.Console
  dependency-version: 10.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Microsoft.Extensions.Options.ConfigurationExtensions
  dependency-version: 10.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Quartz.Extensions.Hosting
  dependency-version: 3.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Scalar.AspNetCore
  dependency-version: 2.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: System.ServiceModel.Syndication
  dependency-version: 10.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: TUnit
  dependency-version: 1.36.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
...

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 18, 2026
@github-actions

Copy link
Copy Markdown
🟢 Spottarr.Tests (.NETCoreApp,Version=v10.0)

✓  Passed✘  Failed↷  Skipped∑  Total⧗  Elapsed
3838636ms
### ✅ Spottarr.Tests (.NET 10.0)

38 tests completed in 727ms100.0% passed

Tip: You can have HTML reports uploaded automatically as artifacts. Learn more


@github-actions

Copy link
Copy Markdown

Summary

Summary
Generated on: 04/18/2026 - 08:13:22
Parser: Cobertura
Assemblies: 4
Classes: 98
Files: 100
Line coverage: 34.6% (1761 of 5087)
Covered lines: 1761
Uncovered lines: 3326
Coverable lines: 5087
Total lines: 9296
Branch coverage: 30.1% (505 of 1677)
Covered branches: 505
Total branches: 1677
Method coverage: Feature is only available for sponsors
Tag: 542_24600511881

Coverage

Spottarr.Configuration - 0%
Name Line Branch
Spottarr.Configuration 0% ****
Spottarr.Configuration.Helpers.ConfigurationExtensions 0%
Spottarr.Configuration.Options.DatabaseOptions 0%
Spottarr.Configuration.Options.NewznabOptions 0%
Spottarr.Configuration.Options.SpotnetOptions 0%
Spottarr.Configuration.Options.UsenetOptions 0%
Spottarr.Configuration.ServiceCollectionExtensions 0%
Spottarr.Data - 12.5%
Name Line Branch
Spottarr.Data 12.5% 0%
Spottarr.Data.Entities.Spot 100%
Spottarr.Data.Helpers.DatabaseFacadeExtensions 0%
Spottarr.Data.Helpers.DateConverters 0%
Spottarr.Data.Helpers.DbContextOptionsBuilderExtensions 0% 0%
Spottarr.Data.Helpers.DbPathHelper 0% 0%
Spottarr.Data.Helpers.HostExtensions 0%
Spottarr.Data.Logging.LoggerExtensions 0% 0%
Spottarr.Data.ServiceCollectionExtensions 0%
Spottarr.Data.SpottarrDbContext 0% 0%
Spottarr.Services - 46.4%
Name Line Branch
Spottarr.Services 46.4% 41.4%
Spottarr.Services.ApplicationVersionService 0% 0%
Spottarr.Services.DatabaseMaintenanceService 0%
Spottarr.Services.Helpers.CollectionExtensions 0% 0%
Spottarr.Services.Helpers.HostEnvironmentExtensions 0%
Spottarr.Services.Helpers.SpotExtensions 0% 0%
Spottarr.Services.Helpers.StringEnumerableReader 96.2% 88.8%
Spottarr.Services.Helpers.StringExtensions 0%
Spottarr.Services.Helpers.XmlWriterExtensions 0% 0%
Spottarr.Services.Jobs.CleanUpSpotsJob 0%
Spottarr.Services.Jobs.ImportSpotsJob 0%
Spottarr.Services.Jobs.JobKeys 0%
Spottarr.Services.Jobs.JobsServiceCollectionExtensions 0% 0%
Spottarr.Services.Jobs.ServiceCollectionQuartzConfiguratorExtensions 0%
Spottarr.Services.Jobs.ServiceCollectionQuartzConfiguratorExtensions 0%
Spottarr.Services.Jobs.TriggerConfiguratorExtensions 0% 0%
Spottarr.Services.Logging.LoggerExtensions 0% 0%
Spottarr.Services.Models.SpotSearchFilter 0%
Spottarr.Services.Newznab.NewznabCategoryMapper 0% 0%
Spottarr.Services.Nntp.NntpArticleRangeFactory 100% 100%
Spottarr.Services.Parsers.BbCodeParser 100% 100%
Spottarr.Services.Parsers.HeaderDateParser 60% 50%
Spottarr.Services.Parsers.ImdbIdParser 85.7% 75%
Spottarr.Services.Parsers.NntpHeaderParser 95.8% 62.5%
Spottarr.Services.Parsers.NzbArticleParser 0%
Spottarr.Services.Parsers.ParserResult 100% 50%
Spottarr.Services.Parsers.QueryExclusionParser 78.5% 77.2%
Spottarr.Services.Parsers.ReleaseTitleParser 100% 75%
Spottarr.Services.Parsers.SpotnetHeaderParser 100% 80%
Spottarr.Services.Parsers.SpotnetXmlParser 88% 100%
Spottarr.Services.Parsers.YearEpisodeSeasonParser 100% 94.4%
Spottarr.Services.ServiceCollectionExtensions 0% 0%
Spottarr.Services.Spotnet.Category 100% 100%
Spottarr.Services.Spotnet.ImageSegment 91.3% 75%
Spottarr.Services.Spotnet.NzbSegment 100% 100%
Spottarr.Services.Spotnet.Posting 100% 100%
Spottarr.Services.Spotnet.SpotHeaderExtensions 0% 0%
Spottarr.Services.Spotnet.SpotnetArticleNumberService 0% 0%
Spottarr.Services.Spotnet.SpotnetAttachmentService 0% 0%
Spottarr.Services.Spotnet.SpotnetSpotService 0% 0%
Spottarr.Services.Spotnet.SpotnetXml 100%
Spottarr.Services.Spotnet.SpotnetXmlCleaner 72.2% 42.8%
Spottarr.Services.Spots.SpotCleanUpService 0% 0%
Spottarr.Services.Spots.SpotImportService 0% 0%
Spottarr.Services.Spots.SpotReIndexingService 0% 0%
Spottarr.Services.Spots.SpotSearchService 0% 0%
System.Text.RegularExpressions.Generated 83% 67.5%
Spottarr.Web - 8.4%
Name Line Branch
Spottarr.Web 8.4% 2.6%
Microsoft.AspNetCore.OpenApi.Generated 0% 0%
Program 0%
Spottarr.Web.Auth.NewznabAuthenticationHandler 0% 0%
Spottarr.Web.EndpointResults.HtmlResult 0%
Spottarr.Web.EndpointResults.NewznabRssResult 0%
Spottarr.Web.EndpointResults.XmlResult 0%
Spottarr.Web.Endpoints.HtmxEndpoints 0% 0%
Spottarr.Web.Endpoints.NewznabEndpoints 0% 0%
Spottarr.Web.Helpers.AuthenticationBuilderExtensions 0%
Spottarr.Web.Helpers.ConfigurationManagerExtensions 0% 0%
Spottarr.Web.Helpers.EnumExtensions 0% 0%
Spottarr.Web.Helpers.EnumExtensions 0% 0%
Spottarr.Web.Helpers.HttpResponseExtensions 0%
Spottarr.Web.Helpers.NewznabHttpRequestExtensions 0%
Spottarr.Web.Helpers.NewznabOperationTransformer 0% 0%
Spottarr.Web.Helpers.SpottarrJsonSerializerContext 0% 0%
Spottarr.Web.Helpers.StringExtensions 100% 100%
Spottarr.Web.Helpers.WriteableQueryCollection 0% 0%
Spottarr.Web.Logging.LoggerExtensions 0% 0%
Spottarr.Web.Logging.LoggingBuilderExtensions 0% 0%
Spottarr.Web.Middlewares.NewznabQueryActionMiddleware 0% 0%
Spottarr.Web.Newznab.CapabilitiesHelper 0% 0%
Spottarr.Web.Newznab.Models.Capabilities 0%
Spottarr.Web.Newznab.Models.Category 0%
Spottarr.Web.Newznab.Models.Error 0%
Spottarr.Web.Newznab.Models.Limits 0%
Spottarr.Web.Newznab.Models.MainCategory 0%
Spottarr.Web.Newznab.Models.Registration 0%
Spottarr.Web.Newznab.Models.Search 0%
Spottarr.Web.Newznab.Models.Searching 0%
Spottarr.Web.Newznab.Models.ServerInfo 0%
Spottarr.Web.Newznab.NewznabMapper 24.3% 7.9%
Spottarr.Web.Newznab.NewznabRssSerializer 100%
Spottarr.Web.Newznab.SyndicationFeedExtensions 87.3% 62.5%
Spottarr.Web.ServiceCollectionExtensions 0% 0%
System.Runtime.CompilerServices 0%
System.Text.RegularExpressions.Generated 0% 0%

@christiaanderidder
christiaanderidder merged commit ff4e2c9 into main Apr 18, 2026
2 checks passed
@christiaanderidder
christiaanderidder deleted the dependabot/nuget/nuget-8a92c03cee branch April 18, 2026 08:40
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.

1 participant