File pgbouncer.changes of Package pgbouncer

-------------------------------------------------------------------
Fri Mar 14 11:57:51 UTC 2025 - Marcus Rueckert <mrueckert@suse.de>

- update to 1.24.0
  https://www.pgbouncer.org/2025/01/pgbouncer-1.24.0
- refresh just-reopen-logs-signal.patch

-------------------------------------------------------------------
Sat Sep 28 00:44:57 UTC 2024 - Marcus Rueckert <mrueckert@suse.de>

- update to 1.23.1
  https://www.pgbouncer.org/2023/07/pgbouncer-1-23-0
  https://www.pgbouncer.org/2023/08/pgbouncer-1-23-1
- refresh just-reopen-logs-signal.patch

-------------------------------------------------------------------
Sat Oct 21 23:45:30 UTC 2023 - Marcus Rueckert <mrueckert@suse.de>

- update to 1.21.0
  https://www.pgbouncer.org/2023/07/pgbouncer-1-20-0
  https://www.pgbouncer.org/2023/08/pgbouncer-1-20-1
  https://www.pgbouncer.org/2023/10/pgbouncer-1-21-0

-------------------------------------------------------------------
Mon Jun  5 10:25:52 UTC 2023 - Marcus Rueckert <mrueckert@suse.de>

- update to 1.19.1
  https://www.pgbouncer.org/2023/05/pgbouncer-1-19-1
  https://www.pgbouncer.org/2023/05/pgbouncer-1-19-0

-------------------------------------------------------------------
Tue Dec 20 01:49:02 UTC 2022 - Marcus Rueckert <mrueckert@suse.de>

- update to 1.18.0
  https://www.pgbouncer.org/2021/08/pgbouncer-1-18-0
  https://www.pgbouncer.org/2021/08/pgbouncer-1-17-0
  https://www.pgbouncer.org/2021/08/pgbouncer-1-16-1
  (CVE-2021-3935)

-------------------------------------------------------------------
Fri Aug 13 17:29:30 UTC 2021 - Predrag Ivanović <predivan@mts.rs>

- update to 1.16.0
  https://www.pgbouncer.org/2021/08/pgbouncer-1-16-0

-------------------------------------------------------------------
Tue Feb  9 15:55:48 UTC 2021 - Marcus Rueckert <mrueckert@suse.de>

- run spec cleaner
- remove non systemd handling
- use sysuser for user/group handling

-------------------------------------------------------------------
Fri Feb  5 10:33:55 UTC 2021 - Stefan Seyfried <seife+obs@b1-systems.com>

- update to 1.15.0
  https://www.pgbouncer.org/2020/11/pgbouncer-1-15-0

-------------------------------------------------------------------
Fri Jun 19 07:39:20 UTC 2020 - Bernhard Wiedemann <bwiedemann@suse.com>

- update to 1.14.0
  https://www.pgbouncer.org/2020/06/pgbouncer-1-14-0
- add some upstream lines to pgbouncer.service

-------------------------------------------------------------------
Mon May  4 23:23:45 UTC 2020 - Marcus Rueckert <mrueckert@suse.de>

- update to 1.13.0
  https://www.pgbouncer.org/2020/04/pgbouncer-1-13-0
- update just-reopen-logs-signal.patch:
  ported to new API
- add BuildRequires need for the new systemd support

-------------------------------------------------------------------
Sat Oct 19 00:01:37 UTC 2019 - Marcus Rueckert <mrueckert@suse.de>

- update to 1.12.0
  https://www.pgbouncer.org/changelog.html#pgbouncer-112x

-------------------------------------------------------------------
Fri Aug 30 15:20:45 UTC 2019 - Marcus Rueckert <mrueckert@suse.de>

- update to 1.11.0
  https://pgbouncer.github.io/changelog.html#pgbouncer-110x
  https://pgbouncer.github.io/changelog.html#pgbouncer-111x
- refreshed just-reopen-logs-signal.patch
- really drop the pam.h file from the source rpm

-------------------------------------------------------------------
Thu Sep  6 14:39:59 UTC 2018 - Marcus Rueckert <mrueckert@suse.de>

- update to 1.9.0
  - Features
    - RECONNECT command
    - WAIT_CLOSE command
    - Fast close - Disconnect a server in session pool mode
      immediately if it is in “close_needed” (reconnect) mode.
    - Add close_needed column to SHOW SERVERS
  - Fixes
    - Avoid double-free in parse_filename
    - Avoid NULL pointer deref in parse_line
  - Cleanups
    - Port mkauth.py to Python 3
    - Improve signals documentation
    - Improve quick start documentation
    - Document SET command
    - Correct list of required software
    - Fix -Wimplicit-fallthrough warnings
    - Add missing documentation for various SHOW fields
    - Document reconnect behavior on reload and DNS change
    - Document that KILL requires RESUME afterwards
    - Clarify documentation of server_lifetime
    - Typos and capitalization fixes in messages and docs
    - Fix psql invocation in tests
    - Various other test setup improvements
- refreshed just-reopen-logs-signal.patch

-------------------------------------------------------------------
Mon Feb 26 14:07:52 UTC 2018 - mrueckert@suse.de

- switch to pkgconfig BR for c-ares

-------------------------------------------------------------------
Fri Jan 19 15:06:20 UTC 2018 - mrueckert@suse.de

- Use signal SIGTTIN for reopening log files so we no longer have
  to reload the whole config for this. We have cases where this
  breaks our running config.
  - added just-reopen-logs-signal.patch

-------------------------------------------------------------------
Thu Dec 21 14:07:44 UTC 2017 - mrueckert@suse.de

- update to 1.8.1
  Include file include/pam.h into distribution tarball. This
  prevented the 1.8 tarball from building at all.
- drop our copy of pam.h again

-------------------------------------------------------------------
Tue Dec 19 16:50:01 UTC 2017 - mrueckert@suse.de

- enable pam support (new BR: pam-devel)

-------------------------------------------------------------------
Tue Dec 19 16:47:39 UTC 2017 - mrueckert@suse.de

- update to 1.8
  - Features
    - Support PAM authentication. (Enable with –with-pam.)
    - Add paused and disabled fields to SHOW DATABASES output.
    - Add maxwait_us field to SHOW POOLS output.
    - Add wait and wait_us fields to SHOW commands output.
    - Add new commands SHOW STATS_TOTALS and SHOW STATS_AVERAGES.
    - Track queries and transactions separately in SHOW STATS. The
      fields total_query_time, avg_query, avg_query, and avg_query
      have been replaced by new fields.
    - Add wait_time to SHOW STATS.
  - Fixes
    - Updated libusual supports OpenSSL 1.1.
    - Do not attempt to use TLS on Unix sockets.
    - When parsing pg_hba.conf, keep parsing after erroneous lines
      instead of rejecting the whole file. (#118)
    - Several other hba parsing fixes.
    - Fix race condition when canceling query. (#141)
  - Cleanups
    - auth_user setting is now also allowed globally, not only per
      database. (#142)
    - Set console client and server encoding to UTF8.
- add include/pam.h as source99 as it is missing in the release
  tarball (gh#pgbouncer/pgbouncer/issues/261)
- drop patches which are included upstream
  0001-tls-do-not-ask-TLS-on-unix-socket.patch
  0002-tls-reject-client-TLS-request-on-unix-socket.patch
  0003-hba-Skip-unparseable-lines-keep-parsing-to-the-end.patch

-------------------------------------------------------------------
Wed Aug  9 16:12:40 UTC 2017 - mrueckert@suse.de

- add logrotate config and recommends for logrotate

-------------------------------------------------------------------
Thu Jul  7 15:51:33 UTC 2016 - mrueckert@suse.de

- pull 3 patches from upstream:
  0001-tls-do-not-ask-TLS-on-unix-socket.patch
  0002-tls-reject-client-TLS-request-on-unix-socket.patch
  0003-hba-Skip-unparseable-lines-keep-parsing-to-the-end.patch
- fix service file reload action

-------------------------------------------------------------------
Thu Jul  7 13:44:30 UTC 2016 - mrueckert@suse.de

- they use methods now that require openssl 1.0

-------------------------------------------------------------------
Mon Apr 25 14:13:45 UTC 2016 - mrueckert@suse.de

- update to 1.7.2
  all changes inbetween:
  https://pgbouncer.github.io/changelog.html#pgbouncer-17x
  https://pgbouncer.github.io/changelog.html#pgbouncer-16x
  https://pgbouncer.github.io/changelog.html#pgbouncer-15x

-------------------------------------------------------------------
Mon Dec  1 21:35:51 UTC 2014 - mrueckert@suse.de

- forgot the systemd requires

-------------------------------------------------------------------
Mon Dec  1 14:58:19 UTC 2014 - mrueckert@suse.de

- add reload support to the systemd file
- set restart=always for the service

-------------------------------------------------------------------
Mon Dec  1 14:39:36 UTC 2014 - mrueckert@suse.de

- add systemd support

-------------------------------------------------------------------
Tue Jun 18 15:39:23 UTC 2013 - adam@mizerski.pl

- fixed creation of system user

-------------------------------------------------------------------
Fri Mar  8 15:31:04 UTC 2013 - darin@darins.net

- Update to 1.5.4
    * DNS: Fix memory leak in getaddrinfo_a() backend.
    * DNS: Fix memory leak in udns backend.
    * DNS: Fix stats calculation.
    * DNS: Improve error message handling for getaddrinfo_a().
    * Fix win32 compile.
    * Fix compiler dependency support check in configure.
    * Few documentation fixes.

-------------------------------------------------------------------
Tue Nov 27 11:06:06 UTC 2012 - mrueckert@suse.de

- update to 1.5.3: (CVE-2012-4575)
  see /usr/share/doc/packages/pgbouncer/NEWS
- drop pgbouncer-1.4_default_config.patch:
  applied upstream

-------------------------------------------------------------------
Thu Apr 14 20:09:48 UTC 2011 - mrueckert@suse.de

- revert it, libevent is too old even on sle10

-------------------------------------------------------------------
Thu Apr 14 20:00:19 UTC 2011 - mrueckert@suse.de

- fix build on older sle versions

-------------------------------------------------------------------
Sat Mar 19 09:22:44 UTC 2011 - mrueckert@suse.de

- moved binaries to _sbindir
- added init script
- added user and group
- added pgbouncer-1.4_default_config.patch
  change path for pid file and log file
- create log file in %install for proper permissions
- added logrotate file

-------------------------------------------------------------------
Sat Mar 19 08:51:20 UTC 2011 - mrueckert@suse.de

- install documentation
- build with verbose to see the compiler cmdlines

-------------------------------------------------------------------
Sat Mar 19 08:36:24 UTC 2011 - mrueckert@suse.de

- initial package (v1.4)

openSUSE Build Service is sponsored by