pg 1.4.1 → 1.4.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/History.rdoc +8 -0
- data/Rakefile.cross +1 -1
- data/lib/pg/connection.rb +1 -1
- data/lib/pg/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +2 -2
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8fe333d872d6b92992e5e25bf9cbcef4ca5a1b6d80d844d71f65bd3e4939a318
|
4
|
+
data.tar.gz: 5befd787deeb31a87ff578f64b88b793337d05c2c09a3b11b94acbb140ea9718
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4ce4ae607591a8b549a4443e3531e3c538ddcfaf3da40478e30fc04413f7864dc52d95ae3a7e94b3891adfd384e44474e0a8035f6e9b7be2f19143c5d9150657
|
7
|
+
data.tar.gz: 4f74125642ee9ed370b679703fac32d286732d27001b66af5c09460f054b0729a5c19d31e449b3807d4d6176e803e63d1d32a6bd1944ee0a34ff3c4527836c2a
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/History.rdoc
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
== v1.4.2 [2022-07-27] Lars Kanis <lars@greiz-reinsdorf.de>
|
2
|
+
|
3
|
+
Bugfixes:
|
4
|
+
|
5
|
+
- Properly handle empty host parameter when connecting. #471
|
6
|
+
- Update Windows fat binary gem to OpenSSL-1.1.1q.
|
7
|
+
|
8
|
+
|
1
9
|
== v1.4.1 [2022-06-24] Lars Kanis <lars@greiz-reinsdorf.de>
|
2
10
|
|
3
11
|
Bugfixes:
|
data/Rakefile.cross
CHANGED
@@ -31,7 +31,7 @@ class CrossLibrary < OpenStruct
|
|
31
31
|
self.host_platform = toolchain
|
32
32
|
|
33
33
|
# Cross-compilation constants
|
34
|
-
self.openssl_version = ENV['OPENSSL_VERSION'] || '1.1.
|
34
|
+
self.openssl_version = ENV['OPENSSL_VERSION'] || '1.1.1q'
|
35
35
|
self.postgresql_version = ENV['POSTGRESQL_VERSION'] || '14.4'
|
36
36
|
|
37
37
|
# Check if symlinks work in the current working directory.
|
data/lib/pg/connection.rb
CHANGED
@@ -699,7 +699,7 @@ class PG::Connection
|
|
699
699
|
c = connect_internal(oopts, errors)
|
700
700
|
return c if c
|
701
701
|
end
|
702
|
-
elsif iopts[:host]
|
702
|
+
elsif iopts[:host] && !iopts[:host].empty?
|
703
703
|
# Resolve DNS in Ruby to avoid blocking state while connecting, when it ...
|
704
704
|
ihosts = iopts[:host].split(",", -1)
|
705
705
|
|
data/lib/pg/version.rb
CHANGED
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pg
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.4.
|
4
|
+
version: 1.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Granger
|
@@ -36,7 +36,7 @@ cert_chain:
|
|
36
36
|
oL1mUdzB8KrZL4/WbG5YNX6UTtJbIOu9qEFbBAy4/jtIkJX+dlNoFwd4GXQW1YNO
|
37
37
|
nA==
|
38
38
|
-----END CERTIFICATE-----
|
39
|
-
date: 2022-
|
39
|
+
date: 2022-07-27 00:00:00.000000000 Z
|
40
40
|
dependencies: []
|
41
41
|
description: Pg is the Ruby interface to the PostgreSQL RDBMS. It works with PostgreSQL
|
42
42
|
9.3 and later.
|
metadata.gz.sig
CHANGED
Binary file
|