Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 25, 2025

Updated Microsoft.Bcl.AsyncInterfaces from 9.0.7 to 9.0.10.

Release notes

Sourced from Microsoft.Bcl.AsyncInterfaces's releases.

9.0.10

Release

What's Changed

Full Changelog: dotnet/runtime@v9.0.9...v9.0.10

9.0.9

Release

What's Changed

Full Changelog: dotnet/runtime@v9.0.8...v9.0.9

9.0.8

Release

What's Changed

Full Changelog: dotnet/runtime@v9.0.7...v9.0.8

Commits viewable in compare view.

Dependabot compatibility score

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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)

@dependabot dependabot bot added .NET Pull requests that update .NET code dependencies Pull requests that update a dependency file labels Oct 25, 2025
@dependabot dependabot bot force-pushed the dependabot/nuget/main/Microsoft.Bcl.AsyncInterfaces-9.0.10 branch from fb0c864 to 02971fd Compare October 28, 2025 23:03
@coveralls
Copy link

coveralls commented Oct 28, 2025

Pull Request Test Coverage Report for Build 18910962960

Details

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage increased (+0.003%) to 36.349%

Totals Coverage Status
Change from base Build 18910464939: 0.003%
Covered Lines: 32593
Relevant Lines: 95915

💛 - Coveralls

@dependabot dependabot bot force-pushed the dependabot/nuget/main/Microsoft.Bcl.AsyncInterfaces-9.0.10 branch from 02971fd to 07ae4ac Compare October 29, 2025 00:20
jas88 added a commit that referenced this pull request Oct 29, 2025
Remove CAST to Date which was stripping time component and causing
timezone-sensitive test failures in RemoteDatabaseAttacherTests.

Issue:
- SqlHistoricalDataFilter was using CAST(column as Date)
- This strips hours/minutes/seconds from datetime values
- When test runs near midnight, causes off-by-one day errors
- Test expects 3 rows but gets 2 due to date boundary issues

Example failure:
- withinDate = "2025-10-28 23:00:00" (1 hour ago, Oct 28)
- CAST to Date = "2025-10-28" (time stripped)
- DATEADD(DAY, -1, GETDATE()) = "2025-10-28" at midnight
- Comparison: "2025-10-28" > "2025-10-28" = FALSE (row excluded)

Fix:
- Remove all CAST(column as Date) operations
- Use datetime column directly for time-sensitive comparisons
- Preserves full precision for accurate date filtering

Affected cases:
- Past24Hours, Past7Days, PastMonth, PastYear
- SinceLastUse, Custom, DeltaReading

This fixes CI failures in PR #39 and other dependabot PRs running
RemoteDatabaseAttacherTests at various times of day.

Tests affected:
- TestRemoteDatabaseAttacherWithDateFilter(*, *, Past24Hours)
jas88 added a commit that referenced this pull request Oct 29, 2025
Remove CAST to Date which was stripping time component and causing
timezone-sensitive test failures in RemoteDatabaseAttacherTests.

Issue:
- SqlHistoricalDataFilter was using CAST(column as Date)
- This strips hours/minutes/seconds from datetime values
- When test runs near midnight, causes off-by-one day errors
- Test expects 3 rows but gets 2 due to date boundary issues

Example failure:
- withinDate = "2025-10-28 23:00:00" (1 hour ago, Oct 28)
- CAST to Date = "2025-10-28" (time stripped)
- DATEADD(DAY, -1, GETDATE()) = "2025-10-28" at midnight
- Comparison: "2025-10-28" > "2025-10-28" = FALSE (row excluded)

Fix:
- Remove all CAST(column as Date) operations
- Use datetime column directly for time-sensitive comparisons
- Preserves full precision for accurate date filtering

Affected cases:
- Past24Hours, Past7Days, PastMonth, PastYear
- SinceLastUse, Custom, DeltaReading

This fixes CI failures in PR #39 and other dependabot PRs running
RemoteDatabaseAttacherTests at various times of day.

Tests affected:
- TestRemoteDatabaseAttacherWithDateFilter(*, *, Past24Hours)
jas88 added a commit that referenced this pull request Oct 29, 2025
Remove CAST to Date which was stripping time component and causing
timezone-sensitive test failures in RemoteDatabaseAttacherTests.

Issue:
- SqlHistoricalDataFilter was using CAST(column as Date)
- This strips hours/minutes/seconds from datetime values
- When test runs near midnight, causes off-by-one day errors
- Test expects 3 rows but gets 2 due to date boundary issues

Example failure:
- withinDate = "2025-10-28 23:00:00" (1 hour ago, Oct 28)
- CAST to Date = "2025-10-28" (time stripped)
- DATEADD(DAY, -1, GETDATE()) = "2025-10-28" at midnight
- Comparison: "2025-10-28" > "2025-10-28" = FALSE (row excluded)

Fix:
- Remove all CAST(column as Date) operations
- Use datetime column directly for time-sensitive comparisons
- Preserves full precision for accurate date filtering

Affected cases:
- Past24Hours, Past7Days, PastMonth, PastYear
- SinceLastUse, Custom, DeltaReading

This fixes CI failures in PR #39 and other dependabot PRs running
RemoteDatabaseAttacherTests at various times of day.

Tests affected:
- TestRemoteDatabaseAttacherWithDateFilter(*, *, Past24Hours)
jas88 added a commit that referenced this pull request Oct 29, 2025
Remove CAST to Date which was stripping time component and causing
timezone-sensitive test failures in RemoteDatabaseAttacherTests.

Issue:
- SqlHistoricalDataFilter was using CAST(column as Date)
- This strips hours/minutes/seconds from datetime values
- When test runs near midnight, causes off-by-one day errors
- Test expects 3 rows but gets 2 due to date boundary issues

Example failure:
- withinDate = "2025-10-28 23:00:00" (1 hour ago, Oct 28)
- CAST to Date = "2025-10-28" (time stripped)
- DATEADD(DAY, -1, GETDATE()) = "2025-10-28" at midnight
- Comparison: "2025-10-28" > "2025-10-28" = FALSE (row excluded)

Fix:
- Remove all CAST(column as Date) operations
- Use datetime column directly for time-sensitive comparisons
- Preserves full precision for accurate date filtering

Affected cases:
- Past24Hours, Past7Days, PastMonth, PastYear
- SinceLastUse, Custom, DeltaReading

This fixes CI failures in PR #39 and other dependabot PRs running
RemoteDatabaseAttacherTests at various times of day.

Tests affected:
- TestRemoteDatabaseAttacherWithDateFilter(*, *, Past24Hours)
@jas88
Copy link
Owner

jas88 commented Oct 29, 2025

@dependabot rebase

---
updated-dependencies:
- dependency-name: Microsoft.Bcl.AsyncInterfaces
  dependency-version: 9.0.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/nuget/main/Microsoft.Bcl.AsyncInterfaces-9.0.10 branch from 07ae4ac to 5e7f334 Compare October 29, 2025 14:15
@jas88 jas88 enabled auto-merge (rebase) October 29, 2025 14:27
@jas88 jas88 merged commit 1593824 into main Oct 29, 2025
5 checks passed
@jas88 jas88 deleted the dependabot/nuget/main/Microsoft.Bcl.AsyncInterfaces-9.0.10 branch October 29, 2025 15:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file .NET Pull requests that update .NET code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants