Bump Microsoft.AspNetCore.OData from 9.4.1 to 9.5.0#16
Merged
github-actions[bot] merged 1 commit intoJul 19, 2026
Merged
Conversation
Contributor
Author
LabelsThe following labels could not be found: Please fix the above issues or remove invalid values from |
--- updated-dependencies: - dependency-name: Microsoft.AspNetCore.OData dependency-version: 9.5.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
dependabot
Bot
force-pushed
the
dependabot/nuget/SOURCE/Microsoft.AspNetCore.OData-9.5.0
branch
from
July 19, 2026 18:14
d24911b to
d402fcb
Compare
dependabot
Bot
deleted the
dependabot/nuget/SOURCE/Microsoft.AspNetCore.OData-9.5.0
branch
July 19, 2026 18:14
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updated Microsoft.AspNetCore.OData from 9.4.1 to 9.5.0.
Release notes
Sourced from Microsoft.AspNetCore.OData's releases.
9.5.0
AspNetCoreOData 9.5.0
Full changelog: OData/AspNetCoreOData@9.4.1...9.5.0
This release focuses on security hardening of query parsing, batch handling, and delta updates, along with several bug fixes and a new configurable safeguard.
🔒 Security
Prefer: maxpagesize=0(CWE-1284/CWE-770). A client-suppliedmaxpagesizeis now honored only when it is a positive integer, so the operator-configuredPageSizecan no longer be disabled to pull an entire collection in one response. Also hardens the header parser against a baremaxpagesizetoken that previously threw a 500. (4018c71)cast()chain depth in filter validation and binding. AddsMaxFunctionCallDepth(default 15) enforcement in both the validator and the binder to mitigate stack-pressure DoS from deeply nested$filterexpressions. (e9bf5dc)$1/../../../admin-style traversal), and have auth/identity/forwarding headers (Host,X-Forwarded-*,X-MS-Client-Principal-*,X-ARR-*, …) stripped via a deny-list. (491fb92)MaxReceivedMessageSizedefault (100 MB) (CWE-770) to prevent unbounded resource allocation. (#1574)$filter/$orderby/$apply. Open/dynamic property segments now bind only to model-declared properties (resolving EDM→CLR renames correctly), preventing unmodeled CLR properties from leaking. (5e3adee)SelectExpandWrapper. CLR properties excluded via[NotMapped]or.Ignore()no longer surface in$skiptokenvalues when ordering by an open-type property. (6f91036)UpdatablePropertiesallow-list for nested resources inDelta<T>. Removing a nested (complex / single-valued navigation) property fromUpdatablePropertiesis now respected byPatch()/Put(), closing an over-posting gap. Default behavior is unchanged. (4a192c4)✨ Enhancements
MaxFunctionCallDepthsetting to limit nested function-call depth, configurable viaODataValidationSettings,ODataQuerySettings, and the[EnableQuery]attribute. (#1575)🐛 Bug fixes
ConstantNode/BinaryOperatorNodeinstead of string concatenation), fixing ordering by nullable/non-nullable bool, enum, and open-type properties. (ec8da22)cast()toEdm.Stringbinding and add test coverage across all property types. (d92c39d)ODataOptions.TimeZonewas ignored; dates were always serialized usingTimeZoneInfo.Local. (#1546)Commits viewable in compare view.