909dbc7cca
Accepting request 1278027 from server:database:postgresql
...
- Upgrade to 13.21:
* bsc#1242931, CVE-2025-4207: postgresql: PostgreSQL GB18030
encoding validation can read one byte past end of allocation
for text that fails validation.
* https://www.postgresql.org/docs/release/13.21/
* https://www.postgresql.org/about/news/p-3072/
- Add postresql-pg_config_paths.patch to fix a race condition
while generating pg_config_paths.h.
OBS-URL: https://build.opensuse.org/request/show/1278027
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=36
2025-05-20 07:35:14 +00:00
492777a08d
Accepting request 1247461 from server:database:postgresql
...
- Upgrade to 13.20:
* Improve behavior of libpq's quoting functions:
The changes made for CVE-2025-1094 had one serious oversight:
PQescapeLiteral() and PQescapeIdentifier() failed to honor
their string length parameter, instead always reading to the
input string's trailing null. This resulted in including
unwanted text in the output, if the caller intended to
truncate the string via the length parameter. With very bad
luck it could cause a crash due to reading off the end of
memory.
In addition, modify all these quoting functions so that when
invalid encoding is detected, an invalid sequence is
substituted for just the first byte of the presumed
character, not all of it. This reduces the risk of problems
if a calling application performs additional processing on
the quoted string.
* Fix small memory leak in pg_createsubscriber.
* https://www.postgresql.org/docs/release/13.20/
* https://www.postgresql.org/about/news/p-3018/
OBS-URL: https://build.opensuse.org/request/show/1247461
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=35
2025-02-20 18:46:48 +00:00
377d923e40
- Upgrade to 13.20:
...
* Improve behavior of libpq's quoting functions:
The changes made for CVE-2025-1094 had one serious oversight:
PQescapeLiteral() and PQescapeIdentifier() failed to honor
their string length parameter, instead always reading to the
input string's trailing null. This resulted in including
unwanted text in the output, if the caller intended to
truncate the string via the length parameter. With very bad
luck it could cause a crash due to reading off the end of
memory.
In addition, modify all these quoting functions so that when
invalid encoding is detected, an invalid sequence is
substituted for just the first byte of the presumed
character, not all of it. This reduces the risk of problems
if a calling application performs additional processing on
the quoted string.
* Fix small memory leak in pg_createsubscriber.
* https://www.postgresql.org/docs/release/13.20/
* https://www.postgresql.org/about/news/p-3018/
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=102
2025-02-20 16:34:04 +00:00
496a4fcd5a
Accepting request 1245712 from server:database:postgresql
...
- Upgrade to 13.19:
* bsc#1237093, CVE-2025-1094: Harden PQescapeString and allied
functions against invalidly-encoded input strings.
* obsoletes postgresql-tzdata2025a.patch
* https://www.postgresql.org/docs/release/13.19/
* https://www.postgresql.org/about/news/-3015/
- Disable LLVM JIT on loongarch64
OBS-URL: https://build.opensuse.org/request/show/1245712
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=34
2025-02-13 17:40:26 +00:00
a440b64193
- Upgrade to 13.19:
...
* bsc#1237093, CVE-2025-1094: Harden PQescapeString and allied
functions against invalidly-encoded input strings.
* obsoletes postgresql-tzdata2025a.patch
* https://www.postgresql.org/docs/release/13.19/
* https://www.postgresql.org/about/news/-3015/
- Disable LLVM JIT on loongarch64
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=100
2025-02-13 14:50:48 +00:00
2452335da7
Accepting request 1240824 from server:database:postgresql
...
- Fix build, add postgresql-tzdata2025a.patch
OBS-URL: https://build.opensuse.org/request/show/1240824
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=33
2025-01-28 16:09:52 +00:00
ca9790eaaf
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=98
2025-01-28 12:53:33 +00:00
79b1cbc06b
- Fix build, add postgresql-tzdata2025a.patch
...
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=97
2025-01-28 12:35:17 +00:00
d152e245f4
Accepting request 1225752 from server:database:postgresql
...
- Upgrade to 13.18:
* Restore functionality of ALTER {ROLE|DATABASE} SET role.
* Fix cases where a logical replication slot's restart_lsn could
go backwards.
* Count index scans in contrib/bloom indexes in the statistics
views, such as the pg_stat_user_indexes.idx_scan counter.
* Fix crash when checking to see if an index's opclass options
have changed.
* https://www.postgresql.org/about/news/p-2965/
* https://www.postgresql.org/docs/release/13.18/
OBS-URL: https://build.opensuse.org/request/show/1225752
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=32
2024-11-22 22:51:57 +00:00
4d1e55ad06
- Upgrade to 13.18:
...
* Restore functionality of ALTER {ROLE|DATABASE} SET role.
* Fix cases where a logical replication slot's restart_lsn could
go backwards.
* Count index scans in contrib/bloom indexes in the statistics
views, such as the pg_stat_user_indexes.idx_scan counter.
* Fix crash when checking to see if an index's opclass options
have changed.
* https://www.postgresql.org/about/news/p-2965/
* https://www.postgresql.org/docs/release/13.18/
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=95
2024-11-21 17:45:12 +00:00
0c6f59b3d7
Accepting request 1224295 from server:database:postgresql
...
- Upgrade to 13.17:
* CVE-2024-10976, bsc#1233323: Ensure cached plans are marked as
dependent on the calling role when RLS applies to a
non-top-level table reference.
* CVE-2024-10977, bsc#1233325: Make libpq discard error messages
received during SSL or GSS protocol negotiation.
* CVE-2024-10978, bsc#1233326: Fix unintended interactions
between SET SESSION AUTHORIZATION and SET ROLE
* CVE-2024-10979, bsc#1233327: Prevent trusted PL/Perl code from
changing environment variables.
* https://www.postgresql.org/about/news/p-2955/
* https://www.postgresql.org/docs/release/13.17/
- Sync spec file from postgresql17.
* https://www.postgresql.org/about/news/p-2910/
OBS-URL: https://build.opensuse.org/request/show/1224295
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=31
2024-11-15 14:43:21 +00:00
64b67acc52
- Upgrade to 13.17:
...
* CVE-2024-10976, bsc#1233323: Ensure cached plans are marked as
dependent on the calling role when RLS applies to a
non-top-level table reference.
* CVE-2024-10977, bsc#1233325: Make libpq discard error messages
received during SSL or GSS protocol negotiation.
* CVE-2024-10978, bsc#1233326: Fix unintended interactions
between SET SESSION AUTHORIZATION and SET ROLE
* CVE-2024-10979, bsc#1233327: Prevent trusted PL/Perl code from
changing environment variables.
* https://www.postgresql.org/about/news/p-2955/
* https://www.postgresql.org/docs/release/13.17/
* https://www.postgresql.org/about/news/p-2910/
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=93
2024-11-14 14:16:21 +00:00
88a326ba0c
- Pull upstream patch to fix tests with timezone 2024b
...
* postgresql-testsuite-timezone-fix.patch
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=92
2024-11-05 14:00:46 +00:00
b88c2d48dd
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=91
2024-09-26 14:38:02 +00:00
39367c5e9b
Accepting request 1201984 from server:database:postgresql
...
- Upgrade to 13.16 (bsc#1229013):
* bsc#1229013, CVE-2024-7348 PostgreSQL relation replacement
during pg_dump executes arbitrary SQL
* https://www.postgresql.org/about/news/postgresql-164-158-1413-1316-1220-and-17-beta-3-released-2910/
* https://www.postgresql.org/docs/release/13.16/
OBS-URL: https://build.opensuse.org/request/show/1201984
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=30
2024-09-19 19:17:55 +00:00
456e89ad3c
https://www.postgresql.org/about/news/postgresql-164-158-1413-1316-1220-and-17-beta-3-released-2910/
...
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=89
2024-08-10 14:37:23 +00:00
e2b03ae23b
Accepting request 1172963 from server:database:postgresql
...
- Upgrade to 13.15 (bsc#1224051):
* Fix incompatibility with LLVM 18.
* https://www.postgresql.org/docs/release/13.15/
- Prepare for PostgreSQL 17.
- Make sure all compilation and doc generation happens in %build.
- Require LLVM <= 17 for now, because LLVM 18 doesn't seem to work.
- Remove constraints file because improved memory usage for s390x
* https://www.postgresql.org/docs/release/13.14/
OBS-URL: https://build.opensuse.org/request/show/1172963
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=29
2024-05-10 10:05:18 +00:00
2f702d8c6a
- Upgrade to 13.15 (bsc#1224051):
...
* Fix incompatibility with LLVM 18.
* https://www.postgresql.org/docs/release/13.15/
- Prepare for PostgreSQL 17.
- Make sure all compilation and doc generation happens in %build.
* https://www.postgresql.org/docs/release/13.14/
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=87
2024-05-09 15:31:24 +00:00
6c6602560a
CVE-2024-4317
...
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=86
2024-05-09 14:13:25 +00:00
5711f8ba9d
Accepting request 1171158 from home:aaronpuchert:branches:server:database:postgresql
...
- Require LLVM <= 17 for now, because LLVM 18 doesn't seem to work.
OBS-URL: https://build.opensuse.org/request/show/1171158
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=85
2024-05-02 07:15:37 +00:00
9f31f6d80f
- Remove constraints file because improved memory usage for s390x
...
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=84
2024-03-11 09:21:20 +00:00
b47250d9b7
Accepting request 1154712 from server:database:postgresql
...
OBS-URL: https://build.opensuse.org/request/show/1154712
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=28
2024-03-04 20:25:54 +00:00
929727e3a9
Accepting request 1153288 from home:dimstar:rpm4.20:p
...
Prepare for RPM 4.20
OBS-URL: https://build.opensuse.org/request/show/1153288
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=82
2024-03-04 14:16:20 +00:00
9ba792710a
Accepting request 1145272 from server:database:postgresql
...
- Upgrade to 13.14:
* bsc#1219679, CVE-2024-0985: Tighten security restrictions
within REFRESH MATERIALIZED VIEW CONCURRENTLY.
One step of a concurrent refresh command was run under weak
security restrictions. If a materialized view's owner could
persuade a superuser or other high-privileged user to perform a
concurrent refresh on that view, the view's owner could control
code executed with the privileges of the user running REFRESH.
Fix things so that all user-determined code is run as the
view's owner, as expected
* If you use GIN indexes, you may need to reindex after updating
to this release.
* LLVM 18 is now supported.
* https://www.postgresql.org/docs/release/13.4/
OBS-URL: https://build.opensuse.org/request/show/1145272
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=27
2024-02-09 22:52:57 +00:00
9797fa906c
- Upgrade to 13.14:
...
* bsc#1219679, CVE-2024-0985: Tighten security restrictions
within REFRESH MATERIALIZED VIEW CONCURRENTLY.
One step of a concurrent refresh command was run under weak
security restrictions. If a materialized view's owner could
persuade a superuser or other high-privileged user to perform a
concurrent refresh on that view, the view's owner could control
code executed with the privileges of the user running REFRESH.
Fix things so that all user-determined code is run as the
view's owner, as expected
* If you use GIN indexes, you may need to reindex after updating
to this release.
* LLVM 18 is now supported.
* https://www.postgresql.org/docs/release/13.4/
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=80
2024-02-08 15:24:49 +00:00
0bc99382ab
Accepting request 1124706 from server:database:postgresql
...
November 2023 Security Updates
OBS-URL: https://build.opensuse.org/request/show/1124706
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=26
2023-11-09 20:36:14 +00:00
0e1cc7606d
November 2023 Security Updates
...
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=78
2023-11-09 14:44:44 +00:00
4f0fe7afa7
Accepting request 1121433 from server:database:postgresql
...
Revert last change and make the devel package independend
OBS-URL: https://build.opensuse.org/request/show/1121433
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=25
2023-10-31 19:26:32 +00:00
009fc88634
- boo#1216734: Revert the last change and make the devel package
...
independend of all other subpackages except for the libs.
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=76
2023-10-31 11:04:31 +00:00
e1aaa035ba
Accepting request 1120252 from server:database:postgresql
...
- boo#1216022: Call install-alternatives from the devel subpackage
as well, otherwise the symlink for ecpg might be missing.
- Also buildignore the postgresql*-implementation symbols: this is
needed in order to bootstrap when no postgresql version currently
has valid symbols provided. Once the packages are built, OBS
could translate this to the pgname-* packages and accept the
ignores; during bootstrap though, there is nothing providing the
symbol and the existing buildignores do not suffice.
OBS-URL: https://build.opensuse.org/request/show/1120252
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=24
2023-10-25 16:04:47 +00:00
0efd5a7c89
- boo#1216022: Call install-alternatives from the devel subpackage
...
as well, otherwise the symlink for ecpg might be missing.
- Also buildignore the postgresql*-implementation symbols: this is
needed in order to bootstrap when no postgresql version currently
has valid symbols provided. Once the packages are built, OBS
could translate this to the pgname-* packages and accept the
ignores; during bootstrap though, there is nothing providing the
symbol and the existing buildignores do not suffice.
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=74
2023-10-10 13:13:02 +00:00
69512f89e5
Accepting request 1103351 from server:database:postgresql
...
- Update to 13.12:
* bsc#1214059, CVE-2023-39417: Disallow substituting a schema or
owner name into an extension script if the name contains a
quote, backslash, or dollar sign.
* https://www.postgresql.org/docs/13/release-13-12.html
- Restore the independence of mini builds from the main build after
the -mini name change from April 4, 2023.
- Adjust icu handling to prepare for PostgreSQL 16.
- Overhaul postgresql-README.SUSE and move it from the binary
package to the noarch wrapper package.
- Change the unix domain socket location from /var/run to /run.
OBS-URL: https://build.opensuse.org/request/show/1103351
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=23
2023-08-11 13:55:44 +00:00
554b93a424
- Update to 13.12:
...
* bsc#1214059, CVE-2023-39417: Disallow substituting a schema or
owner name into an extension script if the name contains a
quote, backslash, or dollar sign.
* https://www.postgresql.org/docs/13/release-13-12.html
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=72
2023-08-10 13:36:21 +00:00
27d68739ef
- Restore the independence of mini builds from the main build after
...
the -mini name change from April 4, 2023.
- Adjust icu handling to prepare for PostgreSQL 16.
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=71
2023-05-26 12:03:19 +00:00
bbfa0902cb
- Overhaul postgresql-README.SUSE and move it from the binary
...
package to the noarch wrapper package.
- Change the unix domain socket location from /var/run to /run.
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=70
2023-05-15 14:54:20 +00:00
c6a3233116
Accepting request 1086556 from server:database:postgresql
...
- Update to 13.11:
* bsc#1211228, CVE-2023-2454:
Prevent CREATE SCHEMA from defeating changes in search_path
* bsc#1211229, CVE-2023-2455: Enforce row-level security
policies correctly after inlining a set-returning function
* https://www.postgresql.org/about/news/2637/
* https://www.postgresql.org/docs/13/release-13-11.html
OBS-URL: https://build.opensuse.org/request/show/1086556
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=22
2023-05-12 18:37:15 +00:00
da8e82d62f
- Update to 13.11:
...
* bsc#1211228, CVE-2023-2454:
Prevent CREATE SCHEMA from defeating changes in search_path
* bsc#1211229, CVE-2023-2455: Enforce row-level security
policies correctly after inlining a set-returning function
* https://www.postgresql.org/about/news/2637/
* https://www.postgresql.org/docs/13/release-13-11.html
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=68
2023-05-11 13:19:18 +00:00
82db7026ba
Accepting request 1081147 from server:database:postgresql
...
- bsc#1210303: Stop using the obsolete internal %_restart_on_update
macro and drop support for sysv init to simplify the scriptlets.
- Include -mini in Name: to avoid conflicts in the source package
name and OBS internal dependency tracking.
OBS-URL: https://build.opensuse.org/request/show/1081147
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=21
2023-04-21 12:17:46 +00:00
9bae41c993
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=66
2023-04-19 13:26:38 +00:00
72a9f7df76
- bsc#1210303: Stop using the obsolete internal %_restart_on_update
...
macro and drop support for sysv init to simplify the scriptlets.
- Include -mini in Name: to avoid conflicts in the source package
name and OBS internal dependency tracking.
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=65
2023-04-18 14:02:56 +00:00
1cddf50a49
Accepting request 1064056 from server:database:postgresql
...
- Update to 13.10:
* CVE-2022-41862, bsc#1208102: memory leak in libpq
* https://www.postgresql.org/about/news/2592/
* https://www.postgresql.org/docs/13/release-13-10.html
- Bump latest_supported_llvm_ver to 15.
OBS-URL: https://build.opensuse.org/request/show/1064056
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=20
2023-02-10 13:33:53 +00:00
a7d87b9745
- Update to 13.10:
...
* CVE-2022-41862, bsc#1208102: memory leak in libpq
* https://www.postgresql.org/about/news/2592/
* https://www.postgresql.org/docs/13/release-13-10.html
- Bump latest_supported_llvm_ver to 15.
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=63
2023-02-09 14:32:13 +00:00
47ac148b5d
Accepting request 1035217 from server:database:postgresql
...
- bsc#1205300: Update to 13.9:
* https://www.postgresql.org/about/news/2543/
* https://www.postgresql.org/docs/13/release-13-9.html
- Sync spec file with postgresql15.
OBS-URL: https://build.opensuse.org/request/show/1035217
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=19
2022-11-12 16:40:40 +00:00
15ffedd5be
- bsc#1205300: Update to 13.9:
...
* https://www.postgresql.org/about/news/2543/
* https://www.postgresql.org/docs/13/release-13-9.html
- Sync spec file with postgresql15.
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=61
2022-11-10 16:35:33 +00:00
375127ece2
Accepting request 1006684 from server:database:postgresql
...
- Create mechanism to specify the latest supported LLVM version.
Automatically pin to that version if the distribution has a newer
unsupported default version.
- Sync spec file with postgresql15.
- Disable LLVM JIT on riscv64
OBS-URL: https://build.opensuse.org/request/show/1006684
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=18
2022-10-04 18:37:26 +00:00
9c479b5d8f
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=59
2022-09-23 16:02:47 +00:00
879372ccb0
- Sync spec file with postgresql15.
...
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=58
2022-09-23 14:11:55 +00:00
d3bcbd2969
- Add generic mechanism to pin to latest supported LLVM version.
...
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=57
2022-09-23 12:44:57 +00:00
f9502278b0
Accepting request 1003037 from openSUSE:Factory:RISCV
...
- Disable LLVM JIT on riscv64
OBS-URL: https://build.opensuse.org/request/show/1003037
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=56
2022-09-13 11:53:01 +00:00
e8f597751f
Accepting request 995184 from server:database:postgresql
...
- Update to 13.8:
* bsc#1202368, CVE-2022-2625: Extension scripts replace objects
not belonging to the extension.
* https://www.postgresql.org/docs/release/13.8/
OBS-URL: https://build.opensuse.org/request/show/995184
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=17
2022-08-16 15:06:43 +00:00
69b889ecd3
- Update to 13.8:
...
* bsc#1202368, CVE-2022-2625: Extension scripts replace objects
not belonging to the extension.
* https://www.postgresql.org/docs/release/13.8/
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=54
2022-08-15 09:56:04 +00:00
8631b42a95
Accepting request 977048 from server:database:postgresql
...
- Upgrade to 13.7:
* bsc#1199475, CVE-2022-1552: Confine additional operations
within "security restricted operation" sandboxes.
* https://www.postgresql.org/docs/13/release-13-7.html
OBS-URL: https://build.opensuse.org/request/show/977048
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=16
2022-05-14 20:54:45 +00:00
8b2b5f1dc1
- Upgrade to 13.7:
...
* bsc#1199475, CVE-2022-1552: Confine additional operations
within "security restricted operation" sandboxes.
* https://www.postgresql.org/docs/13/release-13-7.html
* https://www.postgresql.org/docs/13/release-13-5.html
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=52
2022-05-12 14:53:06 +00:00
4bf0608837
Accepting request 969862 from server:database:postgresql
...
- bsc#1198166: Pin to llvm13 until the next patchlevel update.
- bsc#1195680: Upgrade to 13.6:
* https://www.postgresql.org/docs/13/release-13-6.html
* Reindexing might be needed after applying this upgrade, so
please read the release notes carefully.
- boo#1190740: Add constraints file with 12GB of memory for s390x
as a workaround
OBS-URL: https://build.opensuse.org/request/show/969862
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=15
2022-04-14 15:22:59 +00:00
6112eb24ea
- bsc#1198166: Pin to llvm13 until the next patchlevel update.
...
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=50
2022-04-13 12:21:23 +00:00
5c58c0aebe
- bsc#1195680: Upgrade to 13.6:
...
* https://www.postgresql.org/docs/13/release-13-6.html
* Reindexing might be needed after applying this upgrade, so
please read the release notes carefully.
- boo#1190740: Add constraints file with 12GB of memory for s390x
as a workaround
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=49
2022-02-10 15:27:11 +00:00
35209748fa
Accepting request 935205 from server:database:postgresql
...
- Add a llvmjit-devel subpackage to pull in the right versions
of clang and llvm for building extensions.
- Fix some mistakes in the interdependencies between the
implementation packages and their noarch counterpart.
- Update the BuildIgnore section.
OBS-URL: https://build.opensuse.org/request/show/935205
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=14
2021-12-06 22:59:24 +00:00
9f00a57e21
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=48
2021-12-02 13:44:09 +00:00
b86d3596f2
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=47
2021-11-30 19:03:55 +00:00
0eec778c1a
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=46
2021-11-30 18:52:48 +00:00
b0156e7b60
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=45
2021-11-30 17:13:10 +00:00
99c63d9f7d
- Add a llvmjit-devel subpackage to pull in the right versions
...
of clang and llvm for building extensions.
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=44
2021-11-30 16:49:34 +00:00
7c70ce31d1
Accepting request 930950 from server:database:postgresql
...
- bsc#1192516: Upgrade to 13.5:
* Make the server reject extraneous data after an SSL or GSS
encryption handshake (CVE-2021-23214).
* Make libpq reject extraneous data after an SSL or GSS
encryption handshake (CVE-2021-23222).
* https://www.postgresql.org/docs/13/release-13-4.html
OBS-URL: https://build.opensuse.org/request/show/930950
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=13
2021-11-13 21:48:09 +00:00
4c09c871a7
- bsc#1192516: Upgrade to 13.5:
...
* Make the server reject extraneous data after an SSL or GSS
encryption handshake (CVE-2021-23214).
* Make libpq reject extraneous data after an SSL or GSS
encryption handshake (CVE-2021-23222).
* https://www.postgresql.org/docs/13/release-13-4.html
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=43
2021-11-11 14:58:14 +00:00
8563bdf93b
Accepting request 926787 from home:AdaLovelace:branches:openSUSE:Factory:zSystems
...
- boo#1190740: Add constraints file with 8GB memory for s390x as
a workaround for a memory issue with LLVM
OBS-URL: https://build.opensuse.org/request/show/926787
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=42
2021-10-21 15:47:16 +00:00
75560c4a56
Accepting request 923701 from server:database:postgresql
...
- Stop building the mini and lib packages as they are now coming
from postgresql14.
- Let genlists skip non-existing binaries to avoid lots of version
conditionals in the file lists.
- Remove postgresql-testsuite-int8.sql.patch, because its purpose
is unclear. This affects only the test subpackage.
OBS-URL: https://build.opensuse.org/request/show/923701
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=12
2021-10-12 19:48:00 +00:00
1d2ea82175
- Remove postgresql-testsuite-int8.sql.patch, because its purpose
...
is unclear. This affects only the test subpackage.
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=41
2021-10-06 14:15:37 +00:00
c5a36ee1e0
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=40
2021-10-05 11:44:09 +00:00
1b8b7fdba8
- Simplify file list generation.
...
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=39
2021-10-05 11:16:03 +00:00
755759be37
- Stop building the mini and lib packages as they are now coming
...
from postgresql14.
- Let genlists skip non-existing binaries to avoid lots of version
conditionals in the file lists.
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=38
2021-09-27 14:07:11 +00:00
c37f70a862
Accepting request 917542 from server:database:postgresql
...
- bsc#1185952: fix build with llvm12 on s390x.
0001-jit-Workaround-potential-datalayout-mismatch-on-s390.patch
- bsc#1179945: Re-enable icu for PostgreSQL 10.
- Upgrade to version 13.4:
https://www.postgresql.org/docs/13/release-13-4.html
* CVE-2021-3677 (boo#1189748)
The planner could create an incorrect plan in cases where two
ProjectionPaths were stacked on top of each other. The only
known way to trigger that situation involves parallel sort
operations, but there may be other instances. The result would
be crashes or incorrect query results. Disclosure of server
memory contents is also possible.
- bsc#1187751: Make the dependency of postgresqlXX-server-devel on
llvm and clang optional (postgresql-llvm-optional.patch).
OBS-URL: https://build.opensuse.org/request/show/917542
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=11
2021-09-13 14:24:18 +00:00
c1e38579a0
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=37
2021-08-31 16:07:32 +00:00
aa996e2b71
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=36
2021-08-31 14:29:22 +00:00
07888665b7
- bsc#1179945: Re-enable icu for PostgreSQL 10.
...
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=35
2021-08-31 14:27:29 +00:00
f0bdd3e8f4
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=34
2021-08-31 11:46:39 +00:00
ce0f41cf96
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=33
2021-08-31 11:18:12 +00:00
f38a89dc2c
- bsc#1185952: fix build with llvm12 on s390x.
...
0001-jit-Workaround-potential-datalayout-mismatch-on-s390.patch
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=32
2021-08-31 11:16:37 +00:00
23b6a7a2e6
* bsc#1185952: Adjust JIT code to prepare for forthcoming LLVM
...
API change
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=31
2021-08-30 16:30:47 +00:00
89ffdce7a6
Sync spec file with other versions
...
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=30
2021-08-27 17:22:58 +00:00
ddaaeade55
- bsc#1187751: Make the dependency of postgresqlXX-server-devel on
...
llvm and clang optional (postgresql-llvm-optional.patch).
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=29
2021-08-25 11:38:21 +00:00
941a1ba132
fix scriptlet syntax
...
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=28
2021-08-24 13:34:44 +00:00
fd986d30f5
fix header
...
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=27
2021-08-24 13:32:33 +00:00
307efe692c
https://www.postgresql.org/about/news/postgresql-134-128-1113-1018-9623-and-14-beta-3-released-2277/
...
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=26
2021-08-24 13:27:52 +00:00
d9047459a0
Accepting request 894524 from server:database:postgresql
...
- bsc#1185952: llvm12 breaks PostgreSQL 11 and 12 on s390x.
Use llvm11 as a workaround.
OBS-URL: https://build.opensuse.org/request/show/894524
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=10
2021-05-21 19:49:30 +00:00
0e79a44e5d
- bsc#1185952: llvm12 breaks PostgreSQL 11 and 12 on s390x.
...
Use llvm11 as a workaround.
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=24
2021-05-19 16:13:51 +00:00
a60805dda7
Accepting request 893135 from server:database:postgresql
...
- Upgrade to version 13.3:
* https://www.postgresql.org/docs/13/release-13-3.html
* CVE-2021-32027, bsc#1185924:
Prevent integer overflows in array subscripting calculations.
* CVE-2021-32028, bsc#1185925: Fix mishandling of “junk”
columns in INSERT ... ON CONFLICT ... UPDATE target lists.
* CVE-2021-32029, bsc#1185926: Fix possibly-incorrect
computation of UPDATE ... RETURNING
"pg_psql_temporary_savepoint" does not exist”.
- Don't use %_stop_on_removal, because it was meant to be private
and got removed from openSUSE. %_restart_on_update is also
private, but still supported and needed for now (bsc#1183168).
only be delivered on PackageHub for now (boo#1183118).
OBS-URL: https://build.opensuse.org/request/show/893135
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=9
2021-05-18 16:26:40 +00:00
87942f240c
- Upgrade to version 13.3:
...
* https://www.postgresql.org/docs/13/release-13-3.html
* CVE-2021-32027, bsc#1185924:
Prevent integer overflows in array subscripting calculations.
* CVE-2021-32028, bsc#1185925: Fix mishandling of “junk”
columns in INSERT ... ON CONFLICT ... UPDATE target lists.
* CVE-2021-32029, bsc#1185926: Fix possibly-incorrect
computation of UPDATE ... RETURNING
"pg_psql_temporary_savepoint" does not exist”.
- Don't use %_stop_on_removal, because it was meant to be private
and got removed from openSUSE. %_restart_on_update is also
private, but still supported and needed for now (bsc#1183168).
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=22
2021-05-14 11:51:10 +00:00
2a9d2aba7a
Accepting request 885325 from server:database:postgresql
...
- Re-enable build of the llvmjit subpackage on SLE, but it will
only be delivered on PackageHub for now.
OBS-URL: https://build.opensuse.org/request/show/885325
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=8
2021-04-22 16:03:18 +00:00
OBS User buildservice-autocommit
11a5e058a0
Accepting request 885325 from server:database:postgresql
...
baserev update by copy to link target
OBS-URL: https://build.opensuse.org/request/show/885325
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=21
2021-04-22 16:03:18 +00:00
OBS User buildservice-autocommit
910ec4bedb
Updating link to change in openSUSE:Factory/postgresql13 revision 8.0
...
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=21e8b93c147efa4220d2904167292f0d
2021-04-22 16:03:18 +00:00
c7efb1704c
Add bug reference
...
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=20
2021-04-14 14:18:20 +00:00
8c0d5c510c
- Re-enable build of the llvmjit subpackage on SLE, but it will
...
only be delivered on PackageHub for now.
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=19
2021-03-15 19:41:39 +00:00
28aa56fa3b
Accepting request 878016 from server:database:postgresql
...
- Remove leftover PreReq on chkconfig, we stopped using it long
time ago.
OBS-URL: https://build.opensuse.org/request/show/878016
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=7
2021-03-11 19:07:57 +00:00
35033e90c1
- Remove leftover PreReq on chkconfig, we stopped using it long
...
time ago.
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=17
2021-03-09 14:19:40 +00:00
bca8c34750
Accepting request 873842 from server:database:postgresql
...
- boo#1179945: Disable icu for PostgreSQL 10 (and older) on TW.
- Upgrade to version 13.2:
* https://www.postgresql.org/docs/13/release-13-2.html
* Updating stored views and reindexing might be needed after
applying this update.
* CVE-2021-3393, bsc#1182040: Fix information leakage in
constraint-violation error messages.
* CVE-2021-20229, bsc#1182039: Fix failure to check per-column
SELECT privileges in some join queries.
* Obsoletes postgresql-icu68.patch.
OBS-URL: https://build.opensuse.org/request/show/873842
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=6
2021-02-23 19:17:54 +00:00
3de008322d
- boo#1179945: Disable icu for PostgreSQL 10 (and older) on TW.
...
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=15
2021-02-19 15:59:21 +00:00
06f40ac3ca
- Upgrade to version 13.2:
...
* https://www.postgresql.org/docs/13/release-13-2.html
* Updating stored views and reindexing might be needed after
applying this update.
* CVE-2021-3393, bsc#1182040: Fix information leakage in
constraint-violation error messages.
* CVE-2021-20229, bsc#1182039: Fix failure to check per-column
SELECT privileges in some join queries.
* Obsoletes postgresql-icu68.patch.
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=14
2021-02-12 19:15:05 +00:00
9a2ab8f107
Accepting request 861016 from server:database:postgresql
...
OBS-URL: https://build.opensuse.org/request/show/861016
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=5
2021-01-08 16:34:06 +00:00
9c719ea9cb
Accepting request 861005 from home:gmbr3:branches:server:database:postgresql
...
Correct
OBS-URL: https://build.opensuse.org/request/show/861005
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=12
2021-01-07 11:10:14 +00:00
135a1037aa
Accepting request 855793 from home:gmbr3:StagingI
...
- Add icu-68.patch: fix build with ICU 68
OBS-URL: https://build.opensuse.org/request/show/855793
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=11
2021-01-07 10:23:15 +00:00
31f98a1410
Accepting request 854082 from server:database:postgresql
...
- bsc#1178961: %ghost the symlinks to pg_config and ecpg.
- boo#1179765: BuildRequire libpq5 and libecpg6 when not building
them to avoid dangling symlinks in the devel package.
OBS-URL: https://build.opensuse.org/request/show/854082
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=4
2020-12-10 14:56:40 +00:00
52d5e75e4e
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=9
2020-12-08 16:13:10 +00:00
369f5fe45c
- BuildRequire libpq5 and libecpg6 when not building them to avoid
...
dangling symlinks in the devel package.
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=8
2020-11-20 11:53:36 +00:00
7f5f09222b
- bsc#1178961: %ghost the symlinks to pg_config and ecpg.
...
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=7
2020-11-20 10:52:37 +00:00
ecc8159cc1
Accepting request 848147 from server:database:postgresql
...
- Upgrade to version 13.1:
* CVE-2020-25695, bsc#1178666: Block DECLARE CURSOR ... WITH HOLD
and firing of deferred triggers within index expressions and
materialized view queries.
* CVE-2020-25694, bsc#1178667:
a) Fix usage of complex connection-string parameters in pg_dump,
pg_restore, clusterdb, reindexdb, and vacuumdb.
b) When psql's \connect command re-uses connection parameters,
ensure that all non-overridden parameters from a previous
connection string are re-used.
* CVE-2020-25696, bsc#1178668: Prevent psql's \gset command from
modifying specially-treated variables.
* Fix recently-added timetz test case so it works when the USA
is not observing daylight savings time.
(obsoletes postgresql-timetz.patch)
* https://www.postgresql.org/about/news/2111/
* https://www.postgresql.org/docs/13/release-13-1.html
OBS-URL: https://build.opensuse.org/request/show/848147
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=3
2020-11-15 14:25:20 +00:00
c3158f0802
- Upgrade to version 13.1:
...
* CVE-2020-25695, bsc#1178666: Block DECLARE CURSOR ... WITH HOLD
and firing of deferred triggers within index expressions and
materialized view queries.
* CVE-2020-25694, bsc#1178667:
a) Fix usage of complex connection-string parameters in pg_dump,
pg_restore, clusterdb, reindexdb, and vacuumdb.
b) When psql's \connect command re-uses connection parameters,
ensure that all non-overridden parameters from a previous
connection string are re-used.
* CVE-2020-25696, bsc#1178668: Prevent psql's \gset command from
modifying specially-treated variables.
* Fix recently-added timetz test case so it works when the USA
is not observing daylight savings time.
(obsoletes postgresql-timetz.patch)
* https://www.postgresql.org/about/news/2111/
* https://www.postgresql.org/docs/13/release-13-1.html
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=5
2020-11-12 14:28:15 +00:00
428c6ea16c
Accepting request 845768 from server:database:postgresql
...
- Fix a DST problem in the test suite: postgresql-timetz.patch
https://postgr.es/m/16689-57701daa23b377bf@postgresql.org
OBS-URL: https://build.opensuse.org/request/show/845768
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=2
2020-11-03 14:59:41 +00:00
ddf7e05633
- Fix a DST problem in the test suite: postgresql-timetz.patch
...
https://postgr.es/m/16689-57701daa23b377bf@postgresql.org
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=3
2020-11-03 14:10:14 +00:00
a5916e462a
Accepting request 843221 from server:database:postgresql
...
Initial packaging of PostgreSQL 13
OBS-URL: https://build.opensuse.org/request/show/843221
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql13?expand=0&rev=1
2020-10-24 13:16:10 +00:00
dd8ef976ef
- Initial packaging of PostgreSQL 13:
...
* https://www.postgresql.org/about/news/2077/
* https://www.postgresql.org/docs/13/release-13.html
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql13?expand=0&rev=1
2020-09-25 07:12:04 +00:00