MicrosoftDynamics.Api
10.0.45
See the version list below for details.
dotnet add package MicrosoftDynamics.Api --version 10.0.45
NuGet\Install-Package MicrosoftDynamics.Api -Version 10.0.45
<PackageReference Include="MicrosoftDynamics.Api" Version="10.0.45" />
<PackageVersion Include="MicrosoftDynamics.Api" Version="10.0.45" />
<PackageReference Include="MicrosoftDynamics.Api" />
paket add MicrosoftDynamics.Api --version 10.0.45
#r "nuget: MicrosoftDynamics.Api, 10.0.45"
#:package MicrosoftDynamics.Api@10.0.45
#addin nuget:?package=MicrosoftDynamics.Api&version=10.0.45
#tool nuget:?package=MicrosoftDynamics.Api&version=10.0.45
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.11)
- PanoramicData.OData.Client (>= 10.0.123)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 10.0.48 | 95 | 9/13/2026 |
| 10.0.47 | 83 | 9/12/2026 |
| 10.0.45 | 104 | 9/9/2026 |
| 10.0.42 | 91 | 9/9/2026 |
| 10.0.37 | 92 | 9/1/2026 |
| 10.0.34 | 98 | 8/31/2026 |
| 10.0.28 | 248 | 8/21/2026 |
| 10.0.19 | 450 | 6/6/2026 |
| 10.0.18 | 284 | 4/16/2026 |
| 10.0.14 | 630 | 2/17/2026 |
| 10.0.10 | 566 | 12/17/2025 |
| 10.0.9 | 320 | 12/17/2025 |
| 10.0.7 | 313 | 12/16/2025 |
| 10.0.6 | 315 | 12/16/2025 |
| 10.0.5 | 310 | 12/16/2025 |
| 10.0.4 | 310 | 12/16/2025 |
| 10.0.3 | 306 | 12/16/2025 |
| 10.0.2 | 306 | 12/16/2025 |
| 2.0.25 | 2,021 | 1/5/2025 |
| 2.0.24 | 283 | 11/13/2024 |
10.0.45
The redaction marker for scheme-prefixed sensitive headers is reordered so that a redacted
header can no longer be mistaken for a leaked one by a log search.
A redacted Authorization header now renders as "Authorization=<redacted Bearer, length 1842>"
rather than "Authorization=Bearer <redacted, length 1842>". The same information is present -
header name, scheme and credential length - in a different order.
Why: log stores analyse the message with the standard analyzer, which discards '=', ':' and '<'
alike. Both the old redacted render and a genuine "Authorization: Bearer eyJ0..." leak therefore
tokenised to "authorization" followed by "bearer", which is exactly the adjacency a phrase query
tests for. A search for "Authorization: Bearer" - the obvious way to hunt for leaked tokens -
matched every redaction, so 10.0.28's fix could not be shown to be working. Downstream this cost
a failed test cycle and a Major security defect raised against correctly-redacted log entries.
With the scheme inside the marker, that search returns only genuine leaks.
Consumers who search their logs for leaked credentials can now rely on a phrase search for
"Authorization: Bearer". Anyone parsing the marker's text, or asserting on it in a test, will
need updating.
10.0.42
Internal refactor only. No public API or behaviour change; no action needed on upgrade.
The JSON parsing and access token acquisition inside MicrosoftDynamicsClient moved to
separate internal types, reducing the complexity of a single oversized file.
10.0.28
Security fix: sensitive HTTP headers are now redacted in diagnostic output.
Previously the Authorization header, and therefore a usable access token, was written verbatim
into the exception message thrown for a failed request, and into Debug level request logging.
Any consumer capturing those messages retained usable credentials for the life of its log store.
Authorization, Proxy-Authorization, Cookie, Set-Cookie and common API key headers are now
redacted in both request and response headers. The authentication scheme and the credential
length are retained, so failures remain diagnosable without exposing the credential.
Breaking change to message text: headers in the failure exception message are now rendered as
"Name=value" rather than "Name: value". Code that parses that message will need updating.
Consumers upgrading from a version earlier than 10.0.28 should review existing logs for
previously captured tokens.