pg 1.4.1-x86-mingw32 → 1.4.2-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 76778e4d8d481861578ea02d5f722abda7f3f06d691efbc852616c0ecf1413cf
4
- data.tar.gz: fde8ff4c2a14d46fcccb3307b6d1198757ed4f8b64bbf3ce8f5237e1c97c603b
3
+ metadata.gz: ee7a63a506afa6472f3664914858259c59caf05c9eaac6e1adf00acf453dff26
4
+ data.tar.gz: 8dfdb41d719ea6d34693ad251e2a0fd00ebd0b613ad04ef67e9d41fcf896c424
5
5
  SHA512:
6
- metadata.gz: a881f889485b205da00d4b15537b0311eff4a7394be049746c35065b3930b6fd10c8eb15a553e1d55851888fdf476fbe1691a9a3c56f28e83766ff1fa912adb9
7
- data.tar.gz: ce0840b31f0f61c7e5c2ebf83ef988135006dd32c68295bc6e40e13fbfda899fa72133cda26651d9db608649c6c35d1a8d3f90203c21939f74f89872cd6b57fe
6
+ metadata.gz: 96c838a5b5eaa22cf18e7f4a7d35b8572b64548b0961073b0df1f8d343292dff89671e98a01ed1aba82d98c49771d04596e029b85f767266dcbc19488e393d1b
7
+ data.tar.gz: b3fdb5f2724b35481d944db3bf87eff999daeaf33eaa86d81e66ee91b3c73825b330dc7e3586bd96a2f1c355a2394397650542adaead22a01a2cbf4157132f05
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/2.5/pg_ext.so CHANGED
Binary file
data/lib/2.6/pg_ext.so CHANGED
Binary file
data/lib/2.7/pg_ext.so CHANGED
Binary file
data/lib/3.0/pg_ext.so CHANGED
Binary file
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: x86-mingw32
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