Skip to content

Bump Aaron.Akka.Reminders and Aaron.Akka.Reminders.Sqlite#206

Closed
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/nuget/multi-5de12d4494
Closed

Bump Aaron.Akka.Reminders and Aaron.Akka.Reminders.Sqlite#206
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/nuget/multi-5de12d4494

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Mar 13, 2026

Updated Aaron.Akka.Reminders from 0.5.0 to 0.5.1.

Release notes

Sourced from Aaron.Akka.Reminders's releases.

0.5.1

0.5.1 March 9th 2026

Bug Fixes

  • Fixed Full Table Scans in Reminder Storage Queries - Resolved significant performance regression introduced in 0.5.0 where GetNextRemindersAsync and GetRemindersOverviewAsync loaded all rows from the database on every scheduling tick (#​92)
    • Replaced full-row scans with efficient aggregate queries (COUNT(*) / MIN(when_utc)) across all three SQL providers (SqlServer, PostgreSQL, SQLite)
    • Removed an unused internal call to GetRemindersOverviewAsync inside GetNextRemindersAsync that was performing a full table load and discarding the result
    • Removed GetOverviewSql from the ISqlDialect interface entirely, making it structurally impossible to reintroduce the full-scan path in the future

0.5.0 March 2nd 2026

New Features

  • SQLite Storage Backend - Added SQLite as a first-class storage provider for akka-reminders (#​83, closes #​63)

    • Configure via WithSqliteStorage(...) in the Akka.Hosting API
    • Full feature parity with SQL Server and PostgreSQL storage backends
    • Well suited for local development, testing, and single-node deployments
  • Provider-Specific NuGet Packages - SQL storage implementations are now available as dedicated packages (#​83)

    • Aaron.Akka.Reminders.SqlServer - SQL Server storage provider
    • Aaron.Akka.Reminders.PostgreSql - PostgreSQL storage provider
    • Aaron.Akka.Reminders.Sqlite - SQLite storage provider
    • Aaron.Akka.Reminders.Sql remains fully functional as a compatibility package that re-exports all three providers
  • Configurable PostgreSQL Schema Settings - PostgreSQL storage can now be configured via HOCON for schema name, table name, auto-initialization, and command timeout (#​84, closes #​67)

    • New WithPostgreSqlStorageFromConfig(...) Akka.Hosting API reads settings directly from the actor system config
    • Supported HOCON keys: schema-name, table-name, auto-initialize, command-timeout
    • Default schema remains reminders for full backward compatibility

Dependency Updates

  • Updated Npgsql from 8.0.8 to 10.0.1 (#​47)

0.4.0 February 16th 2026

New Features

  • Batch Size Limiting - Added MaxBatchSize configuration setting (default: 1000) to control the maximum number of reminders processed in a single batch (#​74)

    • Prevents overwhelming the system when large numbers of reminders become due simultaneously
    • Configurable via ReminderSettings.MaxBatchSize
    • Implemented with LIMIT/TOP clauses in SQL storage layer
  • Write Circuit Breaker for Database Resilience - Implemented automatic circuit breaker pattern to handle database write failures gracefully (#​74)

    • When database writes fail but reads succeed, circuit opens and limits next tick to single-reminder probe
    • Prevents self-inflicted DoS during database write outages
    • Automatic recovery when probe succeeds
    • Circuit stays open during continued failures, providing natural backoff

Bug Fixes

... (truncated)

Commits viewable in compare view.

Updated Aaron.Akka.Reminders.Sqlite from 0.5.0 to 0.5.1.

Release notes

Sourced from Aaron.Akka.Reminders.Sqlite's releases.

0.5.1

0.5.1 March 9th 2026

Bug Fixes

  • Fixed Full Table Scans in Reminder Storage Queries - Resolved significant performance regression introduced in 0.5.0 where GetNextRemindersAsync and GetRemindersOverviewAsync loaded all rows from the database on every scheduling tick (#​92)
    • Replaced full-row scans with efficient aggregate queries (COUNT(*) / MIN(when_utc)) across all three SQL providers (SqlServer, PostgreSQL, SQLite)
    • Removed an unused internal call to GetRemindersOverviewAsync inside GetNextRemindersAsync that was performing a full table load and discarding the result
    • Removed GetOverviewSql from the ISqlDialect interface entirely, making it structurally impossible to reintroduce the full-scan path in the future

0.5.0 March 2nd 2026

New Features

  • SQLite Storage Backend - Added SQLite as a first-class storage provider for akka-reminders (#​83, closes #​63)

    • Configure via WithSqliteStorage(...) in the Akka.Hosting API
    • Full feature parity with SQL Server and PostgreSQL storage backends
    • Well suited for local development, testing, and single-node deployments
  • Provider-Specific NuGet Packages - SQL storage implementations are now available as dedicated packages (#​83)

    • Aaron.Akka.Reminders.SqlServer - SQL Server storage provider
    • Aaron.Akka.Reminders.PostgreSql - PostgreSQL storage provider
    • Aaron.Akka.Reminders.Sqlite - SQLite storage provider
    • Aaron.Akka.Reminders.Sql remains fully functional as a compatibility package that re-exports all three providers
  • Configurable PostgreSQL Schema Settings - PostgreSQL storage can now be configured via HOCON for schema name, table name, auto-initialization, and command timeout (#​84, closes #​67)

    • New WithPostgreSqlStorageFromConfig(...) Akka.Hosting API reads settings directly from the actor system config
    • Supported HOCON keys: schema-name, table-name, auto-initialize, command-timeout
    • Default schema remains reminders for full backward compatibility

Dependency Updates

  • Updated Npgsql from 8.0.8 to 10.0.1 (#​47)

0.4.0 February 16th 2026

New Features

  • Batch Size Limiting - Added MaxBatchSize configuration setting (default: 1000) to control the maximum number of reminders processed in a single batch (#​74)

    • Prevents overwhelming the system when large numbers of reminders become due simultaneously
    • Configurable via ReminderSettings.MaxBatchSize
    • Implemented with LIMIT/TOP clauses in SQL storage layer
  • Write Circuit Breaker for Database Resilience - Implemented automatic circuit breaker pattern to handle database write failures gracefully (#​74)

    • When database writes fail but reads succeed, circuit opens and limits next tick to single-reminder probe
    • Prevents self-inflicted DoS during database write outages
    • Automatic recovery when probe succeeds
    • Circuit stays open during continued failures, providing natural backoff

Bug Fixes

... (truncated)

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)

Bumps Aaron.Akka.Reminders from 0.5.0 to 0.5.1
Bumps Aaron.Akka.Reminders.Sqlite from 0.5.0 to 0.5.1

---
updated-dependencies:
- dependency-name: Aaron.Akka.Reminders
  dependency-version: 0.5.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Aaron.Akka.Reminders.Sqlite
  dependency-version: 0.5.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added .NET Pull requests that update .NET code dependencies Pull requests that update a dependency file labels Mar 13, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Mar 13, 2026

Looks like these dependencies are no longer updatable, so this is no longer needed.

@dependabot dependabot Bot closed this Mar 13, 2026
@dependabot dependabot Bot deleted the dependabot/nuget/multi-5de12d4494 branch March 13, 2026 16:34
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.

Support configurable schema name for PostgreSQL Reminders table Split Akka.Reminders.Sql into separate SqlServer and PostgreSql packages

0 participants