deps: Bump the nuget-patch-minor group with 12 updates - #828
Open
dependabot[bot] wants to merge 1 commit into
Open
deps: Bump the nuget-patch-minor group with 12 updates#828dependabot[bot] wants to merge 1 commit into
dependabot[bot] wants to merge 1 commit into
Conversation
Bumps Daqifi.Core from 1.4.0 to 1.6.0 Bumps Microsoft.Data.Sqlite from 10.0.10 to 10.0.11 Bumps Microsoft.EntityFrameworkCore from 10.0.10 to 10.0.11 Bumps Microsoft.EntityFrameworkCore.Sqlite from 10.0.10 to 10.0.11 Bumps Microsoft.EntityFrameworkCore.Tools from 10.0.10 to 10.0.11 Bumps Microsoft.Extensions.Http from 10.0.10 to 10.0.11 Bumps Microsoft.NET.Test.Sdk from 18.8.1 to 18.9.0 Bumps NLog from 6.1.4 to 6.2.0 Bumps Roslynator.Analyzers from 4.15.0 to 4.16.1 Bumps Sentry from 6.8.0 to 6.9.0 Bumps System.Configuration.ConfigurationManager from 10.0.10 to 10.0.11 Bumps System.IO.Ports from 10.0.10 to 10.0.11 --- updated-dependencies: - dependency-name: Daqifi.Core dependency-version: 1.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-patch-minor - dependency-name: Microsoft.Data.Sqlite dependency-version: 10.0.11 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-patch-minor - dependency-name: Microsoft.EntityFrameworkCore dependency-version: 10.0.11 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-patch-minor - dependency-name: Microsoft.EntityFrameworkCore.Sqlite dependency-version: 10.0.11 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-patch-minor - dependency-name: Microsoft.EntityFrameworkCore.Tools dependency-version: 10.0.11 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-patch-minor - dependency-name: Microsoft.Extensions.Http dependency-version: 10.0.11 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-patch-minor - dependency-name: Microsoft.NET.Test.Sdk dependency-version: 18.9.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.9.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-patch-minor - dependency-name: NLog dependency-version: 6.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-patch-minor - dependency-name: Roslynator.Analyzers dependency-version: 4.16.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-patch-minor - dependency-name: Roslynator.Analyzers dependency-version: 4.16.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-patch-minor - dependency-name: Sentry dependency-version: 6.9.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.11 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-patch-minor - dependency-name: System.IO.Ports dependency-version: 10.0.11 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-patch-minor ... Signed-off-by: dependabot[bot] <support@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.
Rebasing might not happen immediately, so don't worry if this takes some time.
Note: if you make any changes to this PR yourself, they will take precedence over the rebase.
Updated Daqifi.Core from 1.4.0 to 1.6.0.
Release notes
Sourced from Daqifi.Core's releases.
1.6.0
Verified end-to-end against a DAQiFi Nyquist Nq1 (firmware 3.7.2) over USB: serial discovery, connect + populated init, 100 Hz streaming with live acquisition statistics, mid-stream diagnostics, PWM/digital interlock, SD card list/storage/record/download/parse, and LAN chip info all pass. Full unit suite green (7,171 tests) on net9.0 and net10.0.
Highlights
Channelsalongside its inputs, with their voltage range, resolution, and last-commanded value, instead of being a write-only command you had to know the syntax for. Writes are range-checked against what the device itself reported before anything reaches the wire, and a stage/latch pair lets several outputs change together. An MCP agent can drive them too, not just read them. Analog output is NQ3 hardware;Supports(DeviceFeature.AnalogOutput)tells you whether the board in front of you has it. (#526, #546)AcquisitionStatisticsanswers that question from the samples themselves: measured rate, per-channel counts and value ranges, sample-interval spread, out-of-order counts, and how far behind the device's own clock the host is running. On our bench Nyquist it immediately surfaced that firmware 3.7.2 streams at 79.6% of the requested rate — the kind of thing that used to require hand-rolled instrumentation. (#518)Features
Firmware & device behavior
Fixes
await foreachover samples now ends when the device does, instead of hanging forever. A clean disconnect ends the loop normally; an unplug or lost link throws, so an acquisition cut short can't be mistaken for one that finished. (#507)Connect()helpers no longer freeze a UI thread. (#508)Send()racing a disconnect fails with a typed error instead of aNullReferenceException. (#503)StatusChangedsubscriber no longer kills auto-reconnect or leaks the port handle. (#504)discover_devicesno longer gives up on a device that just needed a moment — the MCP timeout floor went from 250 ms to 1 s. (#475)Performance
discover_devicesstarts both transports at once instead of waiting one out. (#509, #510)Internal
DaqifiStreamingDevicecontinues splitting into focused collaborators — the text-exchange engine is now its own type, and the file gives up the operation lock and its send backlog. (part of #344 — #479, #530)BootloaderSessionDevicemoved into Core so it owns the bootloader stand-in, and the bootloader's duplicated wire constants were single-sourced. (#478, #519)DaqifiStreamingDevicedowncast is gone from the device surface. (#476)Full Changelog: daqifi/daqifi-core@v1.5.0...v1.6.0
1.5.0
Verified end-to-end against a DAQiFi Nyquist (firmware 3.7.2) over USB: serial discovery, connect + populated init, 100 Hz streaming, SD card list/storage, and LAN chip info all pass. Full unit suite green (2,853 tests) on net9.0 and net10.0.
Highlights
IStreamingDevice,IAsyncDisposableonIDevice— connecting, streaming, and tearing down a device can now all be cancelled and awaited properly, instead of blocking or relying on manual cleanup. This makes it much easier to build responsive apps on top of Core — a UI can cancel a stuck connect attempt or cleanly dispose a device without extra plumbing. Note for anyone implementing these interfaces directly outside this repo: you'll need to add the new async members,DisposeAsync, and the 9 calibration confirmation members described below — sync-only callers are unaffected. (#460, #469)Fixes
Internal
ScpiMessageProducer. (#468)TextMessage,SdCardBusyException, abandoned simulator docs. (#467)DaqifiStreamingDevicecontinues splitting into focused collaborators — channel/DIO/PWM/analog-output control, status-frame channel mapping, stream frame decode, connect/disconnect serialization, device administration, raw-command session interpretation, the live-sample async stream, session snapshot/restore, and USB stream-interface routing. (part of #344 — #432, #433, #435, #436, #437, #439, #440, #441, #442)ScaleRawAnalogValueshelper extracted for SD card parsing. (#466)merge_groupso a merge queue can gatemain. (#459)Full Changelog: daqifi/daqifi-core@v1.4.0...v1.5.0
Commits viewable in compare view.
Updated Microsoft.Data.Sqlite from 10.0.10 to 10.0.11.
Release notes
Sourced from Microsoft.Data.Sqlite's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.EntityFrameworkCore from 10.0.10 to 10.0.11.
Release notes
Sourced from Microsoft.EntityFrameworkCore's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.EntityFrameworkCore.Sqlite from 10.0.10 to 10.0.11.
Release notes
Sourced from Microsoft.EntityFrameworkCore.Sqlite's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.EntityFrameworkCore.Tools from 10.0.10 to 10.0.11.
Release notes
Sourced from Microsoft.EntityFrameworkCore.Tools's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.Extensions.Http from 10.0.10 to 10.0.11.
Release notes
Sourced from Microsoft.Extensions.Http's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.NET.Test.Sdk from 18.8.1 to 18.9.0.
Release notes
Sourced from Microsoft.NET.Test.Sdk's releases.
18.9.0
What's Changed
New Contributors
Full Changelog: microsoft/vstest@v18.8.0...v18.9.0
Commits viewable in compare view.
Updated NLog from 6.1.4 to 6.2.0.
Release notes
Sourced from NLog's releases.
6.2
Improvements
Release notes for NLog v6.2: https://nlog-project.org/2026/08/16/nlog-6-2-aot-build-size.html
Commits viewable in compare view.
Updated Roslynator.Analyzers from 4.15.0 to 4.16.1.
Release notes
Sourced from Roslynator.Analyzers's releases.
4.16.1
Fixed
inforref structparameters (#1725) (PR)omit_when_single_lineon multi-line object/collection initializers (#1439) (PR)async voidmethods withoutAsyncsuffix (PR)whenfilter (PR)CancellationTokenin sync methods returningTask(PR)generate-docto omit internal interfaces from type declarations and the Implements section (PR)4.16.0
Added
Fixed
filemodifier (PR by @cbersch)fixcommand ignoring--include/--excludefile filter (PR by @hashiiiii)Commits viewable in compare view.
Updated Sentry from 6.8.0 to 6.9.0.
Release notes
Sourced from Sentry's releases.
6.9.0
Features ✨
Fixes 🐛
Dependencies ⬆️
Deps
Other
Commits viewable in compare view.
Updated System.Configuration.ConfigurationManager from 10.0.10 to 10.0.11.
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.10 to 10.0.11.
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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