Conversation
…aces - Replace deprecated PackageLicenseUrl with PackageLicenseExpression (Apache-2.0) Addresses #168: the old URL format is deprecated by NuGet and caused a 404 - Update Microsoft.Bcl.AsyncInterfaces from 5.0 to 10.0.3 Eliminates NU1605 package downgrade warning: System.Threading.Channels (*) transitively requires 10.0.3, but the explicit 5.0.0 requirement caused it to be downgraded at resolution time Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
6 tasks
dsyme
approved these changes
Feb 22, 2026
github-actions bot
added a commit
that referenced
this pull request
Feb 22, 2026
- Add mapAsyncUnorderedParallelThrottled (closes #31, PR #225) - Fix ofAsyncEnum deadlock on single-threaded runtimes like Blazor WASM (closes #152, PR #229) - Update PackageLicenseExpression and Microsoft.Bcl.AsyncInterfaces to 10.0.3 (closes #168, PR #228) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
dsyme
added a commit
that referenced
this pull request
Feb 22, 2026
* Prepare release 3.3.2 - Add mapAsyncUnorderedParallelThrottled (closes #31, PR #225) - Fix ofAsyncEnum deadlock on single-threaded runtimes like Blazor WASM (closes #152, PR #229) - Update PackageLicenseExpression and Microsoft.Bcl.AsyncInterfaces to 10.0.3 (closes #168, PR #228) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Bump version to 4.0.0 (#237) * Initial plan * Update version from 3.3.2 to 4.0.0 in RELEASE_NOTES.md and version.props Co-authored-by: dsyme <7204669+dsyme@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: dsyme <7204669+dsyme@users.noreply.github.com> --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: dsyme <7204669+dsyme@users.noreply.github.com> Co-authored-by: Don Syme <dsyme@users.noreply.github.com>
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.
🤖 Repo Assist here — I'm an automated AI assistant for this repository.
This PR addresses two minor maintenance items in the main project file:
1. Replace deprecated
PackageLicenseUrlwithPackageLicenseExpressionCloses #168.PackageLicenseUrlis deprecated by NuGet; NuGet.org now renders it as a 404. The Apache-2.0 SPDX expression is the correct replacement for this project's Apache 2.0 license.2. Update
Microsoft.Bcl.AsyncInterfacesfrom5.0to10.0.3The project uses
System.Threading.Channels Version="*", which resolves to10.0.3and transitively requiresMicrosoft.Bcl.AsyncInterfaces >= 10.0.3. The old explicit pin of5.0.0caused aNU1605package downgrade warning on restore. Updating the version to10.0.3eliminates that warning and aligns the explicit requirement with the already-resolved version.No public API changes. No new dependencies.
Test Status
dotnet build— 0 errors, 3 pre-existing deprecation warnings in Fable test project)