Skip to content

Bump Microsoft.NET.Test.Sdk from 17.11.1 to 18.5.1#46

Open
dependabot[bot] wants to merge 3 commits into
mainfrom
dependabot/nuget/tests/Aether.Core.Tests/multi-b5bf0570be
Open

Bump Microsoft.NET.Test.Sdk from 17.11.1 to 18.5.1#46
dependabot[bot] wants to merge 3 commits into
mainfrom
dependabot/nuget/tests/Aether.Core.Tests/multi-b5bf0570be

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github May 11, 2026

Updated Microsoft.NET.Test.Sdk from 17.11.1 to 18.5.1.

Release notes

Sourced from Microsoft.NET.Test.Sdk's releases.

18.5.1

What's Changed

Full Changelog: microsoft/vstest@v18.5.0...v18.5.1

18.5.0

⚠️ Unlisted on Nuget, because of #​15718

What's Changed

Full Changelog: microsoft/vstest@v18.4.0...v18.5.0

18.4.0

What's Changed

New Contributors

Full Changelog: microsoft/vstest@v18.3.0...v18.4.0

18.3.0

What's Changed

Internal fixes and updates

New Contributors

18.0.1

What's Changed

Fixing an issue with loading covrun64.dll on systems that have .NET 10 SDK installed: https://learn.microsoft.com/en-us/dotnet/core/compatibility/sdk/10.0/code-coverage-dynamic-native-instrumentation

Internal changes

Full Changelog: microsoft/vstest@v18.0.0...v18.0.1

18.0.0

What's Changed

Internal fixes and updates

17.14.1

What's Changed

Full Changelog: microsoft/vstest@v17.14.0...v17.14.1

17.14.0

What's Changed

.NET versions updated

This version of VS Test upgraded .NET to net8 and net9. All projects targeting net6.0 (or other end-of-life .NET target frameworks) should pin their version of Microsoft.NET.Test.SDK to 17.13.0, or update the projects to net8 or newer. We remain backwards compatible with previous versions of Microsoft.NET.Test.SDK. This change does NOT prevent you from:

  • Updating to the latest VS, and running tests from net6.0 test projects.
  • Updating to the latest .NET SDK, and running tests from net6.0 test projects.

It also has no impact on .NET Framework projects, where we continue targeting .NET Framework 4.6.2.

Changes

Internal version updates and fixes

New Contributors

17.14.0-preview-25107-01

What's Changed

.NET versions updated

This version of VS Test upgraded .NET to net8 and net9. All projects targeting net6.0 (or other end-of-life .NET target frameworks) should pin their version of Microsoft.NET.Test.SDK to 17.13.0, or update the projects to net8 or newer. We remain backwards compatible with previous versions of Microsoft.NET.Test.SDK. This change does NOT prevent you from:

  • Updating to the latest VS, and running tests from net6.0 test projects.
  • Updating to the latest .NET SDK, and running tests from net6.0 test projects.

It also has no impact on .NET Framework projects, where we continue targeting .NET Framework 4.6.2.

Changes

Internal version updates and fixes

Will probably revert before release:

New Contributors

Full Changelog: microsoft/vstest@v17.13.0...v17.14.0-preview-25107-01

17.13.0

What's Changed

New Contributors

Full Changelog: microsoft/vstest@v17.12.0...v17.13.0

17.12.0

What's Changed

Internal and infrastructure fixes:

Full Changelog: microsoft/vstest@v17.11.1...v17.12.0

Commits viewable in compare view.

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

bhengubv and others added 3 commits May 9, 2026 02:16
Delivers all six Aether mesh transport implementations using a fail-fast
strategy: real transport where possible, IsAvailable=false stubs with
explicit hardware-blocker documentation where SDK/hardware is absent.

Transport colour map:
  Aether Blue  (BLE)           — WinBleGattTransportService + android/blue/
  Aether Green (Wi-Fi Direct)  — WinWifiDirectTransportService + android/green/
  Aether Purple (HTTP relay)   — HttpRelayTransportService + Aether.RelayServer
  Aether White (NFC)           — WinNfcStubTransportService + android/white/ HCE
  Aether Teal  (NearLink)      — WinNearLinkStubTransportService + android/teal/
  Aether Red   (LoRa)          — LoRaCircleLinkStub + android/red/

New C# surface:
  src/Aether.Transport.Windows/ — WinBleGattTransportService, WinWifiDirectTransportService,
    HttpRelayTransportService, WinNearLinkStubTransportService, WinNfcStubTransportService
  src/Aether.Transport/CircleLink/ — ICircleLinkTransportService + LoRaCircleLinkStub

New Android apps (compileSdk 35, minSdk 26, Kotlin 2.1.0, AGP 8.7.3):
  android/blue/  — BLE GATT server/client (Aether Blue)
  android/green/ — Wi-Fi Direct P2P + ServerSocket(8888) (Aether Green)
  android/white/ — NFC HCE AID F061657468657200 (Aether White)
  android/teal/  — NearLink stub, IsAvailable=false (Aether Teal)
  android/red/   — LoRa stub, IsAvailable=false (Aether Red)

New test samples:
  samples/Aether.RelayServer/     — ASP.NET Core minimal API, long-poll relay
  samples/Aether.RelayRfTest/     — in-process A↔B relay round-trip test
  samples/Aether.WifiDirectRfTest/ — Wi-Fi Direct RF bring-up console

Fix INearLinkTransportService: add `new` to all 10 DIMs that shadow
ITransportService abstract members (CS0108 warnings); add explicit
ITransportService property implementations to WinNearLinkStubTransportService
and FakeNearLink test class (CS0535 errors).

Fix WinWifiDirectTransportService: GetConnectionEndpointPairs() is
synchronous (not async), DeviceWatcher.Removed lambda discard disambiguation,
WiFiDirectDevice.GetInformationElements() not in WinRT API (peer UHID
resolved via TCP handshake instead).

Verification:
  dotnet build AetherProtocol.slnx — 0 errors, 0 warnings
  dotnet test — 507 tests pass (492 core + 11 soak + 4 interop)
  dotnet run --project samples/Aether.RelayRfTest — RTT printed, exits 0

OPEN_ISSUES.md: item 8 transport layer resolved; items 12–14 added for
NearLink (Huawei SDK), LoRa (radio module), Windows NFC (API removed Win11).

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…otProject.name

C# build now runs on windows-latest — required because
Aether.Transport.Windows targets net10.0-windows10.0.19041.0 (WinRT APIs
not available on Linux runners).

Android CI: new matrix job builds all 5 transport colour apps (blue, green,
red, teal, white) with assembleDebug on ubuntu-latest (Android SDK
pre-installed). Uses Gradle cache on gradle-wrapper.properties.

fixtures job now also gates on the android matrix.

settings.gradle.kts: correct rootProject.name for all 5 apps (was still
"AetherBleNode" from copy-template; now AetherBlue/Green/Red/Teal/White).

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 18.5.1
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 18.5.1
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 18.5.1
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Copy Markdown
Author

dependabot Bot commented on behalf of github May 11, 2026

Labels

The following labels could not be found: csharp, dependencies. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

Sign up for free to 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.

1 participant