diff --git a/advocacy_docs/pg_extensions/advanced_storage_pack/rel_notes/src/relnote_1.4.0.yml b/advocacy_docs/pg_extensions/advanced_storage_pack/rel_notes/src/relnote_1.4.0.yml new file mode 100644 index 0000000000..018c80a952 --- /dev/null +++ b/advocacy_docs/pg_extensions/advanced_storage_pack/rel_notes/src/relnote_1.4.0.yml @@ -0,0 +1,38 @@ +# yaml-language-server: $schema=https://raw.githubusercontent.com/EnterpriseDB/docs/refs/heads/develop/tools/automation/generators/relgen/relnote-schema.json +product: Advanced Storage Pack +version: 1.4.0 +date: 26 November 2025 +intro: | + Advanced Storage Pack 1.4.0 includes a number of bug fixes and wider platform support. +highlights: | + - **Improved platform support**: ASP 1.4.0 is now supported on databases version 18, as well as on SLES 15SP7. + +relnotes: +- relnote: Bluefin (17+): fix crash recovery bug + details: | + Fix FPI emission during tuple insertion that caused the recovery to fail with: "PANIC: failed to add bluefintuple". + jira: "" + addresses: "" + type: Bug fix + impact: Highest +- relnote: Bluefin: do not compress tuple when not worth it + details: | + When trying regular LZ4 compression, if the size of compressed data is greater or equal to the size of the original data, use the original tuple. This helps to prevent adding "compressed" tuples bigger than the original one and potentially not fitting on the target page, which was choosen based on the size of the original tuple (before trying compression). + jira: "" + addresses: "" + type: Bug fix + impact: High +- relnote: Bluefin: fix Compressed format value on big-endian (s390x) + details: | + On big-endian architectures, like s390x, we must use a different representation for the Compressed tuples to avoid issues. + jira: "" + addresses: "" + type: Bug fix + impact: High +- relnote: Bluefin/Refdata/Autocluster: fix when running the verify function on table type + details: | + This makes sure the verify function checks the relation type and the AM type when running. + jira: "" + addresses: "" + type: Bug fix + impact: Medium