pkgsrc/databases
adam bd9d2b192c py-alembic: updated to 1.7.5
1.7.5
Released: November 11, 2021
bug

[bug] [tests]
Adjustments to the test suite to accommodate for error message changes occurring as of SQLAlchemy 1.4.27.
1.7.4
Released: October 6, 2021
bug

[bug] [regression]
Fixed a regression that prevented the use of post write hooks on python version lower than 3.9
[bug] [environment]
Fixed issue where the MigrationContext.autocommit_block() feature would fail to function when using a SQLAlchemy engine using 2.0 future mode.

1.7.3
Released: September 17, 2021
bug

[bug] [mypy]
Fixed type annotations for the “constraint_name” argument of operations create_primary_key(), create_foreign_key(). Pull request courtesy TilmanK.

1.7.2
Released: September 17, 2021
bug

[bug] [typing]
Added missing attributes from context stubs.

[bug] [mypy]
Fixed an import in one of the .pyi files that was triggering an assertion error in some versions of mypy.

[bug] [ops] [regression]
Fixed issue where registration of custom ops was prone to failure due to the registration process running exec() on generated code that as of the 1.7 series includes pep-484 annotations, which in the case of end user code would result in name resolution errors when the exec occurs. The logic in question has been altered so that the annotations are rendered as forward references so that the exec() can proceed.

1.7.1
Released: August 30, 2021
bug

[bug] [installation]
Corrected “universal wheel” directive in setup.cfg so that building a wheel does not target Python 2. The PyPi files index for 1.7.0 was corrected manually. Pull request courtesy layday.

[bug] [pep484]
Fixed issue in generated .pyi files where default values for Optional arguments were missing, thereby causing mypy to consider them as required.

[bug] [batch] [regression]
Fixed regression in batch mode due to 883 where the “auto” mode of batch would fail to accommodate any additional migration directives beyond encountering an add_column() directive, due to a mis-application of the conditional logic that was added as part of this change, leading to “recreate” mode not being used in cases where it is required for SQLite such as for unique constraints.

1.7.0
Released: August 30, 2021
changed

[changed] [installation]
Alembic 1.7 now supports Python 3.6 and above; support for prior versions including Python 2.7 has been dropped.
[changed] [installation]
Make the python-dateutil library an optional dependency. This library is only required if the timezone option is used in the Alembic configuration. An extra require named tz is available with pip install alembic[tz] to install it.

[changed] [installation]
The dependency on pkg_resources which is part of setuptools has been removed, so there is no longer any runtime dependency on setuptools. The functionality has been replaced with importlib.metadata and importlib.resources which are both part of Python std.lib, or via pypy dependency importlib-metadata for Python version < 3.8 and importlib-resources for Python version < 3.9 (while importlib.resources was added to Python in 3.7, it did not include the “files” API until 3.9).

feature

[feature] [environment]
Enhance version_locations parsing to handle paths containing spaces. The new configuration option version_path_separator specifies the character to use when splitting the version_locations string. The default for new configurations is version_path_separator = os, which will use os.pathsep (e.g., ; on Windows).

[feature] [tests]
Created a “test suite” similar to the one for SQLAlchemy, allowing developers of third-party dialects to test their code against a set of Alembic tests that have been specially selected to exercise back-end database operations. At the time of release, third-party dialects that have adopted the Alembic test suite to verify compatibility include CockroachDB and SAP ASE (Sybase).

[feature] [general]
pep-484 type annotations have been added throughout the library. Additionally, stub .pyi files have been added for the “dynamically” generated Alembic modules alembic.op and alembic.config, which include complete function signatures and docstrings, so that the functions in these namespaces will have both IDE support (vscode, pycharm, etc) as well as support for typing tools like Mypy. The files themselves are statically generated from their source functions within the source tree.
usecase

[usecase] [batch]
Named CHECK constraints are now supported by batch mode, and will automatically be part of the recreated table assuming they are named. They also can be explicitly dropped using op.drop_constraint(). For “unnamed” CHECK constraints, these are still skipped as they cannot be distinguished from the CHECK constraints that are generated by the Boolean and Enum datatypes.
Note that this change may require adjustments to migrations that drop or rename columns which feature an associated named check constraint, such that an additional op.drop_constraint() directive should be added for that named constraint as there will no longer be an associated column for it; for the Boolean and Enum datatypes, an existing_type keyword may be passed to BatchOperations.drop_constraint as well.
See also Changing the Type of Boolean, Enum and other implicit CHECK datatypes
Including CHECK constraints

bug

[bug] [operations]
Fixed regression due to 803 where the .info and .comment attributes of Table would be lost inside of the DropTableOp class, which when “reversed” into a CreateTableOp would then have lost these elements. Pull request courtesy Nicolas CANIART.

[bug] [batch] [sqlite]
Batch “auto” mode will now select for “recreate” if the add_column() operation is used on SQLite, and the column itself meets the criteria for SQLite where ADD COLUMN is not allowed, in this case a functional or parenthesized SQL expression or a Computed (i.e. generated) column.

[bug] [commands]
Re-implemented the python-editor dependency as a small internal function to avoid the need for external dependencies.

[bug] [postgresql]
Fixed issue where usage of the PostgreSQL postgresql_include option within a Operations.create_index() would raise a KeyError, as the additional column(s) need to be added to the table object used by the construct internally. The issue is equivalent to the SQL Server issue fixed in 513. Pull request courtesy Steven Bronson.

1.6.5
Released: May 27, 2021
bug

[bug] [autogenerate]
Fixed issue where dialect-specific keyword arguments within the DropIndex operation directive would not render in the autogenerated Python code. As support was improved for adding dialect specific arguments to directives as part of 803, in particular arguments such as “postgresql_concurrently” which apply to the actual create/drop of the index, support was needed for these to render even in a drop index operation. Pull request courtesy Jet Zhou.

1.6.4
Released: May 24, 2021
bug

[bug] [op directives] [regression]
Fixed regression caused by just fixed 844 that scaled back the filter for unique=True/index=True too far such that these directives no longer worked for the op.create_table() op, this has been fixed.

1.6.3
Released: May 21, 2021
bug

[bug] [autogenerate] [regression]
Fixed 1.6-series regression where UniqueConstraint and to a lesser extent Index objects would be doubled up in the generated model when the unique=True / index=True flags were used.

[bug] [autogenerate]
Fixed a bug where paths defined in post-write hook options would be wrongly escaped in non posix environment (Windows).

[bug] [regression] [versioning]
Fixed regression where a revision file that contained its own down revision as a dependency would cause an endless loop in the traversal logic.

1.6.2
Released: May 6, 2021
bug

[bug] [regression] [versioning]
Fixed additional regression nearly the same as that of 838 just released in 1.6.1 but within a slightly different codepath, where “alembic downgrade head” (or equivalent) would fail instead of iterating no revisions.

1.6.1
Released: May 6, 2021
bug

[bug] [regression] [versioning]
Fixed regression in new revisioning traversal where “alembic downgrade base” would fail if the database itself were clean and unversioned; additionally repairs the case where downgrade would fail if attempting to downgrade to the current head that is already present.

1.6.0
Released: May 3, 2021
feature

[feature] [autogenerate]
Fix the documentation regarding the default command-line argument position of the revision script filename within the post-write hook arguments. Implement a REVISION_SCRIPT_FILENAME token, enabling the position to be changed. Switch from str.split() to shlex.split() for more robust command-line argument parsing.

[feature]
Implement a .cwd (current working directory) suboption for post-write hooks (of type console_scripts). This is useful for tools like pre-commit, which rely on the working directory to locate the necessary config files. Add pre-commit as an example to the documentation. Minor change: rename some variables from ticket 819 to improve readability.

bug

[bug] [autogenerate]
Refactored the implementation of MigrateOperation constructs such as CreateIndexOp, CreateTableOp, etc. so that they no longer rely upon maintaining a persistent version of each schema object internally; instead, the state variables of each operation object will be used to produce the corresponding construct when the operation is invoked. The rationale is so that environments which make use of operation-manipulation schemes such as those those discussed in Fine-Grained Autogenerate Generation with Rewriters are better supported, allowing end-user code to manipulate the public attributes of these objects which will then be expressed in the final output, an example is some_create_index_op.kw["postgresql_concurrently"] = True.
Previously, these objects when generated from autogenerate would typically hold onto the original, reflected element internally without honoring the other state variables of each construct, preventing the public API from working.

[bug] [environment]
Fixed regression caused by the SQLAlchemy 1.4/2.0 compatibility switch where calling .rollback() or .commit() explicitly within the context.begin_transaction() context manager would cause it to fail when the block ended, as it did not expect that the transaction was manually closed.

[bug] [autogenerate]
Improved the rendering of op.add_column() operations when adding multiple columns to an existing table, so that the order of these statements matches the order in which the columns were declared in the application’s table metadata. Previously the added columns were being sorted alphabetically.

[bug] [versioning]
The algorithm used for calculating downgrades/upgrades/iterating revisions has been rewritten, to resolve ongoing issues of branches not being handled consistently particularly within downgrade operations, as well as for overall clarity and maintainability. This change includes that a deprecation warning is emitted if an ambiguous command such as “downgrade -1” when multiple heads are present is given.
In particular, the change implements a long-requested use case of allowing downgrades of a single branch to a branchpoint.
Huge thanks to Simon Bowly for their impressive efforts in successfully tackling this very difficult problem.

[bug] [batch] ¶
Added missing batch_op.create_table_comment(), batch_op.drop_table_comment() directives to batch ops.
2021-11-14 18:42:37 +00:00
..
abook databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
adodb databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
apache-cassandra databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
apache-cassandra2 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
apache-solr databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
cdb databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
clisp-bdb databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
clisp-gdbm databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
clisp-pgsql databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
couchdb databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
csharp-mysql databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
cstore databases: Remove SHA1 distfile hashes 2021-10-07 13:35:05 +00:00
datadraw databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
db databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
db3 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
db4 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
db5 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
db6 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
db18 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
dbfsak databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
deforaos-libdatabase databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
edb databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
elasticsearch databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
erlang-eredis databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
erlang-p1_mysql databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
erlang-p1_pgsql databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
erlang-sqlite3 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
freetds databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
gdbm gdbm: update to 1.22. 2021-11-01 18:37:05 +00:00
gdbm_compat gdbm_compat: reset PKGREVISION after update 2020-08-24 07:59:26 +00:00
gdbm_primitive databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
geneweb databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
gigabase databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
gnats databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
gnome-mime-data databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
go-ldap Revbump all Go packages after go117 update 2021-11-05 20:02:39 +00:00
go-tiedot Revbump all Go packages after go117 update 2021-11-05 20:02:39 +00:00
gobang databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
gom databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
gourmet databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
gramps5 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
gtkdbfeditor databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
gtksql databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
guile-pg databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
guile-sqlite3 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
hiredis databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
hsqldb18 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
idzebra databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
influxdb Revbump all Go packages after go117 update 2021-11-05 20:02:39 +00:00
innotop databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
iodbc databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ipa_sdb databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
java-db3
java-qdbm
java-tokyocabinet databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
jdbc-mysql5 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
jdbc-mysql31 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
jdbc-mysql51 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
kldap databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
kyotocabinet databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
lbdb databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ldapvi databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ldb ldb: updated to 2.2.3 2021-11-10 13:32:10 +00:00
leveldb databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
libcassandra databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
libdbh2 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
libdbi databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
libdbi-driver-mysql
libdbi-driver-pgsql
libdbi-driver-sqlite
libdbi-driver-sqlite3 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
libgda databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
libgda-mysql Revbump for MySQL default change 2021-06-23 20:33:06 +00:00
libgda-postgres revbump for textproc/icu 2021-04-21 11:40:12 +00:00
libmongo-client databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
libpqxx databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
libtcd databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
libzdb databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
liquibase databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
lmdb databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
lua-dbi databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
lua-dbi-mysql Revbump for MySQL default change 2021-06-23 20:33:06 +00:00
lua-dbi-postgresql databases: Add lua-dbi 2020-07-09 16:12:57 +00:00
lua-dbi-sqlite3 revbump for textproc/icu 2021-04-21 11:40:12 +00:00
lua-lsqlite3 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
lua-sql-mysql databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
lua-sql-postgres
lua-sql-sqlite3 revbump for textproc/icu 2021-04-21 11:40:12 +00:00
lua-sqlite3 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
lua-tokyocabinet databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
mariadb104-client databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
mariadb104-server *: recursive bump for heimdal 7.7.0 2021-10-21 07:46:31 +00:00
mariadb105-client databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
mariadb105-server *: recursive bump for heimdal 7.7.0 2021-10-21 07:46:31 +00:00
mariadb106-client databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
mariadb106-server *: recursive bump for heimdal 7.7.0 2021-10-21 07:46:31 +00:00
metakit-lib databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
mongo-c-driver databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
mongo-tools databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
mongodb databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
mongodb3 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
myodbc databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
mysql-cluster databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
mysql-connector-c++ databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
mysql-workbench databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
mysql56-client databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
mysql56-server mysql56-server: note this version is EOL 2021-09-09 00:42:04 +00:00
mysql57-client mysql57-client: Support OpenSSL 3. 2021-11-10 11:03:52 +00:00
mysql57-server mysql57: updated to 5.7.36 2021-10-19 18:57:37 +00:00
mysql80-client databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
mysql80-server *: Revbump for protobuf-3.19.0 2021-11-11 12:02:46 +00:00
mysqld_exporter Revbump all Go packages after go117 update 2021-11-05 20:02:39 +00:00
mysqltuner databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
mytop databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
nss-pgsql databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
nss_ldap databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ocaml-dbm databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ocaml-ldap databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ocaml-macaque databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ocaml-mysql databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ocaml-sqlite3 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
odbc-postgresql databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
openldap databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
openldap-client openldap-client: Fix older software that hardcodes libldap_r. 2021-08-31 12:45:10 +00:00
openldap-cloak openldap: updated to 2.5.7 2021-08-23 09:58:57 +00:00
openldap-doc databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
openldap-nops openldap: updated to 2.5.7 2021-08-23 09:58:57 +00:00
openldap-server openldap: updated to 2.5.8 2021-10-12 09:10:05 +00:00
openldap-smbk5pwd *: recursive bump for heimdal 7.7.0 2021-10-21 07:46:31 +00:00
oraedit databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-AddressBook databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-AnyEvent-BDB databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Apache-DBI databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-App-Sqitch databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-BDB databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-BerkeleyDB databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Catalyst-Model-DBIC-Schema databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Catalyst-Model-RDBO databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-CatalystX-CRUD databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-CatalystX-CRUD-Model-RDBO databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-CatalystX-CRUD-ModelAdapter-DBIC databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-CDB_File databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Class-DBI databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Class-DBI-AbstractSearch databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Class-DBI-BaseDSN databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Class-DBI-Pg databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Class-DBI-Plugin databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Class-DBI-Plugin-DeepAbstractSearch databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Dancer-Plugin-DBIC databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Data-Table databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DB_File-Lock databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBD-CSV databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBD-DB2 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBD-MariaDB Added p5-DBD-MariaDB 2021-11-11 16:53:45 +00:00
p5-DBD-Mock databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBD-mysql databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBD-ODBC databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBD-Oracle databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBD-PgPP databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBD-postgresql databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBD-SQLite databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBD-SQLite2 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBD-Sybase databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBD-XBase databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBI databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBI-Shell databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBICx-Deploy databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBICx-MapMaker databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBICx-Sugar databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBICx-TestDatabase databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBIWrapper databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBIx-Abstract databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBIx-Class databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBIx-Class-Candy databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBIx-Class-Cursor-Cached databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBIx-Class-DigestColumns databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBIx-Class-DynamicDefault databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBIx-Class-EncodedColumn databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBIx-Class-Fixtures databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBIx-Class-Helpers databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBIx-Class-InflateColumn-FS databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBIx-Class-InflateColumn-IP databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBIx-Class-IntrospectableM2M databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBIx-Class-Loader databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBIx-Class-RDBOHelpers databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBIx-Class-Schema-Loader databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBIx-Class-TimeStamp databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBIx-Class-UUIDColumns databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBIx-Class-Validation databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBIx-Connector databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBIx-ContextualFetch databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBIx-Datasource databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBIx-DBSchema databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBIx-Introspector databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBIx-Schema databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBIx-SearchBuilder databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DBM-Deep databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-DublinCore-Record databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Fsdb databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-gdbm *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Ima-DBI databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Jifty-DBI databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-MARC databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-MARC-Record databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-MARC-XML databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-MLDBM databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-MLDBM-Serializer-JSON databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-MLDBM-Sync databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Net-Cassandra databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Net-FileMaker databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Net-MySQL databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-ORLite databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-ORLite-Migrate databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Palm databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Parse-Dia-SQL databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-perl-ldap databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-pgFormatter New package, p5-pgFormatter. From Kogule Ryo in PR pkg/56444. 2021-11-06 15:09:26 +00:00
p5-postgresql databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-qdbm *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Redis databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Rose-DB databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Rose-DB-Object databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Rose-DBx-AutoReconnect databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Rose-DBx-Garden databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Rose-DBx-Garden-Catalyst databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Rose-DBx-Object-MoreHelpers databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Rose-DBx-TestDB databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-RRD-Simple databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Search-QueryParser databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Search-QueryParser-SQL databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Sort-SQL databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-SQL-Abstract databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-SQL-Abstract-Classic databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-SQL-Abstract-Limit databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-SQL-ReservedWords databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-SQL-Statement databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-SQL-Translator databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-sqlrelay revbump for boost-libs 2021-09-29 19:00:02 +00:00
p5-sybperl databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Template-DBI databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-Tie-DBI databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-tokyocabinet databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-tokyotyrant databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
p5-YAML-MLDBM databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
palm-db-tools databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
pear-DB databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
pear-MDB2 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
pear-MDB2_Driver_mysql databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
pear-MDB2_Driver_mysqli databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
pear-MDB2_Driver_pgsql databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
percona-toolkit databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
pg_repack databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
pgadmin3 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
pgbouncer databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
pgbuildfarm databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
pgocaml databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
pgpool databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
pgpool2 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
pgtcl databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
pgtclng databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
php-dba
php-dbx databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
php-ldap
php-mongo databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
php-mongodb databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
php-mssql revbump for boost-libs 2021-09-29 19:00:02 +00:00
php-mysql Revbump for MySQL default change 2021-06-23 20:33:06 +00:00
php-mysqli php-mysqli: enable mysqlnd by default 2021-07-02 15:19:30 +00:00
php-oci8
php-pdo
php-pdo_dblib revbump for boost-libs 2021-09-29 19:00:02 +00:00
php-pdo_mysql php-pdo_mysql: enable mysqlnd 2021-07-02 15:21:35 +00:00
php-pdo_odbc
php-pdo_pgsql
php-pdo_sqlite revbump for textproc/icu 2021-04-21 11:40:12 +00:00
php-pgsql
php-redis databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
php-redis4 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
php-rrd databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
php-sqlite3 revbump for textproc/icu 2021-04-21 11:40:12 +00:00
php-sqlrelay revbump for boost-libs 2021-09-29 19:00:02 +00:00
phpldapadmin databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
phpmyadmin databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
phppgadmin databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
poco-data
poco-data-mysql Revbump for MySQL default change 2021-06-23 20:33:06 +00:00
poco-data-odbc
poco-data-sqlite revbump for textproc/icu 2021-04-21 11:40:12 +00:00
postgres_exporter Revbump all Go packages after go117 update 2021-11-05 20:02:39 +00:00
postgresql-pgroonga databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
postgresql-pljava databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
postgresql-postgis2 *: Revbump for protobuf-3.19.0 2021-11-11 12:02:46 +00:00
postgresql-promscale_extension databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
postgresql-redislog databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
postgresql-timescaledb databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
postgresql-wal2json databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
postgresql10 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
postgresql10-client postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql10-contrib postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql10-docs postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql10-plperl postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql10-plpython postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql10-pltcl postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql10-server postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql11 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
postgresql11-client postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql11-contrib postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql11-docs postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql11-plperl postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql11-plpython postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql11-pltcl postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql11-server postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql12 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
postgresql12-client postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql12-contrib postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql12-docs postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql12-plperl postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql12-plpython postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql12-pltcl postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql12-server postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql13 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
postgresql13-client postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql13-contrib postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql13-docs postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql13-plperl postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql13-plpython postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql13-pltcl postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql13-server postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql14 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
postgresql14-client postgresql14: added version 14.0 2021-10-08 10:23:43 +00:00
postgresql14-contrib postgresql14: added version 14.0 2021-10-08 10:23:43 +00:00
postgresql14-docs postgresql14: added version 14.0 2021-10-08 10:23:43 +00:00
postgresql14-plperl postgresql14: added version 14.0 2021-10-08 10:23:43 +00:00
postgresql14-plpython postgresql14: added version 14.0 2021-10-08 10:23:43 +00:00
postgresql14-pltcl postgresql14: added version 14.0 2021-10-08 10:23:43 +00:00
postgresql14-server postgresql14: added version 14.0 2021-10-08 10:23:43 +00:00
postgresql96 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
postgresql96-client postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql96-contrib postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql96-docs postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql96-plperl postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql96-plpython postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql96-pltcl postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
postgresql96-server postgresql: updated to 13.4, 12.8, 11.13, 10.18, 9.6.23 2021-08-13 11:54:43 +00:00
prometheus Revbump all Go packages after go117 update 2021-11-05 20:02:39 +00:00
promscale Revbump all Go packages after go117 update 2021-11-05 20:02:39 +00:00
pxtools databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-aiosqlite databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-alembic py-alembic: updated to 1.7.5 2021-11-14 18:42:37 +00:00
py-ana databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-apsw databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-asyncpg databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-barman databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-bsddb3 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-carbon databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-cassa databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-cassandra-driver databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-cdb databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-ckanclient databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-couchdb databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-cx_Oracle databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-datapkg databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-dbfread databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-elasticsearch databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-gdbm
py-kb databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-ldap databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-ldap3 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-lmdb databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-metakit
py-mongo databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-mssql databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-multidict databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-mysql-connector databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-mysqlclient databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-mysqldb databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-orderedmultidict databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-peewee py-peewee: updated to 3.14.8 2021-10-29 16:17:23 +00:00
py-pgnotify databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-PgSQL databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-pickleshare databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-postgresql databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-psycopg2 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-pymysql databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-pypika databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-python-sql databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-redis databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-rrdtool databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-sqlalchemy databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-sqlalchemy-i18n databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-sqlalchemy-migrate databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-sqlalchemy-utils databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-sqlite2 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-sqlite3 revbump for textproc/icu 2021-04-21 11:40:12 +00:00
py-sqlparse databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-sqlrelay revbump for boost-libs 2021-09-29 19:00:02 +00:00
py-sqlsoup databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-sybase databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-table databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-tokyocabinet databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-tortoise-orm databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-trytond-ldap-authentication databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-unicodecsv databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
py-whisper databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
qdbm databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
qdbm-cgi
qdbm-plus
qore-freetds-module databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
qore-mysql-module databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
qore-openldap-module databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
qore-pgsql-module databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
qore-sqlite3-module databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
quicklist databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
R-RSQLite databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
R-sqldf databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
rdb databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
redis databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
repmgr databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
rrdtool databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
rrdtool12 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-activeldap databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-activerecord-odbc databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-activerecord52 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-activerecord60 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-activerecord61 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-arel databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-arel-helpers databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-awesome_nested_set databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-data_objects databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-datamapper databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dbd-mysql databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dbd-odbc databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dbd-pg databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dbd-sqlite databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dbd-sqlite3 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dbi databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-adjust databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-aggregates databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-ar-finders databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-cli databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-constraints databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-core databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-do-adapter databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-ferret-adapter databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-is-list databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-is-nested_set databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-is-remixable databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-is-searchable databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-is-state_machine databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-is-tree databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-is-versioned databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-migrations databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-mysql-adapter databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-observer databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-postgres-adapter databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-rest-adapter databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-serializer databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-sqlite-adapter databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-sweatshop databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-tags databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-timestamps databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-transactions databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-types databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-validations databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-dm-yaml-adapter databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-do_mysql databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-do_postgres databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-do_sqlite3 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-gdbm Remove extra RUBY_VERSIONS_ACCEPTED. 2020-12-28 08:20:47 +00:00
ruby-hiera databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-ldap databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-moneta databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-mysql databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-mysql2 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-mysql28 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-odbc databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-pg databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-pg_array_parser databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-qdbm
ruby-rrdtool databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-sequel databases/ruby-sequel: update to 5.50.0 2021-11-09 14:02:52 +00:00
ruby-sqlite databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-sqlite3 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-sqlrelay revbump for boost-libs 2021-09-29 19:00:02 +00:00
ruby-tiny_tds databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-tokyocabinet databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-tokyotyrant databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
ruby-vapor databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
sdbm databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
shared-mime-info databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
skytools databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
slony1 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
soci databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
sql-workbench databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
sqlite databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
sqlite3 databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
sqlite3-docs databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
sqlite3-tcl databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
sqlitebrowser databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
SQLiteCpp databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
sqlrelay databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
sqlrelay-freetds revbump for boost-libs 2021-09-29 19:00:02 +00:00
sqlrelay-mysql revbump for boost-libs 2021-09-29 19:00:02 +00:00
sqlrelay-nodejs revbump for boost-libs 2021-09-29 19:00:02 +00:00
sqlrelay-odbc revbump for boost-libs 2021-09-29 19:00:02 +00:00
sqlrelay-pgsql revbump for boost-libs 2021-09-29 19:00:02 +00:00
sqlrelay-sqlite revbump for boost-libs 2021-09-29 19:00:02 +00:00
sqsh databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
sqsh-motif
sqsh-x11
squirrelsql databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
tcl-fbsql databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
tcl-gdbm databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
tdb databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
timescaledb-tune Revbump all Go packages after go117 update 2021-11-05 20:02:39 +00:00
tinycdb databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
tokyocabinet databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
tokyotyrant databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
unixodbc databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
virtuoso databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
vsqlite++ databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
wiredtiger databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
xsqlmenu databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
yap2lc databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
yasql databases: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:09:13 +00:00
Makefile databases: Spell p5-DBD-MariaDB correctly. 2021-11-14 08:48:40 +00:00