Skip to main content

Release v1.32.2

Released on November 24, 2025

Executive Summary

Features

Infrastructure

  • Configurable health metrics with feature flag support (PR 23444)

Bug Fixes

Overview

This hotfix release introduces configurable health check metrics and fixes billing date calculation logic. The health check improvements provide better control over metrics publishing through feature flags, while the billing fix corrects date handling in transaction processing.

Features

Infrastructure

  • Configurable Health Check Metrics - Added Health:Metrics:Enabled configuration setting to control health metrics setup and publishing:
    • Conditionally registers HealthChecksMetricsPublisher based on feature flag
    • Configures HealthCheckPublisherOptions only when metrics are enabled
    • Improves handling of optional parameters for DNS and SQL health checks
    • Adds DNS checks only when additionalDnsChecks is provided
    • Adds SQL health checks only when connectionStrings is provided
    • Enhances code readability through organized conditional blocks (PR 23444)

Bug Fixes

  • Billing Date Calculator Fix - Fixed the CalculateBillingDates method in BillingDateCalculator:
    • Corrected dateNow variable assignment logic
    • Removed incorrect conditional comparison between transactionDate and DateTime.UtcNow
    • Now correctly assigns transactionDate to dateNow
    • Ensures billing dates are calculated based on transaction date rather than current time (136743) (PR 23444)

Contributors

Thanks to Jacques Snyman for this release.