Skip to content

deps: Bump the nuget-patch-minor group with 8 updates - #2

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/Daqifi.Desktop.Common.Test/nuget-patch-minor-fb284fe653
Open

deps: Bump the nuget-patch-minor group with 8 updates#2
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/Daqifi.Desktop.Common.Test/nuget-patch-minor-fb284fe653

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 27, 2026

Copy link
Copy Markdown
Contributor

Updated Daqifi.Core from 0.27.0 to 0.28.0.

Release notes

Sourced from Daqifi.Core's releases.

0.28.0

What's new

🤖 MCP server — drive a device from an AI agent (#​277)

A new Daqifi.Mcp project ships a Model Context Protocol server so an AI agent (Claude Desktop/Code, Cursor, Codex, or any MCP-aware client) can control a DAQiFi Nyquist device end-to-end — no application code required. It's a thin, in-process layer over Daqifi.Core, distributed as a dotnet tool.

Tools: discover_devices, connect_device, list_connected_devices, disconnect_device, get_device_status, list_channels, configure_analog_channels, set_sample_rate, start_sd_logging, stop_sd_logging.

Scope is the basic control loop — discover, connect, configure analog channels + sample rate, and run on-device SD-card logging. (Live data streaming and SD file list/download are planned follow-ups.)

  • Install: dotnet tool install -g Daqifi.Mcp, then point your client at the daqifi-mcp command.
  • Safety: --read-only mode and a --max-sample-rate-hz clamp; the 1000 Hz hardware ceiling is always enforced.
  • Client config (Claude Desktop, Cursor, Codex) and details: src/Daqifi.Mcp/README.md.

Validated end-to-end against a real Nyquist 1 (firmware 3.6.2) over USB.

🔎 Discovery: echo-on devices are now found (#​272, #​268)

Serial discovery now resynchronizes the protobuf parser past echo/prompt noise, so devices with command echo enabled are discovered correctly instead of being skipped.

Also in this release

  • Core: new public DaqifiDevice.GetChannelsSnapshot() — a lock-protected channel snapshot that is safe to enumerate off the device consumer thread (used by the MCP layer, and useful for any out-of-process consumer).
  • Release pipeline: tagged releases now also pack and publish the Daqifi.Mcp .NET tool to NuGet, and the Daqifi.Core push is idempotent (--skip-duplicate) so re-running a release no longer fails on already-published versions.
  • Dependencies: bump the minor-and-patch group (#​276).

Full Changelog: daqifi/daqifi-core@v0.27.0...v0.28.0

Commits viewable in compare view.

Updated Microsoft.NET.Test.Sdk from 18.7.0 to 18.8.1.

Release notes

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

18.8.1

What's Changed

Full Changelog: microsoft/vstest@v18.8.0...v18.8.1

18.8.0

What's Changed

Full Changelog: microsoft/vstest@v18.7.0...v18.8.0

Commits viewable in compare view.

Updated MSTest.TestAdapter from 4.2.3 to 4.3.2.

Release notes

Sourced from MSTest.TestAdapter's releases.

4.3.2

See the release notes here

4.3.0

See the release notes here

Commits viewable in compare view.

Updated MSTest.TestFramework from 4.2.3 to 4.3.2.

Release notes

Sourced from MSTest.TestFramework's releases.

4.3.2

See the release notes here

4.3.0

See the release notes here

Commits viewable in compare view.

Updated NLog from 6.1.3 to 6.1.4.

Release notes

Sourced from NLog's releases.

6.1.4

Improvements

  • #​6225 AsyncTaskTarget - Fixed bug when using BatchSize=1 and doing explicit flush and next LogEvent fails. (@​snakefoot)
  • #​6206 MruCache - Changed to ConcurrentDictionary but still single writer. (@​snakefoot)
  • #​6205 TargetWithFilterChain - Increase CallSite MaxCapacity from 1000 to 2000. (@​snakefoot)
  • #​6197 JsonAttribute - New constructor with JsonLayout and Encode = false. (@​snakefoot)
  • #​6174 Reduce AOT file-size. Changed PropertyTypeConverter to avoid Dictionary for conversion mapping. (@​snakefoot)
  • #​6177 Reduce AOT file-size. Changed LogFactory PurgeObsoleteLoggers to clone Dictionary instead of ToList. (@​snakefoot)
  • #​6185 Reduce AOT file-size. Changed to use yield instead of Linq. (@​snakefoot)
  • #​6188 Reduce AOT file-size. Changed ConfigurationItemFactory from Dictionary to Array of PropertyInfo. (@​snakefoot)
  • #​6192 Reduce AOT file-size. Changed Target FindAllLayouts to use HashSet instead of Linq Distinct. (@​snakefoot)
  • #​6193 Reduce AOT file-size. Changed XmlLoggingConfiguration AutoReloadFileNames to use yield instead of Linq. (@​snakefoot)
  • #​6195 Reduce AOT file-size. Changed LoggingConfiguration CheckUnusedTargets to use HashSet instead of Linq. (@​snakefoot)
  • #​6204 TemplateEnumerator - Replace LiteralHole with CurrentHole and CurrentLiteral. (@​snakefoot)
  • #​6223 XmlParser - ReadUntilChar avoid extra string-allocation on trim InnerText. (@​snakefoot)
  • #​6222 XmlParser - Simplify ReadUntilChar by extracting parse of attribute-name into ReadEntityName. (@​snakefoot)
  • #​6209 AppVeyor - Visual Studio 2026. (@​snakefoot)
  • #​6199 Fixed nullable warnings from Activator.CreateInstance. (@​snakefoot)
  • #​6190 SetupConfigurationTargetBuilder - Fix Sonar Code Smell. (@​snakefoot)
  • #​6176 TryNLogSpecificConversion - Refactor parsing Layout from string. (@​snakefoot)
  • #​6210 ScopeContext - Fix List capacity for GetAllNestedStates. (@​jnyrup)
  • #​6211 ScopeContext - Renamed PushNestedState to CollectNestedState. (@​snakefoot)
  • #​6214 ScopeContext - Rename CaptureNestedContext to CloneNestedContext. (@​snakefoot)
  • #​6216 ScopeContext - Simplify CaptureContextProperties when only nested state. (@​snakefoot)
  • #​6217 ScopeContext - Unify CollectNestedState implementation. (@​snakefoot)

Commits viewable in compare view.

Updated Sentry from 6.6.0 to 6.8.0.

Release notes

Sourced from Sentry's releases.

6.8.0

Features ✨

Logs

  • feat(logs): add log4net integration by @​Flash0ver in #​5172
  • feat(logs): add NLog integration by @​Flash0ver in #​5176

Other

  • feat(serilog): support restrictedToMinimumLevel when configuring Serilog in code by @​jamescrosswell in #​5181
  • Attachments can now be sent with transactions by setting AddToTransactions on SentryAttachment #​5182 by @​jamescrosswell in #​5182
  • Added SentrySdk.RecordTransaction to record already-completed transactions and spans (e.g. replayed through a proxy) #​5333 by @​jamescrosswell in #​5333
  • The Environment set on the Scope now gets synchronized to the native layers (sentry-cocoa and sentry-native) by @​bitsandfoxes in #​5365

Fixes 🐛

  • fix: SentrySpanProcessor no longer leaks spans whose Activity never ends (e.g. aborted requests); the Activity is now held via a WeakReference so orphaned spans are pruned once it is garbage-collected. by @​Ermabo in #​5393
  • The SDK was incorrectly ignoring server rate limits for errors, check-ins, and logs by @​jamescrosswell in #​5412
  • fix: BackpressureMonitor.Dispose() no longer deadlocks on single-threaded targets by @​jamescrosswell in #​5330
  • fix: Create a single TaskBlockingListener per process for CaptureBlockingCalls by @​jamescrosswell in #​5381

Dependencies ⬆️

Deps

  • chore(deps): update CLI to v3.6.1 by @​github-actions in #​5417
  • chore(deps): update Native SDK to v0.15.4 by @​github-actions in #​5416
  • chore(deps): update Cocoa SDK to v9.22.0 by @​github-actions in #​5395
  • chore(deps): update Java SDK to v8.49.0 by @​github-actions in #​5398

Other

  • ci: drop install-zstd workaround by @​jpnurmi in #​5391
  • docs: add Sentry.OpenTelemetry.Exporter to README.md by @​Flash0ver in #​5194
  • meta: Update CODEOWNERS by @​Flash0ver in #​5386

6.7.0

Features ✨

  • feat(android): expose tombstone options via SentryOptions.Native by @​jamescrosswell in #​5226
  • Add IgnoreTransactions option to filter out transactions by name, matching substrings or regular expressions against the transaction name (#​5377) by @​Adham-Kiwan in #​5377
  • feat: Add BeforeSendFeedback callback to inspect, modify, or drop user feedback before it's sent by @​vladbrincoveanu in #​5361
  • Add public API for checking unhandled exceptions (SentryEventExtensions.IsFromUnhandledException) and terminal exceptions (SentryEventExtensions.IsFromTerminalException) by @​jamescrosswell in #​5177
  • feat: Add PreferTransactionNameProvider option by @​jamescrosswell in #​5159
  • feat: Add exponential backoff and log deduplication to Spotlight by @​mattico in #​5025

Fixes 🐛

  • fix(otel): only set Scope.Transaction in SentrySpanProcessor when null by @​tsushanth in #​5337
  • fix: LNK4291 on Native AOT WinExe with Control Flow Guard by @​jamescrosswell in #​5298
  • fix: OpenTelemetry transactions for failed requests keep their route name and otel context by @​jamescrosswell in #​5310
  • fix: populate Default attributes on structured logs from current scope by @​jamescrosswell in #​5216
  • fix: [.NET 10] PageNavigationExtensions updated for public Page properties by @​nor0x in #​5278

Dependencies ⬆️

Deps

  • chore(deps): update Java SDK to v8.48.0 by @​github-actions in #​5360
  • chore(deps): update Cocoa SDK to v9.21.0 by @​github-actions in #​5359
  • chore(deps): update Native SDK to v0.15.3 by @​github-actions in #​5353
  • chore(deps): update Cocoa SDK to v9.20.0 by @​github-actions in #​5354
  • chore(deps): update Java SDK to v8.47.0 by @​github-actions in #​5338
  • chore(deps): update Cocoa SDK to v9.19.1 by @​github-actions in #​5336
  • chore(deps): update CLI to v3.6.0 by @​github-actions in #​5329
  • chore(deps): update Cocoa SDK to v9.19.0 by @​github-actions in #​5316
  • chore(deps): update Java SDK to v8.46.0 by @​github-actions in #​5321
  • chore(deps): update Java SDK to v8.45.0 by @​github-actions in #​5315
  • chore(deps): update Native SDK to v0.15.2 by @​github-actions in #​5309
  • chore(deps): update Cocoa SDK to v9.18.0 by @​github-actions in #​5264
  • chore(deps): update Java SDK to v8.44.1 by @​github-actions in #​5263
  • chore(deps): update CLI to v3.5.1 by @​github-actions in #​5279
  • chore(deps): update Native SDK to v0.15.1 by @​github-actions in #​5282

Other

  • Added Sentry.Samples.OpenTelemetry.MongoDB by @​jamescrosswell in #​5335
  • docs: add XML comments for boolean return of Sentry.Extensions.Logging Filters by @​Flash0ver in #​5297
  • LatestWindowsTfm added to Directory.Build.props by @​nor0x in #​5277

Commits viewable in compare view.

Updated System.Configuration.ConfigurationManager from 10.0.9 to 10.0.10.

Release notes

Sourced from System.Configuration.ConfigurationManager's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated System.IO.Ports from 10.0.9 to 10.0.10.

Release notes

Sourced from System.IO.Ports's releases.

No release notes found for this version range.

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps Daqifi.Core from 0.27.0 to 0.28.0
Bumps Microsoft.NET.Test.Sdk from 18.7.0 to 18.8.1
Bumps MSTest.TestAdapter from 4.2.3 to 4.3.2
Bumps MSTest.TestFramework from 4.2.3 to 4.3.2
Bumps NLog from 6.1.3 to 6.1.4
Bumps Sentry from 6.6.0 to 6.8.0
Bumps System.Configuration.ConfigurationManager from 10.0.9 to 10.0.10
Bumps System.IO.Ports from 10.0.9 to 10.0.10

---
updated-dependencies:
- dependency-name: Daqifi.Core
  dependency-version: 0.28.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-patch-minor
- dependency-name: Daqifi.Core
  dependency-version: 0.28.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-patch-minor
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 18.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-patch-minor
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 18.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-patch-minor
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 18.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-patch-minor
- dependency-name: MSTest.TestAdapter
  dependency-version: 4.3.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-patch-minor
- dependency-name: MSTest.TestFramework
  dependency-version: 4.3.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-patch-minor
- dependency-name: MSTest.TestAdapter
  dependency-version: 4.3.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-patch-minor
- dependency-name: MSTest.TestFramework
  dependency-version: 4.3.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-patch-minor
- dependency-name: MSTest.TestAdapter
  dependency-version: 4.3.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-patch-minor
- dependency-name: MSTest.TestFramework
  dependency-version: 4.3.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-patch-minor
- dependency-name: NLog
  dependency-version: 6.1.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-patch-minor
- dependency-name: Sentry
  dependency-version: 6.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-patch-minor
- dependency-name: System.Configuration.ConfigurationManager
  dependency-version: 10.0.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-patch-minor
- dependency-name: System.IO.Ports
  dependency-version: 10.0.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-patch-minor
- dependency-name: System.IO.Ports
  dependency-version: 10.0.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-patch-minor
...

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

dependabot Bot commented on behalf of github Jul 27, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: dependencies, nuget. 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.

0 participants