Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6EC7485373 for ; Tue, 24 Oct 2023 14:33:13 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 1AjG7tGtGFWd for ; Tue, 24 Oct 2023 14:33:12 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id BF28385363 for ; Tue, 24 Oct 2023 14:33:12 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B8A57FADC; Tue, 24 Oct 2023 14:33:12 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_169815799297570" MIME-Version: 1.0 Date: Tue, 24 Oct 2023 14:33:12 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/databases/ruby-sequel To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20231024143312.B8A57FADC@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_169815799297570 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Tue Oct 24 14:33:12 UTC 2023 Modified Files: pkgsrc/databases/ruby-sequel: Makefile PLIST distinfo Log Message: databases/ruby-sequel: update to 5.73.0 5.73.0 (2023-10-01) * Handle disconnect errors in ibmdb and jdbc/db2 adapters (jeremyevans) (#2083) * Support skipping transactions in Dataset#{import,paged_each} using :skip_transaction option (jeremyevans) * Add Database#transaction :skip_transaction option to skip creating a transaction or savepoint (jeremyevans) * Stop using a transaction for a single query if calling Dataset#import with a dataset (jeremyevans) * Add paged_operations plugin for paged deletes and updates and other custom operations (jeremyevans) (#2080) * Support to_tsquery: :websearch option to Dataset#full_text_search on PostgreSQL 11+ (jeremyevans) (#2075) * Add MassAssignmentRestriction#model and #column for getting the model instance and related column for mass assignment errors (artofhuman, jeremyevans) (#2079) * Stop using base64 library in column_encryption plugin (jeremyevans) To generate a diff of this commit: cvs rdiff -u -r1.115 -r1.116 pkgsrc/databases/ruby-sequel/Makefile cvs rdiff -u -r1.111 -r1.112 pkgsrc/databases/ruby-sequel/PLIST cvs rdiff -u -r1.114 -r1.115 pkgsrc/databases/ruby-sequel/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_169815799297570 Content-Disposition: inline Content-Length: 2877 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/ruby-sequel/Makefile diff -u pkgsrc/databases/ruby-sequel/Makefile:1.115 pkgsrc/databases/ruby-sequel/Makefile:1.116 --- pkgsrc/databases/ruby-sequel/Makefile:1.115 Sun Sep 3 01:42:32 2023 +++ pkgsrc/databases/ruby-sequel/Makefile Tue Oct 24 14:33:12 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.115 2023/09/03 01:42:32 taca Exp $ +# $NetBSD: Makefile,v 1.116 2023/10/24 14:33:12 taca Exp $ -DISTNAME= sequel-5.72.0 +DISTNAME= sequel-5.73.0 CATEGORIES= databases MAINTAINER= pkgsrc-users@NetBSD.org Index: pkgsrc/databases/ruby-sequel/PLIST diff -u pkgsrc/databases/ruby-sequel/PLIST:1.111 pkgsrc/databases/ruby-sequel/PLIST:1.112 --- pkgsrc/databases/ruby-sequel/PLIST:1.111 Sun Sep 3 01:42:32 2023 +++ pkgsrc/databases/ruby-sequel/PLIST Tue Oct 24 14:33:12 2023 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.111 2023/09/03 01:42:32 taca Exp $ +@comment $NetBSD: PLIST,v 1.112 2023/10/24 14:33:12 taca Exp $ bin/sequel${RUBY_SUFFIX} ${GEM_HOME}/cache/${GEM_NAME}.gem ${GEM_LIBDIR}/CHANGELOG @@ -98,6 +98,7 @@ ${GEM_LIBDIR}/doc/release_notes/5.7.0.tx ${GEM_LIBDIR}/doc/release_notes/5.70.0.txt ${GEM_LIBDIR}/doc/release_notes/5.71.0.txt ${GEM_LIBDIR}/doc/release_notes/5.72.0.txt +${GEM_LIBDIR}/doc/release_notes/5.73.0.txt ${GEM_LIBDIR}/doc/release_notes/5.8.0.txt ${GEM_LIBDIR}/doc/release_notes/5.9.0.txt ${GEM_LIBDIR}/doc/schema_modification.rdoc @@ -351,6 +352,7 @@ ${GEM_LIBDIR}/lib/sequel/plugins/mssql_o ${GEM_LIBDIR}/lib/sequel/plugins/nested_attributes.rb ${GEM_LIBDIR}/lib/sequel/plugins/optimistic_locking.rb ${GEM_LIBDIR}/lib/sequel/plugins/optimistic_locking_base.rb +${GEM_LIBDIR}/lib/sequel/plugins/paged_operations.rb ${GEM_LIBDIR}/lib/sequel/plugins/pg_array_associations.rb ${GEM_LIBDIR}/lib/sequel/plugins/pg_auto_constraint_validations.rb ${GEM_LIBDIR}/lib/sequel/plugins/pg_row.rb Index: pkgsrc/databases/ruby-sequel/distinfo diff -u pkgsrc/databases/ruby-sequel/distinfo:1.114 pkgsrc/databases/ruby-sequel/distinfo:1.115 --- pkgsrc/databases/ruby-sequel/distinfo:1.114 Sun Sep 3 01:42:32 2023 +++ pkgsrc/databases/ruby-sequel/distinfo Tue Oct 24 14:33:12 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.114 2023/09/03 01:42:32 taca Exp $ +$NetBSD: distinfo,v 1.115 2023/10/24 14:33:12 taca Exp $ -BLAKE2s (sequel-5.72.0.gem) = 552d7bdbbdb5ac5e67c3206e65fc7299a91b6ce7ef42ae0a24d74dd11cd0087a -SHA512 (sequel-5.72.0.gem) = 1137653308d9d2d1d9a5cb61b48df56c92829a48e1921c334f97c1d1fabdf85d28fc0e2251a391c4306b09680abf888cf84c9a6ea126859184fca3cbd5d7b10d -Size (sequel-5.72.0.gem) = 823808 bytes +BLAKE2s (sequel-5.73.0.gem) = 5edef1f1b5b34fb7697779f32bbeaf707eb05dac3ce43516ad25f0581291992e +SHA512 (sequel-5.73.0.gem) = 3f93d074cc1314872c6ba89fd520098530dd8ffc0d24b5669e4247808dfb9c258bda6e20e0744134b721a03107418edd6a8944222bbcb31dfda806ab07b15dfa +Size (sequel-5.73.0.gem) = 827392 bytes --_----------=_169815799297570--