@@ -710,3 +710,88 @@ Bug fixes
710710
711711* Fixed computed ptr with group by incorrectly inferring multiplicity
712712 (:eql:gh: `#8485 `, regression from :eql:gh: `#8464 ` in 6.3)
713+
714+ 6.5
715+ ===
716+
717+ Major changes
718+ -------------
719+
720+
721+ * Allow DML in REPEATABLE READ transactions, but only when it is safe
722+ to do. Performing DML in REPEATABLE READ transactions is safe as
723+ long as the query does not affect exclusive constraints that are
724+ shared between multiple types (through inheritance).
725+ (:eql:gh: `#8561 `)
726+
727+ Fixes
728+ -----
729+
730+ * Fix SQL introspection on old PostgreSQL versions
731+ (:eql:gh: `#8501 `)
732+
733+ * Make HTTP requests delay the auto shutdown
734+ (:eql:gh: `#8506 `)
735+
736+ * Prevent server auto shutdown during building AI index
737+ (:eql:gh: `#8507 `)
738+
739+ * Send a LogMessage to the client about query cache recompilation
740+ (:eql:gh: `#8540 `, :eql:gh: `#8552 `)
741+
742+ * pg_ext: fix ``to_regclass() ``, ``::regclass `` and ``pg_settings ``
743+ (:eql:gh: `#8511 `)
744+
745+ * Update bundled PostgreSQL to version 17.4
746+ (:eql:gh: `#8543 `)
747+
748+ * pg_ext: information_schema.columns.ordinal_position should be int
749+ (:eql:gh: `#8550 `)
750+
751+ * Add replication to pg_hba and wal summarization
752+ (:eql:gh: `#8556 `)
753+
754+ * Fix how we pick output CTE of DML over SQL adapter
755+ (:eql:gh: `#8562 `)
756+
757+ * Abort tenant initialization with incompatible backend
758+ (:eql:gh: `#8569 `)
759+
760+ * Complete SQL ast parsing for ON CONFLICT
761+ (:eql:gh: `#8542 `)
762+
763+ * Fix computed link properties over SQL adapter
764+ (:eql:gh: `#8158 `)
765+
766+ * Fix backlinks in computeds over SQL adapter
767+ (:eql:gh: `#8570 `)
768+
769+ * Fix access policies SELECT issue with diamond-pattern inheritance
770+ (:eql:gh: `#8572 `)
771+
772+ * Fix dropping types in some situations where the type is used in a function
773+ (:eql:gh: `#8574 `)
774+
775+ * Fix AI ext openai streaming
776+ (:eql:gh: `#8553 `)
777+
778+ * Fix removal of path factoring breaking ai embedding views.
779+ (:eql:gh: `#8576 `)
780+
781+ * Fix a cross-type conflict bug that can occur with rewrites
782+ (:eql:gh: `#8584 `)
783+
784+ * Add ``expression `` keyword for sql expression functions.
785+ (:eql:gh: `#8586 `)
786+
787+ * Optimize compilation in transactions
788+ (:eql:gh: `#8082 `)
789+
790+ * Fix memory leak in pgrust-pgcon
791+ (:eql:gh: `#8590 `)
792+
793+ * Fix CREATE ... BRANCH FROM ... when source uses ai extension
794+ (:eql:gh: `#8594 `)
795+
796+ * Support ON CONFLICT over SQL adapter
797+ (:eql:gh: `#8560 `, :eql:gh: `#8587 `, :eql:gh: `#8595 `)
0 commit comments