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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 50d03a3602532733cb2fbf3fcd9dd9eb10b0e20b3426dac75a6f68f6463e57b7
4
- data.tar.gz: 28131fd9891ef1b4080f2be3d33ece022dfd80ac6b6fe2e6e817909c8ed1a8a5
3
+ metadata.gz: e314b891dc2ddfcb46fd85b01aa5867af39fba5fea4d349921e487b1b5190319
4
+ data.tar.gz: 96820e836cdccdb3d961a1a9ab16fd254ce977e95bcdc78d73649ad94f26e5c2
5
5
  SHA512:
6
- metadata.gz: 4c03963e7fe40f6bde3e206e0c1c4bc0f134888945bf059269298641962574ed3443700155f5a2dac0a540bc5263c22cdc0ec6301f2aa8c32cd5fdaa455c0684
7
- data.tar.gz: e198b4992c8bb4ea293d9f403b9c7d0036cd0292deff481041f33257c2cdec9631e96d97f42186d2e65a6fb353d051dc7f38e5c190c2616b7550dcc158bcfed4
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.1o'
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
@@ -1,4 +1,4 @@
1
1
  module PG
2
2
  # Library version
3
- VERSION = '1.4.1'
3
+ VERSION = '1.4.2'
4
4
  end
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.1
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-06-24 00:00:00.000000000 Z
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