From ab4c871915009ec52229943e286c56c5a9158d7b Mon Sep 17 00:00:00 2001 From: Arthur Nascimento Date: Thu, 24 Jul 2025 13:41:32 -0300 Subject: [PATCH] Add missing entry to wait_states_1.5_rel_notes.mdx Commit e4c4b54d1462cf9f115ada932a9d19fa592359b7, contained in the release of 1.5.0, fixed a miscalculation (integer overflow) of retention time for larger values, that caused history files to be pruned sooner than they should have been. For some reason, this was not listed in the release notes of 1.5.0. A customer has just reported the issue, so it's best to have it mentioned in the release notes, so we can reference the bug fix in customer cases. --- .../wait_states/rel_notes/wait_states_1.5_rel_notes.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/advocacy_docs/pg_extensions/wait_states/rel_notes/wait_states_1.5_rel_notes.mdx b/advocacy_docs/pg_extensions/wait_states/rel_notes/wait_states_1.5_rel_notes.mdx index 69493e0c9c0..833ccce6198 100644 --- a/advocacy_docs/pg_extensions/wait_states/rel_notes/wait_states_1.5_rel_notes.mdx +++ b/advocacy_docs/pg_extensions/wait_states/rel_notes/wait_states_1.5_rel_notes.mdx @@ -8,4 +8,5 @@ This release of Wait States includes: | Type | Description | |-------------|-------------------------------------------------------------------| -| Enhancement | Included `query_id` in `edb_wait_states_data()` function results. | \ No newline at end of file +| Enhancement | Included `query_id` in `edb_wait_states_data()` function results. | +| Bug Fix | Fix calculation of retention time that led to shorter history. |