| CARVIEW |
Select Language
HTTP/2 200
expires: Thu, 19 Nov 1981 08:52:00 GMT
cache-control: no-store, no-cache, must-revalidate
pragma: no-cache
set-cookie: PHPSESSID=s5mu64t4albfces3fd5sn89ghp; path=/
content-type: text/html; charset=UTF-8
date: Mon, 29 Dec 2025 23:47:12 GMT
server: Apache
pkgsrc.se | The NetBSD package collection
archivers
audio
benchmarks
biology
cad
chat
comms
converters
cross
crosspkgtools
databases
ruby-pg
devel
doc
editors
emulators
filesystems
finance
fonts
games
geography
graphics
ham
inputmethod
lang
mail
math
mbone
meta-pkgs
misc
multimedia
net
news
parallel
pkgtools
print
regress
security
shells
sysutils
textproc
time
wip
wm
www
x11
* = Virtual Category
Path to this page:
./databases/ruby-pg, Ruby extension for PostgreSQL
[
Branch: CURRENT, Version: 1.6.2, Package name: ruby32-pg-1.6.2, Maintainer: pkgsrc-users
This is the extension library to access a PostgreSQL database from Ruby.
This library works with PostgreSQL 7.4 and later.
Required to run:
[databases/postgresql14-client] [lang/ruby31-base]
Navigation:
-
Browse pkgsrc
(this page)
archivers
audio
benchmarks
biology
cad
chat
comms
converters
cross
crosspkgtools
databases
ruby-pgdevel
doc
editors
emulators
filesystems
finance
fonts
games
geography
graphics
ham
inputmethod
lang
math
mbone
meta-pkgs
misc
multimedia
net
news
parallel
pkgtools
regress
security
shells
sysutils
textproc
time
wip
wm
www
x11
* = Virtual Category
Path to this page:
./databases/ruby-pg, Ruby extension for PostgreSQL
[
CVSweb ] [
Homepage ] [
RSS ] [
Required by ] [
Add to tracker ]
Branch: CURRENT, Version: 1.6.2, Package name: ruby32-pg-1.6.2, Maintainer: pkgsrc-users
This is the extension library to access a PostgreSQL database from Ruby.
This library works with PostgreSQL 7.4 and later.
Required to run:
[databases/postgresql14-client] [lang/ruby31-base]
Master sites:
Filesize: 219.5 KBVersion history: (Expand)
- (2025-09-15) Updated to version: ruby32-pg-1.6.2
- (2025-08-11) Updated to version: ruby32-pg-1.6.1
- (2025-08-02) Updated to version: ruby32-pg-1.6.0
- (2025-07-15) Package has been reborn
- (2025-07-15) Package deleted from pkgsrc
- (2024-10-27) Updated to version: ruby32-pg-1.5.9
CVS history: (Expand)
| 2025-09-15 16:45:56 by Takahiro Kambe | Files touched by this commit (3) | |
Log message: databases/ruby-pg: update to 1.6.2 1.6.2 (2025-09-02) * Remove several absolute paths from native binaries which pointed to build directories. #668 * Fix bad fallback path to pg_service.conf. #666 * Use rbpg_ prefix for base64_* functions to avoid name clashes with functions provided by other libraries like Heimdal on Macos. #667 * Raise a more descriptive error message in case of pg_ext LoadError. #664 * Freeze some constants to make them available in a Ractor context. #660 * Several documentation improvements. * Update native binary gems to OpenSSL-3.5.2, krb5-1.22.1 and PostgreSQL-17.6. |
| 2025-08-11 16:29:40 by Takahiro Kambe | Files touched by this commit (2) | |
Log message: databases/ruby-pg: update to 1.6.1 1.6.1 (2025-08-03) * Add binary gems for platforms aarch64-linux-musl and x86_64-linux-musl without the need to install package gcompat. #657. * Serialize CompositeCoder#dimensions only when set. #652 This fixes the compatibility to pg-1.5.9, when deserializing Marshal data from pg-1.6, as long as the new attribute isn't used. * Remove dependency to MSYS2 package "postgresql" from binary Windows gem #654 |
| 2025-08-02 05:25:05 by Takahiro Kambe | Files touched by this commit (3) | |
Log message: databases/ruby-pg: update to 1.6.0 1.6.0 (2025-07-27) Added: * Add binary gems for Ruby 3.4. * Add fat binary gem for platform aarch64-mingw-ucrt aka Windows on ARM #626, for platform Macos on Intel and ARM #643, for platform aarch64-linux #646 and for platform x86_64-linux #551. * Update fat binary gem to OpenSSL-3.5.1 and PostgreSQL-17.5. * Add a patch to libpq to avoid starvation on bigger SSL records, which some database engines other than vanilla PostgreSQL use. This patch applies to platform specific binary gems only. #616 * Add support for new query cancel functions of PostgreSQL-17. This adds the new class PG::CancelConnection which provides the ability to cancel a query per blocking or per non-blocking functions. If the new functions are available they are used and the older are no longer compiled in. This way we can get rid of reading out the internal PGcancel struct by Connection#backend_key. #614 * Add PG::BinaryDecoder::Array and PG::BinaryEncoder::Array to parse and encode PostgreSQL arrays in binary format. #603 * Add possibility to define the number of array dimensions to be encoded. Setting dimensions is especially useful, when a Record shall be encoded into an Array, since the Array encoder can not distinguish if the array shall be encoded as a higher dimension or as a record otherwise. #622 * Add Connection#set_chunked_rows_mode #610 * Add PG::Connection#close_prepared, PG::Connection#close_portal, PG::Connection#send_close_prepared and PG::Connection#send_close_portal which are new in PostgreSQL-17. #611 * Add Connection#send_pipeline_sync, async_pipeline_sync and release GVL at PQ(sendP|P)ipelineSync. #612 * Add MINGW package dependency which is resolved by RubyInstaller. #617 * Change conn.server_version and conn.protocol_version to raise instead of return 0 on error. #632 * Fix connecting to multiple hosts after connnect_timeout. #637 * Fix making PG::BasicTypeMapForQueries shareable for Ractor in ruby-3.5. #636 * Fix missing array input verification in PG::TypeMapByColumn. This could cause a segfault. #620 * Rename History.md to CHANGELOG.md, which is more common. #642 Removed: * Drop support of Ruby < 2.7 #606 * Drop support of PostgreSQL < 10 #606 * Remove workaround for Truffleruby < 21.3.0 #613 |
| 2024-10-27 14:30:34 by Takahiro Kambe | Files touched by this commit (3) | |
Log message: databases/ruby-pg: update to 1.5.9 1.5.9 (2024-10-24) * Enable thread safety in static OpenSSL build for Windows. #595 * Remove raising conect_timeout from 1 to 2 seconds. #590 * Fix binary copy_data in Ractor context. #594 * Exclude CI files and hidden files from built gem. #591 This is to simplify security inspection. * Update error classes to PostgreSQL-17. * Update Windows fat binary gem to OpenSSL-3.4.0 and PostgreSQL-17.0. |
| 2024-09-18 16:45:39 by Takahiro Kambe | Files touched by this commit (2) | |
Log message: databases/ruby-pg: update to 1.5.8 1.5.7 (2024-07-28) * Remove deprecated use of fptr->fd.#562 Direct access is disallowed since ruby-3.4. * Make pgconn_connect_poll close the socket prior to calling PQconnectPoll. #564 This could result in an exception while connecting when used multi threaded. * Fix several typos and improve spelling in documentation and code. #566 * Add missing PG::RollbackTransaction as an option to exit conn.transaction. #560 Usage like in rails: https://api.rubyonrails.org/classes/ActiveRecord/Rollback.html * Don't print a warning when bigdecimal is required on ruby-3.4+ #574 * Update Windows fat binary gem to OpenSSL-3.3.1 and PostgreSQL-16.3. 1.5.8 (2024-09-06) * Fix host list duplication every time conn.reset is used. #586 * Add default decoder for anonymous record types to BasicTypeRegistry #579 * Update Windows fat binary gem to OpenSSL-3.3.2 and PostgreSQL-16.4. |
| 2024-03-03 09:16:48 by Takahiro Kambe | Files touched by this commit (3) | |
Log message: databases/ruby-pg: update to 1.5.6 1.5.6 (2024-03-01) * Renew address resolution (DNS) in conn.reset. #558 This is important, if DNS is used for load balancing, etc. * Make bigdecimal an optional dependency. #556 It's a gem in ruby-3.4+, so that users shouldn't be forced to use it. |
| 2024-02-19 15:54:59 by Takahiro Kambe | Files touched by this commit (3) | |
Log message: databases/ruby-pg: update to 1.5.5 1.5.5 (2024-02-15) * Explicitly retype timespec fields to int64_t to fix compatibility with 32bit arches. #547 * Fix possible buffer overflows in PG::BinaryDecoder::CopyRow on 32 bit systems. #548 * Add binary Windows gems for Ruby 3.3. * Update Windows fat binary gem to OpenSSL-3.2.1 and PostgreSQL-16.2. |
| 2023-09-03 03:39:54 by Takahiro Kambe | Files touched by this commit (2) | |
Log message: databases/ruby-pg: update to 1.5.4 1.5.4 (2023-09-01) * Fix compiling the pg extension with MSVC 2022. #535 * Set PG::Connection's encoding even if setting client_encoding on connection startup fails. #541 * Don't set the server's client_encoding if it's unnecessary. #542 This is important for connection proxies, who disallow configuration settings. * Update Windows fat binary gem to OpenSSL-3.1.2 and PostgreSQL-15.4. |
