Commit graph

20443 commits

Author SHA1 Message Date
Sunpoet Po-Chuan Hsieh
349e9766f9 Update to 0.36.4
- Remove ENUM option

Changes:	https://github.com/kvesteri/sqlalchemy-utils/blob/master/CHANGES.rst
2020-05-02 01:37:17 +00:00
Sunpoet Po-Chuan Hsieh
4a8dd63f61 Update to 1.9.2
Changes:	https://github.com/okbob/plpgsql_check/releases
2020-05-02 01:36:30 +00:00
Danilo G. Baio
54995340bf databases/py-mongoengine: Update to 0.19.1
Changelog:	https://github.com/MongoEngine/mongoengine/blob/v0.19.1/docs/changelog.rst

Package doesn't include tests, in current or in the previous versions.
2020-05-01 19:12:55 +00:00
Romain Tartière
32728cd56d Update to 6.10.0
Release notes:
https://puppet.com/docs/puppetdb/latest/release_notes.html#puppetdb-6100

With hat:	puppet
2020-05-01 18:34:20 +00:00
Romain Tartière
a1122d8cb4 Update to 5.2.14
Release notes:
https://puppet.com/docs/puppetdb/5.2/release_notes.html#puppetdb-5214

With hat:	puppet
2020-05-01 18:33:51 +00:00
Florian Smeets
bd8598d0a7 Update to 3.2.0 2020-05-01 07:43:16 +00:00
Sunpoet Po-Chuan Hsieh
e0cdb79dbd Update to 1.17.0
Changes:	https://github.com/frictionlessdata/tableschema-py/blob/master/README.md#changelog
		https://github.com/frictionlessdata/tableschema-py/commits/master
2020-05-01 05:01:06 +00:00
Sergey A. Osokin
739ecc501c Update to the recent commit (aka 6.0 GA). 2020-04-30 21:38:37 +00:00
Jochen Neumeister
10fe9bef59 databases/mysq56-{client, server}: Update to latest release 5.7.30
Bugs Fixed:
- InnoDB: The row_upd_clust_rec_by_insert function, which marks a clustered index record as deleted and inserts an updated version of the record into the clustered index, passed an incorrect n_ext value (the total number of external fields) to lower level functions, causing an assertion failure.
- InnoDB: An operation performed with the innodb_buffer_pool_evict debug variable set to uncompressed caused an assertion failure.
- InnoDB: An add column operation caused an assertion failure. The failure was due to a dangling pointer.
- nnoDB: Updating certain InnoDB system variables that take string values raised invalid read errors during Valgrind testing.
- InnoDB: An insert statement on a table with a spatial index raised a record type mismatch assertion due to a tuple corruption.
- InnoDB: A function that calculates undo log record size could calculate an incorrect length value in the case of a corrupted undo log record, resulting in a malloc failure. Assertion code was added to detect incorrect calculations.
- Replication: While an SQL statement was in the process of being rewritten for the binary log so that sensitive information did not appear in plain text, if a SHOW PROCESSLIST statement was used to inspect the query, the query could become corrupted when it was written to the binary log, causing replication to stop. The process of rewriting the query is now kept private, and the query thread is updated only when rewriting is complete.
- Replication: When a GRANT or REVOKE statement is only partially executed, an incident event is logged in the binary log, which makes the replication slave's applier thread stop so that the slave can be reconciled manually with the master. Previously, if a failed GRANT or REVOKE statement was the first statement executed in the session, no GTID was applied to the incident event (because the cache manager did not yet exist for the session), causing an error on the replication slave. Also, no incident event was logged in the situation where a GRANT statement created a user but then failed because the privileges had been specified incorrectly, again causing an error on the replication slave. Both these issues have now been fixed.
- Replication: When a replication slave has a generated column that the master does not have in that table, with a secondary index on the generated column, the generated expression should be evaluated and the value stored by the storage engine in the secondary index. When row-based binary logging is in use, the replication slave assigns default values to any fields that are not in the master's definition of the table. In the case of a generated column, which does not have a default value, the slave was previously assigning a null or a zero value to the column. This value was then stored by the storage engine in the secondary index, causing both the table and the index to become corrupted. To fix this issue, generated columns in a table on a replication slave are now re-evaluated before the values are sent to the storage engine.
- Replication: In the event of an unplanned disconnection of a replication slave from the master, the reference to the master's dump thread might not be removed from the list of registered slaves, in which case statements that accessed the list of slaves would fail. The issue has now been fixed.
- Replication: With the settings binlog_format=MIXED, tx_isolation=READ-COMMITTED, and binlog_row_image=FULL, an INSERT ... SELECT query involving a transactional storage engine omitted any columns with a null value from the row image written to the binary log. This happened because when processing INSERT ... SELECT statements, the columns were marked for inserts before the binary logging format was selected. The issue has now been fixed.

Full Changelog: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-30.html

MFH:		2020Q2
Security:	21d59ea3-8559-11ea-a5e2-d4c9ef517024 (MySQL - Server)
Security:	622b5c47-855b-11ea-a5e2-d4c9ef517024 (MySQL - Client)
Sponsored by:	Netzkommune GmbH
2020-04-30 08:15:11 +00:00
Sunpoet Po-Chuan Hsieh
8a8093221c Update to 3.11.1
Changes:	https://metacpan.org/changes/distribution/DBD-Pg
2020-04-29 15:47:59 +00:00
Sunpoet Po-Chuan Hsieh
d3be98c4a8 Update to 1.9.1
Changes:	https://github.com/okbob/plpgsql_check/releases
2020-04-28 22:54:53 +00:00
Jochen Neumeister
35ec20a170 databases/mysql56-{client, server}: Update to latest release 5.6.48
Bugfix:
- InnoDB: A tablespace import operation that failed due to the source and destination tables being defined with different DATA DIRECTORY clauses reported an insufficiently descriptive schema mismatch error. Moreover, if a .cfg file was not present, the same operation would raise an assertion failure. A more informative error message is now reported in both cases before the import operation is terminated due to the data directory mismatch.

- InnoDB: Updating certain InnoDB system variables that take string values raised invalid read errors during Valgrind testing.

- Replication: In the event of an unplanned disconnection of a replication slave from the master, the reference to the master's dump thread might not be removed from the list of registered slaves, in which case statements that accessed the list of slaves would fail. The issue has now been fixed

- Replication: With the settings binlog_format=MIXED, tx_isolation=READ-COMMITTED, and binlog_row_image=FULL, an INSERT ... SELECT query involving a transactional storage engine omitted any columns with a null value from the row image written to the binary log. This happened because when processing INSERT ... SELECT statements, the columns were marked for inserts before the binary logging format was selected. The issue has now been fixed.

More Infos: https://dev.mysql.com/doc/relnotes/mysql/5.6/en/news-5-6-48.html

MFH:		2020Q2
Security:	21d59ea3-8559-11ea-a5e2-d4c9ef517024 (MySQL - Server)
Security:	622b5c47-855b-11ea-a5e2-d4c9ef517024 (MySQL - Client)
Sponsored by:	Netzkommune GmbH
2020-04-28 21:08:35 +00:00
Dmitri Goutnik
d5709a4cb0 New port: databases/prometheus-postgresql-adapter
Use PostgreSQL as a remote storage database for Prometheus

WWW: https://github.com/timescale/prometheus-postgresql-adapter

PR:		245180
Submitted by:	Felix Hanley <felix@userspace.com.au>
2020-04-28 14:35:22 +00:00
Hajimu UMEMOTO
d1e7a0dbef suppress deprecate warning with Ruby 2.7
PR:		245339
Approved by:	maintainer timeout
2020-04-28 10:23:07 +00:00
Dima Panov
c5d2e3b82b databases/adodb5: update to 5.20.17 stable release
Relnotes:	https://github.com/ADOdb/ADOdb/blob/v5.20.17/docs/changelog.md
2020-04-28 09:18:12 +00:00
Richard Gallamore
0f2111b27f Updated to 8.0.20
Changelog: https://dev.mysql.com/doc/relnotes/connector-j/8.0/en/news-8-0-20.html
2020-04-28 07:57:14 +00:00
Romain Tartière
b24f863203 Update to 0.12.0 2020-04-28 03:49:30 +00:00
Sunpoet Po-Chuan Hsieh
45fc627d4d Update to 1.16.2
Changes:	https://github.com/frictionlessdata/tableschema-py/blob/master/README.md#changelog
		https://github.com/frictionlessdata/tableschema-py/commits/master
2020-04-27 20:58:28 +00:00
Sunpoet Po-Chuan Hsieh
a2bf74722e Update to 0.23.0
Changes:	https://github.com/marshmallow-code/marshmallow-sqlalchemy/blob/dev/CHANGELOG.rst
2020-04-27 20:58:23 +00:00
Sunpoet Po-Chuan Hsieh
8399259840 Update to 6.8.1
Changes:	https://github.com/facebook/rocksdb/releases
2020-04-27 20:58:07 +00:00
Matthew Seaman
260a096215 Mark the port as requiring postgresql-11 or higher. Attempting to
build the port with postgres-10 results in:

```
configure: error: Citus is not compatible with the detected PostgreSQL version 10.
```

No PORTREVISION bump, as this will have no effect on the default
packages (which link against postgresql-11) or on anyone who has
successfully built pg_citus.  All that happens is that we detect the
incompatible postgresql version earlier in the build process and error
out sooner.

PR:		245958
Reported by:	rainer@ultra-secure.de
2020-04-27 20:51:18 +00:00
Tobias C. Berner
502dff7bd0 databases/kbibtex: update to 0.9.2 2020-04-27 14:38:57 +00:00
Matthew Seaman
433f40d7ba Upgrade to 2.3.1
Release Notes: https://www.2ndquadrant.com/en/resources/pglogical/release-notes/
2020-04-27 06:10:44 +00:00
Sunpoet Po-Chuan Hsieh
5f90e71ab9 Update to 1.16.1
Changes:	https://github.com/frictionlessdata/tableschema-py/blob/master/README.md#changelog
		https://github.com/frictionlessdata/tableschema-py/commits/master
2020-04-26 11:57:42 +00:00
Sunpoet Po-Chuan Hsieh
859c2267fa Update to 1.11.10
Changes:	https://github.com/dbcli/pgspecial/blob/master/changelog.rst
2020-04-26 11:57:37 +00:00
Muhammad Moinur Rahman
f32e256ae9 databases/geoserver-mysql-plugin: Update version 2.16.2=>2.17.0 2020-04-25 10:19:27 +00:00
Sergey A. Osokin
6392bc60e4 Update to the recent commit. 2020-04-25 02:49:21 +00:00
Sunpoet Po-Chuan Hsieh
d432d15eee Update to 0.783
Changes:	https://metacpan.org/changes/distribution/Rose-DB
2020-04-24 18:06:51 +00:00
Sunpoet Po-Chuan Hsieh
01bb74e572 Update to 1.16.0
Changes:	https://github.com/frictionlessdata/tableschema-py/blob/master/README.md#changelog
		https://github.com/frictionlessdata/tableschema-py/commits/master
2020-04-24 18:03:08 +00:00
Sunpoet Po-Chuan Hsieh
cd1825d158 Update BUILD_DEPENDS: chase PORTEPOCH bump in r524241 2020-04-24 18:03:03 +00:00
Sunpoet Po-Chuan Hsieh
a48d9e3520 Update to 3.11.0
Changes:	https://metacpan.org/changes/distribution/DBD-Pg
2020-04-24 18:02:42 +00:00
Dmitri Goutnik
0f95d7ceae databases/pspg: Update to 3.0.7
Reported by:	portscout
2020-04-24 16:05:37 +00:00
Muhammad Moinur Rahman
a03d6c1abc databases/freetds-devel: Update version 1.1.108=>1.1.162 2020-04-24 15:09:34 +00:00
Muhammad Moinur Rahman
ed39bc715d databases/freetds: Update version 1.1.26=>1.1.33 2020-04-24 15:05:27 +00:00
Cy Schubert
1ff56b9f93 Fix PowerPC segfault.
The segfault fix was originally developed by our upstream, sqlite.org,
to address S/390 and Sparc segfaults, both of which are big endian.
Our PowerPC is also big endian, which this patch also fixes.

Inspired by:	src r360223
Approved by:	Approved by: portmgr (blanket: run-time bugfix)
Obtained from:	https://www.sqlite.org/src/vinfo/04885763c4cd00cb?diff=1
		https://sqlite.org/forum/forumpost/672291a5b2
2020-04-24 03:53:50 +00:00
Jan Beich
ffb8eb82e5 devel/icu: update to 67.1
Changes:	http://site.icu-project.org/download/67
ABI:		https://abi-laboratory.pro/tracker/timeline/icu4c/
Reported by:	GitHub (watch releases)
2020-04-23 20:14:49 +00:00
Tobias C. Berner
cb08bca159 Update KDE Applications (release-service) to 20.04
KDE's April 2020 Apps Update

A new bundle of KDE applications is here! In these releases, you can expect to
find more features, stability improvements, and more user-friendly tools that
will help you work more effectively.

There are dozens of changes to look forward to in most of your favorite
applications. Take Dolphin, for example. Windows Samba shares are now fully
discoverable.

On the topic of playing music: the Elisa music player is adding features by
leaps and bounds. This release brings a new “Now Playing” view, easy
accessibility through the system tray, and an option to minimize the playlist
whenever you want. Thanks to the recently-added visual shuffle mode, it’s much
easier to rearrange your music in the playlists.

These are just the highlights of what’s new in KDE’s applications this month.
Read on to find out about everything we’ve prepared for you.

Announcement:
	https://kde.org/announcements/releases/2020-04-apps-update/
2020-04-23 17:00:52 +00:00
Muhammad Moinur Rahman
a1b4c578b3 databases/postgresql-repmgr: Update version 5.0.0=>5.1.0
Reported by:	waldemar.dick@wdick.de
MFH:		2020Q2 (bug fix)
Relnotes:	https://repmgr.org/docs/current/release-5.1.0.html
2020-04-22 21:44:48 +00:00
Sunpoet Po-Chuan Hsieh
9544269ad1 Remove outdated BROKEN_RUBY24 after lang/ruby24 removal 2020-04-22 21:29:30 +00:00
Sunpoet Po-Chuan Hsieh
935730a770 Remove outdated BROKEN_RUBY24 after lang/ruby24 removal 2020-04-22 21:29:25 +00:00
Sunpoet Po-Chuan Hsieh
a978979c5f Update to 3.31.1
Changes:	https://github.com/rogerbinns/apsw/releases
		https://rogerbinns.github.io/apsw/changes.html
2020-04-22 21:26:23 +00:00
Wen Heping
1408592b31 - Update to 1.15.2 2020-04-22 10:34:48 +00:00
Sunpoet Po-Chuan Hsieh
661dca5596 Fix build on powerpc
PR:		245696
Submitted by:	pkubaj
2020-04-21 19:48:20 +00:00
Sunpoet Po-Chuan Hsieh
8a0b4423cb Add LICENSE_FILE 2020-04-21 19:37:00 +00:00
Sunpoet Po-Chuan Hsieh
a40eb5559f Add LICENSE_FILE
- Use TEST_DEPENDS for test dependency
2020-04-21 19:36:55 +00:00
Sunpoet Po-Chuan Hsieh
3a3552ebae Add LICENSE_FILE 2020-04-21 19:36:50 +00:00
Sunpoet Po-Chuan Hsieh
eadde79b84 Cosmetic change 2020-04-21 19:36:43 +00:00
Sunpoet Po-Chuan Hsieh
0b54add41f Cosmetic change 2020-04-21 19:36:35 +00:00
Sunpoet Po-Chuan Hsieh
dd8252f6e6 Cosmetic change 2020-04-21 19:36:30 +00:00
Sunpoet Po-Chuan Hsieh
34f069aabc Cosmetic change 2020-04-21 19:36:23 +00:00