Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Tags: egonelbre/dotnet-runtime

Tags

v11.0.0-preview.3.26207.106

Toggle v11.0.0-preview.3.26207.106's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[release/11.0-preview3] Fix publish-time Framework materialization fo…

…r multi-client WASM and add test (dotnet#126378)

Backport of dotnet#126211 to release/11.0-preview3

/cc @lewing

## Customer Impact

- [ ] Customer reported
- [ ] Found internally

[Select one or both of the boxes. Describe how this issue impacts
customers, citing the expected and actual behaviors and scope of the
issue. If customer-reported, provide the issue number.]

## Regression

- [ ] Yes
- [ ] No

[If yes, specify when the regression was introduced. Provide the PR or
commit if known.]

## Testing

[How was the fix verified? How was the issue missed previously? What
tests were added?]

## Risk

[High/Medium/Low. Justify the indication by mentioning how risks were
measured and addressed.]

**IMPORTANT**: If this backport is for a servicing release, please
verify that:

- For .NET 8 and .NET 9: The PR target branch is `release/X.0-staging`,
not `release/X.0`.
- For .NET 10+: The PR target branch is `release/X.0` (no `-staging`
suffix).

## Package authoring no longer needed in .NET 9

**IMPORTANT**: Starting with .NET 9, you no longer need to edit a NuGet
package's csproj to enable building and bump the version.
Keep in mind that we still need package authoring in .NET 8 and older
versions.

---------

Co-authored-by: Larry Ewing <lewing@microsoft.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

v9.0.15

Toggle v9.0.15's commit message
Merge commit '152085126a3dc5063aac6e9ae9ed2cda2be2f4bf'

v8.0.26

Toggle v8.0.26's commit message
Merge commit 'fcdfb09f932c592f5f69e2ca8f1bd54165796b04'

v11.0.0-preview.2.26159.112

Toggle v11.0.0-preview.2.26159.112's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[release/11.0-preview2] Revert "Increase number of assertions (Global…

…AP) + VN cache (dotnet#124132)" (dotnet#124955)

Backport of dotnet#124928 to release/11.0-preview2

/cc @akoeplinger @AndyAyersMS

## Customer Impact

- [ ] Customer reported
- [x] Found internally

This was causing excessive memory allocation during jitting (see
dotnet/dotnet#4933).
## Regression

- [X] Yes
- [ ] No

Caused by:
dotnet@92741be

## Testing

Manual testing.

## Risk

Low. Reverts an earlier change.

[High/Medium/Low. Justify the indication by mentioning how risks were
measured and addressed.]

**IMPORTANT**: If this backport is for a servicing release, please
verify that:

- For .NET 8 and .NET 9: The PR target branch is `release/X.0-staging`,
not `release/X.0`.
- For .NET 10+: The PR target branch is `release/X.0` (no `-staging`
suffix).

## Package authoring no longer needed in .NET 9

**IMPORTANT**: Starting with .NET 9, you no longer need to edit a NuGet
package's csproj to enable building and bump the version.
Keep in mind that we still need package authoring in .NET 8 and older
versions.

Co-authored-by: Andy Ayers <andya@microsoft.com>

v9.0.14

Toggle v9.0.14's commit message
dotnet#124513 - Guard Base64Url.DecodeFromChars against non-ASCII inp…

…ut (dotnet#124540)

Base64Url.DecodeFromChars in Microsoft.Bcl.Memory has an out-of-bounds
read bug: DecodeFrom uses Unsafe.Add with raw char values as indices
into a 256-element DecodingMap without checking the DecodeRemaining
return value first. Non-ASCII chars (value > ~2048) cause an
AccessViolationException on .NET 8.

Workaround: Add System.Text.Ascii.IsValid check before decoding to
reject non-ASCII input early. Base64/Base64Url only uses ASCII
characters, so any non-ASCII input is inherently invalid.

Fixes dotnet#124513

---------

Co-authored-by: t.csala <t.csala@criteo.com>

v10.0.5

Toggle v10.0.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[release/10.0] fix Vector2/3 EqualsAny (dotnet#124223)

Backport of dotnet#123594 to release/10.0

/cc @tannergooding @kasperk81

## Customer Impact

- [x] Customer reported
- [ ] Found internally

Reported in dotnet#123586, developers
using some of the new APIs exposed on Vector2 and Vector3 could get
non-deterministic results in some scenarios.

## Regression

- [ ] Yes
- [x] No

These are new APIs.

## Testing

Explicit tests covering the scenarios were added in addition to manual
verification of the codegen.

## Risk

Low. These are net new APIs which could accidentally include invalid
elements in the accelerated comparison. The fix was to ensure they used
the existing centralized helpers that were exposed to help ensure such
code was being consistently handled and avoid such problems. The APIs
had simply not gotten checked in using them as intended.

---------

Co-authored-by: kasperk81 <83082615+kasperk81@users.noreply.github.com>

v10.0.4

Toggle v10.0.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[release/10.0] fix Vector2/3 EqualsAny (dotnet#124223)

Backport of dotnet#123594 to release/10.0

/cc @tannergooding @kasperk81

## Customer Impact

- [x] Customer reported
- [ ] Found internally

Reported in dotnet#123586, developers
using some of the new APIs exposed on Vector2 and Vector3 could get
non-deterministic results in some scenarios.

## Regression

- [ ] Yes
- [x] No

These are new APIs.

## Testing

Explicit tests covering the scenarios were added in addition to manual
verification of the codegen.

## Risk

Low. These are net new APIs which could accidentally include invalid
elements in the accelerated comparison. The fix was to ensure they used
the existing centralized helpers that were exposed to help ensure such
code was being consistently handled and avoid such problems. The APIs
had simply not gotten checked in using them as intended.

---------

Co-authored-by: kasperk81 <83082615+kasperk81@users.noreply.github.com>

v8.0.25

Toggle v8.0.25's commit message
Merge commit 'cf19152e6aafdcdb03b1f6bab452cd4bb926c58f'

v11.0.0-preview.1.26104.118

Toggle v11.0.0-preview.1.26104.118's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[release/11.0-preview1] Revert [browser] Use Runtime=NET for build ta…

…sks (dotnet#123974)

Backport of dotnet#123973 to release/11.0-preview1. See that PR for full
details.

Reverts PR dotnet#123304 - the Runtime=NET feature for UsingTask is only
supported with SDK-style projects and caused Blazor test failures.
Morty Proxy This is a proxified and sanitized view of the page, visit original site.