Update all non-major dependencies - #66

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/all-minor-patch
Open

Update all non-major dependencies#66
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/all-minor-patch

Conversation

@renovate

@renovaterenovateBot commented Nov 11, 2024

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

PackageChangeAgeAdoptionPassingConfidenceTypeUpdate
AWSSDK.S34.0.18.74.0.102.4ageadoptionpassingconfidencenugetpatch
ErrorOr2.0.12.1.1ageadoptionpassingconfidencenugetminor
FastEndpoints (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Generator (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Security (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Swagger (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Testing (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
HtmlSanitizer9.0.8929.2.1039ageadoptionpassingconfidencenugetminor
Microsoft.AspNetCore.Authentication.JwtBearer (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.AspNetCore.Identity.EntityFrameworkCore (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.AspNetCore.OpenApi (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.AspNetCore.OutputCaching.StackExchangeRedis (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.EntityFrameworkCore.InMemory (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.EntityFrameworkCore.Tools (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.Extensions.Caching.Hybrid (source)10.3.010.9.0ageadoptionpassingconfidencenugetminor
Microsoft.Extensions.Caching.StackExchangeRedis (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.Extensions.Http.Resilience (source)10.3.010.9.0ageadoptionpassingconfidencenugetminor
Microsoft.Extensions.TimeProvider.Testing (source)10.3.010.9.0ageadoptionpassingconfidencenugetminor
Microsoft.NET.Test.Sdk18.3.018.9.0ageadoptionpassingconfidencenugetminor
MinecraftRenderer0.4.20.9.0ageadoptionpassingconfidencenugetminor
Npgsql10.0.110.0.3ageadoptionpassingconfidencenugetpatch
Npgsql.EntityFrameworkCore.PostgreSQL10.0.010.0.3ageadoptionpassingconfidencenugetpatch
OpenTelemetry.Extensions.Hosting (source)1.15.01.18.0ageadoptionpassingconfidencenugetminor
Pyroscope (source)0.14.10.15.0ageadoptionpassingconfidencenugetminor
Pyroscope.OpenTelemetry (source)0.4.00.5.1ageadoptionpassingconfidencenugetminor
Quartz.Extensions.Hosting (source)3.16.13.20.0ageadoptionpassingconfidencenugetminor
Refit10.0.110.2.0ageadoptionpassingconfidencenugetminor
Refit.HttpClientFactory10.0.110.2.0ageadoptionpassingconfidencenugetminor
Scalar.AspNetCore (source)2.13.12.17.2ageadoptionpassingconfidencenugetminor
SkyblockRepo0.4.30.5.2ageadoptionpassingconfidencenugetminor
StackExchange.Redis (source)2.11.82.13.17ageadoptionpassingconfidencenugetminor
Swashbuckle.AspNetCore10.1.410.2.3ageadoptionpassingconfidencenugetminor
Swashbuckle.AspNetCore.Annotations10.1.410.2.3ageadoptionpassingconfidencenugetminor
System.Linq.Async7.0.07.0.1ageadoptionpassingconfidencenugetpatch
System.Threading.RateLimiting (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Testcontainers.PostgreSql (source)4.10.04.14.0ageadoptionpassingconfidencenugetminor
ZLinq1.5.51.5.6ageadoptionpassingconfidencenugetpatch
coverlet.collector8.0.08.0.1ageadoptionpassingconfidencenugetpatch
dotnet-ef (source)10.0.110.0.11ageadoptionpassingconfidencenugetpatch
prom/prometheusv3.5.0v3.14.0ageadoptionpassingconfidenceminor
pyroscope/pyroscope-dotnet0.13.0-glibc0.14.5-glibcageadoptionpassingconfidencestageminor
redis (source)8.4-alpine8.10-alpineageadoptionpassingconfidenceminor

Release Notes

aws/aws-sdk-net (AWSSDK.S3)

v4.0.102

v4.0.101

v4.0.100

v4.0.25

v4.0.24

v4.0.23

v4.0.22

v4.0.21

v4.0.20

v4.0.19

error-or/error-or (ErrorOr)

v2.1.1

Added
  • #​94, #​95 Added missing async versions of FailIf methods

    publicasyncTask<ErrorOr<TValue>>FailIfAsync(Func<TValue,Task<bool>>onValue,Errorerror)
    publicstaticasyncTask<ErrorOr<TValue>>FailIf<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,bool>onValue,Errorerror)
    publicstaticasyncTask<ErrorOr<TValue>>FailIfAsync<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,Task<bool>>onValue,Errorerror)
  • #​104 Support for .NET 8 was added

  • #​109, #​111 Added FailIf method overloads that allow to use value in error definition using Func<TValue, Error> error builder

    publicErrorOr<TValue>FailIf(Func<TValue,bool>onValue,Func<TValue,Error>errorBuilder)
    publicasyncTask<ErrorOr<TValue>>FailIfAsync(Func<TValue,Task<bool>>onValue,Func<TValue,Task<Error>>errorBuilder)
    publicstaticasyncTask<ErrorOr<TValue>>FailIf<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,bool>onValue,Func<TValue,Error>errorBuilder)
    publicstaticasyncTask<ErrorOr<TValue>>FailIfAsync<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,Task<bool>>onValue,Func<TValue,Task<Error>>errorBuilder)

    Value can now be used to build the error:

    ErrorOr<int>result=errorOrInt.FailIf(num =>num>3,(num)=>Error.Failure(description:$"{num} is greater than 3"));
  • #​117 Added ElseDo and ElseDoAsync methods

    Actions returning no result can now be called when IsError is true.

    ErrorOr<string>foo=result.Else(errors =>Error.Unexpected()).ElseDo(error =>Console.WriteLine(error.FirstError.Description));
    ErrorOr<string>foo=awaitresult.ElseDoAsync(HandleErrorAsync);
  • #​122 Added ToErrorOrAsync method

    Values in Task can now be easily converted to ErrorOr.

    ErrorOr<int>result=awaitTask.FromResult(5).ToErrorOrAsync();
  • #​129 Added missing ErrorOrFactory.From methods

    Now following calls from README.md are available

    ErrorOr<int>result=ErrorOrFactory.From<int>(Error.Unexpected());ErrorOr<int>result=ErrorOrFactory.From<int>([Error.Validation(),Error.Validation()]);

    Following call is now obsolete

    ErrorOr<int>errorOrPerson=ErrorOr<int>.From([Error.Validation(),Error.Validation()]);
  • #​133 Added missing collection expression support

    Now following call from README.md is available

    ErrorOr<int>result=[Error.Validation(),Error.Validation()];
  • #​134 Added FromAsync and missing ToErrorOrAsync methods

    Added support for FromAsync methods.

    publicasyncTak<ErrorOr<int>>GetValueAsync(){returnawaitErrorOrFactory.FromAsync(5);}
    publicasyncTak<ErrorOr<int>>SingleErrorToErrorOrAsync(){returnawaitErrorOrFactory.FromAsync<int>(Error.Unexpected());}
    publicasyncTak<ErrorOr<int>>MultipleErrorsToErrorOrAsync(){returnawaitErrorOrFactory.FromAsync([Error.Validation(description:"Invalid Name"),Error.Validation(description:"Invalid Last Name")]);}

    Added support for ToErrorOrAsync methods from errors:

    Task<Error>errorTask=Task.FromResult(Error.Validation());ErrorOr<int>result=errorTask.ToErrorOrAsync<int>();
    List<Error>errors=[Error.Unauthorized(),Error.Validation()];Task<List<Error>>errorsTask=Task.FromResult(errors);ErrorOr<int>result=awaiterrorsTask.ToErrorOrAsync<int>();
  • #​149 Added Else/ElseAsync overloads returning ErrorOr

  • #​152 Added ThenEnsure and ThenEnsureAsync methods.

    They are similar to ThenDo and ThenDoAsync, but they receive a function that can return errors.
    If no errors are returned, the original value is preserved and the ensure function's success value is ignored.

  • #​159 Added IsSuccess property to ErrorOr

  • #​158 Added support for serialization via IErrorOr interface without direct access to Value property. The IRecordable base interface provides a way to obtain a serialized representation of the current state.

    voidLog(IErrorOrresult){Console.WriteLine(result.GetRecording(serializer));}

    IRecordingSerializer<TOutput> interface can be implemented to provide concrete serialization strategy, for exaple JSON serialization:

    usingSystem.Text.Json;usingSystem.Text.Json.Serialization;usingErrorOr;publicclassSystemTextJsonRecordingSerializer:IRecordingSerializer<string>{privatestaticreadonlyJsonSerializerOptionsJsonOptions=new(){WriteIndented=true,Converters={newJsonStringEnumConverter()},DefaultIgnoreCondition=JsonIgnoreCondition.Never,};publicstringSerializeValue<TValue>(TValuevalue)=>JsonSerializer.Serialize(value,JsonOptions);publicstringSerializeErrors(List<Error>errors)=>JsonSerializer.Serialize(errors,JsonOptions);}
  • #​179 Support for .NET 10 was added

Fixed
  • #​85, #​97ErrorOr turned into Value Object by reimplementing Equals and GetHashCode methods

    New dependency was introduced to Microsoft.Bcl.HashCode and development dependency was introduced to Nullable

  • #​178 Initializing ErrorOr<T> with empty or null error collection results with unexpected error.

Optimized
  • #​98, #​99 Memory consumption optimized by moving static empty errors lists from generic struct into non-generic class
Refactored
  • #​154 Modernized NuGet publish workflow
mganss/HtmlSanitizer (HtmlSanitizer)

v9.2.1039: 9.2.1039

Fix attribute bypass in SanitizeDom(string) wrapper elements

v9.2.995: 9.2.995

  • AngleSharp dependency updated from 1.7.0 to 1.7.1 (4515e1f)
  • Sanitization enhancements for URI attributes
    • Added cite and longdesc attributes to URL sanitization (e47862e)
    • Enhanced sanitization of srcdoc content and attributes holding URI lists (edb2633)
  • CSS/style handling improvements
    • Added sanitization of CSS declarations in style elements with type="" attribute (0592f1e)
    • Fixed sanitization of CSS @font-face and @import at-rules (1d33413)
  • Bug fixes
  • Test improvements
    • Refactored test suite for style element sanitization (0592f1e)
    • Improved performance of ThreadTest (0ab33ba)
  • Documentation
    • Added XML code usage examples for HtmlSanitizerOptions properties (#​632)

v9.1.982: 9.1.982

Fix multiple enumeration of URLs (fixes #​625)

v9.1.981: 9.1.981

Update NuGet packages

v9.1.974: 9.1.974

Add FilterCssRule event (fixes #​622)

v9.1.973: 9.1.973

Update to AngleSharp 1.6.0 and AngleSharp.Css 1.0.0

dotnet/dotnet (Microsoft.AspNetCore.Authentication.JwtBearer)

v10.0.11

v10.0.10

v10.0.9

v10.0.8

v10.0.7

v10.0.6

v10.0.5

v10.0.4

dotnet/extensions (Microsoft.Extensions.Caching.Hybrid)

v10.9.0

Version 10.9.0 is headlined by changes in these areas:

  • AI: New experimental routing APIs center on the abstract RoutingChatClient base class, with SemanticRoutingChatClient as a concrete semantic-routing implementation. Separately, the abstract FailoverChatClient specialization and its concrete OrderedFailoverChatClient implementation add failover routing.
  • AI Evaluation: The generated report gains redesigned Overview, Cases, History, and Comparison views.
  • ASP.NET Core and HTTP diagnostics: The release adds HTTP request latency log enrichment and fixes configuration binding, response-body logging, request-path redaction, and resilience package version handling.
  • Source-generated logging and service discovery: Fixes cover classification type qualification, thread-local state cleanup, and DNS query suffix handling.

Experimental API Changes

New Experimental APIs
  • New experimental API: HTTP request latency log enrichment (EXTEXP0013) #​7602
  • New experimental API: Chat client routing and failover (MEAI001) #​7662

What's Changed

AI (Microsoft.Extensions.AI, Microsoft.Extensions.AI.Abstractions, and Microsoft.Extensions.AI.OpenAI)

Note: Microsoft.Extensions.AI.OpenAI constrains its dependency for OpenAI to 2.12.x, preventing OpenAI updates to 2.13.0+ due to an incompatibility. We expect to release Microsoft.Extensions.AI.OpenAI version 10.9.1 during the week of August 17 to address this issue.

HTTP Resilience and Diagnostics (Microsoft.Extensions.Http.Resilience and Microsoft.Extensions.Http.Diagnostics)
ASP.NET Core Extensions (Microsoft.AspNetCore.Diagnostics.Middleware)
Logging Source Generator (Microsoft.Gen.Logging)
AI Evaluation (Microsoft.Extensions.AI.Evaluation.Reporting)
Project Templates (Microsoft.McpServer.ProjectTemplates)

Note: The MCP server project template was migrated to the dotnet/aspnetcore repository, and it is now included in the .NET 10 and .NET 11 SDKs.

Service Discovery (Microsoft.Extensions.ServiceDiscovery.Dns)

Test Improvements

Repository Infrastructure Updates

  • [main] Update dependencies from dotnet/arcade #​7621
  • Merge release/10.8 into main #​7632 by @​jeffhandley (co-authored by @​jozkee@​Copilot)
  • Add agentic workflows that keep Microsoft.Extensions.AI aligned with OpenTelemetry GenAI semantic-conventions #​7611 by @​jeffhandley (co-authored by @​Copilot)
  • Bump brace-expansion, eslint and tfx-cli in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript #​7648
  • Add a release-manager agent for the dotnet/extensions release process #​7643 by @​jeffhandley (co-authored by @​Copilot)
  • Bump CommunityToolkit.VectorData package baselines to 1.0.0 / 1.0.0-preview #​7651 by @​adamsitnik (co-authored by @​Copilot)
  • Incorporate servicing release experience into release-manager playbooks #​7656 by @​jeffhandley (co-authored by @​Copilot)
  • Bump dotnet-reportgenerator-globaltool from 5.5.10 to 5.5.11 #​7666
  • Bump adm-zip and azure-pipelines-task-lib in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript/azure-devops-report/tasks/PublishAIEvaluationReport #​7652
  • Bump postcss from 8.5.15 to 8.5.23 in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript #​7660
  • Bump PowerShell from 7.6.3 to 7.6.4 #​7650
  • [main] Update dependencies from dotnet/arcade #​7644
  • [release-manager] Require package dependency closure for releases #​7693 by @​jeffhandley (co-authored by @​Copilot)
  • Optionally allow official builds to publish VSIX extension. #​7692 by @​peterwald
  • [main] Update dependencies from dotnet/arcade #​7690

Acknowledgements

Full Changelog: dotnet/extensions@v10.8.4...v10.9.0

Packages in this release

PackageVersion
Microsoft.AspNetCore.Testing10.9.0
Microsoft.Extensions.AI.Abstractions10.9.0
Microsoft.Extensions.AI.Evaluation.Console10.9.0
Microsoft.Extensions.AI.Templates10.9.0-preview.3.26411.16
Microsoft.Extensions.AmbientMetadata.Application10.9.0
Microsoft.Extensions.AmbientMetadata.Build10.9.0
Microsoft.Extensions.AuditReports10.9.0
Microsoft.Extensions.Caching.Hybrid10.9.0
Microsoft.Extensions.Compliance.Abstractions10.9.0
Microsoft.Extensions.DataIngestion.Abstractions10.9.0-preview.1.26411.16
Microsoft.Extensions.DependencyInjection.AutoActivation10.9.0
Microsoft.Extensions.Diagnostics.ExceptionSummarization10.9.0
Microsoft.Extensions.ObjectPool.DependencyInjection10.9.0
Microsoft.Extensions.Options.Contextual10.9.0-preview.1.26411.16
Microsoft.Extensions.ServiceDiscovery.Abstractions10.9.0
Microsoft.Extensions.StaticAnalysis10.9.0
Microsoft.Extensions.TimeProvider.Testing10.9.0
Microsoft.Extensions.AI10.9.0
Microsoft.Extensions.AI.Evaluation10.9.0
Microsoft.Extensions.AI.OpenAI10.9.0
Microsoft.Extensions.AsyncState10.9.0
Microsoft.Extensions.Compliance.Redaction10.9.0
Microsoft.Extensions.Compliance.Testing10.9.0
Microsoft.Extensions.DataIngestion.Markdig10.9.0-preview.1.26411.16
Microsoft.Extensions.DataIngestion.MarkItDown10.9.0-preview.1.26411.16
Microsoft.Extensions.ServiceDiscovery10.9.0
Microsoft.Extensions.Telemetry.Abstractions10.9.0
Microsoft.Extensions.VectorData.Abstractions10.9.0
Microsoft.AspNetCore.AsyncState10.9.0
Microsoft.AspNetCore.HeaderParsing10.9.0
Microsoft.Extensions.AI.Evaluation.NLP10.9.0-preview.1.26411.16
Microsoft.Extensions.AI.Evaluation.Quality10.9.0
Microsoft.Extensions.AI.Evaluation.Reporting10.9.0
Microsoft.Extensions.AI.Evaluation.Safety10.9.0-preview.1.26411.16
Microsoft.Extensions.DataIngestion10.9.0-preview.1.26411.16
Microsoft.Extensions.Diagnostics.HealthChecks.Common10.9.0
Microsoft.Extensions.Diagnostics.Probes10.9.0-preview.1.26411.16
Microsoft.Extensions.Diagnostics.ResourceMonitoring10.9.0
Microsoft.Extensions.Diagnostics.Testing10.9.0
Microsoft.Extensions.Resilience10.9.0
Microsoft.Extensions.ServiceDiscovery.Dns10.9.0
Microsoft.Extensions.ServiceDiscovery.Yarp10.9.0
Microsoft.Extensions.Telemetry10.9.0
Microsoft.Extensions.VectorData.ConformanceTests10.9.0
Microsoft.AspNetCore.Diagnostics.Middleware10.9.0
Microsoft.Extensions.AI.Evaluation.Reporting.Azure10.9.0
Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization10.9.0
Microsoft.Extensions.Diagnostics.ResourceMonitoring.Kubernetes10.9.0
Microsoft.Extensions.Hosting.Testing10.9.0-preview.1.26411.16
Microsoft.Extensions.Http.Diagnostics10.9.0
Microsoft.Extensions.Http.Resilience10.9.0

The Microsoft.Agents.AI.ProjectTemplates package is not included in this release.

v10.8.0

This release adds new experimental APIs to Microsoft.Extensions.AI.Abstractions and updates the OpenAI dependency to 2.12.0, alongside documentation, test, and repository maintenance.

Experimental API Changes
N

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch from 10222e1 to 2847db6CompareNovember 11, 2024 17:02
@renovaterenovateBot changed the title Update dependency AWSSDK.S3 to 3.7.405.10Update all non-major dependenciesNov 11, 2024
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 2 times, most recently from f3f6983 to 99805faCompareNovember 12, 2024 18:38
@renovaterenovateBot changed the title Update all non-major dependenciesUpdate dependency AWSSDK.S3 to 3.7.405.11Nov 12, 2024
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch from 99805fa to 6b59e7eCompareNovember 13, 2024 20:21
@renovaterenovateBot changed the title Update dependency AWSSDK.S3 to 3.7.405.11Update all non-major dependenciesNov 13, 2024
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 10 times, most recently from 7e93ecd to 379baa4CompareNovember 21, 2024 20:35
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 6 times, most recently from 7d2aaff to 60fe895CompareNovember 28, 2024 21:53
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 7 times, most recently from fce21c3 to 1e7fda3CompareDecember 6, 2024 21:49
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 5 times, most recently from 6d150bf to 0acc6a0CompareDecember 26, 2024 22:06
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 3 times, most recently from f2e1fec to 7f3e574CompareJanuary 5, 2025 22:31
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 7 times, most recently from 5102213 to dc24af3CompareJanuary 13, 2025 10:15
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 6 times, most recently from ffc43b6 to 3208b54CompareJanuary 21, 2025 01:12
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 3 times, most recently from 8806ff6 to 5232738CompareJanuary 29, 2025 14:18
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 4 times, most recently from 3c33435 to de76e9aCompareFebruary 3, 2025 13:09
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch from de76e9a to c9ccb5aCompareFebruary 7, 2025 17:39
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Add copy buttons to all
 blocks\n(function() {\n function addCopyButtons() {\n document.querySelectorAll('pre code').forEach(function(codeBlock) {\n if (codeBlock.parentElement.hasAttribute('data-copy-added')) return;\n codeBlock.parentElement.setAttribute('data-copy-added', 'true');\n \n var btn = document.createElement('button');\n btn.textContent = 'Copy';\n btn.style.cssText = 'position:absolute;top:4px;right:4px;padding:2px 8px;font-size:11px;background:#4ecdc4;border:none;border-radius:4px;color:#1a1a2e;cursor:pointer;opacity:0.7;transition:opacity 0.2s;';\n btn.onmouseover = function() { this.style.opacity = '1'; };\n btn.onmouseout = function() { this.style.opacity = '0.7'; };\n btn.onclick = function() {\n navigator.clipboard.writeText(codeBlock.textContent).then(function() {\n btn.textContent = 'Copied!';\n setTimeout(function() { btn.textContent = 'Copy'; }, 1500);\n });\n };\n codeBlock.parentElement.style.position = 'relative';\n codeBlock.parentElement.appendChild(btn);\n });\n }\n \n addCopyButtons();\n \n // Re-run on dynamic content\n var observer = new MutationObserver(addCopyButtons);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Add Copy Buttons to Code Blocks");
}
} catch(__e) { console.warn('[Userscript:Add Copy Buttons to Code Blocks]', __e); }
})();
(function(){
try {
var __m = "github.com";
var __re = new RegExp('^' + "github\\.com" + '
Skip to content

Update all non-major dependencies - #66

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/all-minor-patch
Open

Update all non-major dependencies#66
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/all-minor-patch

Conversation

@renovate

@renovaterenovateBot commented Nov 11, 2024

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

PackageChangeAgeAdoptionPassingConfidenceTypeUpdate
AWSSDK.S34.0.18.74.0.102.4ageadoptionpassingconfidencenugetpatch
ErrorOr2.0.12.1.1ageadoptionpassingconfidencenugetminor
FastEndpoints (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Generator (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Security (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Swagger (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Testing (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
HtmlSanitizer9.0.8929.2.1039ageadoptionpassingconfidencenugetminor
Microsoft.AspNetCore.Authentication.JwtBearer (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.AspNetCore.Identity.EntityFrameworkCore (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.AspNetCore.OpenApi (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.AspNetCore.OutputCaching.StackExchangeRedis (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.EntityFrameworkCore.InMemory (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.EntityFrameworkCore.Tools (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.Extensions.Caching.Hybrid (source)10.3.010.9.0ageadoptionpassingconfidencenugetminor
Microsoft.Extensions.Caching.StackExchangeRedis (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.Extensions.Http.Resilience (source)10.3.010.9.0ageadoptionpassingconfidencenugetminor
Microsoft.Extensions.TimeProvider.Testing (source)10.3.010.9.0ageadoptionpassingconfidencenugetminor
Microsoft.NET.Test.Sdk18.3.018.9.0ageadoptionpassingconfidencenugetminor
MinecraftRenderer0.4.20.9.0ageadoptionpassingconfidencenugetminor
Npgsql10.0.110.0.3ageadoptionpassingconfidencenugetpatch
Npgsql.EntityFrameworkCore.PostgreSQL10.0.010.0.3ageadoptionpassingconfidencenugetpatch
OpenTelemetry.Extensions.Hosting (source)1.15.01.18.0ageadoptionpassingconfidencenugetminor
Pyroscope (source)0.14.10.15.0ageadoptionpassingconfidencenugetminor
Pyroscope.OpenTelemetry (source)0.4.00.5.1ageadoptionpassingconfidencenugetminor
Quartz.Extensions.Hosting (source)3.16.13.20.0ageadoptionpassingconfidencenugetminor
Refit10.0.110.2.0ageadoptionpassingconfidencenugetminor
Refit.HttpClientFactory10.0.110.2.0ageadoptionpassingconfidencenugetminor
Scalar.AspNetCore (source)2.13.12.17.2ageadoptionpassingconfidencenugetminor
SkyblockRepo0.4.30.5.2ageadoptionpassingconfidencenugetminor
StackExchange.Redis (source)2.11.82.13.17ageadoptionpassingconfidencenugetminor
Swashbuckle.AspNetCore10.1.410.2.3ageadoptionpassingconfidencenugetminor
Swashbuckle.AspNetCore.Annotations10.1.410.2.3ageadoptionpassingconfidencenugetminor
System.Linq.Async7.0.07.0.1ageadoptionpassingconfidencenugetpatch
System.Threading.RateLimiting (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Testcontainers.PostgreSql (source)4.10.04.14.0ageadoptionpassingconfidencenugetminor
ZLinq1.5.51.5.6ageadoptionpassingconfidencenugetpatch
coverlet.collector8.0.08.0.1ageadoptionpassingconfidencenugetpatch
dotnet-ef (source)10.0.110.0.11ageadoptionpassingconfidencenugetpatch
prom/prometheusv3.5.0v3.14.0ageadoptionpassingconfidenceminor
pyroscope/pyroscope-dotnet0.13.0-glibc0.14.5-glibcageadoptionpassingconfidencestageminor
redis (source)8.4-alpine8.10-alpineageadoptionpassingconfidenceminor

Release Notes

aws/aws-sdk-net (AWSSDK.S3)

v4.0.102

v4.0.101

v4.0.100

v4.0.25

v4.0.24

v4.0.23

v4.0.22

v4.0.21

v4.0.20

v4.0.19

error-or/error-or (ErrorOr)

v2.1.1

Added
  • #​94, #​95 Added missing async versions of FailIf methods

    publicasyncTask<ErrorOr<TValue>>FailIfAsync(Func<TValue,Task<bool>>onValue,Errorerror)
    publicstaticasyncTask<ErrorOr<TValue>>FailIf<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,bool>onValue,Errorerror)
    publicstaticasyncTask<ErrorOr<TValue>>FailIfAsync<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,Task<bool>>onValue,Errorerror)
  • #​104 Support for .NET 8 was added

  • #​109, #​111 Added FailIf method overloads that allow to use value in error definition using Func<TValue, Error> error builder

    publicErrorOr<TValue>FailIf(Func<TValue,bool>onValue,Func<TValue,Error>errorBuilder)
    publicasyncTask<ErrorOr<TValue>>FailIfAsync(Func<TValue,Task<bool>>onValue,Func<TValue,Task<Error>>errorBuilder)
    publicstaticasyncTask<ErrorOr<TValue>>FailIf<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,bool>onValue,Func<TValue,Error>errorBuilder)
    publicstaticasyncTask<ErrorOr<TValue>>FailIfAsync<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,Task<bool>>onValue,Func<TValue,Task<Error>>errorBuilder)

    Value can now be used to build the error:

    ErrorOr<int>result=errorOrInt.FailIf(num =>num>3,(num)=>Error.Failure(description:$"{num} is greater than 3"));
  • #​117 Added ElseDo and ElseDoAsync methods

    Actions returning no result can now be called when IsError is true.

    ErrorOr<string>foo=result.Else(errors =>Error.Unexpected()).ElseDo(error =>Console.WriteLine(error.FirstError.Description));
    ErrorOr<string>foo=awaitresult.ElseDoAsync(HandleErrorAsync);
  • #​122 Added ToErrorOrAsync method

    Values in Task can now be easily converted to ErrorOr.

    ErrorOr<int>result=awaitTask.FromResult(5).ToErrorOrAsync();
  • #​129 Added missing ErrorOrFactory.From methods

    Now following calls from README.md are available

    ErrorOr<int>result=ErrorOrFactory.From<int>(Error.Unexpected());ErrorOr<int>result=ErrorOrFactory.From<int>([Error.Validation(),Error.Validation()]);

    Following call is now obsolete

    ErrorOr<int>errorOrPerson=ErrorOr<int>.From([Error.Validation(),Error.Validation()]);
  • #​133 Added missing collection expression support

    Now following call from README.md is available

    ErrorOr<int>result=[Error.Validation(),Error.Validation()];
  • #​134 Added FromAsync and missing ToErrorOrAsync methods

    Added support for FromAsync methods.

    publicasyncTak<ErrorOr<int>>GetValueAsync(){returnawaitErrorOrFactory.FromAsync(5);}
    publicasyncTak<ErrorOr<int>>SingleErrorToErrorOrAsync(){returnawaitErrorOrFactory.FromAsync<int>(Error.Unexpected());}
    publicasyncTak<ErrorOr<int>>MultipleErrorsToErrorOrAsync(){returnawaitErrorOrFactory.FromAsync([Error.Validation(description:"Invalid Name"),Error.Validation(description:"Invalid Last Name")]);}

    Added support for ToErrorOrAsync methods from errors:

    Task<Error>errorTask=Task.FromResult(Error.Validation());ErrorOr<int>result=errorTask.ToErrorOrAsync<int>();
    List<Error>errors=[Error.Unauthorized(),Error.Validation()];Task<List<Error>>errorsTask=Task.FromResult(errors);ErrorOr<int>result=awaiterrorsTask.ToErrorOrAsync<int>();
  • #​149 Added Else/ElseAsync overloads returning ErrorOr

  • #​152 Added ThenEnsure and ThenEnsureAsync methods.

    They are similar to ThenDo and ThenDoAsync, but they receive a function that can return errors.
    If no errors are returned, the original value is preserved and the ensure function's success value is ignored.

  • #​159 Added IsSuccess property to ErrorOr

  • #​158 Added support for serialization via IErrorOr interface without direct access to Value property. The IRecordable base interface provides a way to obtain a serialized representation of the current state.

    voidLog(IErrorOrresult){Console.WriteLine(result.GetRecording(serializer));}

    IRecordingSerializer<TOutput> interface can be implemented to provide concrete serialization strategy, for exaple JSON serialization:

    usingSystem.Text.Json;usingSystem.Text.Json.Serialization;usingErrorOr;publicclassSystemTextJsonRecordingSerializer:IRecordingSerializer<string>{privatestaticreadonlyJsonSerializerOptionsJsonOptions=new(){WriteIndented=true,Converters={newJsonStringEnumConverter()},DefaultIgnoreCondition=JsonIgnoreCondition.Never,};publicstringSerializeValue<TValue>(TValuevalue)=>JsonSerializer.Serialize(value,JsonOptions);publicstringSerializeErrors(List<Error>errors)=>JsonSerializer.Serialize(errors,JsonOptions);}
  • #​179 Support for .NET 10 was added

Fixed
  • #​85, #​97ErrorOr turned into Value Object by reimplementing Equals and GetHashCode methods

    New dependency was introduced to Microsoft.Bcl.HashCode and development dependency was introduced to Nullable

  • #​178 Initializing ErrorOr<T> with empty or null error collection results with unexpected error.

Optimized
  • #​98, #​99 Memory consumption optimized by moving static empty errors lists from generic struct into non-generic class
Refactored
  • #​154 Modernized NuGet publish workflow
mganss/HtmlSanitizer (HtmlSanitizer)

v9.2.1039: 9.2.1039

Fix attribute bypass in SanitizeDom(string) wrapper elements

v9.2.995: 9.2.995

  • AngleSharp dependency updated from 1.7.0 to 1.7.1 (4515e1f)
  • Sanitization enhancements for URI attributes
    • Added cite and longdesc attributes to URL sanitization (e47862e)
    • Enhanced sanitization of srcdoc content and attributes holding URI lists (edb2633)
  • CSS/style handling improvements
    • Added sanitization of CSS declarations in style elements with type="" attribute (0592f1e)
    • Fixed sanitization of CSS @font-face and @import at-rules (1d33413)
  • Bug fixes
  • Test improvements
    • Refactored test suite for style element sanitization (0592f1e)
    • Improved performance of ThreadTest (0ab33ba)
  • Documentation
    • Added XML code usage examples for HtmlSanitizerOptions properties (#​632)

v9.1.982: 9.1.982

Fix multiple enumeration of URLs (fixes #​625)

v9.1.981: 9.1.981

Update NuGet packages

v9.1.974: 9.1.974

Add FilterCssRule event (fixes #​622)

v9.1.973: 9.1.973

Update to AngleSharp 1.6.0 and AngleSharp.Css 1.0.0

dotnet/dotnet (Microsoft.AspNetCore.Authentication.JwtBearer)

v10.0.11

v10.0.10

v10.0.9

v10.0.8

v10.0.7

v10.0.6

v10.0.5

v10.0.4

dotnet/extensions (Microsoft.Extensions.Caching.Hybrid)

v10.9.0

Version 10.9.0 is headlined by changes in these areas:

  • AI: New experimental routing APIs center on the abstract RoutingChatClient base class, with SemanticRoutingChatClient as a concrete semantic-routing implementation. Separately, the abstract FailoverChatClient specialization and its concrete OrderedFailoverChatClient implementation add failover routing.
  • AI Evaluation: The generated report gains redesigned Overview, Cases, History, and Comparison views.
  • ASP.NET Core and HTTP diagnostics: The release adds HTTP request latency log enrichment and fixes configuration binding, response-body logging, request-path redaction, and resilience package version handling.
  • Source-generated logging and service discovery: Fixes cover classification type qualification, thread-local state cleanup, and DNS query suffix handling.

Experimental API Changes

New Experimental APIs
  • New experimental API: HTTP request latency log enrichment (EXTEXP0013) #​7602
  • New experimental API: Chat client routing and failover (MEAI001) #​7662

What's Changed

AI (Microsoft.Extensions.AI, Microsoft.Extensions.AI.Abstractions, and Microsoft.Extensions.AI.OpenAI)

Note: Microsoft.Extensions.AI.OpenAI constrains its dependency for OpenAI to 2.12.x, preventing OpenAI updates to 2.13.0+ due to an incompatibility. We expect to release Microsoft.Extensions.AI.OpenAI version 10.9.1 during the week of August 17 to address this issue.

HTTP Resilience and Diagnostics (Microsoft.Extensions.Http.Resilience and Microsoft.Extensions.Http.Diagnostics)
ASP.NET Core Extensions (Microsoft.AspNetCore.Diagnostics.Middleware)
Logging Source Generator (Microsoft.Gen.Logging)
AI Evaluation (Microsoft.Extensions.AI.Evaluation.Reporting)
Project Templates (Microsoft.McpServer.ProjectTemplates)

Note: The MCP server project template was migrated to the dotnet/aspnetcore repository, and it is now included in the .NET 10 and .NET 11 SDKs.

Service Discovery (Microsoft.Extensions.ServiceDiscovery.Dns)

Test Improvements

Repository Infrastructure Updates

  • [main] Update dependencies from dotnet/arcade #​7621
  • Merge release/10.8 into main #​7632 by @​jeffhandley (co-authored by @​jozkee@​Copilot)
  • Add agentic workflows that keep Microsoft.Extensions.AI aligned with OpenTelemetry GenAI semantic-conventions #​7611 by @​jeffhandley (co-authored by @​Copilot)
  • Bump brace-expansion, eslint and tfx-cli in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript #​7648
  • Add a release-manager agent for the dotnet/extensions release process #​7643 by @​jeffhandley (co-authored by @​Copilot)
  • Bump CommunityToolkit.VectorData package baselines to 1.0.0 / 1.0.0-preview #​7651 by @​adamsitnik (co-authored by @​Copilot)
  • Incorporate servicing release experience into release-manager playbooks #​7656 by @​jeffhandley (co-authored by @​Copilot)
  • Bump dotnet-reportgenerator-globaltool from 5.5.10 to 5.5.11 #​7666
  • Bump adm-zip and azure-pipelines-task-lib in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript/azure-devops-report/tasks/PublishAIEvaluationReport #​7652
  • Bump postcss from 8.5.15 to 8.5.23 in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript #​7660
  • Bump PowerShell from 7.6.3 to 7.6.4 #​7650
  • [main] Update dependencies from dotnet/arcade #​7644
  • [release-manager] Require package dependency closure for releases #​7693 by @​jeffhandley (co-authored by @​Copilot)
  • Optionally allow official builds to publish VSIX extension. #​7692 by @​peterwald
  • [main] Update dependencies from dotnet/arcade #​7690

Acknowledgements

Full Changelog: dotnet/extensions@v10.8.4...v10.9.0

Packages in this release

PackageVersion
Microsoft.AspNetCore.Testing10.9.0
Microsoft.Extensions.AI.Abstractions10.9.0
Microsoft.Extensions.AI.Evaluation.Console10.9.0
Microsoft.Extensions.AI.Templates10.9.0-preview.3.26411.16
Microsoft.Extensions.AmbientMetadata.Application10.9.0
Microsoft.Extensions.AmbientMetadata.Build10.9.0
Microsoft.Extensions.AuditReports10.9.0
Microsoft.Extensions.Caching.Hybrid10.9.0
Microsoft.Extensions.Compliance.Abstractions10.9.0
Microsoft.Extensions.DataIngestion.Abstractions10.9.0-preview.1.26411.16
Microsoft.Extensions.DependencyInjection.AutoActivation10.9.0
Microsoft.Extensions.Diagnostics.ExceptionSummarization10.9.0
Microsoft.Extensions.ObjectPool.DependencyInjection10.9.0
Microsoft.Extensions.Options.Contextual10.9.0-preview.1.26411.16
Microsoft.Extensions.ServiceDiscovery.Abstractions10.9.0
Microsoft.Extensions.StaticAnalysis10.9.0
Microsoft.Extensions.TimeProvider.Testing10.9.0
Microsoft.Extensions.AI10.9.0
Microsoft.Extensions.AI.Evaluation10.9.0
Microsoft.Extensions.AI.OpenAI10.9.0
Microsoft.Extensions.AsyncState10.9.0
Microsoft.Extensions.Compliance.Redaction10.9.0
Microsoft.Extensions.Compliance.Testing10.9.0
Microsoft.Extensions.DataIngestion.Markdig10.9.0-preview.1.26411.16
Microsoft.Extensions.DataIngestion.MarkItDown10.9.0-preview.1.26411.16
Microsoft.Extensions.ServiceDiscovery10.9.0
Microsoft.Extensions.Telemetry.Abstractions10.9.0
Microsoft.Extensions.VectorData.Abstractions10.9.0
Microsoft.AspNetCore.AsyncState10.9.0
Microsoft.AspNetCore.HeaderParsing10.9.0
Microsoft.Extensions.AI.Evaluation.NLP10.9.0-preview.1.26411.16
Microsoft.Extensions.AI.Evaluation.Quality10.9.0
Microsoft.Extensions.AI.Evaluation.Reporting10.9.0
Microsoft.Extensions.AI.Evaluation.Safety10.9.0-preview.1.26411.16
Microsoft.Extensions.DataIngestion10.9.0-preview.1.26411.16
Microsoft.Extensions.Diagnostics.HealthChecks.Common10.9.0
Microsoft.Extensions.Diagnostics.Probes10.9.0-preview.1.26411.16
Microsoft.Extensions.Diagnostics.ResourceMonitoring10.9.0
Microsoft.Extensions.Diagnostics.Testing10.9.0
Microsoft.Extensions.Resilience10.9.0
Microsoft.Extensions.ServiceDiscovery.Dns10.9.0
Microsoft.Extensions.ServiceDiscovery.Yarp10.9.0
Microsoft.Extensions.Telemetry10.9.0
Microsoft.Extensions.VectorData.ConformanceTests10.9.0
Microsoft.AspNetCore.Diagnostics.Middleware10.9.0
Microsoft.Extensions.AI.Evaluation.Reporting.Azure10.9.0
Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization10.9.0
Microsoft.Extensions.Diagnostics.ResourceMonitoring.Kubernetes10.9.0
Microsoft.Extensions.Hosting.Testing10.9.0-preview.1.26411.16
Microsoft.Extensions.Http.Diagnostics10.9.0
Microsoft.Extensions.Http.Resilience10.9.0

The Microsoft.Agents.AI.ProjectTemplates package is not included in this release.

v10.8.0

This release adds new experimental APIs to Microsoft.Extensions.AI.Abstractions and updates the OpenAI dependency to 2.12.0, alongside documentation, test, and repository maintenance.

Experimental API Changes
N

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch from 10222e1 to 2847db6CompareNovember 11, 2024 17:02
@renovaterenovateBot changed the title Update dependency AWSSDK.S3 to 3.7.405.10Update all non-major dependenciesNov 11, 2024
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 2 times, most recently from f3f6983 to 99805faCompareNovember 12, 2024 18:38
@renovaterenovateBot changed the title Update all non-major dependenciesUpdate dependency AWSSDK.S3 to 3.7.405.11Nov 12, 2024
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch from 99805fa to 6b59e7eCompareNovember 13, 2024 20:21
@renovaterenovateBot changed the title Update dependency AWSSDK.S3 to 3.7.405.11Update all non-major dependenciesNov 13, 2024
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 10 times, most recently from 7e93ecd to 379baa4CompareNovember 21, 2024 20:35
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 6 times, most recently from 7d2aaff to 60fe895CompareNovember 28, 2024 21:53
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 7 times, most recently from fce21c3 to 1e7fda3CompareDecember 6, 2024 21:49
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 5 times, most recently from 6d150bf to 0acc6a0CompareDecember 26, 2024 22:06
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 3 times, most recently from f2e1fec to 7f3e574CompareJanuary 5, 2025 22:31
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 7 times, most recently from 5102213 to dc24af3CompareJanuary 13, 2025 10:15
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 6 times, most recently from ffc43b6 to 3208b54CompareJanuary 21, 2025 01:12
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 3 times, most recently from 8806ff6 to 5232738CompareJanuary 29, 2025 14:18
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 4 times, most recently from 3c33435 to de76e9aCompareFebruary 3, 2025 13:09
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch from de76e9a to c9ccb5aCompareFebruary 7, 2025 17:39
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Force GitHub README to respect dark mode\n(function() {\n var style = document.createElement('style');\n style.textContent = '\n .markdown-body {\n color-scheme: dark light;\n }\n .markdown-body pre { background: #161b22 !important; }\n .markdown-body code { background: rgba(110, 118, 129, 0.4) !important; }\n .markdown-body table th, .markdown-body table td { border-color: #30363d !important; }\n .markdown-body img { background: #0d1117; }\n .markdown-body blockquote { border-left-color: #8b949e; }\n .markdown-body hr { border-color: #30363d; }\n ';\n document.head.appendChild(style);\n})();", "GitHub Dark Mode README Fix"); } } catch(__e) { console.warn('[Userscript:GitHub Dark Mode README Fix]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

Update all non-major dependencies - #66

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/all-minor-patch
Open

Update all non-major dependencies#66
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/all-minor-patch

Conversation

@renovate

@renovaterenovateBot commented Nov 11, 2024

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

PackageChangeAgeAdoptionPassingConfidenceTypeUpdate
AWSSDK.S34.0.18.74.0.102.4ageadoptionpassingconfidencenugetpatch
ErrorOr2.0.12.1.1ageadoptionpassingconfidencenugetminor
FastEndpoints (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Generator (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Security (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Swagger (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Testing (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
HtmlSanitizer9.0.8929.2.1039ageadoptionpassingconfidencenugetminor
Microsoft.AspNetCore.Authentication.JwtBearer (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.AspNetCore.Identity.EntityFrameworkCore (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.AspNetCore.OpenApi (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.AspNetCore.OutputCaching.StackExchangeRedis (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.EntityFrameworkCore.InMemory (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.EntityFrameworkCore.Tools (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.Extensions.Caching.Hybrid (source)10.3.010.9.0ageadoptionpassingconfidencenugetminor
Microsoft.Extensions.Caching.StackExchangeRedis (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.Extensions.Http.Resilience (source)10.3.010.9.0ageadoptionpassingconfidencenugetminor
Microsoft.Extensions.TimeProvider.Testing (source)10.3.010.9.0ageadoptionpassingconfidencenugetminor
Microsoft.NET.Test.Sdk18.3.018.9.0ageadoptionpassingconfidencenugetminor
MinecraftRenderer0.4.20.9.0ageadoptionpassingconfidencenugetminor
Npgsql10.0.110.0.3ageadoptionpassingconfidencenugetpatch
Npgsql.EntityFrameworkCore.PostgreSQL10.0.010.0.3ageadoptionpassingconfidencenugetpatch
OpenTelemetry.Extensions.Hosting (source)1.15.01.18.0ageadoptionpassingconfidencenugetminor
Pyroscope (source)0.14.10.15.0ageadoptionpassingconfidencenugetminor
Pyroscope.OpenTelemetry (source)0.4.00.5.1ageadoptionpassingconfidencenugetminor
Quartz.Extensions.Hosting (source)3.16.13.20.0ageadoptionpassingconfidencenugetminor
Refit10.0.110.2.0ageadoptionpassingconfidencenugetminor
Refit.HttpClientFactory10.0.110.2.0ageadoptionpassingconfidencenugetminor
Scalar.AspNetCore (source)2.13.12.17.2ageadoptionpassingconfidencenugetminor
SkyblockRepo0.4.30.5.2ageadoptionpassingconfidencenugetminor
StackExchange.Redis (source)2.11.82.13.17ageadoptionpassingconfidencenugetminor
Swashbuckle.AspNetCore10.1.410.2.3ageadoptionpassingconfidencenugetminor
Swashbuckle.AspNetCore.Annotations10.1.410.2.3ageadoptionpassingconfidencenugetminor
System.Linq.Async7.0.07.0.1ageadoptionpassingconfidencenugetpatch
System.Threading.RateLimiting (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Testcontainers.PostgreSql (source)4.10.04.14.0ageadoptionpassingconfidencenugetminor
ZLinq1.5.51.5.6ageadoptionpassingconfidencenugetpatch
coverlet.collector8.0.08.0.1ageadoptionpassingconfidencenugetpatch
dotnet-ef (source)10.0.110.0.11ageadoptionpassingconfidencenugetpatch
prom/prometheusv3.5.0v3.14.0ageadoptionpassingconfidenceminor
pyroscope/pyroscope-dotnet0.13.0-glibc0.14.5-glibcageadoptionpassingconfidencestageminor
redis (source)8.4-alpine8.10-alpineageadoptionpassingconfidenceminor

Release Notes

aws/aws-sdk-net (AWSSDK.S3)

v4.0.102

v4.0.101

v4.0.100

v4.0.25

v4.0.24

v4.0.23

v4.0.22

v4.0.21

v4.0.20

v4.0.19

error-or/error-or (ErrorOr)

v2.1.1

Added
  • #​94, #​95 Added missing async versions of FailIf methods

    publicasyncTask<ErrorOr<TValue>>FailIfAsync(Func<TValue,Task<bool>>onValue,Errorerror)
    publicstaticasyncTask<ErrorOr<TValue>>FailIf<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,bool>onValue,Errorerror)
    publicstaticasyncTask<ErrorOr<TValue>>FailIfAsync<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,Task<bool>>onValue,Errorerror)
  • #​104 Support for .NET 8 was added

  • #​109, #​111 Added FailIf method overloads that allow to use value in error definition using Func<TValue, Error> error builder

    publicErrorOr<TValue>FailIf(Func<TValue,bool>onValue,Func<TValue,Error>errorBuilder)
    publicasyncTask<ErrorOr<TValue>>FailIfAsync(Func<TValue,Task<bool>>onValue,Func<TValue,Task<Error>>errorBuilder)
    publicstaticasyncTask<ErrorOr<TValue>>FailIf<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,bool>onValue,Func<TValue,Error>errorBuilder)
    publicstaticasyncTask<ErrorOr<TValue>>FailIfAsync<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,Task<bool>>onValue,Func<TValue,Task<Error>>errorBuilder)

    Value can now be used to build the error:

    ErrorOr<int>result=errorOrInt.FailIf(num =>num>3,(num)=>Error.Failure(description:$"{num} is greater than 3"));
  • #​117 Added ElseDo and ElseDoAsync methods

    Actions returning no result can now be called when IsError is true.

    ErrorOr<string>foo=result.Else(errors =>Error.Unexpected()).ElseDo(error =>Console.WriteLine(error.FirstError.Description));
    ErrorOr<string>foo=awaitresult.ElseDoAsync(HandleErrorAsync);
  • #​122 Added ToErrorOrAsync method

    Values in Task can now be easily converted to ErrorOr.

    ErrorOr<int>result=awaitTask.FromResult(5).ToErrorOrAsync();
  • #​129 Added missing ErrorOrFactory.From methods

    Now following calls from README.md are available

    ErrorOr<int>result=ErrorOrFactory.From<int>(Error.Unexpected());ErrorOr<int>result=ErrorOrFactory.From<int>([Error.Validation(),Error.Validation()]);

    Following call is now obsolete

    ErrorOr<int>errorOrPerson=ErrorOr<int>.From([Error.Validation(),Error.Validation()]);
  • #​133 Added missing collection expression support

    Now following call from README.md is available

    ErrorOr<int>result=[Error.Validation(),Error.Validation()];
  • #​134 Added FromAsync and missing ToErrorOrAsync methods

    Added support for FromAsync methods.

    publicasyncTak<ErrorOr<int>>GetValueAsync(){returnawaitErrorOrFactory.FromAsync(5);}
    publicasyncTak<ErrorOr<int>>SingleErrorToErrorOrAsync(){returnawaitErrorOrFactory.FromAsync<int>(Error.Unexpected());}
    publicasyncTak<ErrorOr<int>>MultipleErrorsToErrorOrAsync(){returnawaitErrorOrFactory.FromAsync([Error.Validation(description:"Invalid Name"),Error.Validation(description:"Invalid Last Name")]);}

    Added support for ToErrorOrAsync methods from errors:

    Task<Error>errorTask=Task.FromResult(Error.Validation());ErrorOr<int>result=errorTask.ToErrorOrAsync<int>();
    List<Error>errors=[Error.Unauthorized(),Error.Validation()];Task<List<Error>>errorsTask=Task.FromResult(errors);ErrorOr<int>result=awaiterrorsTask.ToErrorOrAsync<int>();
  • #​149 Added Else/ElseAsync overloads returning ErrorOr

  • #​152 Added ThenEnsure and ThenEnsureAsync methods.

    They are similar to ThenDo and ThenDoAsync, but they receive a function that can return errors.
    If no errors are returned, the original value is preserved and the ensure function's success value is ignored.

  • #​159 Added IsSuccess property to ErrorOr

  • #​158 Added support for serialization via IErrorOr interface without direct access to Value property. The IRecordable base interface provides a way to obtain a serialized representation of the current state.

    voidLog(IErrorOrresult){Console.WriteLine(result.GetRecording(serializer));}

    IRecordingSerializer<TOutput> interface can be implemented to provide concrete serialization strategy, for exaple JSON serialization:

    usingSystem.Text.Json;usingSystem.Text.Json.Serialization;usingErrorOr;publicclassSystemTextJsonRecordingSerializer:IRecordingSerializer<string>{privatestaticreadonlyJsonSerializerOptionsJsonOptions=new(){WriteIndented=true,Converters={newJsonStringEnumConverter()},DefaultIgnoreCondition=JsonIgnoreCondition.Never,};publicstringSerializeValue<TValue>(TValuevalue)=>JsonSerializer.Serialize(value,JsonOptions);publicstringSerializeErrors(List<Error>errors)=>JsonSerializer.Serialize(errors,JsonOptions);}
  • #​179 Support for .NET 10 was added

Fixed
  • #​85, #​97ErrorOr turned into Value Object by reimplementing Equals and GetHashCode methods

    New dependency was introduced to Microsoft.Bcl.HashCode and development dependency was introduced to Nullable

  • #​178 Initializing ErrorOr<T> with empty or null error collection results with unexpected error.

Optimized
  • #​98, #​99 Memory consumption optimized by moving static empty errors lists from generic struct into non-generic class
Refactored
  • #​154 Modernized NuGet publish workflow
mganss/HtmlSanitizer (HtmlSanitizer)

v9.2.1039: 9.2.1039

Fix attribute bypass in SanitizeDom(string) wrapper elements

v9.2.995: 9.2.995

  • AngleSharp dependency updated from 1.7.0 to 1.7.1 (4515e1f)
  • Sanitization enhancements for URI attributes
    • Added cite and longdesc attributes to URL sanitization (e47862e)
    • Enhanced sanitization of srcdoc content and attributes holding URI lists (edb2633)
  • CSS/style handling improvements
    • Added sanitization of CSS declarations in style elements with type="" attribute (0592f1e)
    • Fixed sanitization of CSS @font-face and @import at-rules (1d33413)
  • Bug fixes
  • Test improvements
    • Refactored test suite for style element sanitization (0592f1e)
    • Improved performance of ThreadTest (0ab33ba)
  • Documentation
    • Added XML code usage examples for HtmlSanitizerOptions properties (#​632)

v9.1.982: 9.1.982

Fix multiple enumeration of URLs (fixes #​625)

v9.1.981: 9.1.981

Update NuGet packages

v9.1.974: 9.1.974

Add FilterCssRule event (fixes #​622)

v9.1.973: 9.1.973

Update to AngleSharp 1.6.0 and AngleSharp.Css 1.0.0

dotnet/dotnet (Microsoft.AspNetCore.Authentication.JwtBearer)

v10.0.11

v10.0.10

v10.0.9

v10.0.8

v10.0.7

v10.0.6

v10.0.5

v10.0.4

dotnet/extensions (Microsoft.Extensions.Caching.Hybrid)

v10.9.0

Version 10.9.0 is headlined by changes in these areas:

  • AI: New experimental routing APIs center on the abstract RoutingChatClient base class, with SemanticRoutingChatClient as a concrete semantic-routing implementation. Separately, the abstract FailoverChatClient specialization and its concrete OrderedFailoverChatClient implementation add failover routing.
  • AI Evaluation: The generated report gains redesigned Overview, Cases, History, and Comparison views.
  • ASP.NET Core and HTTP diagnostics: The release adds HTTP request latency log enrichment and fixes configuration binding, response-body logging, request-path redaction, and resilience package version handling.
  • Source-generated logging and service discovery: Fixes cover classification type qualification, thread-local state cleanup, and DNS query suffix handling.

Experimental API Changes

New Experimental APIs
  • New experimental API: HTTP request latency log enrichment (EXTEXP0013) #​7602
  • New experimental API: Chat client routing and failover (MEAI001) #​7662

What's Changed

AI (Microsoft.Extensions.AI, Microsoft.Extensions.AI.Abstractions, and Microsoft.Extensions.AI.OpenAI)

Note: Microsoft.Extensions.AI.OpenAI constrains its dependency for OpenAI to 2.12.x, preventing OpenAI updates to 2.13.0+ due to an incompatibility. We expect to release Microsoft.Extensions.AI.OpenAI version 10.9.1 during the week of August 17 to address this issue.

HTTP Resilience and Diagnostics (Microsoft.Extensions.Http.Resilience and Microsoft.Extensions.Http.Diagnostics)
ASP.NET Core Extensions (Microsoft.AspNetCore.Diagnostics.Middleware)
Logging Source Generator (Microsoft.Gen.Logging)
AI Evaluation (Microsoft.Extensions.AI.Evaluation.Reporting)
Project Templates (Microsoft.McpServer.ProjectTemplates)

Note: The MCP server project template was migrated to the dotnet/aspnetcore repository, and it is now included in the .NET 10 and .NET 11 SDKs.

Service Discovery (Microsoft.Extensions.ServiceDiscovery.Dns)

Test Improvements

Repository Infrastructure Updates

  • [main] Update dependencies from dotnet/arcade #​7621
  • Merge release/10.8 into main #​7632 by @​jeffhandley (co-authored by @​jozkee@​Copilot)
  • Add agentic workflows that keep Microsoft.Extensions.AI aligned with OpenTelemetry GenAI semantic-conventions #​7611 by @​jeffhandley (co-authored by @​Copilot)
  • Bump brace-expansion, eslint and tfx-cli in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript #​7648
  • Add a release-manager agent for the dotnet/extensions release process #​7643 by @​jeffhandley (co-authored by @​Copilot)
  • Bump CommunityToolkit.VectorData package baselines to 1.0.0 / 1.0.0-preview #​7651 by @​adamsitnik (co-authored by @​Copilot)
  • Incorporate servicing release experience into release-manager playbooks #​7656 by @​jeffhandley (co-authored by @​Copilot)
  • Bump dotnet-reportgenerator-globaltool from 5.5.10 to 5.5.11 #​7666
  • Bump adm-zip and azure-pipelines-task-lib in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript/azure-devops-report/tasks/PublishAIEvaluationReport #​7652
  • Bump postcss from 8.5.15 to 8.5.23 in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript #​7660
  • Bump PowerShell from 7.6.3 to 7.6.4 #​7650
  • [main] Update dependencies from dotnet/arcade #​7644
  • [release-manager] Require package dependency closure for releases #​7693 by @​jeffhandley (co-authored by @​Copilot)
  • Optionally allow official builds to publish VSIX extension. #​7692 by @​peterwald
  • [main] Update dependencies from dotnet/arcade #​7690

Acknowledgements

Full Changelog: dotnet/extensions@v10.8.4...v10.9.0

Packages in this release

PackageVersion
Microsoft.AspNetCore.Testing10.9.0
Microsoft.Extensions.AI.Abstractions10.9.0
Microsoft.Extensions.AI.Evaluation.Console10.9.0
Microsoft.Extensions.AI.Templates10.9.0-preview.3.26411.16
Microsoft.Extensions.AmbientMetadata.Application10.9.0
Microsoft.Extensions.AmbientMetadata.Build10.9.0
Microsoft.Extensions.AuditReports10.9.0
Microsoft.Extensions.Caching.Hybrid10.9.0
Microsoft.Extensions.Compliance.Abstractions10.9.0
Microsoft.Extensions.DataIngestion.Abstractions10.9.0-preview.1.26411.16
Microsoft.Extensions.DependencyInjection.AutoActivation10.9.0
Microsoft.Extensions.Diagnostics.ExceptionSummarization10.9.0
Microsoft.Extensions.ObjectPool.DependencyInjection10.9.0
Microsoft.Extensions.Options.Contextual10.9.0-preview.1.26411.16
Microsoft.Extensions.ServiceDiscovery.Abstractions10.9.0
Microsoft.Extensions.StaticAnalysis10.9.0
Microsoft.Extensions.TimeProvider.Testing10.9.0
Microsoft.Extensions.AI10.9.0
Microsoft.Extensions.AI.Evaluation10.9.0
Microsoft.Extensions.AI.OpenAI10.9.0
Microsoft.Extensions.AsyncState10.9.0
Microsoft.Extensions.Compliance.Redaction10.9.0
Microsoft.Extensions.Compliance.Testing10.9.0
Microsoft.Extensions.DataIngestion.Markdig10.9.0-preview.1.26411.16
Microsoft.Extensions.DataIngestion.MarkItDown10.9.0-preview.1.26411.16
Microsoft.Extensions.ServiceDiscovery10.9.0
Microsoft.Extensions.Telemetry.Abstractions10.9.0
Microsoft.Extensions.VectorData.Abstractions10.9.0
Microsoft.AspNetCore.AsyncState10.9.0
Microsoft.AspNetCore.HeaderParsing10.9.0
Microsoft.Extensions.AI.Evaluation.NLP10.9.0-preview.1.26411.16
Microsoft.Extensions.AI.Evaluation.Quality10.9.0
Microsoft.Extensions.AI.Evaluation.Reporting10.9.0
Microsoft.Extensions.AI.Evaluation.Safety10.9.0-preview.1.26411.16
Microsoft.Extensions.DataIngestion10.9.0-preview.1.26411.16
Microsoft.Extensions.Diagnostics.HealthChecks.Common10.9.0
Microsoft.Extensions.Diagnostics.Probes10.9.0-preview.1.26411.16
Microsoft.Extensions.Diagnostics.ResourceMonitoring10.9.0
Microsoft.Extensions.Diagnostics.Testing10.9.0
Microsoft.Extensions.Resilience10.9.0
Microsoft.Extensions.ServiceDiscovery.Dns10.9.0
Microsoft.Extensions.ServiceDiscovery.Yarp10.9.0
Microsoft.Extensions.Telemetry10.9.0
Microsoft.Extensions.VectorData.ConformanceTests10.9.0
Microsoft.AspNetCore.Diagnostics.Middleware10.9.0
Microsoft.Extensions.AI.Evaluation.Reporting.Azure10.9.0
Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization10.9.0
Microsoft.Extensions.Diagnostics.ResourceMonitoring.Kubernetes10.9.0
Microsoft.Extensions.Hosting.Testing10.9.0-preview.1.26411.16
Microsoft.Extensions.Http.Diagnostics10.9.0
Microsoft.Extensions.Http.Resilience10.9.0

The Microsoft.Agents.AI.ProjectTemplates package is not included in this release.

v10.8.0

This release adds new experimental APIs to Microsoft.Extensions.AI.Abstractions and updates the OpenAI dependency to 2.12.0, alongside documentation, test, and repository maintenance.

Experimental API Changes
N

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch from 10222e1 to 2847db6CompareNovember 11, 2024 17:02
@renovaterenovateBot changed the title Update dependency AWSSDK.S3 to 3.7.405.10Update all non-major dependenciesNov 11, 2024
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 2 times, most recently from f3f6983 to 99805faCompareNovember 12, 2024 18:38
@renovaterenovateBot changed the title Update all non-major dependenciesUpdate dependency AWSSDK.S3 to 3.7.405.11Nov 12, 2024
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch from 99805fa to 6b59e7eCompareNovember 13, 2024 20:21
@renovaterenovateBot changed the title Update dependency AWSSDK.S3 to 3.7.405.11Update all non-major dependenciesNov 13, 2024
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 10 times, most recently from 7e93ecd to 379baa4CompareNovember 21, 2024 20:35
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 6 times, most recently from 7d2aaff to 60fe895CompareNovember 28, 2024 21:53
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 7 times, most recently from fce21c3 to 1e7fda3CompareDecember 6, 2024 21:49
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 5 times, most recently from 6d150bf to 0acc6a0CompareDecember 26, 2024 22:06
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 3 times, most recently from f2e1fec to 7f3e574CompareJanuary 5, 2025 22:31
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 7 times, most recently from 5102213 to dc24af3CompareJanuary 13, 2025 10:15
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 6 times, most recently from ffc43b6 to 3208b54CompareJanuary 21, 2025 01:12
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 3 times, most recently from 8806ff6 to 5232738CompareJanuary 29, 2025 14:18
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 4 times, most recently from 3c33435 to de76e9aCompareFebruary 3, 2025 13:09
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch from de76e9a to c9ccb5aCompareFebruary 7, 2025 17:39
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Highlight search terms from Google/DuckDuckGo/Bing referrer\n(function() {\n var ref = document.referrer;\n var terms = [];\n \n if (ref.includes('google.com') || ref.includes('duckduckgo.com') || ref.includes('bing.com')) {\n var url = new URL(ref);\n var q = url.searchParams.get('q') || url.searchParams.get('p');\n if (q) {\n terms = q.split(/\\s+/).filter(function(t) { return t.length > 2; });\n }\n }\n \n if (terms.length === 0) return;\n \n var style = document.createElement('style');\n style.textContent = '.userscript-highlight { background: #fbbf24; color: #1a1a2e; padding: 1px 3px; border-radius: 2px; }';\n document.head.appendChild(style);\n \n function highlight(node) {\n if (node.nodeType === 3) { // text node\n var text = node.textContent;\n var found = false;\n terms.forEach(function(term) {\n var regex = new RegExp('(' + term.replace(/[.*+?^${}()|[\\]\\\\]/g, '\\\\') + ')', 'gi');\n if (regex.test(text)) {\n found = true;\n var frag = document.createDocumentFragment();\n var parts = text.split(regex);\n parts.forEach(function(part, i) {\n if (i % 2 === 0) {\n frag.appendChild(document.createTextNode(part));\n } else {\n var span = document.createElement('span');\n span.className = 'userscript-highlight';\n span.textContent = part;\n frag.appendChild(span);\n }\n });\n node.parentNode.replaceChild(frag, node);\n }\n });\n } else if (node.nodeType === 1 && node.childNodes) { // element\n var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT'];\n if (!skipTags.includes(node.tagName)) {\n Array.from(node.childNodes).forEach(highlight);\n }\n }\n }\n \n highlight(document.body);\n \n // Re-highlight on dynamic content\n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1 || node.nodeType === 3) highlight(node);\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Highlight Search Terms"); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

Update all non-major dependencies - #66

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/all-minor-patch
Open

Update all non-major dependencies#66
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/all-minor-patch

Conversation

@renovate

@renovaterenovateBot commented Nov 11, 2024

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

PackageChangeAgeAdoptionPassingConfidenceTypeUpdate
AWSSDK.S34.0.18.74.0.102.4ageadoptionpassingconfidencenugetpatch
ErrorOr2.0.12.1.1ageadoptionpassingconfidencenugetminor
FastEndpoints (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Generator (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Security (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Swagger (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Testing (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
HtmlSanitizer9.0.8929.2.1039ageadoptionpassingconfidencenugetminor
Microsoft.AspNetCore.Authentication.JwtBearer (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.AspNetCore.Identity.EntityFrameworkCore (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.AspNetCore.OpenApi (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.AspNetCore.OutputCaching.StackExchangeRedis (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.EntityFrameworkCore.InMemory (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.EntityFrameworkCore.Tools (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.Extensions.Caching.Hybrid (source)10.3.010.9.0ageadoptionpassingconfidencenugetminor
Microsoft.Extensions.Caching.StackExchangeRedis (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.Extensions.Http.Resilience (source)10.3.010.9.0ageadoptionpassingconfidencenugetminor
Microsoft.Extensions.TimeProvider.Testing (source)10.3.010.9.0ageadoptionpassingconfidencenugetminor
Microsoft.NET.Test.Sdk18.3.018.9.0ageadoptionpassingconfidencenugetminor
MinecraftRenderer0.4.20.9.0ageadoptionpassingconfidencenugetminor
Npgsql10.0.110.0.3ageadoptionpassingconfidencenugetpatch
Npgsql.EntityFrameworkCore.PostgreSQL10.0.010.0.3ageadoptionpassingconfidencenugetpatch
OpenTelemetry.Extensions.Hosting (source)1.15.01.18.0ageadoptionpassingconfidencenugetminor
Pyroscope (source)0.14.10.15.0ageadoptionpassingconfidencenugetminor
Pyroscope.OpenTelemetry (source)0.4.00.5.1ageadoptionpassingconfidencenugetminor
Quartz.Extensions.Hosting (source)3.16.13.20.0ageadoptionpassingconfidencenugetminor
Refit10.0.110.2.0ageadoptionpassingconfidencenugetminor
Refit.HttpClientFactory10.0.110.2.0ageadoptionpassingconfidencenugetminor
Scalar.AspNetCore (source)2.13.12.17.2ageadoptionpassingconfidencenugetminor
SkyblockRepo0.4.30.5.2ageadoptionpassingconfidencenugetminor
StackExchange.Redis (source)2.11.82.13.17ageadoptionpassingconfidencenugetminor
Swashbuckle.AspNetCore10.1.410.2.3ageadoptionpassingconfidencenugetminor
Swashbuckle.AspNetCore.Annotations10.1.410.2.3ageadoptionpassingconfidencenugetminor
System.Linq.Async7.0.07.0.1ageadoptionpassingconfidencenugetpatch
System.Threading.RateLimiting (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Testcontainers.PostgreSql (source)4.10.04.14.0ageadoptionpassingconfidencenugetminor
ZLinq1.5.51.5.6ageadoptionpassingconfidencenugetpatch
coverlet.collector8.0.08.0.1ageadoptionpassingconfidencenugetpatch
dotnet-ef (source)10.0.110.0.11ageadoptionpassingconfidencenugetpatch
prom/prometheusv3.5.0v3.14.0ageadoptionpassingconfidenceminor
pyroscope/pyroscope-dotnet0.13.0-glibc0.14.5-glibcageadoptionpassingconfidencestageminor
redis (source)8.4-alpine8.10-alpineageadoptionpassingconfidenceminor

Release Notes

aws/aws-sdk-net (AWSSDK.S3)

v4.0.102

v4.0.101

v4.0.100

v4.0.25

v4.0.24

v4.0.23

v4.0.22

v4.0.21

v4.0.20

v4.0.19

error-or/error-or (ErrorOr)

v2.1.1

Added
  • #​94, #​95 Added missing async versions of FailIf methods

    publicasyncTask<ErrorOr<TValue>>FailIfAsync(Func<TValue,Task<bool>>onValue,Errorerror)
    publicstaticasyncTask<ErrorOr<TValue>>FailIf<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,bool>onValue,Errorerror)
    publicstaticasyncTask<ErrorOr<TValue>>FailIfAsync<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,Task<bool>>onValue,Errorerror)
  • #​104 Support for .NET 8 was added

  • #​109, #​111 Added FailIf method overloads that allow to use value in error definition using Func<TValue, Error> error builder

    publicErrorOr<TValue>FailIf(Func<TValue,bool>onValue,Func<TValue,Error>errorBuilder)
    publicasyncTask<ErrorOr<TValue>>FailIfAsync(Func<TValue,Task<bool>>onValue,Func<TValue,Task<Error>>errorBuilder)
    publicstaticasyncTask<ErrorOr<TValue>>FailIf<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,bool>onValue,Func<TValue,Error>errorBuilder)
    publicstaticasyncTask<ErrorOr<TValue>>FailIfAsync<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,Task<bool>>onValue,Func<TValue,Task<Error>>errorBuilder)

    Value can now be used to build the error:

    ErrorOr<int>result=errorOrInt.FailIf(num =>num>3,(num)=>Error.Failure(description:$"{num} is greater than 3"));
  • #​117 Added ElseDo and ElseDoAsync methods

    Actions returning no result can now be called when IsError is true.

    ErrorOr<string>foo=result.Else(errors =>Error.Unexpected()).ElseDo(error =>Console.WriteLine(error.FirstError.Description));
    ErrorOr<string>foo=awaitresult.ElseDoAsync(HandleErrorAsync);
  • #​122 Added ToErrorOrAsync method

    Values in Task can now be easily converted to ErrorOr.

    ErrorOr<int>result=awaitTask.FromResult(5).ToErrorOrAsync();
  • #​129 Added missing ErrorOrFactory.From methods

    Now following calls from README.md are available

    ErrorOr<int>result=ErrorOrFactory.From<int>(Error.Unexpected());ErrorOr<int>result=ErrorOrFactory.From<int>([Error.Validation(),Error.Validation()]);

    Following call is now obsolete

    ErrorOr<int>errorOrPerson=ErrorOr<int>.From([Error.Validation(),Error.Validation()]);
  • #​133 Added missing collection expression support

    Now following call from README.md is available

    ErrorOr<int>result=[Error.Validation(),Error.Validation()];
  • #​134 Added FromAsync and missing ToErrorOrAsync methods

    Added support for FromAsync methods.

    publicasyncTak<ErrorOr<int>>GetValueAsync(){returnawaitErrorOrFactory.FromAsync(5);}
    publicasyncTak<ErrorOr<int>>SingleErrorToErrorOrAsync(){returnawaitErrorOrFactory.FromAsync<int>(Error.Unexpected());}
    publicasyncTak<ErrorOr<int>>MultipleErrorsToErrorOrAsync(){returnawaitErrorOrFactory.FromAsync([Error.Validation(description:"Invalid Name"),Error.Validation(description:"Invalid Last Name")]);}

    Added support for ToErrorOrAsync methods from errors:

    Task<Error>errorTask=Task.FromResult(Error.Validation());ErrorOr<int>result=errorTask.ToErrorOrAsync<int>();
    List<Error>errors=[Error.Unauthorized(),Error.Validation()];Task<List<Error>>errorsTask=Task.FromResult(errors);ErrorOr<int>result=awaiterrorsTask.ToErrorOrAsync<int>();
  • #​149 Added Else/ElseAsync overloads returning ErrorOr

  • #​152 Added ThenEnsure and ThenEnsureAsync methods.

    They are similar to ThenDo and ThenDoAsync, but they receive a function that can return errors.
    If no errors are returned, the original value is preserved and the ensure function's success value is ignored.

  • #​159 Added IsSuccess property to ErrorOr

  • #​158 Added support for serialization via IErrorOr interface without direct access to Value property. The IRecordable base interface provides a way to obtain a serialized representation of the current state.

    voidLog(IErrorOrresult){Console.WriteLine(result.GetRecording(serializer));}

    IRecordingSerializer<TOutput> interface can be implemented to provide concrete serialization strategy, for exaple JSON serialization:

    usingSystem.Text.Json;usingSystem.Text.Json.Serialization;usingErrorOr;publicclassSystemTextJsonRecordingSerializer:IRecordingSerializer<string>{privatestaticreadonlyJsonSerializerOptionsJsonOptions=new(){WriteIndented=true,Converters={newJsonStringEnumConverter()},DefaultIgnoreCondition=JsonIgnoreCondition.Never,};publicstringSerializeValue<TValue>(TValuevalue)=>JsonSerializer.Serialize(value,JsonOptions);publicstringSerializeErrors(List<Error>errors)=>JsonSerializer.Serialize(errors,JsonOptions);}
  • #​179 Support for .NET 10 was added

Fixed
  • #​85, #​97ErrorOr turned into Value Object by reimplementing Equals and GetHashCode methods

    New dependency was introduced to Microsoft.Bcl.HashCode and development dependency was introduced to Nullable

  • #​178 Initializing ErrorOr<T> with empty or null error collection results with unexpected error.

Optimized
  • #​98, #​99 Memory consumption optimized by moving static empty errors lists from generic struct into non-generic class
Refactored
  • #​154 Modernized NuGet publish workflow
mganss/HtmlSanitizer (HtmlSanitizer)

v9.2.1039: 9.2.1039

Fix attribute bypass in SanitizeDom(string) wrapper elements

v9.2.995: 9.2.995

  • AngleSharp dependency updated from 1.7.0 to 1.7.1 (4515e1f)
  • Sanitization enhancements for URI attributes
    • Added cite and longdesc attributes to URL sanitization (e47862e)
    • Enhanced sanitization of srcdoc content and attributes holding URI lists (edb2633)
  • CSS/style handling improvements
    • Added sanitization of CSS declarations in style elements with type="" attribute (0592f1e)
    • Fixed sanitization of CSS @font-face and @import at-rules (1d33413)
  • Bug fixes
  • Test improvements
    • Refactored test suite for style element sanitization (0592f1e)
    • Improved performance of ThreadTest (0ab33ba)
  • Documentation
    • Added XML code usage examples for HtmlSanitizerOptions properties (#​632)

v9.1.982: 9.1.982

Fix multiple enumeration of URLs (fixes #​625)

v9.1.981: 9.1.981

Update NuGet packages

v9.1.974: 9.1.974

Add FilterCssRule event (fixes #​622)

v9.1.973: 9.1.973

Update to AngleSharp 1.6.0 and AngleSharp.Css 1.0.0

dotnet/dotnet (Microsoft.AspNetCore.Authentication.JwtBearer)

v10.0.11

v10.0.10

v10.0.9

v10.0.8

v10.0.7

v10.0.6

v10.0.5

v10.0.4

dotnet/extensions (Microsoft.Extensions.Caching.Hybrid)

v10.9.0

Version 10.9.0 is headlined by changes in these areas:

  • AI: New experimental routing APIs center on the abstract RoutingChatClient base class, with SemanticRoutingChatClient as a concrete semantic-routing implementation. Separately, the abstract FailoverChatClient specialization and its concrete OrderedFailoverChatClient implementation add failover routing.
  • AI Evaluation: The generated report gains redesigned Overview, Cases, History, and Comparison views.
  • ASP.NET Core and HTTP diagnostics: The release adds HTTP request latency log enrichment and fixes configuration binding, response-body logging, request-path redaction, and resilience package version handling.
  • Source-generated logging and service discovery: Fixes cover classification type qualification, thread-local state cleanup, and DNS query suffix handling.

Experimental API Changes

New Experimental APIs
  • New experimental API: HTTP request latency log enrichment (EXTEXP0013) #​7602
  • New experimental API: Chat client routing and failover (MEAI001) #​7662

What's Changed

AI (Microsoft.Extensions.AI, Microsoft.Extensions.AI.Abstractions, and Microsoft.Extensions.AI.OpenAI)

Note: Microsoft.Extensions.AI.OpenAI constrains its dependency for OpenAI to 2.12.x, preventing OpenAI updates to 2.13.0+ due to an incompatibility. We expect to release Microsoft.Extensions.AI.OpenAI version 10.9.1 during the week of August 17 to address this issue.

HTTP Resilience and Diagnostics (Microsoft.Extensions.Http.Resilience and Microsoft.Extensions.Http.Diagnostics)
ASP.NET Core Extensions (Microsoft.AspNetCore.Diagnostics.Middleware)
Logging Source Generator (Microsoft.Gen.Logging)
AI Evaluation (Microsoft.Extensions.AI.Evaluation.Reporting)
Project Templates (Microsoft.McpServer.ProjectTemplates)

Note: The MCP server project template was migrated to the dotnet/aspnetcore repository, and it is now included in the .NET 10 and .NET 11 SDKs.

Service Discovery (Microsoft.Extensions.ServiceDiscovery.Dns)

Test Improvements

Repository Infrastructure Updates

  • [main] Update dependencies from dotnet/arcade #​7621
  • Merge release/10.8 into main #​7632 by @​jeffhandley (co-authored by @​jozkee@​Copilot)
  • Add agentic workflows that keep Microsoft.Extensions.AI aligned with OpenTelemetry GenAI semantic-conventions #​7611 by @​jeffhandley (co-authored by @​Copilot)
  • Bump brace-expansion, eslint and tfx-cli in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript #​7648
  • Add a release-manager agent for the dotnet/extensions release process #​7643 by @​jeffhandley (co-authored by @​Copilot)
  • Bump CommunityToolkit.VectorData package baselines to 1.0.0 / 1.0.0-preview #​7651 by @​adamsitnik (co-authored by @​Copilot)
  • Incorporate servicing release experience into release-manager playbooks #​7656 by @​jeffhandley (co-authored by @​Copilot)
  • Bump dotnet-reportgenerator-globaltool from 5.5.10 to 5.5.11 #​7666
  • Bump adm-zip and azure-pipelines-task-lib in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript/azure-devops-report/tasks/PublishAIEvaluationReport #​7652
  • Bump postcss from 8.5.15 to 8.5.23 in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript #​7660
  • Bump PowerShell from 7.6.3 to 7.6.4 #​7650
  • [main] Update dependencies from dotnet/arcade #​7644
  • [release-manager] Require package dependency closure for releases #​7693 by @​jeffhandley (co-authored by @​Copilot)
  • Optionally allow official builds to publish VSIX extension. #​7692 by @​peterwald
  • [main] Update dependencies from dotnet/arcade #​7690

Acknowledgements

Full Changelog: dotnet/extensions@v10.8.4...v10.9.0

Packages in this release

PackageVersion
Microsoft.AspNetCore.Testing10.9.0
Microsoft.Extensions.AI.Abstractions10.9.0
Microsoft.Extensions.AI.Evaluation.Console10.9.0
Microsoft.Extensions.AI.Templates10.9.0-preview.3.26411.16
Microsoft.Extensions.AmbientMetadata.Application10.9.0
Microsoft.Extensions.AmbientMetadata.Build10.9.0
Microsoft.Extensions.AuditReports10.9.0
Microsoft.Extensions.Caching.Hybrid10.9.0
Microsoft.Extensions.Compliance.Abstractions10.9.0
Microsoft.Extensions.DataIngestion.Abstractions10.9.0-preview.1.26411.16
Microsoft.Extensions.DependencyInjection.AutoActivation10.9.0
Microsoft.Extensions.Diagnostics.ExceptionSummarization10.9.0
Microsoft.Extensions.ObjectPool.DependencyInjection10.9.0
Microsoft.Extensions.Options.Contextual10.9.0-preview.1.26411.16
Microsoft.Extensions.ServiceDiscovery.Abstractions10.9.0
Microsoft.Extensions.StaticAnalysis10.9.0
Microsoft.Extensions.TimeProvider.Testing10.9.0
Microsoft.Extensions.AI10.9.0
Microsoft.Extensions.AI.Evaluation10.9.0
Microsoft.Extensions.AI.OpenAI10.9.0
Microsoft.Extensions.AsyncState10.9.0
Microsoft.Extensions.Compliance.Redaction10.9.0
Microsoft.Extensions.Compliance.Testing10.9.0
Microsoft.Extensions.DataIngestion.Markdig10.9.0-preview.1.26411.16
Microsoft.Extensions.DataIngestion.MarkItDown10.9.0-preview.1.26411.16
Microsoft.Extensions.ServiceDiscovery10.9.0
Microsoft.Extensions.Telemetry.Abstractions10.9.0
Microsoft.Extensions.VectorData.Abstractions10.9.0
Microsoft.AspNetCore.AsyncState10.9.0
Microsoft.AspNetCore.HeaderParsing10.9.0
Microsoft.Extensions.AI.Evaluation.NLP10.9.0-preview.1.26411.16
Microsoft.Extensions.AI.Evaluation.Quality10.9.0
Microsoft.Extensions.AI.Evaluation.Reporting10.9.0
Microsoft.Extensions.AI.Evaluation.Safety10.9.0-preview.1.26411.16
Microsoft.Extensions.DataIngestion10.9.0-preview.1.26411.16
Microsoft.Extensions.Diagnostics.HealthChecks.Common10.9.0
Microsoft.Extensions.Diagnostics.Probes10.9.0-preview.1.26411.16
Microsoft.Extensions.Diagnostics.ResourceMonitoring10.9.0
Microsoft.Extensions.Diagnostics.Testing10.9.0
Microsoft.Extensions.Resilience10.9.0
Microsoft.Extensions.ServiceDiscovery.Dns10.9.0
Microsoft.Extensions.ServiceDiscovery.Yarp10.9.0
Microsoft.Extensions.Telemetry10.9.0
Microsoft.Extensions.VectorData.ConformanceTests10.9.0
Microsoft.AspNetCore.Diagnostics.Middleware10.9.0
Microsoft.Extensions.AI.Evaluation.Reporting.Azure10.9.0
Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization10.9.0
Microsoft.Extensions.Diagnostics.ResourceMonitoring.Kubernetes10.9.0
Microsoft.Extensions.Hosting.Testing10.9.0-preview.1.26411.16
Microsoft.Extensions.Http.Diagnostics10.9.0
Microsoft.Extensions.Http.Resilience10.9.0

The Microsoft.Agents.AI.ProjectTemplates package is not included in this release.

v10.8.0

This release adds new experimental APIs to Microsoft.Extensions.AI.Abstractions and updates the OpenAI dependency to 2.12.0, alongside documentation, test, and repository maintenance.

Experimental API Changes
N

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch from 10222e1 to 2847db6CompareNovember 11, 2024 17:02
@renovaterenovateBot changed the title Update dependency AWSSDK.S3 to 3.7.405.10Update all non-major dependenciesNov 11, 2024
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 2 times, most recently from f3f6983 to 99805faCompareNovember 12, 2024 18:38
@renovaterenovateBot changed the title Update all non-major dependenciesUpdate dependency AWSSDK.S3 to 3.7.405.11Nov 12, 2024
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch from 99805fa to 6b59e7eCompareNovember 13, 2024 20:21
@renovaterenovateBot changed the title Update dependency AWSSDK.S3 to 3.7.405.11Update all non-major dependenciesNov 13, 2024
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 10 times, most recently from 7e93ecd to 379baa4CompareNovember 21, 2024 20:35
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 6 times, most recently from 7d2aaff to 60fe895CompareNovember 28, 2024 21:53
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 7 times, most recently from fce21c3 to 1e7fda3CompareDecember 6, 2024 21:49
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 5 times, most recently from 6d150bf to 0acc6a0CompareDecember 26, 2024 22:06
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 3 times, most recently from f2e1fec to 7f3e574CompareJanuary 5, 2025 22:31
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 7 times, most recently from 5102213 to dc24af3CompareJanuary 13, 2025 10:15
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 6 times, most recently from ffc43b6 to 3208b54CompareJanuary 21, 2025 01:12
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 3 times, most recently from 8806ff6 to 5232738CompareJanuary 29, 2025 14:18
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 4 times, most recently from 3c33435 to de76e9aCompareFebruary 3, 2025 13:09
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch from de76e9a to c9ccb5aCompareFebruary 7, 2025 17:39
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Strip utm_, fbclid, gclid, etc. from all links on page\n(function() {\n var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content',\n 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid',\n 'ref', 'ref_src', 'source', 'medium', 'campaign'];\n \n function cleanUrl(url) {\n try {\n var u = new URL(url, window.location.origin);\n var changed = false;\n trackingParams.forEach(function(p) {\n if (u.searchParams.has(p)) {\n u.searchParams.delete(p);\n changed = true;\n }\n });\n return changed ? u.toString() : url;\n } catch (e) {\n return url;\n }\n }\n \n function cleanLinks() {\n document.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n \n cleanLinks();\n \n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1) {\n if (node.tagName === 'A') cleanLinks();\n node.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Remove Tracking Parameters from Links"); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + '
Skip to content

Update all non-major dependencies - #66

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/all-minor-patch
Open

Update all non-major dependencies#66
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/all-minor-patch

Conversation

@renovate

@renovaterenovateBot commented Nov 11, 2024

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

PackageChangeAgeAdoptionPassingConfidenceTypeUpdate
AWSSDK.S34.0.18.74.0.102.4ageadoptionpassingconfidencenugetpatch
ErrorOr2.0.12.1.1ageadoptionpassingconfidencenugetminor
FastEndpoints (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Generator (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Security (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Swagger (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Testing (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
HtmlSanitizer9.0.8929.2.1039ageadoptionpassingconfidencenugetminor
Microsoft.AspNetCore.Authentication.JwtBearer (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.AspNetCore.Identity.EntityFrameworkCore (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.AspNetCore.OpenApi (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.AspNetCore.OutputCaching.StackExchangeRedis (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.EntityFrameworkCore.InMemory (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.EntityFrameworkCore.Tools (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.Extensions.Caching.Hybrid (source)10.3.010.9.0ageadoptionpassingconfidencenugetminor
Microsoft.Extensions.Caching.StackExchangeRedis (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.Extensions.Http.Resilience (source)10.3.010.9.0ageadoptionpassingconfidencenugetminor
Microsoft.Extensions.TimeProvider.Testing (source)10.3.010.9.0ageadoptionpassingconfidencenugetminor
Microsoft.NET.Test.Sdk18.3.018.9.0ageadoptionpassingconfidencenugetminor
MinecraftRenderer0.4.20.9.0ageadoptionpassingconfidencenugetminor
Npgsql10.0.110.0.3ageadoptionpassingconfidencenugetpatch
Npgsql.EntityFrameworkCore.PostgreSQL10.0.010.0.3ageadoptionpassingconfidencenugetpatch
OpenTelemetry.Extensions.Hosting (source)1.15.01.18.0ageadoptionpassingconfidencenugetminor
Pyroscope (source)0.14.10.15.0ageadoptionpassingconfidencenugetminor
Pyroscope.OpenTelemetry (source)0.4.00.5.1ageadoptionpassingconfidencenugetminor
Quartz.Extensions.Hosting (source)3.16.13.20.0ageadoptionpassingconfidencenugetminor
Refit10.0.110.2.0ageadoptionpassingconfidencenugetminor
Refit.HttpClientFactory10.0.110.2.0ageadoptionpassingconfidencenugetminor
Scalar.AspNetCore (source)2.13.12.17.2ageadoptionpassingconfidencenugetminor
SkyblockRepo0.4.30.5.2ageadoptionpassingconfidencenugetminor
StackExchange.Redis (source)2.11.82.13.17ageadoptionpassingconfidencenugetminor
Swashbuckle.AspNetCore10.1.410.2.3ageadoptionpassingconfidencenugetminor
Swashbuckle.AspNetCore.Annotations10.1.410.2.3ageadoptionpassingconfidencenugetminor
System.Linq.Async7.0.07.0.1ageadoptionpassingconfidencenugetpatch
System.Threading.RateLimiting (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Testcontainers.PostgreSql (source)4.10.04.14.0ageadoptionpassingconfidencenugetminor
ZLinq1.5.51.5.6ageadoptionpassingconfidencenugetpatch
coverlet.collector8.0.08.0.1ageadoptionpassingconfidencenugetpatch
dotnet-ef (source)10.0.110.0.11ageadoptionpassingconfidencenugetpatch
prom/prometheusv3.5.0v3.14.0ageadoptionpassingconfidenceminor
pyroscope/pyroscope-dotnet0.13.0-glibc0.14.5-glibcageadoptionpassingconfidencestageminor
redis (source)8.4-alpine8.10-alpineageadoptionpassingconfidenceminor

Release Notes

aws/aws-sdk-net (AWSSDK.S3)

v4.0.102

v4.0.101

v4.0.100

v4.0.25

v4.0.24

v4.0.23

v4.0.22

v4.0.21

v4.0.20

v4.0.19

error-or/error-or (ErrorOr)

v2.1.1

Added
  • #​94, #​95 Added missing async versions of FailIf methods

    publicasyncTask<ErrorOr<TValue>>FailIfAsync(Func<TValue,Task<bool>>onValue,Errorerror)
    publicstaticasyncTask<ErrorOr<TValue>>FailIf<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,bool>onValue,Errorerror)
    publicstaticasyncTask<ErrorOr<TValue>>FailIfAsync<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,Task<bool>>onValue,Errorerror)
  • #​104 Support for .NET 8 was added

  • #​109, #​111 Added FailIf method overloads that allow to use value in error definition using Func<TValue, Error> error builder

    publicErrorOr<TValue>FailIf(Func<TValue,bool>onValue,Func<TValue,Error>errorBuilder)
    publicasyncTask<ErrorOr<TValue>>FailIfAsync(Func<TValue,Task<bool>>onValue,Func<TValue,Task<Error>>errorBuilder)
    publicstaticasyncTask<ErrorOr<TValue>>FailIf<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,bool>onValue,Func<TValue,Error>errorBuilder)
    publicstaticasyncTask<ErrorOr<TValue>>FailIfAsync<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,Task<bool>>onValue,Func<TValue,Task<Error>>errorBuilder)

    Value can now be used to build the error:

    ErrorOr<int>result=errorOrInt.FailIf(num =>num>3,(num)=>Error.Failure(description:$"{num} is greater than 3"));
  • #​117 Added ElseDo and ElseDoAsync methods

    Actions returning no result can now be called when IsError is true.

    ErrorOr<string>foo=result.Else(errors =>Error.Unexpected()).ElseDo(error =>Console.WriteLine(error.FirstError.Description));
    ErrorOr<string>foo=awaitresult.ElseDoAsync(HandleErrorAsync);
  • #​122 Added ToErrorOrAsync method

    Values in Task can now be easily converted to ErrorOr.

    ErrorOr<int>result=awaitTask.FromResult(5).ToErrorOrAsync();
  • #​129 Added missing ErrorOrFactory.From methods

    Now following calls from README.md are available

    ErrorOr<int>result=ErrorOrFactory.From<int>(Error.Unexpected());ErrorOr<int>result=ErrorOrFactory.From<int>([Error.Validation(),Error.Validation()]);

    Following call is now obsolete

    ErrorOr<int>errorOrPerson=ErrorOr<int>.From([Error.Validation(),Error.Validation()]);
  • #​133 Added missing collection expression support

    Now following call from README.md is available

    ErrorOr<int>result=[Error.Validation(),Error.Validation()];
  • #​134 Added FromAsync and missing ToErrorOrAsync methods

    Added support for FromAsync methods.

    publicasyncTak<ErrorOr<int>>GetValueAsync(){returnawaitErrorOrFactory.FromAsync(5);}
    publicasyncTak<ErrorOr<int>>SingleErrorToErrorOrAsync(){returnawaitErrorOrFactory.FromAsync<int>(Error.Unexpected());}
    publicasyncTak<ErrorOr<int>>MultipleErrorsToErrorOrAsync(){returnawaitErrorOrFactory.FromAsync([Error.Validation(description:"Invalid Name"),Error.Validation(description:"Invalid Last Name")]);}

    Added support for ToErrorOrAsync methods from errors:

    Task<Error>errorTask=Task.FromResult(Error.Validation());ErrorOr<int>result=errorTask.ToErrorOrAsync<int>();
    List<Error>errors=[Error.Unauthorized(),Error.Validation()];Task<List<Error>>errorsTask=Task.FromResult(errors);ErrorOr<int>result=awaiterrorsTask.ToErrorOrAsync<int>();
  • #​149 Added Else/ElseAsync overloads returning ErrorOr

  • #​152 Added ThenEnsure and ThenEnsureAsync methods.

    They are similar to ThenDo and ThenDoAsync, but they receive a function that can return errors.
    If no errors are returned, the original value is preserved and the ensure function's success value is ignored.

  • #​159 Added IsSuccess property to ErrorOr

  • #​158 Added support for serialization via IErrorOr interface without direct access to Value property. The IRecordable base interface provides a way to obtain a serialized representation of the current state.

    voidLog(IErrorOrresult){Console.WriteLine(result.GetRecording(serializer));}

    IRecordingSerializer<TOutput> interface can be implemented to provide concrete serialization strategy, for exaple JSON serialization:

    usingSystem.Text.Json;usingSystem.Text.Json.Serialization;usingErrorOr;publicclassSystemTextJsonRecordingSerializer:IRecordingSerializer<string>{privatestaticreadonlyJsonSerializerOptionsJsonOptions=new(){WriteIndented=true,Converters={newJsonStringEnumConverter()},DefaultIgnoreCondition=JsonIgnoreCondition.Never,};publicstringSerializeValue<TValue>(TValuevalue)=>JsonSerializer.Serialize(value,JsonOptions);publicstringSerializeErrors(List<Error>errors)=>JsonSerializer.Serialize(errors,JsonOptions);}
  • #​179 Support for .NET 10 was added

Fixed
  • #​85, #​97ErrorOr turned into Value Object by reimplementing Equals and GetHashCode methods

    New dependency was introduced to Microsoft.Bcl.HashCode and development dependency was introduced to Nullable

  • #​178 Initializing ErrorOr<T> with empty or null error collection results with unexpected error.

Optimized
  • #​98, #​99 Memory consumption optimized by moving static empty errors lists from generic struct into non-generic class
Refactored
  • #​154 Modernized NuGet publish workflow
mganss/HtmlSanitizer (HtmlSanitizer)

v9.2.1039: 9.2.1039

Fix attribute bypass in SanitizeDom(string) wrapper elements

v9.2.995: 9.2.995

  • AngleSharp dependency updated from 1.7.0 to 1.7.1 (4515e1f)
  • Sanitization enhancements for URI attributes
    • Added cite and longdesc attributes to URL sanitization (e47862e)
    • Enhanced sanitization of srcdoc content and attributes holding URI lists (edb2633)
  • CSS/style handling improvements
    • Added sanitization of CSS declarations in style elements with type="" attribute (0592f1e)
    • Fixed sanitization of CSS @font-face and @import at-rules (1d33413)
  • Bug fixes
  • Test improvements
    • Refactored test suite for style element sanitization (0592f1e)
    • Improved performance of ThreadTest (0ab33ba)
  • Documentation
    • Added XML code usage examples for HtmlSanitizerOptions properties (#​632)

v9.1.982: 9.1.982

Fix multiple enumeration of URLs (fixes #​625)

v9.1.981: 9.1.981

Update NuGet packages

v9.1.974: 9.1.974

Add FilterCssRule event (fixes #​622)

v9.1.973: 9.1.973

Update to AngleSharp 1.6.0 and AngleSharp.Css 1.0.0

dotnet/dotnet (Microsoft.AspNetCore.Authentication.JwtBearer)

v10.0.11

v10.0.10

v10.0.9

v10.0.8

v10.0.7

v10.0.6

v10.0.5

v10.0.4

dotnet/extensions (Microsoft.Extensions.Caching.Hybrid)

v10.9.0

Version 10.9.0 is headlined by changes in these areas:

  • AI: New experimental routing APIs center on the abstract RoutingChatClient base class, with SemanticRoutingChatClient as a concrete semantic-routing implementation. Separately, the abstract FailoverChatClient specialization and its concrete OrderedFailoverChatClient implementation add failover routing.
  • AI Evaluation: The generated report gains redesigned Overview, Cases, History, and Comparison views.
  • ASP.NET Core and HTTP diagnostics: The release adds HTTP request latency log enrichment and fixes configuration binding, response-body logging, request-path redaction, and resilience package version handling.
  • Source-generated logging and service discovery: Fixes cover classification type qualification, thread-local state cleanup, and DNS query suffix handling.

Experimental API Changes

New Experimental APIs
  • New experimental API: HTTP request latency log enrichment (EXTEXP0013) #​7602
  • New experimental API: Chat client routing and failover (MEAI001) #​7662

What's Changed

AI (Microsoft.Extensions.AI, Microsoft.Extensions.AI.Abstractions, and Microsoft.Extensions.AI.OpenAI)

Note: Microsoft.Extensions.AI.OpenAI constrains its dependency for OpenAI to 2.12.x, preventing OpenAI updates to 2.13.0+ due to an incompatibility. We expect to release Microsoft.Extensions.AI.OpenAI version 10.9.1 during the week of August 17 to address this issue.

HTTP Resilience and Diagnostics (Microsoft.Extensions.Http.Resilience and Microsoft.Extensions.Http.Diagnostics)
ASP.NET Core Extensions (Microsoft.AspNetCore.Diagnostics.Middleware)
Logging Source Generator (Microsoft.Gen.Logging)
AI Evaluation (Microsoft.Extensions.AI.Evaluation.Reporting)
Project Templates (Microsoft.McpServer.ProjectTemplates)

Note: The MCP server project template was migrated to the dotnet/aspnetcore repository, and it is now included in the .NET 10 and .NET 11 SDKs.

Service Discovery (Microsoft.Extensions.ServiceDiscovery.Dns)

Test Improvements

Repository Infrastructure Updates

  • [main] Update dependencies from dotnet/arcade #​7621
  • Merge release/10.8 into main #​7632 by @​jeffhandley (co-authored by @​jozkee@​Copilot)
  • Add agentic workflows that keep Microsoft.Extensions.AI aligned with OpenTelemetry GenAI semantic-conventions #​7611 by @​jeffhandley (co-authored by @​Copilot)
  • Bump brace-expansion, eslint and tfx-cli in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript #​7648
  • Add a release-manager agent for the dotnet/extensions release process #​7643 by @​jeffhandley (co-authored by @​Copilot)
  • Bump CommunityToolkit.VectorData package baselines to 1.0.0 / 1.0.0-preview #​7651 by @​adamsitnik (co-authored by @​Copilot)
  • Incorporate servicing release experience into release-manager playbooks #​7656 by @​jeffhandley (co-authored by @​Copilot)
  • Bump dotnet-reportgenerator-globaltool from 5.5.10 to 5.5.11 #​7666
  • Bump adm-zip and azure-pipelines-task-lib in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript/azure-devops-report/tasks/PublishAIEvaluationReport #​7652
  • Bump postcss from 8.5.15 to 8.5.23 in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript #​7660
  • Bump PowerShell from 7.6.3 to 7.6.4 #​7650
  • [main] Update dependencies from dotnet/arcade #​7644
  • [release-manager] Require package dependency closure for releases #​7693 by @​jeffhandley (co-authored by @​Copilot)
  • Optionally allow official builds to publish VSIX extension. #​7692 by @​peterwald
  • [main] Update dependencies from dotnet/arcade #​7690

Acknowledgements

Full Changelog: dotnet/extensions@v10.8.4...v10.9.0

Packages in this release

PackageVersion
Microsoft.AspNetCore.Testing10.9.0
Microsoft.Extensions.AI.Abstractions10.9.0
Microsoft.Extensions.AI.Evaluation.Console10.9.0
Microsoft.Extensions.AI.Templates10.9.0-preview.3.26411.16
Microsoft.Extensions.AmbientMetadata.Application10.9.0
Microsoft.Extensions.AmbientMetadata.Build10.9.0
Microsoft.Extensions.AuditReports10.9.0
Microsoft.Extensions.Caching.Hybrid10.9.0
Microsoft.Extensions.Compliance.Abstractions10.9.0
Microsoft.Extensions.DataIngestion.Abstractions10.9.0-preview.1.26411.16
Microsoft.Extensions.DependencyInjection.AutoActivation10.9.0
Microsoft.Extensions.Diagnostics.ExceptionSummarization10.9.0
Microsoft.Extensions.ObjectPool.DependencyInjection10.9.0
Microsoft.Extensions.Options.Contextual10.9.0-preview.1.26411.16
Microsoft.Extensions.ServiceDiscovery.Abstractions10.9.0
Microsoft.Extensions.StaticAnalysis10.9.0
Microsoft.Extensions.TimeProvider.Testing10.9.0
Microsoft.Extensions.AI10.9.0
Microsoft.Extensions.AI.Evaluation10.9.0
Microsoft.Extensions.AI.OpenAI10.9.0
Microsoft.Extensions.AsyncState10.9.0
Microsoft.Extensions.Compliance.Redaction10.9.0
Microsoft.Extensions.Compliance.Testing10.9.0
Microsoft.Extensions.DataIngestion.Markdig10.9.0-preview.1.26411.16
Microsoft.Extensions.DataIngestion.MarkItDown10.9.0-preview.1.26411.16
Microsoft.Extensions.ServiceDiscovery10.9.0
Microsoft.Extensions.Telemetry.Abstractions10.9.0
Microsoft.Extensions.VectorData.Abstractions10.9.0
Microsoft.AspNetCore.AsyncState10.9.0
Microsoft.AspNetCore.HeaderParsing10.9.0
Microsoft.Extensions.AI.Evaluation.NLP10.9.0-preview.1.26411.16
Microsoft.Extensions.AI.Evaluation.Quality10.9.0
Microsoft.Extensions.AI.Evaluation.Reporting10.9.0
Microsoft.Extensions.AI.Evaluation.Safety10.9.0-preview.1.26411.16
Microsoft.Extensions.DataIngestion10.9.0-preview.1.26411.16
Microsoft.Extensions.Diagnostics.HealthChecks.Common10.9.0
Microsoft.Extensions.Diagnostics.Probes10.9.0-preview.1.26411.16
Microsoft.Extensions.Diagnostics.ResourceMonitoring10.9.0
Microsoft.Extensions.Diagnostics.Testing10.9.0
Microsoft.Extensions.Resilience10.9.0
Microsoft.Extensions.ServiceDiscovery.Dns10.9.0
Microsoft.Extensions.ServiceDiscovery.Yarp10.9.0
Microsoft.Extensions.Telemetry10.9.0
Microsoft.Extensions.VectorData.ConformanceTests10.9.0
Microsoft.AspNetCore.Diagnostics.Middleware10.9.0
Microsoft.Extensions.AI.Evaluation.Reporting.Azure10.9.0
Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization10.9.0
Microsoft.Extensions.Diagnostics.ResourceMonitoring.Kubernetes10.9.0
Microsoft.Extensions.Hosting.Testing10.9.0-preview.1.26411.16
Microsoft.Extensions.Http.Diagnostics10.9.0
Microsoft.Extensions.Http.Resilience10.9.0

The Microsoft.Agents.AI.ProjectTemplates package is not included in this release.

v10.8.0

This release adds new experimental APIs to Microsoft.Extensions.AI.Abstractions and updates the OpenAI dependency to 2.12.0, alongside documentation, test, and repository maintenance.

Experimental API Changes
N

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch from 10222e1 to 2847db6CompareNovember 11, 2024 17:02
@renovaterenovateBot changed the title Update dependency AWSSDK.S3 to 3.7.405.10Update all non-major dependenciesNov 11, 2024
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 2 times, most recently from f3f6983 to 99805faCompareNovember 12, 2024 18:38
@renovaterenovateBot changed the title Update all non-major dependenciesUpdate dependency AWSSDK.S3 to 3.7.405.11Nov 12, 2024
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch from 99805fa to 6b59e7eCompareNovember 13, 2024 20:21
@renovaterenovateBot changed the title Update dependency AWSSDK.S3 to 3.7.405.11Update all non-major dependenciesNov 13, 2024
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 10 times, most recently from 7e93ecd to 379baa4CompareNovember 21, 2024 20:35
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 6 times, most recently from 7d2aaff to 60fe895CompareNovember 28, 2024 21:53
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 7 times, most recently from fce21c3 to 1e7fda3CompareDecember 6, 2024 21:49
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 5 times, most recently from 6d150bf to 0acc6a0CompareDecember 26, 2024 22:06
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 3 times, most recently from f2e1fec to 7f3e574CompareJanuary 5, 2025 22:31
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 7 times, most recently from 5102213 to dc24af3CompareJanuary 13, 2025 10:15
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 6 times, most recently from ffc43b6 to 3208b54CompareJanuary 21, 2025 01:12
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 3 times, most recently from 8806ff6 to 5232738CompareJanuary 29, 2025 14:18
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 4 times, most recently from 3c33435 to de76e9aCompareFebruary 3, 2025 13:09
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch from de76e9a to c9ccb5aCompareFebruary 7, 2025 17:39
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Auto-enable theater mode on YouTube\n(function() {\n function tryTheater() {\n var btn = document.querySelector('button[aria-label=\"Theater mode\"], ytd-player #player button[title=\"Theater mode\"]');\n if (btn && !btn.classList.contains('activated')) {\n btn.click();\n }\n }\n \n // Try immediately\n tryTheater();\n \n // Try after navigation (SPA)\n var lastUrl = location.href;\n setInterval(function() {\n if (location.href !== lastUrl) {\n lastUrl = location.href;\n setTimeout(tryTheater, 500);\n }\n }, 1000);\n \n // Also try on player load\n var observer = new MutationObserver(tryTheater);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "YouTube Theater Mode Default"); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

Update all non-major dependencies - #66

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/all-minor-patch
Open

Update all non-major dependencies#66
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/all-minor-patch

Conversation

@renovate

@renovaterenovateBot commented Nov 11, 2024

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

PackageChangeAgeAdoptionPassingConfidenceTypeUpdate
AWSSDK.S34.0.18.74.0.102.4ageadoptionpassingconfidencenugetpatch
ErrorOr2.0.12.1.1ageadoptionpassingconfidencenugetminor
FastEndpoints (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Generator (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Security (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Swagger (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Testing (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
HtmlSanitizer9.0.8929.2.1039ageadoptionpassingconfidencenugetminor
Microsoft.AspNetCore.Authentication.JwtBearer (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.AspNetCore.Identity.EntityFrameworkCore (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.AspNetCore.OpenApi (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.AspNetCore.OutputCaching.StackExchangeRedis (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.EntityFrameworkCore.InMemory (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.EntityFrameworkCore.Tools (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.Extensions.Caching.Hybrid (source)10.3.010.9.0ageadoptionpassingconfidencenugetminor
Microsoft.Extensions.Caching.StackExchangeRedis (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.Extensions.Http.Resilience (source)10.3.010.9.0ageadoptionpassingconfidencenugetminor
Microsoft.Extensions.TimeProvider.Testing (source)10.3.010.9.0ageadoptionpassingconfidencenugetminor
Microsoft.NET.Test.Sdk18.3.018.9.0ageadoptionpassingconfidencenugetminor
MinecraftRenderer0.4.20.9.0ageadoptionpassingconfidencenugetminor
Npgsql10.0.110.0.3ageadoptionpassingconfidencenugetpatch
Npgsql.EntityFrameworkCore.PostgreSQL10.0.010.0.3ageadoptionpassingconfidencenugetpatch
OpenTelemetry.Extensions.Hosting (source)1.15.01.18.0ageadoptionpassingconfidencenugetminor
Pyroscope (source)0.14.10.15.0ageadoptionpassingconfidencenugetminor
Pyroscope.OpenTelemetry (source)0.4.00.5.1ageadoptionpassingconfidencenugetminor
Quartz.Extensions.Hosting (source)3.16.13.20.0ageadoptionpassingconfidencenugetminor
Refit10.0.110.2.0ageadoptionpassingconfidencenugetminor
Refit.HttpClientFactory10.0.110.2.0ageadoptionpassingconfidencenugetminor
Scalar.AspNetCore (source)2.13.12.17.2ageadoptionpassingconfidencenugetminor
SkyblockRepo0.4.30.5.2ageadoptionpassingconfidencenugetminor
StackExchange.Redis (source)2.11.82.13.17ageadoptionpassingconfidencenugetminor
Swashbuckle.AspNetCore10.1.410.2.3ageadoptionpassingconfidencenugetminor
Swashbuckle.AspNetCore.Annotations10.1.410.2.3ageadoptionpassingconfidencenugetminor
System.Linq.Async7.0.07.0.1ageadoptionpassingconfidencenugetpatch
System.Threading.RateLimiting (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Testcontainers.PostgreSql (source)4.10.04.14.0ageadoptionpassingconfidencenugetminor
ZLinq1.5.51.5.6ageadoptionpassingconfidencenugetpatch
coverlet.collector8.0.08.0.1ageadoptionpassingconfidencenugetpatch
dotnet-ef (source)10.0.110.0.11ageadoptionpassingconfidencenugetpatch
prom/prometheusv3.5.0v3.14.0ageadoptionpassingconfidenceminor
pyroscope/pyroscope-dotnet0.13.0-glibc0.14.5-glibcageadoptionpassingconfidencestageminor
redis (source)8.4-alpine8.10-alpineageadoptionpassingconfidenceminor

Release Notes

aws/aws-sdk-net (AWSSDK.S3)

v4.0.102

v4.0.101

v4.0.100

v4.0.25

v4.0.24

v4.0.23

v4.0.22

v4.0.21

v4.0.20

v4.0.19

error-or/error-or (ErrorOr)

v2.1.1

Added
  • #​94, #​95 Added missing async versions of FailIf methods

    publicasyncTask<ErrorOr<TValue>>FailIfAsync(Func<TValue,Task<bool>>onValue,Errorerror)
    publicstaticasyncTask<ErrorOr<TValue>>FailIf<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,bool>onValue,Errorerror)
    publicstaticasyncTask<ErrorOr<TValue>>FailIfAsync<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,Task<bool>>onValue,Errorerror)
  • #​104 Support for .NET 8 was added

  • #​109, #​111 Added FailIf method overloads that allow to use value in error definition using Func<TValue, Error> error builder

    publicErrorOr<TValue>FailIf(Func<TValue,bool>onValue,Func<TValue,Error>errorBuilder)
    publicasyncTask<ErrorOr<TValue>>FailIfAsync(Func<TValue,Task<bool>>onValue,Func<TValue,Task<Error>>errorBuilder)
    publicstaticasyncTask<ErrorOr<TValue>>FailIf<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,bool>onValue,Func<TValue,Error>errorBuilder)
    publicstaticasyncTask<ErrorOr<TValue>>FailIfAsync<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,Task<bool>>onValue,Func<TValue,Task<Error>>errorBuilder)

    Value can now be used to build the error:

    ErrorOr<int>result=errorOrInt.FailIf(num =>num>3,(num)=>Error.Failure(description:$"{num} is greater than 3"));
  • #​117 Added ElseDo and ElseDoAsync methods

    Actions returning no result can now be called when IsError is true.

    ErrorOr<string>foo=result.Else(errors =>Error.Unexpected()).ElseDo(error =>Console.WriteLine(error.FirstError.Description));
    ErrorOr<string>foo=awaitresult.ElseDoAsync(HandleErrorAsync);
  • #​122 Added ToErrorOrAsync method

    Values in Task can now be easily converted to ErrorOr.

    ErrorOr<int>result=awaitTask.FromResult(5).ToErrorOrAsync();
  • #​129 Added missing ErrorOrFactory.From methods

    Now following calls from README.md are available

    ErrorOr<int>result=ErrorOrFactory.From<int>(Error.Unexpected());ErrorOr<int>result=ErrorOrFactory.From<int>([Error.Validation(),Error.Validation()]);

    Following call is now obsolete

    ErrorOr<int>errorOrPerson=ErrorOr<int>.From([Error.Validation(),Error.Validation()]);
  • #​133 Added missing collection expression support

    Now following call from README.md is available

    ErrorOr<int>result=[Error.Validation(),Error.Validation()];
  • #​134 Added FromAsync and missing ToErrorOrAsync methods

    Added support for FromAsync methods.

    publicasyncTak<ErrorOr<int>>GetValueAsync(){returnawaitErrorOrFactory.FromAsync(5);}
    publicasyncTak<ErrorOr<int>>SingleErrorToErrorOrAsync(){returnawaitErrorOrFactory.FromAsync<int>(Error.Unexpected());}
    publicasyncTak<ErrorOr<int>>MultipleErrorsToErrorOrAsync(){returnawaitErrorOrFactory.FromAsync([Error.Validation(description:"Invalid Name"),Error.Validation(description:"Invalid Last Name")]);}

    Added support for ToErrorOrAsync methods from errors:

    Task<Error>errorTask=Task.FromResult(Error.Validation());ErrorOr<int>result=errorTask.ToErrorOrAsync<int>();
    List<Error>errors=[Error.Unauthorized(),Error.Validation()];Task<List<Error>>errorsTask=Task.FromResult(errors);ErrorOr<int>result=awaiterrorsTask.ToErrorOrAsync<int>();
  • #​149 Added Else/ElseAsync overloads returning ErrorOr

  • #​152 Added ThenEnsure and ThenEnsureAsync methods.

    They are similar to ThenDo and ThenDoAsync, but they receive a function that can return errors.
    If no errors are returned, the original value is preserved and the ensure function's success value is ignored.

  • #​159 Added IsSuccess property to ErrorOr

  • #​158 Added support for serialization via IErrorOr interface without direct access to Value property. The IRecordable base interface provides a way to obtain a serialized representation of the current state.

    voidLog(IErrorOrresult){Console.WriteLine(result.GetRecording(serializer));}

    IRecordingSerializer<TOutput> interface can be implemented to provide concrete serialization strategy, for exaple JSON serialization:

    usingSystem.Text.Json;usingSystem.Text.Json.Serialization;usingErrorOr;publicclassSystemTextJsonRecordingSerializer:IRecordingSerializer<string>{privatestaticreadonlyJsonSerializerOptionsJsonOptions=new(){WriteIndented=true,Converters={newJsonStringEnumConverter()},DefaultIgnoreCondition=JsonIgnoreCondition.Never,};publicstringSerializeValue<TValue>(TValuevalue)=>JsonSerializer.Serialize(value,JsonOptions);publicstringSerializeErrors(List<Error>errors)=>JsonSerializer.Serialize(errors,JsonOptions);}
  • #​179 Support for .NET 10 was added

Fixed
  • #​85, #​97ErrorOr turned into Value Object by reimplementing Equals and GetHashCode methods

    New dependency was introduced to Microsoft.Bcl.HashCode and development dependency was introduced to Nullable

  • #​178 Initializing ErrorOr<T> with empty or null error collection results with unexpected error.

Optimized
  • #​98, #​99 Memory consumption optimized by moving static empty errors lists from generic struct into non-generic class
Refactored
  • #​154 Modernized NuGet publish workflow
mganss/HtmlSanitizer (HtmlSanitizer)

v9.2.1039: 9.2.1039

Fix attribute bypass in SanitizeDom(string) wrapper elements

v9.2.995: 9.2.995

  • AngleSharp dependency updated from 1.7.0 to 1.7.1 (4515e1f)
  • Sanitization enhancements for URI attributes
    • Added cite and longdesc attributes to URL sanitization (e47862e)
    • Enhanced sanitization of srcdoc content and attributes holding URI lists (edb2633)
  • CSS/style handling improvements
    • Added sanitization of CSS declarations in style elements with type="" attribute (0592f1e)
    • Fixed sanitization of CSS @font-face and @import at-rules (1d33413)
  • Bug fixes
  • Test improvements
    • Refactored test suite for style element sanitization (0592f1e)
    • Improved performance of ThreadTest (0ab33ba)
  • Documentation
    • Added XML code usage examples for HtmlSanitizerOptions properties (#​632)

v9.1.982: 9.1.982

Fix multiple enumeration of URLs (fixes #​625)

v9.1.981: 9.1.981

Update NuGet packages

v9.1.974: 9.1.974

Add FilterCssRule event (fixes #​622)

v9.1.973: 9.1.973

Update to AngleSharp 1.6.0 and AngleSharp.Css 1.0.0

dotnet/dotnet (Microsoft.AspNetCore.Authentication.JwtBearer)

v10.0.11

v10.0.10

v10.0.9

v10.0.8

v10.0.7

v10.0.6

v10.0.5

v10.0.4

dotnet/extensions (Microsoft.Extensions.Caching.Hybrid)

v10.9.0

Version 10.9.0 is headlined by changes in these areas:

  • AI: New experimental routing APIs center on the abstract RoutingChatClient base class, with SemanticRoutingChatClient as a concrete semantic-routing implementation. Separately, the abstract FailoverChatClient specialization and its concrete OrderedFailoverChatClient implementation add failover routing.
  • AI Evaluation: The generated report gains redesigned Overview, Cases, History, and Comparison views.
  • ASP.NET Core and HTTP diagnostics: The release adds HTTP request latency log enrichment and fixes configuration binding, response-body logging, request-path redaction, and resilience package version handling.
  • Source-generated logging and service discovery: Fixes cover classification type qualification, thread-local state cleanup, and DNS query suffix handling.

Experimental API Changes

New Experimental APIs
  • New experimental API: HTTP request latency log enrichment (EXTEXP0013) #​7602
  • New experimental API: Chat client routing and failover (MEAI001) #​7662

What's Changed

AI (Microsoft.Extensions.AI, Microsoft.Extensions.AI.Abstractions, and Microsoft.Extensions.AI.OpenAI)

Note: Microsoft.Extensions.AI.OpenAI constrains its dependency for OpenAI to 2.12.x, preventing OpenAI updates to 2.13.0+ due to an incompatibility. We expect to release Microsoft.Extensions.AI.OpenAI version 10.9.1 during the week of August 17 to address this issue.

HTTP Resilience and Diagnostics (Microsoft.Extensions.Http.Resilience and Microsoft.Extensions.Http.Diagnostics)
ASP.NET Core Extensions (Microsoft.AspNetCore.Diagnostics.Middleware)
Logging Source Generator (Microsoft.Gen.Logging)
AI Evaluation (Microsoft.Extensions.AI.Evaluation.Reporting)
Project Templates (Microsoft.McpServer.ProjectTemplates)

Note: The MCP server project template was migrated to the dotnet/aspnetcore repository, and it is now included in the .NET 10 and .NET 11 SDKs.

Service Discovery (Microsoft.Extensions.ServiceDiscovery.Dns)

Test Improvements

Repository Infrastructure Updates

  • [main] Update dependencies from dotnet/arcade #​7621
  • Merge release/10.8 into main #​7632 by @​jeffhandley (co-authored by @​jozkee@​Copilot)
  • Add agentic workflows that keep Microsoft.Extensions.AI aligned with OpenTelemetry GenAI semantic-conventions #​7611 by @​jeffhandley (co-authored by @​Copilot)
  • Bump brace-expansion, eslint and tfx-cli in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript #​7648
  • Add a release-manager agent for the dotnet/extensions release process #​7643 by @​jeffhandley (co-authored by @​Copilot)
  • Bump CommunityToolkit.VectorData package baselines to 1.0.0 / 1.0.0-preview #​7651 by @​adamsitnik (co-authored by @​Copilot)
  • Incorporate servicing release experience into release-manager playbooks #​7656 by @​jeffhandley (co-authored by @​Copilot)
  • Bump dotnet-reportgenerator-globaltool from 5.5.10 to 5.5.11 #​7666
  • Bump adm-zip and azure-pipelines-task-lib in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript/azure-devops-report/tasks/PublishAIEvaluationReport #​7652
  • Bump postcss from 8.5.15 to 8.5.23 in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript #​7660
  • Bump PowerShell from 7.6.3 to 7.6.4 #​7650
  • [main] Update dependencies from dotnet/arcade #​7644
  • [release-manager] Require package dependency closure for releases #​7693 by @​jeffhandley (co-authored by @​Copilot)
  • Optionally allow official builds to publish VSIX extension. #​7692 by @​peterwald
  • [main] Update dependencies from dotnet/arcade #​7690

Acknowledgements

Full Changelog: dotnet/extensions@v10.8.4...v10.9.0

Packages in this release

PackageVersion
Microsoft.AspNetCore.Testing10.9.0
Microsoft.Extensions.AI.Abstractions10.9.0
Microsoft.Extensions.AI.Evaluation.Console10.9.0
Microsoft.Extensions.AI.Templates10.9.0-preview.3.26411.16
Microsoft.Extensions.AmbientMetadata.Application10.9.0
Microsoft.Extensions.AmbientMetadata.Build10.9.0
Microsoft.Extensions.AuditReports10.9.0
Microsoft.Extensions.Caching.Hybrid10.9.0
Microsoft.Extensions.Compliance.Abstractions10.9.0
Microsoft.Extensions.DataIngestion.Abstractions10.9.0-preview.1.26411.16
Microsoft.Extensions.DependencyInjection.AutoActivation10.9.0
Microsoft.Extensions.Diagnostics.ExceptionSummarization10.9.0
Microsoft.Extensions.ObjectPool.DependencyInjection10.9.0
Microsoft.Extensions.Options.Contextual10.9.0-preview.1.26411.16
Microsoft.Extensions.ServiceDiscovery.Abstractions10.9.0
Microsoft.Extensions.StaticAnalysis10.9.0
Microsoft.Extensions.TimeProvider.Testing10.9.0
Microsoft.Extensions.AI10.9.0
Microsoft.Extensions.AI.Evaluation10.9.0
Microsoft.Extensions.AI.OpenAI10.9.0
Microsoft.Extensions.AsyncState10.9.0
Microsoft.Extensions.Compliance.Redaction10.9.0
Microsoft.Extensions.Compliance.Testing10.9.0
Microsoft.Extensions.DataIngestion.Markdig10.9.0-preview.1.26411.16
Microsoft.Extensions.DataIngestion.MarkItDown10.9.0-preview.1.26411.16
Microsoft.Extensions.ServiceDiscovery10.9.0
Microsoft.Extensions.Telemetry.Abstractions10.9.0
Microsoft.Extensions.VectorData.Abstractions10.9.0
Microsoft.AspNetCore.AsyncState10.9.0
Microsoft.AspNetCore.HeaderParsing10.9.0
Microsoft.Extensions.AI.Evaluation.NLP10.9.0-preview.1.26411.16
Microsoft.Extensions.AI.Evaluation.Quality10.9.0
Microsoft.Extensions.AI.Evaluation.Reporting10.9.0
Microsoft.Extensions.AI.Evaluation.Safety10.9.0-preview.1.26411.16
Microsoft.Extensions.DataIngestion10.9.0-preview.1.26411.16
Microsoft.Extensions.Diagnostics.HealthChecks.Common10.9.0
Microsoft.Extensions.Diagnostics.Probes10.9.0-preview.1.26411.16
Microsoft.Extensions.Diagnostics.ResourceMonitoring10.9.0
Microsoft.Extensions.Diagnostics.Testing10.9.0
Microsoft.Extensions.Resilience10.9.0
Microsoft.Extensions.ServiceDiscovery.Dns10.9.0
Microsoft.Extensions.ServiceDiscovery.Yarp10.9.0
Microsoft.Extensions.Telemetry10.9.0
Microsoft.Extensions.VectorData.ConformanceTests10.9.0
Microsoft.AspNetCore.Diagnostics.Middleware10.9.0
Microsoft.Extensions.AI.Evaluation.Reporting.Azure10.9.0
Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization10.9.0
Microsoft.Extensions.Diagnostics.ResourceMonitoring.Kubernetes10.9.0
Microsoft.Extensions.Hosting.Testing10.9.0-preview.1.26411.16
Microsoft.Extensions.Http.Diagnostics10.9.0
Microsoft.Extensions.Http.Resilience10.9.0

The Microsoft.Agents.AI.ProjectTemplates package is not included in this release.

v10.8.0

This release adds new experimental APIs to Microsoft.Extensions.AI.Abstractions and updates the OpenAI dependency to 2.12.0, alongside documentation, test, and repository maintenance.

Experimental API Changes
N

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch from 10222e1 to 2847db6CompareNovember 11, 2024 17:02
@renovaterenovateBot changed the title Update dependency AWSSDK.S3 to 3.7.405.10Update all non-major dependenciesNov 11, 2024
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 2 times, most recently from f3f6983 to 99805faCompareNovember 12, 2024 18:38
@renovaterenovateBot changed the title Update all non-major dependenciesUpdate dependency AWSSDK.S3 to 3.7.405.11Nov 12, 2024
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch from 99805fa to 6b59e7eCompareNovember 13, 2024 20:21
@renovaterenovateBot changed the title Update dependency AWSSDK.S3 to 3.7.405.11Update all non-major dependenciesNov 13, 2024
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 10 times, most recently from 7e93ecd to 379baa4CompareNovember 21, 2024 20:35
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 6 times, most recently from 7d2aaff to 60fe895CompareNovember 28, 2024 21:53
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 7 times, most recently from fce21c3 to 1e7fda3CompareDecember 6, 2024 21:49
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 5 times, most recently from 6d150bf to 0acc6a0CompareDecember 26, 2024 22:06
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 3 times, most recently from f2e1fec to 7f3e574CompareJanuary 5, 2025 22:31
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 7 times, most recently from 5102213 to dc24af3CompareJanuary 13, 2025 10:15
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 6 times, most recently from ffc43b6 to 3208b54CompareJanuary 21, 2025 01:12
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 3 times, most recently from 8806ff6 to 5232738CompareJanuary 29, 2025 14:18
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 4 times, most recently from 3c33435 to de76e9aCompareFebruary 3, 2025 13:09
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch from de76e9a to c9ccb5aCompareFebruary 7, 2025 17:39
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Remove or un-stick sticky/fixed headers that block content\n(function() {\n function unstick() {\n document.querySelectorAll('header, nav, [role=\"banner\"], .header, .navbar, .sticky, .fixed-top, [style*=\"position: fixed\"], [style*=\"position:sticky\"]').forEach(function(el) {\n if (el.style.position === 'fixed' || el.style.position === 'sticky' || \n getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') {\n el.style.position = 'static';\n el.style.top = 'auto';\n el.style.zIndex = 'auto';\n }\n });\n }\n \n unstick();\n \n var observer = new MutationObserver(unstick);\n observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] });\n})();", "Kill Sticky Headers"); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

Update all non-major dependencies - #66

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/all-minor-patch
Open

Update all non-major dependencies#66
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/all-minor-patch

Conversation

@renovate

@renovaterenovateBot commented Nov 11, 2024

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

PackageChangeAgeAdoptionPassingConfidenceTypeUpdate
AWSSDK.S34.0.18.74.0.102.4ageadoptionpassingconfidencenugetpatch
ErrorOr2.0.12.1.1ageadoptionpassingconfidencenugetminor
FastEndpoints (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Generator (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Security (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Swagger (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Testing (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
HtmlSanitizer9.0.8929.2.1039ageadoptionpassingconfidencenugetminor
Microsoft.AspNetCore.Authentication.JwtBearer (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.AspNetCore.Identity.EntityFrameworkCore (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.AspNetCore.OpenApi (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.AspNetCore.OutputCaching.StackExchangeRedis (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.EntityFrameworkCore.InMemory (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.EntityFrameworkCore.Tools (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.Extensions.Caching.Hybrid (source)10.3.010.9.0ageadoptionpassingconfidencenugetminor
Microsoft.Extensions.Caching.StackExchangeRedis (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.Extensions.Http.Resilience (source)10.3.010.9.0ageadoptionpassingconfidencenugetminor
Microsoft.Extensions.TimeProvider.Testing (source)10.3.010.9.0ageadoptionpassingconfidencenugetminor
Microsoft.NET.Test.Sdk18.3.018.9.0ageadoptionpassingconfidencenugetminor
MinecraftRenderer0.4.20.9.0ageadoptionpassingconfidencenugetminor
Npgsql10.0.110.0.3ageadoptionpassingconfidencenugetpatch
Npgsql.EntityFrameworkCore.PostgreSQL10.0.010.0.3ageadoptionpassingconfidencenugetpatch
OpenTelemetry.Extensions.Hosting (source)1.15.01.18.0ageadoptionpassingconfidencenugetminor
Pyroscope (source)0.14.10.15.0ageadoptionpassingconfidencenugetminor
Pyroscope.OpenTelemetry (source)0.4.00.5.1ageadoptionpassingconfidencenugetminor
Quartz.Extensions.Hosting (source)3.16.13.20.0ageadoptionpassingconfidencenugetminor
Refit10.0.110.2.0ageadoptionpassingconfidencenugetminor
Refit.HttpClientFactory10.0.110.2.0ageadoptionpassingconfidencenugetminor
Scalar.AspNetCore (source)2.13.12.17.2ageadoptionpassingconfidencenugetminor
SkyblockRepo0.4.30.5.2ageadoptionpassingconfidencenugetminor
StackExchange.Redis (source)2.11.82.13.17ageadoptionpassingconfidencenugetminor
Swashbuckle.AspNetCore10.1.410.2.3ageadoptionpassingconfidencenugetminor
Swashbuckle.AspNetCore.Annotations10.1.410.2.3ageadoptionpassingconfidencenugetminor
System.Linq.Async7.0.07.0.1ageadoptionpassingconfidencenugetpatch
System.Threading.RateLimiting (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Testcontainers.PostgreSql (source)4.10.04.14.0ageadoptionpassingconfidencenugetminor
ZLinq1.5.51.5.6ageadoptionpassingconfidencenugetpatch
coverlet.collector8.0.08.0.1ageadoptionpassingconfidencenugetpatch
dotnet-ef (source)10.0.110.0.11ageadoptionpassingconfidencenugetpatch
prom/prometheusv3.5.0v3.14.0ageadoptionpassingconfidenceminor
pyroscope/pyroscope-dotnet0.13.0-glibc0.14.5-glibcageadoptionpassingconfidencestageminor
redis (source)8.4-alpine8.10-alpineageadoptionpassingconfidenceminor

Release Notes

aws/aws-sdk-net (AWSSDK.S3)

v4.0.102

v4.0.101

v4.0.100

v4.0.25

v4.0.24

v4.0.23

v4.0.22

v4.0.21

v4.0.20

v4.0.19

error-or/error-or (ErrorOr)

v2.1.1

Added
  • #​94, #​95 Added missing async versions of FailIf methods

    publicasyncTask<ErrorOr<TValue>>FailIfAsync(Func<TValue,Task<bool>>onValue,Errorerror)
    publicstaticasyncTask<ErrorOr<TValue>>FailIf<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,bool>onValue,Errorerror)
    publicstaticasyncTask<ErrorOr<TValue>>FailIfAsync<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,Task<bool>>onValue,Errorerror)
  • #​104 Support for .NET 8 was added

  • #​109, #​111 Added FailIf method overloads that allow to use value in error definition using Func<TValue, Error> error builder

    publicErrorOr<TValue>FailIf(Func<TValue,bool>onValue,Func<TValue,Error>errorBuilder)
    publicasyncTask<ErrorOr<TValue>>FailIfAsync(Func<TValue,Task<bool>>onValue,Func<TValue,Task<Error>>errorBuilder)
    publicstaticasyncTask<ErrorOr<TValue>>FailIf<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,bool>onValue,Func<TValue,Error>errorBuilder)
    publicstaticasyncTask<ErrorOr<TValue>>FailIfAsync<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,Task<bool>>onValue,Func<TValue,Task<Error>>errorBuilder)

    Value can now be used to build the error:

    ErrorOr<int>result=errorOrInt.FailIf(num =>num>3,(num)=>Error.Failure(description:$"{num} is greater than 3"));
  • #​117 Added ElseDo and ElseDoAsync methods

    Actions returning no result can now be called when IsError is true.

    ErrorOr<string>foo=result.Else(errors =>Error.Unexpected()).ElseDo(error =>Console.WriteLine(error.FirstError.Description));
    ErrorOr<string>foo=awaitresult.ElseDoAsync(HandleErrorAsync);
  • #​122 Added ToErrorOrAsync method

    Values in Task can now be easily converted to ErrorOr.

    ErrorOr<int>result=awaitTask.FromResult(5).ToErrorOrAsync();
  • #​129 Added missing ErrorOrFactory.From methods

    Now following calls from README.md are available

    ErrorOr<int>result=ErrorOrFactory.From<int>(Error.Unexpected());ErrorOr<int>result=ErrorOrFactory.From<int>([Error.Validation(),Error.Validation()]);

    Following call is now obsolete

    ErrorOr<int>errorOrPerson=ErrorOr<int>.From([Error.Validation(),Error.Validation()]);
  • #​133 Added missing collection expression support

    Now following call from README.md is available

    ErrorOr<int>result=[Error.Validation(),Error.Validation()];
  • #​134 Added FromAsync and missing ToErrorOrAsync methods

    Added support for FromAsync methods.

    publicasyncTak<ErrorOr<int>>GetValueAsync(){returnawaitErrorOrFactory.FromAsync(5);}
    publicasyncTak<ErrorOr<int>>SingleErrorToErrorOrAsync(){returnawaitErrorOrFactory.FromAsync<int>(Error.Unexpected());}
    publicasyncTak<ErrorOr<int>>MultipleErrorsToErrorOrAsync(){returnawaitErrorOrFactory.FromAsync([Error.Validation(description:"Invalid Name"),Error.Validation(description:"Invalid Last Name")]);}

    Added support for ToErrorOrAsync methods from errors:

    Task<Error>errorTask=Task.FromResult(Error.Validation());ErrorOr<int>result=errorTask.ToErrorOrAsync<int>();
    List<Error>errors=[Error.Unauthorized(),Error.Validation()];Task<List<Error>>errorsTask=Task.FromResult(errors);ErrorOr<int>result=awaiterrorsTask.ToErrorOrAsync<int>();
  • #​149 Added Else/ElseAsync overloads returning ErrorOr

  • #​152 Added ThenEnsure and ThenEnsureAsync methods.

    They are similar to ThenDo and ThenDoAsync, but they receive a function that can return errors.
    If no errors are returned, the original value is preserved and the ensure function's success value is ignored.

  • #​159 Added IsSuccess property to ErrorOr

  • #​158 Added support for serialization via IErrorOr interface without direct access to Value property. The IRecordable base interface provides a way to obtain a serialized representation of the current state.

    voidLog(IErrorOrresult){Console.WriteLine(result.GetRecording(serializer));}

    IRecordingSerializer<TOutput> interface can be implemented to provide concrete serialization strategy, for exaple JSON serialization:

    usingSystem.Text.Json;usingSystem.Text.Json.Serialization;usingErrorOr;publicclassSystemTextJsonRecordingSerializer:IRecordingSerializer<string>{privatestaticreadonlyJsonSerializerOptionsJsonOptions=new(){WriteIndented=true,Converters={newJsonStringEnumConverter()},DefaultIgnoreCondition=JsonIgnoreCondition.Never,};publicstringSerializeValue<TValue>(TValuevalue)=>JsonSerializer.Serialize(value,JsonOptions);publicstringSerializeErrors(List<Error>errors)=>JsonSerializer.Serialize(errors,JsonOptions);}
  • #​179 Support for .NET 10 was added

Fixed
  • #​85, #​97ErrorOr turned into Value Object by reimplementing Equals and GetHashCode methods

    New dependency was introduced to Microsoft.Bcl.HashCode and development dependency was introduced to Nullable

  • #​178 Initializing ErrorOr<T> with empty or null error collection results with unexpected error.

Optimized
  • #​98, #​99 Memory consumption optimized by moving static empty errors lists from generic struct into non-generic class
Refactored
  • #​154 Modernized NuGet publish workflow
mganss/HtmlSanitizer (HtmlSanitizer)

v9.2.1039: 9.2.1039

Fix attribute bypass in SanitizeDom(string) wrapper elements

v9.2.995: 9.2.995

  • AngleSharp dependency updated from 1.7.0 to 1.7.1 (4515e1f)
  • Sanitization enhancements for URI attributes
    • Added cite and longdesc attributes to URL sanitization (e47862e)
    • Enhanced sanitization of srcdoc content and attributes holding URI lists (edb2633)
  • CSS/style handling improvements
    • Added sanitization of CSS declarations in style elements with type="" attribute (0592f1e)
    • Fixed sanitization of CSS @font-face and @import at-rules (1d33413)
  • Bug fixes
  • Test improvements
    • Refactored test suite for style element sanitization (0592f1e)
    • Improved performance of ThreadTest (0ab33ba)
  • Documentation
    • Added XML code usage examples for HtmlSanitizerOptions properties (#​632)

v9.1.982: 9.1.982

Fix multiple enumeration of URLs (fixes #​625)

v9.1.981: 9.1.981

Update NuGet packages

v9.1.974: 9.1.974

Add FilterCssRule event (fixes #​622)

v9.1.973: 9.1.973

Update to AngleSharp 1.6.0 and AngleSharp.Css 1.0.0

dotnet/dotnet (Microsoft.AspNetCore.Authentication.JwtBearer)

v10.0.11

v10.0.10

v10.0.9

v10.0.8

v10.0.7

v10.0.6

v10.0.5

v10.0.4

dotnet/extensions (Microsoft.Extensions.Caching.Hybrid)

v10.9.0

Version 10.9.0 is headlined by changes in these areas:

  • AI: New experimental routing APIs center on the abstract RoutingChatClient base class, with SemanticRoutingChatClient as a concrete semantic-routing implementation. Separately, the abstract FailoverChatClient specialization and its concrete OrderedFailoverChatClient implementation add failover routing.
  • AI Evaluation: The generated report gains redesigned Overview, Cases, History, and Comparison views.
  • ASP.NET Core and HTTP diagnostics: The release adds HTTP request latency log enrichment and fixes configuration binding, response-body logging, request-path redaction, and resilience package version handling.
  • Source-generated logging and service discovery: Fixes cover classification type qualification, thread-local state cleanup, and DNS query suffix handling.

Experimental API Changes

New Experimental APIs
  • New experimental API: HTTP request latency log enrichment (EXTEXP0013) #​7602
  • New experimental API: Chat client routing and failover (MEAI001) #​7662

What's Changed

AI (Microsoft.Extensions.AI, Microsoft.Extensions.AI.Abstractions, and Microsoft.Extensions.AI.OpenAI)

Note: Microsoft.Extensions.AI.OpenAI constrains its dependency for OpenAI to 2.12.x, preventing OpenAI updates to 2.13.0+ due to an incompatibility. We expect to release Microsoft.Extensions.AI.OpenAI version 10.9.1 during the week of August 17 to address this issue.

HTTP Resilience and Diagnostics (Microsoft.Extensions.Http.Resilience and Microsoft.Extensions.Http.Diagnostics)
ASP.NET Core Extensions (Microsoft.AspNetCore.Diagnostics.Middleware)
Logging Source Generator (Microsoft.Gen.Logging)
AI Evaluation (Microsoft.Extensions.AI.Evaluation.Reporting)
Project Templates (Microsoft.McpServer.ProjectTemplates)

Note: The MCP server project template was migrated to the dotnet/aspnetcore repository, and it is now included in the .NET 10 and .NET 11 SDKs.

Service Discovery (Microsoft.Extensions.ServiceDiscovery.Dns)

Test Improvements

Repository Infrastructure Updates

  • [main] Update dependencies from dotnet/arcade #​7621
  • Merge release/10.8 into main #​7632 by @​jeffhandley (co-authored by @​jozkee@​Copilot)
  • Add agentic workflows that keep Microsoft.Extensions.AI aligned with OpenTelemetry GenAI semantic-conventions #​7611 by @​jeffhandley (co-authored by @​Copilot)
  • Bump brace-expansion, eslint and tfx-cli in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript #​7648
  • Add a release-manager agent for the dotnet/extensions release process #​7643 by @​jeffhandley (co-authored by @​Copilot)
  • Bump CommunityToolkit.VectorData package baselines to 1.0.0 / 1.0.0-preview #​7651 by @​adamsitnik (co-authored by @​Copilot)
  • Incorporate servicing release experience into release-manager playbooks #​7656 by @​jeffhandley (co-authored by @​Copilot)
  • Bump dotnet-reportgenerator-globaltool from 5.5.10 to 5.5.11 #​7666
  • Bump adm-zip and azure-pipelines-task-lib in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript/azure-devops-report/tasks/PublishAIEvaluationReport #​7652
  • Bump postcss from 8.5.15 to 8.5.23 in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript #​7660
  • Bump PowerShell from 7.6.3 to 7.6.4 #​7650
  • [main] Update dependencies from dotnet/arcade #​7644
  • [release-manager] Require package dependency closure for releases #​7693 by @​jeffhandley (co-authored by @​Copilot)
  • Optionally allow official builds to publish VSIX extension. #​7692 by @​peterwald
  • [main] Update dependencies from dotnet/arcade #​7690

Acknowledgements

Full Changelog: dotnet/extensions@v10.8.4...v10.9.0

Packages in this release

PackageVersion
Microsoft.AspNetCore.Testing10.9.0
Microsoft.Extensions.AI.Abstractions10.9.0
Microsoft.Extensions.AI.Evaluation.Console10.9.0
Microsoft.Extensions.AI.Templates10.9.0-preview.3.26411.16
Microsoft.Extensions.AmbientMetadata.Application10.9.0
Microsoft.Extensions.AmbientMetadata.Build10.9.0
Microsoft.Extensions.AuditReports10.9.0
Microsoft.Extensions.Caching.Hybrid10.9.0
Microsoft.Extensions.Compliance.Abstractions10.9.0
Microsoft.Extensions.DataIngestion.Abstractions10.9.0-preview.1.26411.16
Microsoft.Extensions.DependencyInjection.AutoActivation10.9.0
Microsoft.Extensions.Diagnostics.ExceptionSummarization10.9.0
Microsoft.Extensions.ObjectPool.DependencyInjection10.9.0
Microsoft.Extensions.Options.Contextual10.9.0-preview.1.26411.16
Microsoft.Extensions.ServiceDiscovery.Abstractions10.9.0
Microsoft.Extensions.StaticAnalysis10.9.0
Microsoft.Extensions.TimeProvider.Testing10.9.0
Microsoft.Extensions.AI10.9.0
Microsoft.Extensions.AI.Evaluation10.9.0
Microsoft.Extensions.AI.OpenAI10.9.0
Microsoft.Extensions.AsyncState10.9.0
Microsoft.Extensions.Compliance.Redaction10.9.0
Microsoft.Extensions.Compliance.Testing10.9.0
Microsoft.Extensions.DataIngestion.Markdig10.9.0-preview.1.26411.16
Microsoft.Extensions.DataIngestion.MarkItDown10.9.0-preview.1.26411.16
Microsoft.Extensions.ServiceDiscovery10.9.0
Microsoft.Extensions.Telemetry.Abstractions10.9.0
Microsoft.Extensions.VectorData.Abstractions10.9.0
Microsoft.AspNetCore.AsyncState10.9.0
Microsoft.AspNetCore.HeaderParsing10.9.0
Microsoft.Extensions.AI.Evaluation.NLP10.9.0-preview.1.26411.16
Microsoft.Extensions.AI.Evaluation.Quality10.9.0
Microsoft.Extensions.AI.Evaluation.Reporting10.9.0
Microsoft.Extensions.AI.Evaluation.Safety10.9.0-preview.1.26411.16
Microsoft.Extensions.DataIngestion10.9.0-preview.1.26411.16
Microsoft.Extensions.Diagnostics.HealthChecks.Common10.9.0
Microsoft.Extensions.Diagnostics.Probes10.9.0-preview.1.26411.16
Microsoft.Extensions.Diagnostics.ResourceMonitoring10.9.0
Microsoft.Extensions.Diagnostics.Testing10.9.0
Microsoft.Extensions.Resilience10.9.0
Microsoft.Extensions.ServiceDiscovery.Dns10.9.0
Microsoft.Extensions.ServiceDiscovery.Yarp10.9.0
Microsoft.Extensions.Telemetry10.9.0
Microsoft.Extensions.VectorData.ConformanceTests10.9.0
Microsoft.AspNetCore.Diagnostics.Middleware10.9.0
Microsoft.Extensions.AI.Evaluation.Reporting.Azure10.9.0
Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization10.9.0
Microsoft.Extensions.Diagnostics.ResourceMonitoring.Kubernetes10.9.0
Microsoft.Extensions.Hosting.Testing10.9.0-preview.1.26411.16
Microsoft.Extensions.Http.Diagnostics10.9.0
Microsoft.Extensions.Http.Resilience10.9.0

The Microsoft.Agents.AI.ProjectTemplates package is not included in this release.

v10.8.0

This release adds new experimental APIs to Microsoft.Extensions.AI.Abstractions and updates the OpenAI dependency to 2.12.0, alongside documentation, test, and repository maintenance.

Experimental API Changes
N

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch from 10222e1 to 2847db6CompareNovember 11, 2024 17:02
@renovaterenovateBot changed the title Update dependency AWSSDK.S3 to 3.7.405.10Update all non-major dependenciesNov 11, 2024
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 2 times, most recently from f3f6983 to 99805faCompareNovember 12, 2024 18:38
@renovaterenovateBot changed the title Update all non-major dependenciesUpdate dependency AWSSDK.S3 to 3.7.405.11Nov 12, 2024
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch from 99805fa to 6b59e7eCompareNovember 13, 2024 20:21
@renovaterenovateBot changed the title Update dependency AWSSDK.S3 to 3.7.405.11Update all non-major dependenciesNov 13, 2024
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 10 times, most recently from 7e93ecd to 379baa4CompareNovember 21, 2024 20:35
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 6 times, most recently from 7d2aaff to 60fe895CompareNovember 28, 2024 21:53
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 7 times, most recently from fce21c3 to 1e7fda3CompareDecember 6, 2024 21:49
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 5 times, most recently from 6d150bf to 0acc6a0CompareDecember 26, 2024 22:06
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 3 times, most recently from f2e1fec to 7f3e574CompareJanuary 5, 2025 22:31
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 7 times, most recently from 5102213 to dc24af3CompareJanuary 13, 2025 10:15
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 6 times, most recently from ffc43b6 to 3208b54CompareJanuary 21, 2025 01:12
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 3 times, most recently from 8806ff6 to 5232738CompareJanuary 29, 2025 14:18
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 4 times, most recently from 3c33435 to de76e9aCompareFebruary 3, 2025 13:09
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch from de76e9a to c9ccb5aCompareFebruary 7, 2025 17:39
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Universal Dark Mode - works on any site\n(function() {\n var enabled = true;\n \n function applyDarkMode() {\n if (!enabled) return;\n \n // Create style element if it doesn't exist\n var style = document.getElementById('universal-dark-mode-style');\n if (!style) {\n style = document.createElement('style');\n style.id = 'universal-dark-mode-style';\n document.head.appendChild(style);\n }\n \n // Dark mode CSS - inverts colors but preserves images/video\n style.textContent = '\n /* Invert everything except media */\n html {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #1a1a2e !important;\n }\n \n /* Restore images, videos, iframes, canvas */\n img, video, iframe, canvas, svg, picture, [style*=\"background-image\"] {\n filter: invert(1) hue-rotate(180deg) !important;\n }\n \n /* Preserve specific elements that should not be inverted */\n .no-dark-mode, .no-dark-mode *,\n [data-theme=\"light\"], [data-theme=\"light\"],\n .ace_editor, .ace_editor *,\n .CodeMirror, .CodeMirror *,\n .monaco-editor, .monaco-editor *,\n .markdown-body pre, .markdown-body pre *,\n .highlight, .highlight *,\n pre code, pre code * {\n filter: none !important;\n }\n \n /* Fix common UI elements */\n .modal, .popup, .dropdown-menu, .tooltip, .popover {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #2d2d44 !important;\n border-color: #444 !important;\n }\n \n /* Scrollbars */\n ::-webkit-scrollbar { background: #1a1a2e !important; }\n ::-webkit-scrollbar-thumb { background: #444 !important; }\n ::-webkit-scrollbar-thumb:hover { background: #555 !important; }\n \n /* Selection */\n ::selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ::-moz-selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ';\n }\n \n function removeDarkMode() {\n var style = document.getElementById('universal-dark-mode-style');\n if (style) style.remove();\n }\n \n // Toggle with Alt+Shift+D\n document.addEventListener('keydown', function(e) {\n if (e.altKey && e.shiftKey && e.key === 'D') {\n e.preventDefault();\n enabled = !enabled;\n if (enabled) {\n applyDarkMode();\n console.log('[Universal Dark Mode] Enabled');\n } else {\n removeDarkMode();\n console.log('[Universal Dark Mode] Disabled');\n }\n }\n });\n \n // Apply on load\n applyDarkMode();\n \n // Re-apply on dynamic content\n var observer = new MutationObserver(function(mutations) {\n if (enabled && !document.getElementById('universal-dark-mode-style')) {\n applyDarkMode();\n }\n });\n observer.observe(document.head, { childList: true });\n \n console.log('[Universal Dark Mode] Loaded - Press Alt+Shift+D to toggle');\n})();", "Universal Dark Mode"); } } catch(__e) { console.warn('[Userscript:Universal Dark Mode]', __e); } })(); })();
Skip to content

Update all non-major dependencies - #66

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/all-minor-patch
Open

Update all non-major dependencies#66
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/all-minor-patch

Conversation

@renovate

@renovaterenovateBot commented Nov 11, 2024

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

PackageChangeAgeAdoptionPassingConfidenceTypeUpdate
AWSSDK.S34.0.18.74.0.102.4ageadoptionpassingconfidencenugetpatch
ErrorOr2.0.12.1.1ageadoptionpassingconfidencenugetminor
FastEndpoints (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Generator (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Security (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Swagger (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
FastEndpoints.Testing (source)8.0.18.3.0ageadoptionpassingconfidencenugetminor
HtmlSanitizer9.0.8929.2.1039ageadoptionpassingconfidencenugetminor
Microsoft.AspNetCore.Authentication.JwtBearer (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.AspNetCore.Identity.EntityFrameworkCore (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.AspNetCore.OpenApi (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.AspNetCore.OutputCaching.StackExchangeRedis (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.EntityFrameworkCore.InMemory (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.EntityFrameworkCore.Tools (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.Extensions.Caching.Hybrid (source)10.3.010.9.0ageadoptionpassingconfidencenugetminor
Microsoft.Extensions.Caching.StackExchangeRedis (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Microsoft.Extensions.Http.Resilience (source)10.3.010.9.0ageadoptionpassingconfidencenugetminor
Microsoft.Extensions.TimeProvider.Testing (source)10.3.010.9.0ageadoptionpassingconfidencenugetminor
Microsoft.NET.Test.Sdk18.3.018.9.0ageadoptionpassingconfidencenugetminor
MinecraftRenderer0.4.20.9.0ageadoptionpassingconfidencenugetminor
Npgsql10.0.110.0.3ageadoptionpassingconfidencenugetpatch
Npgsql.EntityFrameworkCore.PostgreSQL10.0.010.0.3ageadoptionpassingconfidencenugetpatch
OpenTelemetry.Extensions.Hosting (source)1.15.01.18.0ageadoptionpassingconfidencenugetminor
Pyroscope (source)0.14.10.15.0ageadoptionpassingconfidencenugetminor
Pyroscope.OpenTelemetry (source)0.4.00.5.1ageadoptionpassingconfidencenugetminor
Quartz.Extensions.Hosting (source)3.16.13.20.0ageadoptionpassingconfidencenugetminor
Refit10.0.110.2.0ageadoptionpassingconfidencenugetminor
Refit.HttpClientFactory10.0.110.2.0ageadoptionpassingconfidencenugetminor
Scalar.AspNetCore (source)2.13.12.17.2ageadoptionpassingconfidencenugetminor
SkyblockRepo0.4.30.5.2ageadoptionpassingconfidencenugetminor
StackExchange.Redis (source)2.11.82.13.17ageadoptionpassingconfidencenugetminor
Swashbuckle.AspNetCore10.1.410.2.3ageadoptionpassingconfidencenugetminor
Swashbuckle.AspNetCore.Annotations10.1.410.2.3ageadoptionpassingconfidencenugetminor
System.Linq.Async7.0.07.0.1ageadoptionpassingconfidencenugetpatch
System.Threading.RateLimiting (source)10.0.310.0.11ageadoptionpassingconfidencenugetpatch
Testcontainers.PostgreSql (source)4.10.04.14.0ageadoptionpassingconfidencenugetminor
ZLinq1.5.51.5.6ageadoptionpassingconfidencenugetpatch
coverlet.collector8.0.08.0.1ageadoptionpassingconfidencenugetpatch
dotnet-ef (source)10.0.110.0.11ageadoptionpassingconfidencenugetpatch
prom/prometheusv3.5.0v3.14.0ageadoptionpassingconfidenceminor
pyroscope/pyroscope-dotnet0.13.0-glibc0.14.5-glibcageadoptionpassingconfidencestageminor
redis (source)8.4-alpine8.10-alpineageadoptionpassingconfidenceminor

Release Notes

aws/aws-sdk-net (AWSSDK.S3)

v4.0.102

v4.0.101

v4.0.100

v4.0.25

v4.0.24

v4.0.23

v4.0.22

v4.0.21

v4.0.20

v4.0.19

error-or/error-or (ErrorOr)

v2.1.1

Added
  • #​94, #​95 Added missing async versions of FailIf methods

    publicasyncTask<ErrorOr<TValue>>FailIfAsync(Func<TValue,Task<bool>>onValue,Errorerror)
    publicstaticasyncTask<ErrorOr<TValue>>FailIf<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,bool>onValue,Errorerror)
    publicstaticasyncTask<ErrorOr<TValue>>FailIfAsync<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,Task<bool>>onValue,Errorerror)
  • #​104 Support for .NET 8 was added

  • #​109, #​111 Added FailIf method overloads that allow to use value in error definition using Func<TValue, Error> error builder

    publicErrorOr<TValue>FailIf(Func<TValue,bool>onValue,Func<TValue,Error>errorBuilder)
    publicasyncTask<ErrorOr<TValue>>FailIfAsync(Func<TValue,Task<bool>>onValue,Func<TValue,Task<Error>>errorBuilder)
    publicstaticasyncTask<ErrorOr<TValue>>FailIf<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,bool>onValue,Func<TValue,Error>errorBuilder)
    publicstaticasyncTask<ErrorOr<TValue>>FailIfAsync<TValue>(thisTask<ErrorOr<TValue>>errorOr,Func<TValue,Task<bool>>onValue,Func<TValue,Task<Error>>errorBuilder)

    Value can now be used to build the error:

    ErrorOr<int>result=errorOrInt.FailIf(num =>num>3,(num)=>Error.Failure(description:$"{num} is greater than 3"));
  • #​117 Added ElseDo and ElseDoAsync methods

    Actions returning no result can now be called when IsError is true.

    ErrorOr<string>foo=result.Else(errors =>Error.Unexpected()).ElseDo(error =>Console.WriteLine(error.FirstError.Description));
    ErrorOr<string>foo=awaitresult.ElseDoAsync(HandleErrorAsync);
  • #​122 Added ToErrorOrAsync method

    Values in Task can now be easily converted to ErrorOr.

    ErrorOr<int>result=awaitTask.FromResult(5).ToErrorOrAsync();
  • #​129 Added missing ErrorOrFactory.From methods

    Now following calls from README.md are available

    ErrorOr<int>result=ErrorOrFactory.From<int>(Error.Unexpected());ErrorOr<int>result=ErrorOrFactory.From<int>([Error.Validation(),Error.Validation()]);

    Following call is now obsolete

    ErrorOr<int>errorOrPerson=ErrorOr<int>.From([Error.Validation(),Error.Validation()]);
  • #​133 Added missing collection expression support

    Now following call from README.md is available

    ErrorOr<int>result=[Error.Validation(),Error.Validation()];
  • #​134 Added FromAsync and missing ToErrorOrAsync methods

    Added support for FromAsync methods.

    publicasyncTak<ErrorOr<int>>GetValueAsync(){returnawaitErrorOrFactory.FromAsync(5);}
    publicasyncTak<ErrorOr<int>>SingleErrorToErrorOrAsync(){returnawaitErrorOrFactory.FromAsync<int>(Error.Unexpected());}
    publicasyncTak<ErrorOr<int>>MultipleErrorsToErrorOrAsync(){returnawaitErrorOrFactory.FromAsync([Error.Validation(description:"Invalid Name"),Error.Validation(description:"Invalid Last Name")]);}

    Added support for ToErrorOrAsync methods from errors:

    Task<Error>errorTask=Task.FromResult(Error.Validation());ErrorOr<int>result=errorTask.ToErrorOrAsync<int>();
    List<Error>errors=[Error.Unauthorized(),Error.Validation()];Task<List<Error>>errorsTask=Task.FromResult(errors);ErrorOr<int>result=awaiterrorsTask.ToErrorOrAsync<int>();
  • #​149 Added Else/ElseAsync overloads returning ErrorOr

  • #​152 Added ThenEnsure and ThenEnsureAsync methods.

    They are similar to ThenDo and ThenDoAsync, but they receive a function that can return errors.
    If no errors are returned, the original value is preserved and the ensure function's success value is ignored.

  • #​159 Added IsSuccess property to ErrorOr

  • #​158 Added support for serialization via IErrorOr interface without direct access to Value property. The IRecordable base interface provides a way to obtain a serialized representation of the current state.

    voidLog(IErrorOrresult){Console.WriteLine(result.GetRecording(serializer));}

    IRecordingSerializer<TOutput> interface can be implemented to provide concrete serialization strategy, for exaple JSON serialization:

    usingSystem.Text.Json;usingSystem.Text.Json.Serialization;usingErrorOr;publicclassSystemTextJsonRecordingSerializer:IRecordingSerializer<string>{privatestaticreadonlyJsonSerializerOptionsJsonOptions=new(){WriteIndented=true,Converters={newJsonStringEnumConverter()},DefaultIgnoreCondition=JsonIgnoreCondition.Never,};publicstringSerializeValue<TValue>(TValuevalue)=>JsonSerializer.Serialize(value,JsonOptions);publicstringSerializeErrors(List<Error>errors)=>JsonSerializer.Serialize(errors,JsonOptions);}
  • #​179 Support for .NET 10 was added

Fixed
  • #​85, #​97ErrorOr turned into Value Object by reimplementing Equals and GetHashCode methods

    New dependency was introduced to Microsoft.Bcl.HashCode and development dependency was introduced to Nullable

  • #​178 Initializing ErrorOr<T> with empty or null error collection results with unexpected error.

Optimized
  • #​98, #​99 Memory consumption optimized by moving static empty errors lists from generic struct into non-generic class
Refactored
  • #​154 Modernized NuGet publish workflow
mganss/HtmlSanitizer (HtmlSanitizer)

v9.2.1039: 9.2.1039

Fix attribute bypass in SanitizeDom(string) wrapper elements

v9.2.995: 9.2.995

  • AngleSharp dependency updated from 1.7.0 to 1.7.1 (4515e1f)
  • Sanitization enhancements for URI attributes
    • Added cite and longdesc attributes to URL sanitization (e47862e)
    • Enhanced sanitization of srcdoc content and attributes holding URI lists (edb2633)
  • CSS/style handling improvements
    • Added sanitization of CSS declarations in style elements with type="" attribute (0592f1e)
    • Fixed sanitization of CSS @font-face and @import at-rules (1d33413)
  • Bug fixes
  • Test improvements
    • Refactored test suite for style element sanitization (0592f1e)
    • Improved performance of ThreadTest (0ab33ba)
  • Documentation
    • Added XML code usage examples for HtmlSanitizerOptions properties (#​632)

v9.1.982: 9.1.982

Fix multiple enumeration of URLs (fixes #​625)

v9.1.981: 9.1.981

Update NuGet packages

v9.1.974: 9.1.974

Add FilterCssRule event (fixes #​622)

v9.1.973: 9.1.973

Update to AngleSharp 1.6.0 and AngleSharp.Css 1.0.0

dotnet/dotnet (Microsoft.AspNetCore.Authentication.JwtBearer)

v10.0.11

v10.0.10

v10.0.9

v10.0.8

v10.0.7

v10.0.6

v10.0.5

v10.0.4

dotnet/extensions (Microsoft.Extensions.Caching.Hybrid)

v10.9.0

Version 10.9.0 is headlined by changes in these areas:

  • AI: New experimental routing APIs center on the abstract RoutingChatClient base class, with SemanticRoutingChatClient as a concrete semantic-routing implementation. Separately, the abstract FailoverChatClient specialization and its concrete OrderedFailoverChatClient implementation add failover routing.
  • AI Evaluation: The generated report gains redesigned Overview, Cases, History, and Comparison views.
  • ASP.NET Core and HTTP diagnostics: The release adds HTTP request latency log enrichment and fixes configuration binding, response-body logging, request-path redaction, and resilience package version handling.
  • Source-generated logging and service discovery: Fixes cover classification type qualification, thread-local state cleanup, and DNS query suffix handling.

Experimental API Changes

New Experimental APIs
  • New experimental API: HTTP request latency log enrichment (EXTEXP0013) #​7602
  • New experimental API: Chat client routing and failover (MEAI001) #​7662

What's Changed

AI (Microsoft.Extensions.AI, Microsoft.Extensions.AI.Abstractions, and Microsoft.Extensions.AI.OpenAI)

Note: Microsoft.Extensions.AI.OpenAI constrains its dependency for OpenAI to 2.12.x, preventing OpenAI updates to 2.13.0+ due to an incompatibility. We expect to release Microsoft.Extensions.AI.OpenAI version 10.9.1 during the week of August 17 to address this issue.

HTTP Resilience and Diagnostics (Microsoft.Extensions.Http.Resilience and Microsoft.Extensions.Http.Diagnostics)
ASP.NET Core Extensions (Microsoft.AspNetCore.Diagnostics.Middleware)
Logging Source Generator (Microsoft.Gen.Logging)
AI Evaluation (Microsoft.Extensions.AI.Evaluation.Reporting)
Project Templates (Microsoft.McpServer.ProjectTemplates)

Note: The MCP server project template was migrated to the dotnet/aspnetcore repository, and it is now included in the .NET 10 and .NET 11 SDKs.

Service Discovery (Microsoft.Extensions.ServiceDiscovery.Dns)

Test Improvements

Repository Infrastructure Updates

  • [main] Update dependencies from dotnet/arcade #​7621
  • Merge release/10.8 into main #​7632 by @​jeffhandley (co-authored by @​jozkee@​Copilot)
  • Add agentic workflows that keep Microsoft.Extensions.AI aligned with OpenTelemetry GenAI semantic-conventions #​7611 by @​jeffhandley (co-authored by @​Copilot)
  • Bump brace-expansion, eslint and tfx-cli in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript #​7648
  • Add a release-manager agent for the dotnet/extensions release process #​7643 by @​jeffhandley (co-authored by @​Copilot)
  • Bump CommunityToolkit.VectorData package baselines to 1.0.0 / 1.0.0-preview #​7651 by @​adamsitnik (co-authored by @​Copilot)
  • Incorporate servicing release experience into release-manager playbooks #​7656 by @​jeffhandley (co-authored by @​Copilot)
  • Bump dotnet-reportgenerator-globaltool from 5.5.10 to 5.5.11 #​7666
  • Bump adm-zip and azure-pipelines-task-lib in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript/azure-devops-report/tasks/PublishAIEvaluationReport #​7652
  • Bump postcss from 8.5.15 to 8.5.23 in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript #​7660
  • Bump PowerShell from 7.6.3 to 7.6.4 #​7650
  • [main] Update dependencies from dotnet/arcade #​7644
  • [release-manager] Require package dependency closure for releases #​7693 by @​jeffhandley (co-authored by @​Copilot)
  • Optionally allow official builds to publish VSIX extension. #​7692 by @​peterwald
  • [main] Update dependencies from dotnet/arcade #​7690

Acknowledgements

Full Changelog: dotnet/extensions@v10.8.4...v10.9.0

Packages in this release

PackageVersion
Microsoft.AspNetCore.Testing10.9.0
Microsoft.Extensions.AI.Abstractions10.9.0
Microsoft.Extensions.AI.Evaluation.Console10.9.0
Microsoft.Extensions.AI.Templates10.9.0-preview.3.26411.16
Microsoft.Extensions.AmbientMetadata.Application10.9.0
Microsoft.Extensions.AmbientMetadata.Build10.9.0
Microsoft.Extensions.AuditReports10.9.0
Microsoft.Extensions.Caching.Hybrid10.9.0
Microsoft.Extensions.Compliance.Abstractions10.9.0
Microsoft.Extensions.DataIngestion.Abstractions10.9.0-preview.1.26411.16
Microsoft.Extensions.DependencyInjection.AutoActivation10.9.0
Microsoft.Extensions.Diagnostics.ExceptionSummarization10.9.0
Microsoft.Extensions.ObjectPool.DependencyInjection10.9.0
Microsoft.Extensions.Options.Contextual10.9.0-preview.1.26411.16
Microsoft.Extensions.ServiceDiscovery.Abstractions10.9.0
Microsoft.Extensions.StaticAnalysis10.9.0
Microsoft.Extensions.TimeProvider.Testing10.9.0
Microsoft.Extensions.AI10.9.0
Microsoft.Extensions.AI.Evaluation10.9.0
Microsoft.Extensions.AI.OpenAI10.9.0
Microsoft.Extensions.AsyncState10.9.0
Microsoft.Extensions.Compliance.Redaction10.9.0
Microsoft.Extensions.Compliance.Testing10.9.0
Microsoft.Extensions.DataIngestion.Markdig10.9.0-preview.1.26411.16
Microsoft.Extensions.DataIngestion.MarkItDown10.9.0-preview.1.26411.16
Microsoft.Extensions.ServiceDiscovery10.9.0
Microsoft.Extensions.Telemetry.Abstractions10.9.0
Microsoft.Extensions.VectorData.Abstractions10.9.0
Microsoft.AspNetCore.AsyncState10.9.0
Microsoft.AspNetCore.HeaderParsing10.9.0
Microsoft.Extensions.AI.Evaluation.NLP10.9.0-preview.1.26411.16
Microsoft.Extensions.AI.Evaluation.Quality10.9.0
Microsoft.Extensions.AI.Evaluation.Reporting10.9.0
Microsoft.Extensions.AI.Evaluation.Safety10.9.0-preview.1.26411.16
Microsoft.Extensions.DataIngestion10.9.0-preview.1.26411.16
Microsoft.Extensions.Diagnostics.HealthChecks.Common10.9.0
Microsoft.Extensions.Diagnostics.Probes10.9.0-preview.1.26411.16
Microsoft.Extensions.Diagnostics.ResourceMonitoring10.9.0
Microsoft.Extensions.Diagnostics.Testing10.9.0
Microsoft.Extensions.Resilience10.9.0
Microsoft.Extensions.ServiceDiscovery.Dns10.9.0
Microsoft.Extensions.ServiceDiscovery.Yarp10.9.0
Microsoft.Extensions.Telemetry10.9.0
Microsoft.Extensions.VectorData.ConformanceTests10.9.0
Microsoft.AspNetCore.Diagnostics.Middleware10.9.0
Microsoft.Extensions.AI.Evaluation.Reporting.Azure10.9.0
Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization10.9.0
Microsoft.Extensions.Diagnostics.ResourceMonitoring.Kubernetes10.9.0
Microsoft.Extensions.Hosting.Testing10.9.0-preview.1.26411.16
Microsoft.Extensions.Http.Diagnostics10.9.0
Microsoft.Extensions.Http.Resilience10.9.0

The Microsoft.Agents.AI.ProjectTemplates package is not included in this release.

v10.8.0

This release adds new experimental APIs to Microsoft.Extensions.AI.Abstractions and updates the OpenAI dependency to 2.12.0, alongside documentation, test, and repository maintenance.

Experimental API Changes
N

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch from 10222e1 to 2847db6CompareNovember 11, 2024 17:02
@renovaterenovateBot changed the title Update dependency AWSSDK.S3 to 3.7.405.10Update all non-major dependenciesNov 11, 2024
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 2 times, most recently from f3f6983 to 99805faCompareNovember 12, 2024 18:38
@renovaterenovateBot changed the title Update all non-major dependenciesUpdate dependency AWSSDK.S3 to 3.7.405.11Nov 12, 2024
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch from 99805fa to 6b59e7eCompareNovember 13, 2024 20:21
@renovaterenovateBot changed the title Update dependency AWSSDK.S3 to 3.7.405.11Update all non-major dependenciesNov 13, 2024
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 10 times, most recently from 7e93ecd to 379baa4CompareNovember 21, 2024 20:35
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 6 times, most recently from 7d2aaff to 60fe895CompareNovember 28, 2024 21:53
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 7 times, most recently from fce21c3 to 1e7fda3CompareDecember 6, 2024 21:49
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 5 times, most recently from 6d150bf to 0acc6a0CompareDecember 26, 2024 22:06
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 3 times, most recently from f2e1fec to 7f3e574CompareJanuary 5, 2025 22:31
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 7 times, most recently from 5102213 to dc24af3CompareJanuary 13, 2025 10:15
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 6 times, most recently from ffc43b6 to 3208b54CompareJanuary 21, 2025 01:12
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 3 times, most recently from 8806ff6 to 5232738CompareJanuary 29, 2025 14:18
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch 4 times, most recently from 3c33435 to de76e9aCompareFebruary 3, 2025 13:09
@renovate
renovateBotforce-pushed the renovate/all-minor-patch branch from de76e9a to c9ccb5aCompareFebruary 7, 2025 17:39
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants