pg 1.4.1-x64-mingw-ucrt → 1.4.2-x64-mingw-ucrt
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/3.1/pg_ext.so +0 -0
- data/lib/pg/connection.rb +1 -1
- data/lib/pg/version.rb +1 -1
- data/lib/x64-mingw-ucrt/libpq.dll +0 -0
- 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: e314b891dc2ddfcb46fd85b01aa5867af39fba5fea4d349921e487b1b5190319
|
4
|
+
data.tar.gz: 96820e836cdccdb3d961a1a9ab16fd254ce977e95bcdc78d73649ad94f26e5c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd853ba3e8b1012fa1a37746d87763e795f53eed74b85341b5050308d4c69ff0129bfe13fd5e05f9548e0fdbe932c904b0a30c0646a8b036ea29e87222b0fcb5
|
7
|
+
data.tar.gz: 87b218527cfb921065de9561fe42dea9f082c1c924658ced529d222cc51aba439ce186c2fb6901aab13241647ecfcbe1ec2c3f30ed0b8160f2dea7e8fc3e8a17
|
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/3.1/pg_ext.so
CHANGED
Binary file
|
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
Binary file
|
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: x64-mingw-ucrt
|
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
|