<!-- doc/src/sgml/release-3.7.sgml -->
<!-- See header comment in release.sgml about typical markup -->
+<sect1 id="release-3-7-24">
+ <title>リリース 3.7.24</title>
+ <note>
+ <title>リリース日</title>
+ <simpara>2022-05-19</simpara>
+ </note>
+
+ <sect2>
+ <title>変更点</title>
+ <itemizedlist>
+ <listitem>
+ <!--
+ 2022-05-16 [4d224d9]
+ -->
+ <para>
+ <productname>Pgpool-II</productname>メインプロセスの停止を強化しました。(Tatsuo Ishii)
+ </para>
+ <para>
+ 「pgpool stop」が一定期間(現在5秒)以内にメインプロセスを終了できなかった場合は、信号を再送信するように修正しました。
+ </para>
+ </listitem>
+
+ <listitem>
+ <!--
+ 2022-05-02 [a9389b9]
+ -->
+ <para>
+ <xref linkend="pcp-proc-count">コマンドのPIDの長さを7文字に変更しました。(Bo Peng)
+ </para>
+ </listitem>
+
+ <listitem>
+ <!--
+ 2022-03-12 [dd502b6]
+ -->
+ <para>
+ Parseメッセージ処理のエラーメッセージにメッセージの種類、バックエンドノードIDを含めるように改善しました。(Tatsuo Ishii)
+ </para>
+ </listitem>
+
+ <listitem>
+ <!--
+ 2022-03-11 [a44d364]
+ -->
+ <para>
+ ParameterStatusメッセージのログレベルをLOGからDEBUG5にダウングレードしました。(Tatsuo Ishii)
+ </para>
+ <para>
+ Discussion: <ulink url="https://www.pgpool.net/pipermail/pgpool-general/2022-March/008101.html">[pgpool-general: 8042]</ulink>
+ </para>
+ </listitem>
+
+ <listitem>
+ <!--
+ 2022-02-28 [fbe2f31]
+ 2022-02-28 [2bbc376]
+ -->
+ <para>
+ <xref linkend="guc-pcp-listen-addresses">のデフォルト値を「*」から「localhost」に変更しました。(Tatsuo Ishii)
+ </para>
+ </listitem>
+
+ <listitem>
+ <!--
+ 2022-02-01 [50425a7]
+ -->
+ <para>
+ <xref linkend="pcp-watchdog-info">のフィールド名を変更しました。(Muhammad Usama)
+ </para>
+ </listitem>
+
+ </itemizedlist>
+ </sect2>
+
+ <sect2>
+ <title>不具合修正</title>
+ <itemizedlist>
+ <listitem>
+ <!--
+ 2022-04-27 [3337aa8]
+ -->
+ <para>
+ lost状態のリモート<productname>Pgpool-II</productname>ノードが再起動後にクラスタに再参加できない問題を修正しました。(Muhammad Usama)
+ </para>
+ <para>
+ 報告: <ulink url="https://www.pgpool.net/pipermail/pgpool-general/2021-November/007954.html">[pgpool-general: 7896]</ulink>
+ </para>
+ </listitem>
+
+ <listitem>
+ <!--
+ 2022-03-04 [6416f43]
+ -->
+ <para>
+ プライマリ検索中にバックエンドが失敗またはシャットダウンした場合にPgpool-IIのメインプロセスが終了してしまう問題を修正しました。(Tatsuo Ishii)
+ </para>
+ </listitem>
+
+ <listitem>
+ <!--
+ 2022-03-03 [507feea]
+ -->
+ <para>
+ Watchdogで発生するセグメンテーション違反を修正しました。(Muhammad Usama)
+ </para>
+ <para>
+ Discussion: <ulink url="https://www.pgpool.net/pipermail/pgpool-general/2022-March/008089.html">[pgpool-general: 8030]</ulink>
+ </para>
+ </listitem>
+ </itemizedlist>
+ </sect2>
+
+ <sect2>
+ <title>ドキュメント修正</title>
+ <itemizedlist>
+ <listitem>
+ <!--
+ 2022-04-28 [d5b2555]
+ 2022-04-28 [4feedf0]
+ -->
+ <para>
+ Doc: pcp_watchdog_infoの出力例を更新しました。(Bo Peng)
+ </para>
+ </listitem>
+ </itemizedlist>
+ </sect2>
+
+ <sect2>
+ <title>回帰テスト修正</title>
+ <itemizedlist>
+ <listitem>
+ <!--
+ 2022-04-19 [7aed95e]
+ -->
+ <para>
+ セグメンテーション違反を検出するようにテストスクリプトを改善しました。(Bo Peng)
+ </para>
+ </listitem>
+ </itemizedlist>
+ </sect2>
+</sect1>
+
<sect1 id="release-3-7-23">
<title>リリース 3.7.23</title>
<note>
<!-- doc/src/sgml/release-3.7.sgml -->
<!-- See header comment in release.sgml about typical markup -->
+<sect1 id="release-3-7-24">
+ <title>Release 3.7.24</title>
+ <note>
+ <title>Release Date</title>
+ <simpara>2022-05-19</simpara>
+ </note>
+
+ <sect2>
+ <title>Changes</title>
+ <itemizedlist>
+ <listitem>
+ <!--
+ 2022-05-16 [4d224d9]
+ -->
+ <para>
+ Enhance in stopping pgpool main process. (Tatsuo Ishii)
+ </para>
+ <para>
+ If "pgpool stop" couldn't terminate the main process within certain period (currently 5 seconds), send the signal again.
+ </para>
+ </listitem>
+
+ <listitem>
+ <!--
+ 2022-05-02 [a9389b9]
+ -->
+ <para>
+ Change the PID length of pcp_proc_count command to 7 characters long. (Bo Peng)
+ </para>
+ </listitem>
+
+ <listitem>
+ <!--
+ 2022-03-12 [dd502b6]
+ -->
+ <para>
+ Enhance error message to include the message kind returned and the backend node id while processing parse message. (Tatsuo Ishii)
+ </para>
+ </listitem>
+
+ <listitem>
+ <!--
+ 2022-03-11 [a44d364]
+ -->
+ <para>
+ Downgrade log level of ParameterStatus message from LOG to DEBUG5. (Tatsuo Ishii)
+ </para>
+ <para>
+ Discussion: <ulink url="https://www.pgpool.net/pipermail/pgpool-general/2022-March/008101.html">[pgpool-general: 8042]</ulink>
+ </para>
+ </listitem>
+
+ <listitem>
+ <!--
+ 2022-02-28 [fbe2f31]
+ 2022-02-28 [2bbc376]
+ -->
+ <para>
+ Change the default value of <xref linkend="guc-pcp-listen-addresses"> from '*' to 'localhost'. (Tatsuo Ishii)
+ </para>
+ </listitem>
+
+ <listitem>
+ <!--
+ 2022-02-01 [50425a7]
+ -->
+ <para>
+ Adjust the field name in <xref linkend="pcp-watchdog-info">. (Muhammad Usama)
+ </para>
+ </listitem>
+
+ </itemizedlist>
+ </sect2>
+
+ <sect2>
+ <title>Bug fixes</title>
+ <itemizedlist>
+ <listitem>
+ <!--
+ 2022-04-27 [3337aa8]
+ -->
+ <para>
+ Fix issue that watchdog cluster keeps rejecting the restarted remote node which is lost previously. (Muhammad Usama)
+ </para>
+ <para>
+ Issue report: <ulink url="https://www.pgpool.net/pipermail/pgpool-general/2021-November/007954.html">[pgpool-general: 7896]</ulink>
+ </para>
+ </listitem>
+
+ <listitem>
+ <!--
+ 2022-03-04 [6416f43]
+ -->
+ <para>
+ Fix main process exiting if a backend is failing or shutting down while performing finding primary. (Tatsuo Ishii)
+ </para>
+ </listitem>
+
+ <listitem>
+ <!--
+ 2022-03-03 [507feea]
+ -->
+ <para>
+ Fix segfaults in watchdog. (Muhammad Usama)
+ </para>
+ <para>
+ Discussion: <ulink url="https://www.pgpool.net/pipermail/pgpool-general/2022-March/008089.html">[pgpool-general: 8030]</ulink>
+ </para>
+ </listitem>
+ </itemizedlist>
+ </sect2>
+
+ <sect2>
+ <title>Documents</title>
+ <itemizedlist>
+ <listitem>
+ <!--
+ 2022-04-28 [d5b2555]
+ 2022-04-28 [4feedf0]
+ -->
+ <para>
+ Doc: update the example output of <xref linkend="pcp-watchdog-info">. (Bo Peng)
+ </para>
+ </listitem>
+ </itemizedlist>
+ </sect2>
+
+
+ <sect2>
+ <title>Regression Tests</title>
+ <itemizedlist>
+ <listitem>
+ <!--
+ 2022-04-19 [7aed95e]
+ -->
+ <para>
+ Improve regression test to detect segmentation fault. (Bo Peng)
+ </para>
+ </listitem>
+ </itemizedlist>
+ </sect2>
+</sect1>
+
<sect1 id="release-3-7-23">
<title>Release 3.7.23</title>
<note>