<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ports/databases/postgresql10-server, branch release/12.3.0</title>
<subtitle>FreeBSD ports tree</subtitle>
<id>https://cgit-dev.freebsd.org/ports/atom?h=release%2F12.3.0</id>
<link rel='self' href='https://cgit-dev.freebsd.org/ports/atom?h=release%2F12.3.0'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/'/>
<updated>2021-08-12T16:23:00Z</updated>
<entry>
<title>databases/postgresql*: update to latest versions</title>
<updated>2021-08-12T16:23:00Z</updated>
<author>
<name>Palle Girgensohn</name>
<email>girgen@FreeBSD.org</email>
</author>
<published>2021-08-12T15:48:09Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=a271b9d5b7b2c0eb57d1a09fc44f2ecbbad7bc5a'/>
<id>urn:sha1:a271b9d5b7b2c0eb57d1a09fc44f2ecbbad7bc5a</id>
<content type='text'>
The PostgreSQL Global Development Group has released an update to all supported
versions of our database system, including 13.4, 12.8, 11.13, 10.18, and
9.6.23, as well as the third beta release of PostgreSQL 14. This release closes
one security vulnerability and fixes over 75 bugs reported over the last three
months.

Turn off parallel builds since we continue to struggle with build problems when
it is activated. [1]

Avoid chasing latest LLVM version. [2]

PR:		256466 [1], 256167 [2]
Release notes:	https://www.postgresql.org/docs/release/
Security:	b471130b-fb86-11eb-87db-6cc21735f730
</content>
</entry>
<entry>
<title>databases/postgresql10-server: Fix typo in rc script</title>
<updated>2021-07-27T20:06:33Z</updated>
<author>
<name>Li-Wen Hsu</name>
<email>lwhsu@FreeBSD.org</email>
</author>
<published>2021-07-27T20:06:33Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=eae54f6c6d796d71a24141534fab318aa70b6705'/>
<id>urn:sha1:eae54f6c6d796d71a24141534fab318aa70b6705</id>
<content type='text'>
PR:		257447
Reported by:	Tom Warnke &lt;tom@toromtomtom.com&gt;
MFH:		2021Q3
</content>
</entry>
<entry>
<title>databases/postgresql??-server: rc-script should require DAEMON</title>
<updated>2021-06-01T13:59:35Z</updated>
<author>
<name>Palle Girgensohn</name>
<email>girgen@FreeBSD.org</email>
</author>
<published>2021-06-01T13:59:02Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=8d831eb43aba59013b948830cbd4b22b45deb223'/>
<id>urn:sha1:8d831eb43aba59013b948830cbd4b22b45deb223</id>
<content type='text'>
Changeset ab83f2b4bb78 changed the startup order for Postgresql. The cleartmp
rc.d now comes after the Postgresql startup.  Unfortunately, Postgresql likes
to create a socket in /tmp/.s.PGSQL.5432. After cleartmp does its work, that
socket disappears from the filesystem.

Submitted by:	Jeroen Pulles
PR:		256335
</content>
</entry>
<entry>
<title>databases/postgresql14-*: Add postgresql 14 beta1 the the ports tree.</title>
<updated>2021-05-20T14:38:55Z</updated>
<author>
<name>Palle Girgensohn</name>
<email>girgen@FreeBSD.org</email>
</author>
<published>2021-05-20T08:53:00Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=fccc45e5ff4a8aea150005196c0d4f2cbaeed5db'/>
<id>urn:sha1:fccc45e5ff4a8aea150005196c0d4f2cbaeed5db</id>
<content type='text'>
Release notes:	https://www.postgresql.org/docs/devel/release-14.html

Also reintroduce parallel builds. Some components, namely plperl,
plpython, pltcl and contrib, fail to build properly when using parallel
builds. Something with static linking using `ar` that fails.
MAKE_JOBS_UNSAFE is set for these ports.
</content>
</entry>
<entry>
<title>databases/postgresql??-*: Upgrade to latest version</title>
<updated>2021-05-15T09:12:17Z</updated>
<author>
<name>Palle Girgensohn</name>
<email>girgen@FreeBSD.org</email>
</author>
<published>2021-05-15T09:11:12Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=ab83f2b4bb78a718efa5c43247ba1e1d207f99b6'/>
<id>urn:sha1:ab83f2b4bb78a718efa5c43247ba1e1d207f99b6</id>
<content type='text'>
PostgreSQL 13.3, 12.7, 11.12, 10.17, and 9.6.22 Released!

The PostgreSQL Global Development Group has released an update to all supported
versions of our database system, including 13.3, 12.7, 11.12, 10.17, and
9.6.22. This release closes three security vulnerabilities and fixes over 45
bugs reported over the last three months.

Security fixes in this release:

CVE-2021-32027: Buffer overrun from integer overflow in array subscripting
                calculations

CVE-2021-32028: Memory disclosure in INSERT ... ON CONFLICT ... DO UPDATE

CVE-2021-32029: Memory disclosure in partitioned-table UPDATE ... RETURNING

Also plenty of bug fixes. See the release note for details.

Changes to the port:

Make sure we use the matching version of llvm. This fixes a problem with the
llvm version string not being monotonically increasing with the version
number. [1]

Better pkg message about checksums for postgresql 12+. [2] [4]

Adjust login class parameter to adhere to the documentation in rc.subr(8) [3]:
  The rc.conf parameter for the login class of the postgresql daemon has
  changed name from postgresql_class to postgresql_login_class, since
  rc.subr(8) states that the parameter should be named ${name}_login_class.

Allow parallel builds. [5]

Correct the directory name for the user postgres in pkg message. [6]

PR:		250824 [1], 253558 [2], 236060 [3], 233106 [4],  230656 [5]
PR:		226674 [6]
Submitted by:	Michael Zhilin [2], Michael Zhilin [3], Dmitry Chestnykh [4]
Submitted by:	Steve Wills [5], knezour [6]

Security:	76e0bb86-b4cb-11eb-b9c9-6cc21735f730
Security:	62da9702-b4cc-11eb-b9c9-6cc21735f730

Release notes:	https://www.postgresql.org/docs/release/
</content>
</entry>
<entry>
<title>databases/postgresql*: Fix build on riscv64</title>
<updated>2021-04-20T04:56:53Z</updated>
<author>
<name>Loïc Bartoletti</name>
<email>lbartoletti@FreeBSD.org</email>
</author>
<published>2021-04-20T04:54:15Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=b91ca3ff3626dbb917aeb82243d140a50ad148b8'/>
<id>urn:sha1:b91ca3ff3626dbb917aeb82243d140a50ad148b8</id>
<content type='text'>
Reported by:	tmunro
Reviewed by:	girgen
</content>
</entry>
<entry>
<title>devel/icu: update to 69.1</title>
<updated>2021-04-08T23:33:31Z</updated>
<author>
<name>Jan Beich</name>
<email>jbeich@FreeBSD.org</email>
</author>
<published>2021-04-08T00:10:27Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=69d24a727d44d398f7357cb844386f3ec4750a4f'/>
<id>urn:sha1:69d24a727d44d398f7357cb844386f3ec4750a4f</id>
<content type='text'>
Changes:	https://github.com/unicode-org/icu/releases/tag/release-69-1
Reported by:	GitHub (watch releases)
</content>
</entry>
<entry>
<title>all: Remove all other $FreeBSD keywords.</title>
<updated>2021-04-06T14:31:13Z</updated>
<author>
<name>Mathieu Arnold</name>
<email>mat@FreeBSD.org</email>
</author>
<published>2021-04-06T14:21:47Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=135fdeebb99c3569e42d8162b265e15d29bd937d'/>
<id>urn:sha1:135fdeebb99c3569e42d8162b265e15d29bd937d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove # $FreeBSD$ from Makefiles.</title>
<updated>2021-04-06T14:31:07Z</updated>
<author>
<name>Mathieu Arnold</name>
<email>mat@FreeBSD.org</email>
</author>
<published>2021-04-06T11:55:50Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=305f148f482daf30dcf728039d03d019f88344eb'/>
<id>urn:sha1:305f148f482daf30dcf728039d03d019f88344eb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>PostgreSQL 13.2, 12.6, 11.11, 10.16, 9.6.21, and 9.5.25 released</title>
<updated>2021-02-11T14:34:02Z</updated>
<author>
<name>Palle Girgensohn</name>
<email>girgen@FreeBSD.org</email>
</author>
<published>2021-02-11T14:34:02Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=6d480661d1fea606e0634f5cb4f28e6b983787b9'/>
<id>urn:sha1:6d480661d1fea606e0634f5cb4f28e6b983787b9</id>
<content type='text'>
The PostgreSQL Global Development Group has released an update to all supported
versions of our database system, including 13.2, 12.6, 11.11, 10.16, 9.6.21,
and 9.5.25. This release closes two security vulnerabilities and fixes over 80
bugs reported over the last three months.

Additionally, this is the final release of PostgreSQL 9.5. If you are running
PostgreSQL 9.5 in a production environment, we suggest that you make plans to
upgrade.

Release notes:	https://www.postgresql.org/about/news/postgresql-132-126-1111-1016-9621-and-9525-released-2165/
Security notes:	https://www.postgresql.org/support/security/
Security:	CVE-2021-3393, CVE-2021-20229
</content>
</entry>
</feed>
